diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..3b21c264bab8af577c9a1bda90fe2d04f486938f Binary files /dev/null and b/.DS_Store differ diff --git a/blocks/.DS_Store b/blocks/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..a2713e363656aaa7b6a97d63944099f10215fc39 Binary files /dev/null and b/blocks/.DS_Store differ diff --git a/blocks/task1/.DS_Store b/blocks/task1/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..3458261e6da97be8619c33c9668137155ca80e52 Binary files /dev/null and b/blocks/task1/.DS_Store differ diff --git a/blocks/task1/eval.py b/blocks/task1/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..75bdd4c56d36330b22f95e129970498bbec6adca --- /dev/null +++ b/blocks/task1/eval.py @@ -0,0 +1,40 @@ +import csv +import os + +def clear_answer(plan): + plan = plan.replace('"', '') + plan = plan.replace("'", '') + plan = plan.replace("\n", '') + plan = plan.replace(".", '') + plan = plan.replace("*", '') + plan = plan.lstrip() + plan = plan.rstrip() + return plan + +# import ipdb; ipdb.set_trace() +count_corr = [0,0,0] +invalid = [0,0,0] +for level in [3,4,5]: + with open("../level%d/annotation.txt"%(level), "r") as f: + gt_records = f.read().split('\n')[:-1] + for test_id in range(100): + try: + curr_record = gt_records[test_id] + with open("output/output_img/level%d/%d.txt"%(level, test_id), "r") as f: + answer = f.read() + answer_index = answer.find("") + answer = answer[(answer_index + len("")):] + answer_possible_end_index = answer.find('\n') + if answer_possible_end_index != -1: + answer = answer[:answer_possible_end_index] + answer = clear_answer(answer) + if curr_record.lower() == answer.lower(): + count_corr[level-3] += 1 + else: + print(answer) + except: + invalid[level-3] += 1 + # print(test_id) +print(count_corr) +print(invalid) +print("") \ No newline at end of file diff --git a/blocks/task1/example/.DS_Store b/blocks/task1/example/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..c9b4c2d5767a15629ba3e8155adaa4bc79f9932a Binary files /dev/null and b/blocks/task1/example/.DS_Store differ diff --git a/blocks/task1/example/level3/.DS_Store b/blocks/task1/example/level3/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..4cf5aad684c416eb9104f033ee53931e7c44da62 Binary files /dev/null and b/blocks/task1/example/level3/.DS_Store differ diff --git a/blocks/task1/example/level3/annotation.txt b/blocks/task1/example/level3/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..120e39173e978a2b85a1ea482c92c0dfddfe060b --- /dev/null +++ b/blocks/task1/example/level3/annotation.txt @@ -0,0 +1,8 @@ +purple +orange +orange +yellow +blue +green +blue +orange diff --git a/blocks/task1/example/level3/answer/0.txt b/blocks/task1/example/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..be3d351f925719125db9d6e22f38d97feaf85abc --- /dev/null +++ b/blocks/task1/example/level3/answer/0.txt @@ -0,0 +1,6 @@ +The input contains 3 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a red block. +- Stack 2 has 1 level.Level 1 has a orange block. +- Stack 3 has 1 level.Level 1 has a purple block. +As such, for the question "What is the color of the block at stack 3, level 1?", the correct answer is " purple". + purple \ No newline at end of file diff --git a/blocks/task1/example/level3/answer/1.txt b/blocks/task1/example/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2ad868d335ee887311722d70db303e5ae3bf9aa --- /dev/null +++ b/blocks/task1/example/level3/answer/1.txt @@ -0,0 +1,4 @@ +The input contains 3 blocks in 1 stacks. From left to right: +- Stack 1 has 3 level. From bottom to top: level 1 has an orange block, level 2 has an yellow block, level 3 has an red block, +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " orange". + orange \ No newline at end of file diff --git a/blocks/task1/example/level3/answer/2.txt b/blocks/task1/example/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc3e77d78408ae8ed82492c10eb5bb1898f8f334 --- /dev/null +++ b/blocks/task1/example/level3/answer/2.txt @@ -0,0 +1,4 @@ +The input contains 3 blocks in 1 stacks. From left to right: +- Stack 1 has 3 level. From bottom to top: level 1 has an red block, level 2 has an blue block, level 3 has an orange block, +As such, for the question "What is the color of the block at stack 1, level 3?", the correct answer is " orange". + orange \ No newline at end of file diff --git a/blocks/task1/example/level3/answer/3.txt b/blocks/task1/example/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb6820f7c26f2ec35b93f55d3d2fe41a2a4a8d51 --- /dev/null +++ b/blocks/task1/example/level3/answer/3.txt @@ -0,0 +1,6 @@ +The input contains 3 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a blue block. +- Stack 2 has 1 level.Level 1 has a orange block. +- Stack 3 has 1 level.Level 1 has a yellow block. +As such, for the question "What is the color of the block at stack 3, level 1?", the correct answer is " yellow". + yellow \ No newline at end of file diff --git a/blocks/task1/example/level3/answer/4.txt b/blocks/task1/example/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab535d5d0dea2c95a046fb5e697d8e5bb10865d3 --- /dev/null +++ b/blocks/task1/example/level3/answer/4.txt @@ -0,0 +1,6 @@ +The input contains 3 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a orange block. +- Stack 2 has 1 level.Level 1 has a green block. +- Stack 3 has 1 level.Level 1 has a blue block. +As such, for the question "What is the color of the block at stack 3, level 1?", the correct answer is " blue". + blue \ No newline at end of file diff --git a/blocks/task1/example/level3/answer/5.txt b/blocks/task1/example/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac343d66be17503c7be75312e5a81f8d8caa0346 --- /dev/null +++ b/blocks/task1/example/level3/answer/5.txt @@ -0,0 +1,6 @@ +The input contains 3 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a purple block. +- Stack 2 has 1 level.Level 1 has a blue block. +- Stack 3 has 1 level.Level 1 has a green block. +As such, for the question "What is the color of the block at stack 3, level 1?", the correct answer is " green". + green \ No newline at end of file diff --git a/blocks/task1/example/level3/answer/6.txt b/blocks/task1/example/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..93d02d339d32d23b81ea81d82a10474460a196bc --- /dev/null +++ b/blocks/task1/example/level3/answer/6.txt @@ -0,0 +1,5 @@ +The input contains 3 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a orange block. +- Stack 2 has 2 level. From bottom to top: level 1 has an blue block, level 2 has an purple block, +As such, for the question "What is the color of the block at stack 2, level 1?", the correct answer is " blue". + blue \ No newline at end of file diff --git a/blocks/task1/example/level3/answer/7.txt b/blocks/task1/example/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..985cbe9b8908d6aa548c4590ca2cba8718682ac6 --- /dev/null +++ b/blocks/task1/example/level3/answer/7.txt @@ -0,0 +1,6 @@ +The input contains 3 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a orange block. +- Stack 2 has 1 level.Level 1 has a green block. +- Stack 3 has 1 level.Level 1 has a yellow block. +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " orange". + orange \ No newline at end of file diff --git a/blocks/task1/example/level3/image_input/0.jpg b/blocks/task1/example/level3/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21e95b8e8358de4899654d0ee44bc7b630e6c017 --- /dev/null +++ b/blocks/task1/example/level3/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16bbf31e502cad4101223d7bec561ff7dfb8e2be926a8aa4de7076ecf8e0f1be +size 10252 diff --git a/blocks/task1/example/level3/image_input/1.jpg b/blocks/task1/example/level3/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a8309b2fc6c127c4adf305a3d30e87c8b521c1f --- /dev/null +++ b/blocks/task1/example/level3/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793306fae96b18f69efe75779947de2809fd12f65c2bdc6aa42e95b4797398f2 +size 8942 diff --git a/blocks/task1/example/level3/image_input/2.jpg b/blocks/task1/example/level3/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8daddd18d978d2fe812b12e644fcd7a9d66cc2de --- /dev/null +++ b/blocks/task1/example/level3/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d55c01f4b8bc110e03829e1f6305b9cda18a548fc539272f361f50b27deb5d +size 8723 diff --git a/blocks/task1/example/level3/image_input/3.jpg b/blocks/task1/example/level3/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a4527c76c1dc6f623ef7cee14024c15a919f565 --- /dev/null +++ b/blocks/task1/example/level3/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e13a152d5e2101ce4f0f70d8d6ccabff48d9012328d904a5bfd936b11a3267a +size 9610 diff --git a/blocks/task1/example/level3/image_input/4.jpg b/blocks/task1/example/level3/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a19ab3fcadddd93a63aa82d65caf0bffa8c4116 --- /dev/null +++ b/blocks/task1/example/level3/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1627db8c80699b79b8ffbd8f344d2e520d4cc92a584187f60d183c66b8018189 +size 8862 diff --git a/blocks/task1/example/level3/image_input/5.jpg b/blocks/task1/example/level3/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..484ea5dcec760db6554f8b22f155cb39ab20191c --- /dev/null +++ b/blocks/task1/example/level3/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c248a760842eeba06ebd63b867116bb2f62af29098ba8c27829918258a09b4 +size 9329 diff --git a/blocks/task1/example/level3/image_input/6.jpg b/blocks/task1/example/level3/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4af2df380afda6bef1ca01aac7a9a3f04130724 --- /dev/null +++ b/blocks/task1/example/level3/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eecd3e71a417f1bc80b48371b25034ee8d0953ed6cf6283ee26ce30cc15d5f04 +size 10674 diff --git a/blocks/task1/example/level3/image_input/7.jpg b/blocks/task1/example/level3/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..202a6a22db3bee3efdcc406ef15cff24cb1e1d28 --- /dev/null +++ b/blocks/task1/example/level3/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8e3af63c07731af06aff7904beaf6da5d1adfe44733b208d6c7f776f90db9a +size 9610 diff --git a/blocks/task1/example/level3/pure_text_rep_input/0.txt b/blocks/task1/example/level3/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..09bf70a5964d228c514f2fe6afe4087bed9be54c --- /dev/null +++ b/blocks/task1/example/level3/pure_text_rep_input/0.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block +- Stack with purple block diff --git a/blocks/task1/example/level3/pure_text_rep_input/1.txt b/blocks/task1/example/level3/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cb7b8d6fa0edba136880ae829b9325a13d686b1 --- /dev/null +++ b/blocks/task1/example/level3/pure_text_rep_input/1.txt @@ -0,0 +1 @@ +- Stack with orange block, yellow block, red block, from bottom to top diff --git a/blocks/task1/example/level3/pure_text_rep_input/2.txt b/blocks/task1/example/level3/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a37676cd5c828c1c862b6601c0a3110a697f307 --- /dev/null +++ b/blocks/task1/example/level3/pure_text_rep_input/2.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, orange block, from bottom to top diff --git a/blocks/task1/example/level3/pure_text_rep_input/3.txt b/blocks/task1/example/level3/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..455c02541b23be0a9a24e459273e37f0d84fe560 --- /dev/null +++ b/blocks/task1/example/level3/pure_text_rep_input/3.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task1/example/level3/pure_text_rep_input/4.txt b/blocks/task1/example/level3/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e98f5fa8f849b368a7f0e0650d9fa8091d198f0c --- /dev/null +++ b/blocks/task1/example/level3/pure_text_rep_input/4.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with green block +- Stack with blue block diff --git a/blocks/task1/example/level3/pure_text_rep_input/5.txt b/blocks/task1/example/level3/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..db0e4950044caeefe28c7c2a961297a75fcc6b23 --- /dev/null +++ b/blocks/task1/example/level3/pure_text_rep_input/5.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with green block diff --git a/blocks/task1/example/level3/pure_text_rep_input/6.txt b/blocks/task1/example/level3/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..82af9c6853b05e2a8fc8069bd7d92bd8375cabe8 --- /dev/null +++ b/blocks/task1/example/level3/pure_text_rep_input/6.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task1/example/level3/pure_text_rep_input/7.txt b/blocks/task1/example/level3/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b63b7e303e0204421ac54046faf7f15808138183 --- /dev/null +++ b/blocks/task1/example/level3/pure_text_rep_input/7.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with green block +- Stack with yellow block diff --git a/blocks/task1/example/level3/table_rep_input/0.txt b/blocks/task1/example/level3/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d20cfb7db6765c9ba2b81f1813d73a06ce2c8279 --- /dev/null +++ b/blocks/task1/example/level3/table_rep_input/0.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | red | orange | purple | diff --git a/blocks/task1/example/level3/table_rep_input/1.txt b/blocks/task1/example/level3/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..46a167ddbcb09320404540386fe64b1f80d02a3f --- /dev/null +++ b/blocks/task1/example/level3/table_rep_input/1.txt @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | red | +Level 2 | yellow | +Level 1 | orange | diff --git a/blocks/task1/example/level3/table_rep_input/2.txt b/blocks/task1/example/level3/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a42741032cfdff7b4107ca30d64c4c4e14ccd31 --- /dev/null +++ b/blocks/task1/example/level3/table_rep_input/2.txt @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | orange | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task1/example/level3/table_rep_input/3.txt b/blocks/task1/example/level3/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..d59e879f6b86c9b45b87d10ebfe311eec017e290 --- /dev/null +++ b/blocks/task1/example/level3/table_rep_input/3.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | blue | orange | yellow | diff --git a/blocks/task1/example/level3/table_rep_input/4.txt b/blocks/task1/example/level3/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b823fe2ec86babb5809840e219da04b3967bd5e --- /dev/null +++ b/blocks/task1/example/level3/table_rep_input/4.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | orange | green | blue | diff --git a/blocks/task1/example/level3/table_rep_input/5.txt b/blocks/task1/example/level3/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f83a1f99cd5566a4abad60b6736a06ea2e46708 --- /dev/null +++ b/blocks/task1/example/level3/table_rep_input/5.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | purple | blue | green | diff --git a/blocks/task1/example/level3/table_rep_input/6.txt b/blocks/task1/example/level3/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c3a2953317beaad0971e28d8c8427cc072f9ec7 --- /dev/null +++ b/blocks/task1/example/level3/table_rep_input/6.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | orange | blue | diff --git a/blocks/task1/example/level3/table_rep_input/7.txt b/blocks/task1/example/level3/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa04cfa594a7cc3ba67ac7885da74e960a1b8381 --- /dev/null +++ b/blocks/task1/example/level3/table_rep_input/7.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | orange | green | yellow | diff --git a/blocks/task1/example/level3/text_input/0.txt b/blocks/task1/example/level3/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/example/level3/text_input/0.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/example/level3/text_input/1.txt b/blocks/task1/example/level3/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level3/text_input/1.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level3/text_input/2.txt b/blocks/task1/example/level3/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/example/level3/text_input/2.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/example/level3/text_input/3.txt b/blocks/task1/example/level3/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/example/level3/text_input/3.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/example/level3/text_input/4.txt b/blocks/task1/example/level3/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/example/level3/text_input/4.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/example/level3/text_input/5.txt b/blocks/task1/example/level3/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/example/level3/text_input/5.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/example/level3/text_input/6.txt b/blocks/task1/example/level3/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/example/level3/text_input/6.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/example/level3/text_input/7.txt b/blocks/task1/example/level3/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level3/text_input/7.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level4/annotation.txt b/blocks/task1/example/level4/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..65524175d081db1390a088d09f9ff311479ee892 --- /dev/null +++ b/blocks/task1/example/level4/annotation.txt @@ -0,0 +1,8 @@ +green +purple +yellow +red +red +red +yellow +green diff --git a/blocks/task1/example/level4/answer/0.txt b/blocks/task1/example/level4/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..365bcc3e843010778f4f6515b037763c680080ce --- /dev/null +++ b/blocks/task1/example/level4/answer/0.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a green block. +- Stack 2 has 3 level. From bottom to top: level 1 has an red block, level 2 has an orange block, level 3 has an blue block, +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " green". + green \ No newline at end of file diff --git a/blocks/task1/example/level4/answer/1.txt b/blocks/task1/example/level4/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d34fe94ff2023d006b2dc11267fd3b1f5b39502 --- /dev/null +++ b/blocks/task1/example/level4/answer/1.txt @@ -0,0 +1,7 @@ +The input contains 4 blocks in 4 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a yellow block. +- Stack 2 has 1 level.Level 1 has a orange block. +- Stack 3 has 1 level.Level 1 has a green block. +- Stack 4 has 1 level.Level 1 has a purple block. +As such, for the question "What is the color of the block at stack 4, level 1?", the correct answer is " purple". + purple \ No newline at end of file diff --git a/blocks/task1/example/level4/answer/2.txt b/blocks/task1/example/level4/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2266fe4193f6957829bd470023a2849d6b7ce349 --- /dev/null +++ b/blocks/task1/example/level4/answer/2.txt @@ -0,0 +1,4 @@ +The input contains 4 blocks in 1 stacks. From left to right: +- Stack 1 has 4 level. From bottom to top: level 1 has an yellow block, level 2 has an blue block, level 3 has an green block, level 4 has an red block, +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " yellow". + yellow \ No newline at end of file diff --git a/blocks/task1/example/level4/answer/3.txt b/blocks/task1/example/level4/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf075c33c0e972a5278d3433f2f0724176d2597b --- /dev/null +++ b/blocks/task1/example/level4/answer/3.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a red block. +- Stack 2 has 3 level. From bottom to top: level 1 has an orange block, level 2 has an green block, level 3 has an purple block, +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " red". + red \ No newline at end of file diff --git a/blocks/task1/example/level4/answer/4.txt b/blocks/task1/example/level4/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..19ce60c624569aeb8a96dd7e0b4070b4b3bdaf96 --- /dev/null +++ b/blocks/task1/example/level4/answer/4.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a red block. +- Stack 2 has 3 level. From bottom to top: level 1 has an orange block, level 2 has an purple block, level 3 has an green block, +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " red". + red \ No newline at end of file diff --git a/blocks/task1/example/level4/answer/5.txt b/blocks/task1/example/level4/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..861f4640093e7a4ba233e903745bc2c37606c87c --- /dev/null +++ b/blocks/task1/example/level4/answer/5.txt @@ -0,0 +1,7 @@ +The input contains 4 blocks in 4 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a green block. +- Stack 2 has 1 level.Level 1 has a red block. +- Stack 3 has 1 level.Level 1 has a purple block. +- Stack 4 has 1 level.Level 1 has a blue block. +As such, for the question "What is the color of the block at stack 2, level 1?", the correct answer is " red". + red \ No newline at end of file diff --git a/blocks/task1/example/level4/answer/6.txt b/blocks/task1/example/level4/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..0381480c982c03f654b220c36d46c7da3e71fa3a --- /dev/null +++ b/blocks/task1/example/level4/answer/6.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a purple block. +- Stack 2 has 3 level. From bottom to top: level 1 has an yellow block, level 2 has an blue block, level 3 has an orange block, +As such, for the question "What is the color of the block at stack 2, level 1?", the correct answer is " yellow". + yellow \ No newline at end of file diff --git a/blocks/task1/example/level4/answer/7.txt b/blocks/task1/example/level4/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d118d523046e5a7ef8d0e6194cb6db62a6811df0 --- /dev/null +++ b/blocks/task1/example/level4/answer/7.txt @@ -0,0 +1,6 @@ +The input contains 4 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a green block. +- Stack 2 has 1 level.Level 1 has a red block. +- Stack 3 has 2 level. From bottom to top: level 1 has an blue block, level 2 has an orange block, +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " green". + green \ No newline at end of file diff --git a/blocks/task1/example/level4/image_input/0.jpg b/blocks/task1/example/level4/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26bc4c23b1e2b7838591b08101d233d6f3a60ce9 --- /dev/null +++ b/blocks/task1/example/level4/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3948164c4ad9a0e7a06b2ced6500b22a61837fd6cf265ba91010de2843217c6 +size 10183 diff --git a/blocks/task1/example/level4/image_input/1.jpg b/blocks/task1/example/level4/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6021c4a03d40ed871f78c23946b52ed8711253a --- /dev/null +++ b/blocks/task1/example/level4/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be15a9eb80bbb41aeb9c558da91122caeec26b3425dfc1e84edd90218d25a07b +size 10256 diff --git a/blocks/task1/example/level4/image_input/2.jpg b/blocks/task1/example/level4/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98b0b4d6cbc0e93143f45719987f239a66af8260 --- /dev/null +++ b/blocks/task1/example/level4/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bad086e980d8c67ddf7eb4f0696621a8efb32d5a65d0c8cec74d57b5159ff4d +size 8735 diff --git a/blocks/task1/example/level4/image_input/3.jpg b/blocks/task1/example/level4/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aff6116bd7393fefb0b24113f39e63fb4c238e99 --- /dev/null +++ b/blocks/task1/example/level4/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc16944f54dcf6e856e450dbc36f9dd207e33e6b320e8631cdcfe8edba38093b +size 9493 diff --git a/blocks/task1/example/level4/image_input/4.jpg b/blocks/task1/example/level4/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80b829c30354f42c147b661fa5e85df528498133 --- /dev/null +++ b/blocks/task1/example/level4/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34afaf5265d1835fb40ecfbcecda0b19f02bc3f54a80c7a9413ff1dc274bb1b0 +size 9858 diff --git a/blocks/task1/example/level4/image_input/5.jpg b/blocks/task1/example/level4/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7395a351220e5b8fda4b7a7935338efea8a94d34 --- /dev/null +++ b/blocks/task1/example/level4/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2b2d8f7e8322d3d9b9be23632fd3efe44e294041661313843a1440fd8dbd9d +size 9639 diff --git a/blocks/task1/example/level4/image_input/6.jpg b/blocks/task1/example/level4/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16fad0acc18cba3b0ec4543238b603b591197ee6 --- /dev/null +++ b/blocks/task1/example/level4/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b59e0bf12618744f6b80245fdc1385ce6692c7c4918e861c9c06dfa4cf9608 +size 9964 diff --git a/blocks/task1/example/level4/image_input/7.jpg b/blocks/task1/example/level4/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3db3e01b7265f8a29b6cbd567fbda3968855d29 --- /dev/null +++ b/blocks/task1/example/level4/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82301b31934122ff1247cf1ec713a4440f6de4392eecd98f22f026807a57a52f +size 10217 diff --git a/blocks/task1/example/level4/pure_text_rep_input/0 b/blocks/task1/example/level4/pure_text_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..038865e4fd6f2ea3bef775d6c850f02d6e242099 --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/0 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/0.txt b/blocks/task1/example/level4/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..038865e4fd6f2ea3bef775d6c850f02d6e242099 --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/0.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/1 b/blocks/task1/example/level4/pure_text_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..1f0ad11308ce355ed8cbbcf774675bc6a7da3d2f --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/1 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block diff --git a/blocks/task1/example/level4/pure_text_rep_input/1.txt b/blocks/task1/example/level4/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f0ad11308ce355ed8cbbcf774675bc6a7da3d2f --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/1.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block diff --git a/blocks/task1/example/level4/pure_text_rep_input/2 b/blocks/task1/example/level4/pure_text_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..9960c2e2dc3e54484c5d2e391f42aafa150cfdfc --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/2 @@ -0,0 +1 @@ +- Stack with yellow block, blue block, green block, red block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/2.txt b/blocks/task1/example/level4/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9960c2e2dc3e54484c5d2e391f42aafa150cfdfc --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/2.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, green block, red block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/3 b/blocks/task1/example/level4/pure_text_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..df6e0091671f4f8e905b1d5e601f85a7d6beb522 --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/3 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, green block, purple block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/3.txt b/blocks/task1/example/level4/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..df6e0091671f4f8e905b1d5e601f85a7d6beb522 --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/3.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, green block, purple block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/4 b/blocks/task1/example/level4/pure_text_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..12097130b2a725c8bd5d2a72b001f26a5a9bc90f --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/4 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, purple block, green block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/4.txt b/blocks/task1/example/level4/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..12097130b2a725c8bd5d2a72b001f26a5a9bc90f --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/4.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, purple block, green block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/5 b/blocks/task1/example/level4/pure_text_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..0d92da0474e81e507bc200429d509660df62dbae --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/5 @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with red block +- Stack with purple block +- Stack with blue block diff --git a/blocks/task1/example/level4/pure_text_rep_input/5.txt b/blocks/task1/example/level4/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d92da0474e81e507bc200429d509660df62dbae --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/5.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with red block +- Stack with purple block +- Stack with blue block diff --git a/blocks/task1/example/level4/pure_text_rep_input/6 b/blocks/task1/example/level4/pure_text_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..25de40df7537804a1bd95bb8da28e81f23f0f96e --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/6 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, blue block, orange block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/6.txt b/blocks/task1/example/level4/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..25de40df7537804a1bd95bb8da28e81f23f0f96e --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/6.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, blue block, orange block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/7 b/blocks/task1/example/level4/pure_text_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..d5c905d937b098fa9cd10ea95787dd6814547d6d --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/7 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task1/example/level4/pure_text_rep_input/7.txt b/blocks/task1/example/level4/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5c905d937b098fa9cd10ea95787dd6814547d6d --- /dev/null +++ b/blocks/task1/example/level4/pure_text_rep_input/7.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task1/example/level4/table_rep_input/0 b/blocks/task1/example/level4/table_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..841328b092a570ca8d0dd5f282f06b6e5473c051 --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/0 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | green | red | diff --git a/blocks/task1/example/level4/table_rep_input/0.txt b/blocks/task1/example/level4/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..841328b092a570ca8d0dd5f282f06b6e5473c051 --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/0.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | green | red | diff --git a/blocks/task1/example/level4/table_rep_input/1 b/blocks/task1/example/level4/table_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..d758d06a2880d766d461a99e05e5096681f672c8 --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/1 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | yellow | orange | green | purple | diff --git a/blocks/task1/example/level4/table_rep_input/1.txt b/blocks/task1/example/level4/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d758d06a2880d766d461a99e05e5096681f672c8 --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/1.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | yellow | orange | green | purple | diff --git a/blocks/task1/example/level4/table_rep_input/2 b/blocks/task1/example/level4/table_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..44e36458eaad116312331569c3bffa6b3cd0802b --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/2 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | green | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task1/example/level4/table_rep_input/2.txt b/blocks/task1/example/level4/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..44e36458eaad116312331569c3bffa6b3cd0802b --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/2.txt @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | green | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task1/example/level4/table_rep_input/3 b/blocks/task1/example/level4/table_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..5925ad8948d5a41e6ea72c7fab97e78b317dbf98 --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/3 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | green | +Level 1 | red | orange | diff --git a/blocks/task1/example/level4/table_rep_input/3.txt b/blocks/task1/example/level4/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5925ad8948d5a41e6ea72c7fab97e78b317dbf98 --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/3.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | green | +Level 1 | red | orange | diff --git a/blocks/task1/example/level4/table_rep_input/4 b/blocks/task1/example/level4/table_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..d10250a8a013c95b1f55a54e5e2307c1d56a7e05 --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/4 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | purple | +Level 1 | red | orange | diff --git a/blocks/task1/example/level4/table_rep_input/4.txt b/blocks/task1/example/level4/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d10250a8a013c95b1f55a54e5e2307c1d56a7e05 --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/4.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | purple | +Level 1 | red | orange | diff --git a/blocks/task1/example/level4/table_rep_input/5 b/blocks/task1/example/level4/table_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..ccb384e0874d1ed728ac2dd53fe95e183b4932de --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/5 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | green | red | purple | blue | diff --git a/blocks/task1/example/level4/table_rep_input/5.txt b/blocks/task1/example/level4/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccb384e0874d1ed728ac2dd53fe95e183b4932de --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/5.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | green | red | purple | blue | diff --git a/blocks/task1/example/level4/table_rep_input/6 b/blocks/task1/example/level4/table_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..985d7ed2b8ec5423244dcf3e9ed7e530172c54ed --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/6 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | purple | yellow | diff --git a/blocks/task1/example/level4/table_rep_input/6.txt b/blocks/task1/example/level4/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..985d7ed2b8ec5423244dcf3e9ed7e530172c54ed --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/6.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | purple | yellow | diff --git a/blocks/task1/example/level4/table_rep_input/7 b/blocks/task1/example/level4/table_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..abff34842821ee6dd76663d4df7a148fb9098e2d --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/7 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | green | red | blue | diff --git a/blocks/task1/example/level4/table_rep_input/7.txt b/blocks/task1/example/level4/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..abff34842821ee6dd76663d4df7a148fb9098e2d --- /dev/null +++ b/blocks/task1/example/level4/table_rep_input/7.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | green | red | blue | diff --git a/blocks/task1/example/level4/text_input/0.txt b/blocks/task1/example/level4/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level4/text_input/0.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level4/text_input/1.txt b/blocks/task1/example/level4/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/example/level4/text_input/1.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/example/level4/text_input/2.txt b/blocks/task1/example/level4/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level4/text_input/2.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level4/text_input/3.txt b/blocks/task1/example/level4/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level4/text_input/3.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level4/text_input/4.txt b/blocks/task1/example/level4/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level4/text_input/4.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level4/text_input/5.txt b/blocks/task1/example/level4/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/example/level4/text_input/5.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/example/level4/text_input/6.txt b/blocks/task1/example/level4/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/example/level4/text_input/6.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/example/level4/text_input/7.txt b/blocks/task1/example/level4/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level4/text_input/7.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level5/annotation.txt b/blocks/task1/example/level5/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..90944d8b2b5ab1babe76dfb0cbce5ec31d0782ce --- /dev/null +++ b/blocks/task1/example/level5/annotation.txt @@ -0,0 +1,8 @@ +blue +orange +orange +yellow +red +orange +blue +red diff --git a/blocks/task1/example/level5/answer/0.txt b/blocks/task1/example/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc5fc63b5d83128c3ea35c62b9499d5ee33e4f00 --- /dev/null +++ b/blocks/task1/example/level5/answer/0.txt @@ -0,0 +1,6 @@ +The input contains 5 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a blue block. +- Stack 2 has 1 level.Level 1 has a orange block. +- Stack 3 has 3 level. From bottom to top: level 1 has an yellow block, level 2 has an purple block, level 3 has an green block, +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " blue". + blue \ No newline at end of file diff --git a/blocks/task1/example/level5/answer/1.txt b/blocks/task1/example/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fcb207656c29b43165fc9dcb44dfcc938cbda97 --- /dev/null +++ b/blocks/task1/example/level5/answer/1.txt @@ -0,0 +1,4 @@ +The input contains 5 blocks in 1 stacks. From left to right: +- Stack 1 has 5 level. From bottom to top: level 1 has an orange block, level 2 has an red block, level 3 has an blue block, level 4 has an green block, level 5 has an purple block, +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " orange". + orange \ No newline at end of file diff --git a/blocks/task1/example/level5/answer/2.txt b/blocks/task1/example/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa99c0081053ae5b2d803be9ca1151fa1371adb2 --- /dev/null +++ b/blocks/task1/example/level5/answer/2.txt @@ -0,0 +1,6 @@ +The input contains 5 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a green block. +- Stack 2 has 1 level.Level 1 has a purple block. +- Stack 3 has 3 level. From bottom to top: level 1 has an orange block, level 2 has an yellow block, level 3 has an blue block, +As such, for the question "What is the color of the block at stack 3, level 1?", the correct answer is " orange". + orange \ No newline at end of file diff --git a/blocks/task1/example/level5/answer/3.txt b/blocks/task1/example/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..d252cc40ca605e5f44a4ac836584ae1f97b1b06c --- /dev/null +++ b/blocks/task1/example/level5/answer/3.txt @@ -0,0 +1,5 @@ +The input contains 5 blocks in 2 stacks. From left to right: +- Stack 1 has 2 level. From bottom to top: level 1 has an blue block, level 2 has an yellow block, +- Stack 2 has 3 level. From bottom to top: level 1 has an green block, level 2 has an orange block, level 3 has an purple block, +As such, for the question "What is the color of the block at stack 1, level 2?", the correct answer is " yellow". + yellow \ No newline at end of file diff --git a/blocks/task1/example/level5/answer/4.txt b/blocks/task1/example/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ade37f81a900b2e8a6745d638909e90271644de --- /dev/null +++ b/blocks/task1/example/level5/answer/4.txt @@ -0,0 +1,6 @@ +The input contains 5 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a orange block. +- Stack 2 has 1 level.Level 1 has a red block. +- Stack 3 has 3 level. From bottom to top: level 1 has an blue block, level 2 has an yellow block, level 3 has an purple block, +As such, for the question "What is the color of the block at stack 2, level 1?", the correct answer is " red". + red \ No newline at end of file diff --git a/blocks/task1/example/level5/answer/5.txt b/blocks/task1/example/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b6ab2f56a17266cc4301e70b36d27e2afbc3901 --- /dev/null +++ b/blocks/task1/example/level5/answer/5.txt @@ -0,0 +1,4 @@ +The input contains 5 blocks in 1 stacks. From left to right: +- Stack 1 has 5 level. From bottom to top: level 1 has an yellow block, level 2 has an orange block, level 3 has an purple block, level 4 has an blue block, level 5 has an green block, +As such, for the question "What is the color of the block at stack 1, level 2?", the correct answer is " orange". + orange \ No newline at end of file diff --git a/blocks/task1/example/level5/answer/6.txt b/blocks/task1/example/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ee069076ceaa24cc34615737212071b04de3bb4 --- /dev/null +++ b/blocks/task1/example/level5/answer/6.txt @@ -0,0 +1,7 @@ +The input contains 5 blocks in 4 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a blue block. +- Stack 2 has 1 level.Level 1 has a orange block. +- Stack 3 has 1 level.Level 1 has a purple block. +- Stack 4 has 2 level. From bottom to top: level 1 has an yellow block, level 2 has an red block, +As such, for the question "What is the color of the block at stack 1, level 1?", the correct answer is " blue". + blue \ No newline at end of file diff --git a/blocks/task1/example/level5/answer/7.txt b/blocks/task1/example/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b4f5430e14fdf0866722968aadfdd2667fbc107 --- /dev/null +++ b/blocks/task1/example/level5/answer/7.txt @@ -0,0 +1,7 @@ +The input contains 5 blocks in 4 stacks. From left to right: +- Stack 1 has 1 level.Level 1 has a purple block. +- Stack 2 has 1 level.Level 1 has a yellow block. +- Stack 3 has 1 level.Level 1 has a blue block. +- Stack 4 has 2 level. From bottom to top: level 1 has an green block, level 2 has an red block, +As such, for the question "What is the color of the block at stack 4, level 2?", the correct answer is " red". + red \ No newline at end of file diff --git a/blocks/task1/example/level5/image_input/0.jpg b/blocks/task1/example/level5/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ba4ed58c935f4c453a3419d29140870abbc8173 --- /dev/null +++ b/blocks/task1/example/level5/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5713c9c9cb4e5d91eb0faddcdd32982298063a6c7d543e16aa00995705f777a3 +size 10937 diff --git a/blocks/task1/example/level5/image_input/1.jpg b/blocks/task1/example/level5/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40a4f434905822510986f5e1841d08498c9b5fd9 --- /dev/null +++ b/blocks/task1/example/level5/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723341149a4698d991c40931accda49dd7cf35bcf5c4541a7fdd5e20fa259ac8 +size 10329 diff --git a/blocks/task1/example/level5/image_input/2.jpg b/blocks/task1/example/level5/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..189fc06df1d63c7c492d107d2675f7277f5ad693 --- /dev/null +++ b/blocks/task1/example/level5/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232fb83340d91b0b283632f4e7fbd4f775a2e2d56e992ae26f8a89a370c163bf +size 10776 diff --git a/blocks/task1/example/level5/image_input/3.jpg b/blocks/task1/example/level5/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c813530a83fb1c27c654b9909b213635ac7cf240 --- /dev/null +++ b/blocks/task1/example/level5/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a2f3cd5e33ee425ac72b9cb2d350200e4ac2aab1ad4fe1c96b815699fae474 +size 10261 diff --git a/blocks/task1/example/level5/image_input/4.jpg b/blocks/task1/example/level5/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5df520b965c64937b90d7809a321fddcf915ab99 --- /dev/null +++ b/blocks/task1/example/level5/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:729e4bfcd1d419884c25013274c0599f7f1040688f32fcd6674fc98ce7957f02 +size 11066 diff --git a/blocks/task1/example/level5/image_input/5.jpg b/blocks/task1/example/level5/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..847b6707c21ed34874741e67958b47bfe5699170 --- /dev/null +++ b/blocks/task1/example/level5/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f0c25949fecd4ac710a52af87946aa0c8d3b8fea3dbb67fc1de0b7d1963646 +size 9995 diff --git a/blocks/task1/example/level5/image_input/6.jpg b/blocks/task1/example/level5/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d5dd0e3d2ffc1e67055e581e684e15184c48fd2 --- /dev/null +++ b/blocks/task1/example/level5/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec87ce88629a4b64aa3dc08bf07d98c38a4ec8d9b88dc9ef7d4884dcfa1310ce +size 11011 diff --git a/blocks/task1/example/level5/image_input/7.jpg b/blocks/task1/example/level5/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbc2fea156bef2b75c967538a67c84483a28f8eb --- /dev/null +++ b/blocks/task1/example/level5/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85d45696254c0b07a4fc53beb59677fb899927f3362cb9ab18bcdd81a53b77f +size 11263 diff --git a/blocks/task1/example/level5/pure_text_rep_input/0 b/blocks/task1/example/level5/pure_text_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..296a750400551a94c5ffbd8bf10f466dd9af78e0 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/0 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block, purple block, green block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/0.txt b/blocks/task1/example/level5/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..296a750400551a94c5ffbd8bf10f466dd9af78e0 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/0.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block, purple block, green block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/1 b/blocks/task1/example/level5/pure_text_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..029161097d1774d4133a9f692254a32359c24f66 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/1 @@ -0,0 +1 @@ +- Stack with orange block, red block, blue block, green block, purple block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/1.txt b/blocks/task1/example/level5/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..029161097d1774d4133a9f692254a32359c24f66 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/1.txt @@ -0,0 +1 @@ +- Stack with orange block, red block, blue block, green block, purple block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/2 b/blocks/task1/example/level5/pure_text_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..99002e01657c8febb7146b3143cefba32e6862c4 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/2 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block, yellow block, blue block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/2.txt b/blocks/task1/example/level5/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..99002e01657c8febb7146b3143cefba32e6862c4 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/2.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block, yellow block, blue block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/3 b/blocks/task1/example/level5/pure_text_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..5e1ad3db7861dec76e130e9f8a887ce75060c970 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/3 @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/3.txt b/blocks/task1/example/level5/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e1ad3db7861dec76e130e9f8a887ce75060c970 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/3.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/4 b/blocks/task1/example/level5/pure_text_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..1cf936adff71f8b7b6809fcdd371a04e34b7f88c --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/4 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/4.txt b/blocks/task1/example/level5/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cf936adff71f8b7b6809fcdd371a04e34b7f88c --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/4.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/5 b/blocks/task1/example/level5/pure_text_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..4f906b8377693849d2e31dcf13283cbd0a6d9e56 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/5 @@ -0,0 +1 @@ +- Stack with yellow block, orange block, purple block, blue block, green block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/5.txt b/blocks/task1/example/level5/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f906b8377693849d2e31dcf13283cbd0a6d9e56 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/5.txt @@ -0,0 +1 @@ +- Stack with yellow block, orange block, purple block, blue block, green block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/6 b/blocks/task1/example/level5/pure_text_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..b74bae41804d07fb78af5b14cf557f878cb9ddfe --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/6 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/6.txt b/blocks/task1/example/level5/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b74bae41804d07fb78af5b14cf557f878cb9ddfe --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/6.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/7 b/blocks/task1/example/level5/pure_text_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..93a42ea6760578e39bdb765758bd807c0f666a17 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/7 @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task1/example/level5/pure_text_rep_input/7.txt b/blocks/task1/example/level5/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..93a42ea6760578e39bdb765758bd807c0f666a17 --- /dev/null +++ b/blocks/task1/example/level5/pure_text_rep_input/7.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task1/example/level5/table_rep_input/0 b/blocks/task1/example/level5/table_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..61e6c19fdf6517f7c6b64f4aab182cd78a871653 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/0 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | purple | +Level 1 | blue | orange | yellow | diff --git a/blocks/task1/example/level5/table_rep_input/0.txt b/blocks/task1/example/level5/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..61e6c19fdf6517f7c6b64f4aab182cd78a871653 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/0.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | purple | +Level 1 | blue | orange | yellow | diff --git a/blocks/task1/example/level5/table_rep_input/1 b/blocks/task1/example/level5/table_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..f933820102f2b0d83380d28379a5c66c8f55643f --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/1 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | blue | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task1/example/level5/table_rep_input/1.txt b/blocks/task1/example/level5/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f933820102f2b0d83380d28379a5c66c8f55643f --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/1.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | blue | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task1/example/level5/table_rep_input/2 b/blocks/task1/example/level5/table_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..8a77dde1d2bbf335b41d667567c125198f823443 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/2 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | yellow | +Level 1 | green | purple | orange | diff --git a/blocks/task1/example/level5/table_rep_input/2.txt b/blocks/task1/example/level5/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a77dde1d2bbf335b41d667567c125198f823443 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/2.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | yellow | +Level 1 | green | purple | orange | diff --git a/blocks/task1/example/level5/table_rep_input/3 b/blocks/task1/example/level5/table_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..2c73e4c97947c9c056f498dd9c5ad5b8396b7418 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/3 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | orange | +Level 1 | blue | green | diff --git a/blocks/task1/example/level5/table_rep_input/3.txt b/blocks/task1/example/level5/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c73e4c97947c9c056f498dd9c5ad5b8396b7418 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/3.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | orange | +Level 1 | blue | green | diff --git a/blocks/task1/example/level5/table_rep_input/4 b/blocks/task1/example/level5/table_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..878a1fcf68bd5283a7c427d1b8e0aa570cfe9926 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/4 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | yellow | +Level 1 | orange | red | blue | diff --git a/blocks/task1/example/level5/table_rep_input/4.txt b/blocks/task1/example/level5/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..878a1fcf68bd5283a7c427d1b8e0aa570cfe9926 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/4.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | yellow | +Level 1 | orange | red | blue | diff --git a/blocks/task1/example/level5/table_rep_input/5 b/blocks/task1/example/level5/table_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..482898f0623824dd797daa9bf7b62ef437ae1af8 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/5 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | blue | +Level 3 | purple | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task1/example/level5/table_rep_input/5.txt b/blocks/task1/example/level5/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..482898f0623824dd797daa9bf7b62ef437ae1af8 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/5.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | blue | +Level 3 | purple | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task1/example/level5/table_rep_input/6 b/blocks/task1/example/level5/table_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..f319ddf65e9e7608c8a8b66e175e44decdd21491 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/6 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | orange | purple | yellow | diff --git a/blocks/task1/example/level5/table_rep_input/6.txt b/blocks/task1/example/level5/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..f319ddf65e9e7608c8a8b66e175e44decdd21491 --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/6.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | orange | purple | yellow | diff --git a/blocks/task1/example/level5/table_rep_input/7 b/blocks/task1/example/level5/table_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..fc301072d8769f7d63d3d9a374e1ec8ed6cac89a --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/7 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | yellow | blue | green | diff --git a/blocks/task1/example/level5/table_rep_input/7.txt b/blocks/task1/example/level5/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc301072d8769f7d63d3d9a374e1ec8ed6cac89a --- /dev/null +++ b/blocks/task1/example/level5/table_rep_input/7.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | yellow | blue | green | diff --git a/blocks/task1/example/level5/text_input/0.txt b/blocks/task1/example/level5/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level5/text_input/0.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level5/text_input/1.txt b/blocks/task1/example/level5/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level5/text_input/1.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level5/text_input/2.txt b/blocks/task1/example/level5/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/example/level5/text_input/2.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/example/level5/text_input/3.txt b/blocks/task1/example/level5/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/example/level5/text_input/3.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/example/level5/text_input/4.txt b/blocks/task1/example/level5/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/example/level5/text_input/4.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/example/level5/text_input/5.txt b/blocks/task1/example/level5/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/example/level5/text_input/5.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/example/level5/text_input/6.txt b/blocks/task1/example/level5/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/example/level5/text_input/6.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/example/level5/text_input/7.txt b/blocks/task1/example/level5/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..5db8cda67074d2865f44122bf7af23d704935ef6 --- /dev/null +++ b/blocks/task1/example/level5/text_input/7.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 2? diff --git a/blocks/task1/maps/.DS_Store b/blocks/task1/maps/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..18d81b411b428a94fd2903341bce39575686019e Binary files /dev/null and b/blocks/task1/maps/.DS_Store differ diff --git a/blocks/task1/maps/level3/.DS_Store b/blocks/task1/maps/level3/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..f2d94030e24803bdcc7143371d531071428b6fe1 Binary files /dev/null and b/blocks/task1/maps/level3/.DS_Store differ diff --git a/blocks/task1/maps/level3/annotation.txt b/blocks/task1/maps/level3/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9700d4e9da90f19a913e8133e1787d0b08b664d --- /dev/null +++ b/blocks/task1/maps/level3/annotation.txt @@ -0,0 +1,100 @@ +red +red +yellow +orange +purple +blue +red +red +red +red +orange +blue +purple +red +purple +red +blue +yellow +green +green +orange +green +blue +purple +yellow +red +orange +green +orange +green +red +yellow +red +red +red +yellow +red +green +red +red +blue +red +orange +red +green +green +orange +yellow +yellow +orange +orange +blue +yellow +red +purple +orange +yellow +blue +purple +purple +green +blue +yellow +blue +red +purple +orange +orange +orange +yellow +orange +blue +red +green +purple +purple +yellow +yellow +blue +green +green +blue +purple +red +orange +blue +purple +red +blue +orange +yellow +blue +yellow +yellow +purple +blue +orange +red +green +green diff --git a/blocks/task1/maps/level3/image_input/0.jpg b/blocks/task1/maps/level3/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88192abad2b8fef6d47293889fdb76d5d8dd124f --- /dev/null +++ b/blocks/task1/maps/level3/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ea222cb610087e182c2f48c13ed59dd22797d3d0c23bb72209133cdaac5163 +size 8208 diff --git a/blocks/task1/maps/level3/image_input/1.jpg b/blocks/task1/maps/level3/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b1f48dd8f9ebe28ec74c95d68486482d04a8c81 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f682c3e93179a6b0ab9abad7a183a08f0005bc40b5461ac1ab91cfb8d2c36627 +size 10108 diff --git a/blocks/task1/maps/level3/image_input/10.jpg b/blocks/task1/maps/level3/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7177360573ebceb434957ebe6aa32784c79621b5 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4746c4cea51439b406188ef48cdbb931cb89480ce7587249f0d3010d53c005 +size 10407 diff --git a/blocks/task1/maps/level3/image_input/11.jpg b/blocks/task1/maps/level3/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a4527c76c1dc6f623ef7cee14024c15a919f565 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e13a152d5e2101ce4f0f70d8d6ccabff48d9012328d904a5bfd936b11a3267a +size 9610 diff --git a/blocks/task1/maps/level3/image_input/12.jpg b/blocks/task1/maps/level3/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34ab7193a19c58db5423b2fcbaf2ddd26cef2f6b --- /dev/null +++ b/blocks/task1/maps/level3/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccd0e5e02c77ab7c82a7ffac70e122246dfbf819db081aa152d46c77f58ce87b +size 9888 diff --git a/blocks/task1/maps/level3/image_input/13.jpg b/blocks/task1/maps/level3/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7177360573ebceb434957ebe6aa32784c79621b5 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4746c4cea51439b406188ef48cdbb931cb89480ce7587249f0d3010d53c005 +size 10407 diff --git a/blocks/task1/maps/level3/image_input/14.jpg b/blocks/task1/maps/level3/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..836841b157d0ccc92e4a68ceb8be1b0d0eeedc75 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8a40c8a6ae3cf0ae1d18599fa7d2d38cd70b50bd86fa7a4e6f2703048905a4 +size 9926 diff --git a/blocks/task1/maps/level3/image_input/15.jpg b/blocks/task1/maps/level3/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f87807ce69c91411565c29bdb3f05380988181e --- /dev/null +++ b/blocks/task1/maps/level3/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d43651b1e13a73c0dd5aaa71104d7bad7365da3975a2e55d8a0dcb5893de71 +size 8113 diff --git a/blocks/task1/maps/level3/image_input/16.jpg b/blocks/task1/maps/level3/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74e23f6fffa7b64c7e9103ec67e59c8cc04ba35e --- /dev/null +++ b/blocks/task1/maps/level3/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea69efb466cc86eb3ffb652f10d07d436eb1eac1aa51c30f96ed0a968da95ac +size 8766 diff --git a/blocks/task1/maps/level3/image_input/17.jpg b/blocks/task1/maps/level3/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf7ec488c1ab6e30cf94409f768715cb1f461140 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1b11f3f134a0ac40077998f81df0c474247d1a9e605b19c24d2b99d5fa101f +size 8969 diff --git a/blocks/task1/maps/level3/image_input/18.jpg b/blocks/task1/maps/level3/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90a362d23580f5be4b2bce646ccfaee39c00e26e --- /dev/null +++ b/blocks/task1/maps/level3/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e853206f7968f71f4c08f3c17e37361ceb62d67747db88e9d21f267c99b4dfa +size 8554 diff --git a/blocks/task1/maps/level3/image_input/19.jpg b/blocks/task1/maps/level3/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b09b116d7aa4874cebf289731245b542fbd7987f --- /dev/null +++ b/blocks/task1/maps/level3/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c506309a32636446e3db86b6f9f8f4b8e8e63169a6a9052054e1c2f5d824e184 +size 9952 diff --git a/blocks/task1/maps/level3/image_input/2.jpg b/blocks/task1/maps/level3/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..616814e1047f59093a7b5c19c62bdb732b50edb8 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d5d01e4c49759978d1acb0b90a1b37b124431bf1c93e6ee79db610998eb25b +size 9164 diff --git a/blocks/task1/maps/level3/image_input/20.jpg b/blocks/task1/maps/level3/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c71184b00f1216106b47df652bc01046162b58c5 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5a300ac9ee3bd43911e2d228c53a61c378deb8fc49f3bfb3e5c491e89c980d +size 10639 diff --git a/blocks/task1/maps/level3/image_input/21.jpg b/blocks/task1/maps/level3/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c58831e5665ab4fbdbcfa37aeffcc3038fb24e3 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03b56ca31b03950d0b8f2b9a4187777cbc0dffff2bbde5ca2d44fd8d1fa2b1e +size 8750 diff --git a/blocks/task1/maps/level3/image_input/22.jpg b/blocks/task1/maps/level3/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2002c6557457b14aaf5ba4d0df5548900c3a6d71 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d469e429051e4be237f16afc665e0d0403c229d6c77485dfaf8aea7c9acd13e +size 10170 diff --git a/blocks/task1/maps/level3/image_input/23.jpg b/blocks/task1/maps/level3/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e88f0d22387e0657f1186b247d3943b564a5a5e4 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211629324aa7f5bd9ed5db8e7c54bf611ed41fcf32e643553015554081829d72 +size 9472 diff --git a/blocks/task1/maps/level3/image_input/24.jpg b/blocks/task1/maps/level3/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b0119f7aa31cb9b91a2b960b58e0f7aa6823538 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96090af40c39f602fc563682d8e7cfdbb37172dab349a5c59463d31e909ad30c +size 8723 diff --git a/blocks/task1/maps/level3/image_input/25.jpg b/blocks/task1/maps/level3/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13e38feac0cf3d0d06ccec1ea06dc67e8bb53ef3 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a5a05b90e37f2cce11cfa22f13f0a8a6b322df8abc999b9a91bdeeb614a064 +size 9322 diff --git a/blocks/task1/maps/level3/image_input/26.jpg b/blocks/task1/maps/level3/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04297f74667848474625b57a7a52b8a1b7bae0f9 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3458441dfffbb02979ac6a9afa2f573eee3ea3ce977ad8f4b894d075fa0244c +size 8675 diff --git a/blocks/task1/maps/level3/image_input/27.jpg b/blocks/task1/maps/level3/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a53f08b22588a522bd04ce01e69d447e42f4944 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0230d066cc1862525af992ee44f59ac445ec7cbe9995834f7f8d12a0ff158820 +size 8822 diff --git a/blocks/task1/maps/level3/image_input/28.jpg b/blocks/task1/maps/level3/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b06a5d8a70b8c73b94845c1a541bd1636c4f6ac --- /dev/null +++ b/blocks/task1/maps/level3/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239d79281ca4526d4f1dded203a5e4bf83ac9da7669e4c863b418bfdf334dcf2 +size 10682 diff --git a/blocks/task1/maps/level3/image_input/29.jpg b/blocks/task1/maps/level3/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc451e148261d75d00e51207bdd0a37912b454dd --- /dev/null +++ b/blocks/task1/maps/level3/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ca4b530c8c553469635c719dd0f20a37a5156b390126c1244d651fdced0179 +size 9877 diff --git a/blocks/task1/maps/level3/image_input/3.jpg b/blocks/task1/maps/level3/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..863ff6d50a0142e8caee8473c983b11119f4d649 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5d6278d1b459e1534b52ac96064c4ad8396cfd2c9bf2d5835ff6d88d364ca3 +size 10175 diff --git a/blocks/task1/maps/level3/image_input/30.jpg b/blocks/task1/maps/level3/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe1454526f72901df88f2ca2a1d65a31ec789140 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5439f9912971053729e007a052c3c502ae4f1f85e3948d37c7f8ac7c2e584929 +size 8736 diff --git a/blocks/task1/maps/level3/image_input/31.jpg b/blocks/task1/maps/level3/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28559274feb3adf4657587141775522089a9fc14 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3391b2a4d8a0d117d608c093c5ce82ec5907c8f0a56e8b29618ce7e8b5a1f573 +size 9887 diff --git a/blocks/task1/maps/level3/image_input/32.jpg b/blocks/task1/maps/level3/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1920650220cdf3d69d1e3ba2caf24b9f4d342a0 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb16964c9339dc87485a672349cf45f6cd7dafa4f35aadc81a27f2f95329800 +size 10376 diff --git a/blocks/task1/maps/level3/image_input/33.jpg b/blocks/task1/maps/level3/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e9aa1a683d370dbbcd5ac9812e45e4d38892456 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb90141cc9cd12660ed01c40b72951491062ec75ed64cfcd933c35da1034e3c5 +size 8629 diff --git a/blocks/task1/maps/level3/image_input/34.jpg b/blocks/task1/maps/level3/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..392ffb80f02119d2639b884ff6cbc8f9a672c589 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b0478d01423d70da34a588d620d31968e65947146c11ecff9afbbc4fe86f9c +size 10244 diff --git a/blocks/task1/maps/level3/image_input/35.jpg b/blocks/task1/maps/level3/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27325cde713c09b8fcffea582b8a2e9fe7a2456 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6779673d229c436092a26b7a7f70a944034700103360006f1acd2dcc80e6381 +size 9449 diff --git a/blocks/task1/maps/level3/image_input/36.jpg b/blocks/task1/maps/level3/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60bdf2154d52e3a8ace37d830298e69c797397cb --- /dev/null +++ b/blocks/task1/maps/level3/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd26691fe31c41b3550c778c2adb56eba6a69674168f8c586a982dbc5a2ecaa +size 10571 diff --git a/blocks/task1/maps/level3/image_input/37.jpg b/blocks/task1/maps/level3/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..210f07b36d6dc264bf04465e4701d2205afbf648 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9757da01301117ed0d8a528d40414189cb67c8849202af44cf134e3b774b29e +size 8654 diff --git a/blocks/task1/maps/level3/image_input/38.jpg b/blocks/task1/maps/level3/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7177360573ebceb434957ebe6aa32784c79621b5 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4746c4cea51439b406188ef48cdbb931cb89480ce7587249f0d3010d53c005 +size 10407 diff --git a/blocks/task1/maps/level3/image_input/39.jpg b/blocks/task1/maps/level3/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fc54cdc7ada6ebdcad23925b0dc9abb097898a0 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e6d3ab4dec8bcecd586c424d7acd9089982400e96de1fdc8407bc56e399977d +size 10254 diff --git a/blocks/task1/maps/level3/image_input/4.jpg b/blocks/task1/maps/level3/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22e80387e16d6309221a3c5960355d80ee42b183 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf688e80a69489dab5c02c7ba78efc313a9ef7eec54f955b89b22ded9f8c783 +size 10200 diff --git a/blocks/task1/maps/level3/image_input/40.jpg b/blocks/task1/maps/level3/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bab7ecaae315dd10a9b43e0c72af49da7d12a01 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da01b1aae86f6977d4cc9a7a5444e90713bf410dc22a962acb1f0f70b5a1a1d3 +size 8731 diff --git a/blocks/task1/maps/level3/image_input/41.jpg b/blocks/task1/maps/level3/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65ae2969eb12266cdc0e095942fc4e893de8a5f6 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b934b0b73fd53c66ede86138bf0a173ab9ffcf81a4d60259f65a413da57e8edd +size 8546 diff --git a/blocks/task1/maps/level3/image_input/42.jpg b/blocks/task1/maps/level3/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21e95b8e8358de4899654d0ee44bc7b630e6c017 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16bbf31e502cad4101223d7bec561ff7dfb8e2be926a8aa4de7076ecf8e0f1be +size 10252 diff --git a/blocks/task1/maps/level3/image_input/43.jpg b/blocks/task1/maps/level3/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc9613dc7c471c52aea0f4e68cc7315376dae171 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016fc7e7a6cc6e5419bda687d6125cb70fa6922b65570cffdacea358d17f8b08 +size 8484 diff --git a/blocks/task1/maps/level3/image_input/44.jpg b/blocks/task1/maps/level3/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6cb1cc4f03cb4afe8bfda0d61d1f1f10d573f94 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474b9970aea51d3bac5e95c0e235b726884ae6e30bca1df485ba2d22a545471b +size 9676 diff --git a/blocks/task1/maps/level3/image_input/45.jpg b/blocks/task1/maps/level3/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c6606d7581a1867d91db3758a369dba473e65ee --- /dev/null +++ b/blocks/task1/maps/level3/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f093467bfb1985a5f1abafcaa693278c172e4c4c4ad4975ce19ff7d6f4f7e69f +size 10340 diff --git a/blocks/task1/maps/level3/image_input/46.jpg b/blocks/task1/maps/level3/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..265ba54e68b9f436d8954043340a710d586d9a54 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07826c5d1648e5a494eed17b4765476816b490dc19c7ef41aadab0ce26f30ba1 +size 10124 diff --git a/blocks/task1/maps/level3/image_input/47.jpg b/blocks/task1/maps/level3/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79e9b77706dbc55cb82bba2bfc34d5908c00943c --- /dev/null +++ b/blocks/task1/maps/level3/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9116da8d1a8db825d80ed84f2fa46eb77adcfa270ef2b3927869d6c74ad07ecb +size 9129 diff --git a/blocks/task1/maps/level3/image_input/48.jpg b/blocks/task1/maps/level3/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..392ffb80f02119d2639b884ff6cbc8f9a672c589 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b0478d01423d70da34a588d620d31968e65947146c11ecff9afbbc4fe86f9c +size 10244 diff --git a/blocks/task1/maps/level3/image_input/49.jpg b/blocks/task1/maps/level3/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f47a4f8d6a3bde7e3810696aaf8ca09ffa01a08 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9794f686a0f0acb26e0f03ad5cb7a7916c17d4d33f537e39a463fb896c92e9d7 +size 9668 diff --git a/blocks/task1/maps/level3/image_input/5.jpg b/blocks/task1/maps/level3/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bab7ecaae315dd10a9b43e0c72af49da7d12a01 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da01b1aae86f6977d4cc9a7a5444e90713bf410dc22a962acb1f0f70b5a1a1d3 +size 8731 diff --git a/blocks/task1/maps/level3/image_input/50.jpg b/blocks/task1/maps/level3/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58244f52732062f95985c24a777f2feb611bc71d --- /dev/null +++ b/blocks/task1/maps/level3/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca8e865dd491536142a091c0c981e3d736a58f3ce3d39f62ee1926bae93415b +size 9792 diff --git a/blocks/task1/maps/level3/image_input/51.jpg b/blocks/task1/maps/level3/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e374580a55f28a14e7729f5d75f30800cf52951 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3850d743552ec1b97c635e5bf02dd62418c162160f854434d5807fd9986bc41 +size 8526 diff --git a/blocks/task1/maps/level3/image_input/52.jpg b/blocks/task1/maps/level3/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..897f61ede3a90807e92bfe77cfe54ea15660442a --- /dev/null +++ b/blocks/task1/maps/level3/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d427184774b517783f391e7f10d9d836f6de3e1869143840ee0faeb1e8db82d6 +size 9872 diff --git a/blocks/task1/maps/level3/image_input/53.jpg b/blocks/task1/maps/level3/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61d102ce233dfd5859902b7ff86e3315312fa0f1 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df80e8996a67dad445e5b61b3fcf4efcd8ad259e62b42e656a022e7828c9896 +size 9608 diff --git a/blocks/task1/maps/level3/image_input/54.jpg b/blocks/task1/maps/level3/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..802722ff569a7ed5a48672d35ba238d3fffba2ed --- /dev/null +++ b/blocks/task1/maps/level3/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a75aa95b8438073aac87cc11b0d39cb685983b20e738df7f34a3cb6ab48e60 +size 9606 diff --git a/blocks/task1/maps/level3/image_input/55.jpg b/blocks/task1/maps/level3/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7af3bcad2034c996277983de31723ea85239b8c --- /dev/null +++ b/blocks/task1/maps/level3/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace9f95c310c9f58647a41898ac56198c1552bbd651355f5f7fdbee769e50420 +size 9297 diff --git a/blocks/task1/maps/level3/image_input/56.jpg b/blocks/task1/maps/level3/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..162b009335e0d1ff67742bd832c843d543c76a0f --- /dev/null +++ b/blocks/task1/maps/level3/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1906eda11ef430aefaa06344bc546d4080263d08443eb163abd640f0192bee6c +size 8589 diff --git a/blocks/task1/maps/level3/image_input/57.jpg b/blocks/task1/maps/level3/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b09b116d7aa4874cebf289731245b542fbd7987f --- /dev/null +++ b/blocks/task1/maps/level3/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c506309a32636446e3db86b6f9f8f4b8e8e63169a6a9052054e1c2f5d824e184 +size 9952 diff --git a/blocks/task1/maps/level3/image_input/58.jpg b/blocks/task1/maps/level3/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5329ee602f1d24353a3afc4dcd71a0ea0c18a546 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a38187be4592642eff595a84a8a11ed348758a5a743b1d48ef20d36c2aa4cd +size 10205 diff --git a/blocks/task1/maps/level3/image_input/59.jpg b/blocks/task1/maps/level3/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31399e3bc0308ff27fe492e4b2bc05324a127620 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3c87c01c6b11a2992cd8147a9578a15316685db1cb4ca766b6801bb3ae30c5 +size 8659 diff --git a/blocks/task1/maps/level3/image_input/6.jpg b/blocks/task1/maps/level3/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5dfe74d314adb68c10a29aef4aa1b52291cf881 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe68d199e11d0a41662d5799a5ef68a1664962da3ea0ac48ecac298eaf541d79 +size 9471 diff --git a/blocks/task1/maps/level3/image_input/60.jpg b/blocks/task1/maps/level3/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8006e24133f11604d97f86f8d07c536d500faf74 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cdd64a3583e90b472c37a23d10638c4c6ad74a67f070fe706592938d2ffac8e +size 10503 diff --git a/blocks/task1/maps/level3/image_input/61.jpg b/blocks/task1/maps/level3/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3aaabde3ae2a18aaa4ceea2dd698a292e9f0823 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2baf791b0d4671b4f98468910d0e1ba7b26ce76a6489503202f545b9c90efd51 +size 11121 diff --git a/blocks/task1/maps/level3/image_input/62.jpg b/blocks/task1/maps/level3/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf0d739edafc40ac9bae26d68278ba42afbf63bf --- /dev/null +++ b/blocks/task1/maps/level3/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e772d9055c9d46648962489682071820a0345e76d9085459fb75b223517fe278 +size 9033 diff --git a/blocks/task1/maps/level3/image_input/63.jpg b/blocks/task1/maps/level3/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f47a4f8d6a3bde7e3810696aaf8ca09ffa01a08 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9794f686a0f0acb26e0f03ad5cb7a7916c17d4d33f537e39a463fb896c92e9d7 +size 9668 diff --git a/blocks/task1/maps/level3/image_input/64.jpg b/blocks/task1/maps/level3/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3059ad791856d34533bd8e74150e66f85c010da --- /dev/null +++ b/blocks/task1/maps/level3/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20aa50f8641277b9f61d5118a9833dd4c969205afebc88b13022c298ed08e6f +size 9276 diff --git a/blocks/task1/maps/level3/image_input/65.jpg b/blocks/task1/maps/level3/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89b9f98ef7bc857d0fb13eeade866c3ca843e973 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5daff7f3b4ae190f0a04fd28a5e69f7daaeeaa7bc875e94d4b090565250caa14 +size 9222 diff --git a/blocks/task1/maps/level3/image_input/66.jpg b/blocks/task1/maps/level3/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f47a4f8d6a3bde7e3810696aaf8ca09ffa01a08 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9794f686a0f0acb26e0f03ad5cb7a7916c17d4d33f537e39a463fb896c92e9d7 +size 9668 diff --git a/blocks/task1/maps/level3/image_input/67.jpg b/blocks/task1/maps/level3/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..897f61ede3a90807e92bfe77cfe54ea15660442a --- /dev/null +++ b/blocks/task1/maps/level3/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d427184774b517783f391e7f10d9d836f6de3e1869143840ee0faeb1e8db82d6 +size 9872 diff --git a/blocks/task1/maps/level3/image_input/68.jpg b/blocks/task1/maps/level3/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3869c201cdd63dffb12501b38631a91a696101e4 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f95b87e0a8fc9df36b795b8fbd0c97d05a4e371036794893fc8baae99437b574 +size 9679 diff --git a/blocks/task1/maps/level3/image_input/69.jpg b/blocks/task1/maps/level3/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..632d14d6b0c92f3be38a0bf08cf48bde578cddc7 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de5407a3ac710afa7b1f37a9a51f4f560469e4ba97abd063f87caf18dd4a8b5 +size 9764 diff --git a/blocks/task1/maps/level3/image_input/7.jpg b/blocks/task1/maps/level3/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04fa681ffd0927f0ac6833d9de1ef08b5a855d75 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85674c3df63f14f3f1e0815a817ff231ea052764ac48ec5fd82311c9bffcf31e +size 9300 diff --git a/blocks/task1/maps/level3/image_input/70.jpg b/blocks/task1/maps/level3/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47177ad2986f2b125bf9a3b9d9b4cda1ac7f87b8 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2194478084ff499689cd3042b41a7b6fc5985c594bfe419b9e99afde2be3bcfa +size 10215 diff --git a/blocks/task1/maps/level3/image_input/71.jpg b/blocks/task1/maps/level3/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dbe8838821e7112e6cf3f321473cc90a57518ad --- /dev/null +++ b/blocks/task1/maps/level3/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d10219e7c7c8c3dad76a3f562d4a2c19c813bc04694deab999be6bd8af347ea +size 10125 diff --git a/blocks/task1/maps/level3/image_input/72.jpg b/blocks/task1/maps/level3/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0960def0185a1ad78a8def2839d158aa7cbe4fdc --- /dev/null +++ b/blocks/task1/maps/level3/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe448048239a7229d845337debe3f916be4553cbe0540d8fa262017783998079 +size 10714 diff --git a/blocks/task1/maps/level3/image_input/73.jpg b/blocks/task1/maps/level3/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc9613dc7c471c52aea0f4e68cc7315376dae171 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016fc7e7a6cc6e5419bda687d6125cb70fa6922b65570cffdacea358d17f8b08 +size 8484 diff --git a/blocks/task1/maps/level3/image_input/74.jpg b/blocks/task1/maps/level3/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf7ec488c1ab6e30cf94409f768715cb1f461140 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1b11f3f134a0ac40077998f81df0c474247d1a9e605b19c24d2b99d5fa101f +size 8969 diff --git a/blocks/task1/maps/level3/image_input/75.jpg b/blocks/task1/maps/level3/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0795ab5c7ff09e5e94ff6086ed20ef426e8a6471 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a75dd7be6ee103c2b4494c13b4838f503d21a194d17b5cfacf90a40a2a4e6af +size 8478 diff --git a/blocks/task1/maps/level3/image_input/76.jpg b/blocks/task1/maps/level3/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b062f9de9e935a854319dd370c5d167edf54855e --- /dev/null +++ b/blocks/task1/maps/level3/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8fdd9504ac800ba62f4ca41e6e15305ba55603332fd7259616d032f60ee21ab +size 9783 diff --git a/blocks/task1/maps/level3/image_input/77.jpg b/blocks/task1/maps/level3/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3089632f463ac1a4908b94212c859485cc016d5 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea9e583c9f1b84141992a0571418cf1ab6505f1e945fef2a8747032d1e89b13 +size 9787 diff --git a/blocks/task1/maps/level3/image_input/78.jpg b/blocks/task1/maps/level3/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f993b15450f71bdaf4e37a7e1b0cdd2e81397a01 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d97abddbcf9098b77627ee349f1d60f759a651c56f1ad7ddcf790bae280032e +size 9349 diff --git a/blocks/task1/maps/level3/image_input/79.jpg b/blocks/task1/maps/level3/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..920ce360781435d1b193189cb74ebc580bad5443 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afd3a5e44aa2cd4418ad01662f907a9b5022df23bd48e4273c095a495530f9f9 +size 9733 diff --git a/blocks/task1/maps/level3/image_input/8.jpg b/blocks/task1/maps/level3/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48f367ef740c1c836d99dde9a925989547b391a4 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ecfe1004f6f711ff70556f2cce3c378eb678b039f74f193a4aeb694a7ef728 +size 10256 diff --git a/blocks/task1/maps/level3/image_input/80.jpg b/blocks/task1/maps/level3/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b991af5c16b564d67de8b396395a640baab5b4cd --- /dev/null +++ b/blocks/task1/maps/level3/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ca61169fb68c45a68d0aac1d1f87b562fc03856f069706cd354c097b571a55 +size 9325 diff --git a/blocks/task1/maps/level3/image_input/81.jpg b/blocks/task1/maps/level3/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f105cf249e56d2e4512e93549a32b2ce1bddc4bd --- /dev/null +++ b/blocks/task1/maps/level3/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a18f3feb0b506d5886509afc739371efd24c6e3ff60e7db8903efb489e439d6 +size 9842 diff --git a/blocks/task1/maps/level3/image_input/82.jpg b/blocks/task1/maps/level3/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bab7ecaae315dd10a9b43e0c72af49da7d12a01 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da01b1aae86f6977d4cc9a7a5444e90713bf410dc22a962acb1f0f70b5a1a1d3 +size 8731 diff --git a/blocks/task1/maps/level3/image_input/83.jpg b/blocks/task1/maps/level3/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd3f0339249d656a52f10d25f2ce4cdbe8c8e27a --- /dev/null +++ b/blocks/task1/maps/level3/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52e039e5e687d705ff55635074570d14ab583a779b7767f10ce8c15ba0e1a09 +size 9794 diff --git a/blocks/task1/maps/level3/image_input/84.jpg b/blocks/task1/maps/level3/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6f170b30c3be858f5a6279b1be2da925e6ac41e --- /dev/null +++ b/blocks/task1/maps/level3/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea0b0cfc5c2023669df16080ae30e89f55d52610457d1972cea3680064109f2 +size 9123 diff --git a/blocks/task1/maps/level3/image_input/85.jpg b/blocks/task1/maps/level3/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3f7086096597e95512396083834d00b23602a63 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac895563d6cedbbe50a8d56f4e9177dc70caadb95ffec007be824d64bdc8b75 +size 8709 diff --git a/blocks/task1/maps/level3/image_input/86.jpg b/blocks/task1/maps/level3/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..053204ad0efad5b2182a7ec082fddb8a9ebeb7d5 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b250ac15850d0e08e2a5104d79b99ff18f7e7a377f02d39963db5f64cab7fe0d +size 10312 diff --git a/blocks/task1/maps/level3/image_input/87.jpg b/blocks/task1/maps/level3/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66260f50755f321230841aab7913cd6e20602714 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7496aceb0b709fce56cedda7881de1a66e0df7f5431b472ea857fe3a4f61d0 +size 10363 diff --git a/blocks/task1/maps/level3/image_input/88.jpg b/blocks/task1/maps/level3/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37486fcf8838f77eb09eb135d6b04652daafb8c3 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac5bc5b2310a4acbeb5d1d6b792b75f9f9674623069e2e4f8abbbf197a9e519 +size 9493 diff --git a/blocks/task1/maps/level3/image_input/89.jpg b/blocks/task1/maps/level3/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f10d390b73eb15ca4dd071f9803dea74f8b8fe1 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc98114e121a15053b117a2a0f891f201fa10539f5586b27a8d8cd9403c9a3a0 +size 9873 diff --git a/blocks/task1/maps/level3/image_input/9.jpg b/blocks/task1/maps/level3/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0960def0185a1ad78a8def2839d158aa7cbe4fdc --- /dev/null +++ b/blocks/task1/maps/level3/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe448048239a7229d845337debe3f916be4553cbe0540d8fa262017783998079 +size 10714 diff --git a/blocks/task1/maps/level3/image_input/90.jpg b/blocks/task1/maps/level3/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f771eb1a1a2dbf15a307d82b1d76d1cbc01c4f9c --- /dev/null +++ b/blocks/task1/maps/level3/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718dedc667517bd09fc4e9d4d98ac9f1de82bf4bbf9030ba9d4a92d65be413a5 +size 10093 diff --git a/blocks/task1/maps/level3/image_input/91.jpg b/blocks/task1/maps/level3/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c5f0cf5867f6d1055b43de97dacd03159b7214b --- /dev/null +++ b/blocks/task1/maps/level3/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399c98358e4cc246434ab7fe3a318847bd4ea0ab6a6bfd8443d33e6f0f419438 +size 9400 diff --git a/blocks/task1/maps/level3/image_input/92.jpg b/blocks/task1/maps/level3/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..416b66bdc979f19219f65cd10f10b95b4421cef4 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aa815714de2d7fc9f95346a9adef20977c2e701d7133c43dddcf6634a80ed45 +size 10656 diff --git a/blocks/task1/maps/level3/image_input/93.jpg b/blocks/task1/maps/level3/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9823b5651bc8372117f567645c7d296638a5b3e --- /dev/null +++ b/blocks/task1/maps/level3/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02846b606dcc7800f429a44e734fd04b785e151327a9190d794b5a2a85eba5c +size 8733 diff --git a/blocks/task1/maps/level3/image_input/94.jpg b/blocks/task1/maps/level3/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fac492fb514c0ba131741afdd72d1404ead0cfa --- /dev/null +++ b/blocks/task1/maps/level3/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb39d174a3f61fc277388e579aff50ac08028ebf00d0c238070553f9a2d2964 +size 8584 diff --git a/blocks/task1/maps/level3/image_input/95.jpg b/blocks/task1/maps/level3/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..deb45c5708e6edab2b47e7a0665b34a7b1c4c370 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8098d20395168f9080317dee88e27b1de53d9a6476fa4d86770b4dee6ddf705 +size 10011 diff --git a/blocks/task1/maps/level3/image_input/96.jpg b/blocks/task1/maps/level3/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f10d390b73eb15ca4dd071f9803dea74f8b8fe1 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc98114e121a15053b117a2a0f891f201fa10539f5586b27a8d8cd9403c9a3a0 +size 9873 diff --git a/blocks/task1/maps/level3/image_input/97.jpg b/blocks/task1/maps/level3/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12ba489f4f790acd6ba03bf48b0df5481bbaa6d3 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7355d1c6eb4cd0fd09ca80fbb4f7543de752f3d5e720cfd7ea51c2994783c552 +size 10392 diff --git a/blocks/task1/maps/level3/image_input/98.jpg b/blocks/task1/maps/level3/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba3361762629df5fc68c3d02dc6fc910a8e58914 --- /dev/null +++ b/blocks/task1/maps/level3/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd376bba1cab73fcf8d092ad0ee7117f4ef8b3a1099c4ad8aba4f07ab2e16732 +size 9926 diff --git a/blocks/task1/maps/level3/image_input/99.jpg b/blocks/task1/maps/level3/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3973f249c44762ded648fc25f6a02f89cf92806f --- /dev/null +++ b/blocks/task1/maps/level3/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6ed71808cbb546f42b4f62b6a91bf1fb355319c8ffc96cc28e51d912a9ca3c +size 9961 diff --git a/blocks/task1/maps/level3/pure_text_rep_input/0 b/blocks/task1/maps/level3/pure_text_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..224de52148811a91d46adfaf52fe4e94373e4667 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/0 @@ -0,0 +1 @@ +- Stack with purple block, green block, red block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/1 b/blocks/task1/maps/level3/pure_text_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..81fccb9e2fb245ff45904f2942d7936477d1bf1d --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/1 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/10 b/blocks/task1/maps/level3/pure_text_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..5fa96acb40a19d1d6443e46b3d836aa3f04e6e80 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/10 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/11 b/blocks/task1/maps/level3/pure_text_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..455c02541b23be0a9a24e459273e37f0d84fe560 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/11 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/12 b/blocks/task1/maps/level3/pure_text_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..67c1237a60b49a68fa881a50e03e37d4f96788e1 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/12 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/13 b/blocks/task1/maps/level3/pure_text_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..5fa96acb40a19d1d6443e46b3d836aa3f04e6e80 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/13 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/14 b/blocks/task1/maps/level3/pure_text_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..04ed3704a0e7ea1c8baac866f7f51e4c3ca8ae28 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/14 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/15 b/blocks/task1/maps/level3/pure_text_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..758df9cb2f9a8ad71d9e8915dd3d94f67fabb884 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/15 @@ -0,0 +1 @@ +- Stack with yellow block, red block, green block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/16 b/blocks/task1/maps/level3/pure_text_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..a9ad5a9187997428c4237ed83a08734a1a20f2ac --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/16 @@ -0,0 +1 @@ +- Stack with blue block, purple block, green block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/17 b/blocks/task1/maps/level3/pure_text_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..99c312c76d8a4c93fc7eec45d5ad76e685b335f6 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/17 @@ -0,0 +1 @@ +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/18 b/blocks/task1/maps/level3/pure_text_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..6b4057a6dbf6c5b55f9b32257591ee3b3f94db71 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/18 @@ -0,0 +1 @@ +- Stack with purple block, green block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/19 b/blocks/task1/maps/level3/pure_text_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..fede5bd3e43f7bbe7a6f749627d3ba5b6f362664 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/19 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/2 b/blocks/task1/maps/level3/pure_text_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..80bfd6a8b058d402e3bc693f16535db229229a7e --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/2 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block +- Stack with red block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/20 b/blocks/task1/maps/level3/pure_text_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..14e5f5bd55c08dd94380b8cd0a77091b761c7656 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/20 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/21 b/blocks/task1/maps/level3/pure_text_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..1b44042b988689941577a3f41cee141dc3e6c920 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/21 @@ -0,0 +1 @@ +- Stack with orange block, green block, red block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/22 b/blocks/task1/maps/level3/pure_text_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..f5c56fdcbf724af9353b0215de7e6cb1de1779ae --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/22 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/23 b/blocks/task1/maps/level3/pure_text_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..fd944128f208c1fbc514ba37210f106a8c31d384 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/23 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with red block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/24 b/blocks/task1/maps/level3/pure_text_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..c5382cf63d1b4dcd965abf39a5f68c77d640c16b --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/24 @@ -0,0 +1 @@ +- Stack with yellow block, blue block, green block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/25 b/blocks/task1/maps/level3/pure_text_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..bf12f89a4eb67799fb28a55dad986fc04b908f2f --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/25 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/26 b/blocks/task1/maps/level3/pure_text_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..ed78694890fa2932be11e809cd45143cd2e80127 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/26 @@ -0,0 +1 @@ +- Stack with blue block, yellow block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/27 b/blocks/task1/maps/level3/pure_text_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..775d0d64827d1878e6ffa203fa687a3a03554d01 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/27 @@ -0,0 +1 @@ +- Stack with green block, orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/28 b/blocks/task1/maps/level3/pure_text_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..974b0cc9f49bbdcfc72ba985501d7273e7daeabe --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/28 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/29 b/blocks/task1/maps/level3/pure_text_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..58bd2f4abd5c3f3f2506225fbe13c8199b18a2f6 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/29 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/3 b/blocks/task1/maps/level3/pure_text_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..937106be87ac001a16066b33db969a577f2ccc47 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/3 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/30 b/blocks/task1/maps/level3/pure_text_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..55c74398747c86eead0a73d441b120cfee64791a --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/30 @@ -0,0 +1 @@ +- Stack with red block, orange block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/31 b/blocks/task1/maps/level3/pure_text_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..02d0c2057e1d801350f3c635e756331f2960f052 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/31 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block +- Stack with purple block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/32 b/blocks/task1/maps/level3/pure_text_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..ccddbf390e61084433525d96fd464472ae3b7cb2 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/32 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/33 b/blocks/task1/maps/level3/pure_text_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..e8f271a868e3ddfe742bd39b5541e5a5fe5ba4b3 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/33 @@ -0,0 +1 @@ +- Stack with purple block, red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/34 b/blocks/task1/maps/level3/pure_text_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..9e9900a0d6976782ac1e104159de70a62b776d2c --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/34 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/35 b/blocks/task1/maps/level3/pure_text_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..e12ae7b33fdb230a5d0b3b5e155a0faa610d7d2b --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/35 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/36 b/blocks/task1/maps/level3/pure_text_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..d31a32417b78d079b040783e917cb4046999a1a6 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/36 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/37 b/blocks/task1/maps/level3/pure_text_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..cf8d9038dfa5e795aa4d01cba1f8fc9a1c28635d --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/37 @@ -0,0 +1 @@ +- Stack with green block, purple block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/38 b/blocks/task1/maps/level3/pure_text_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..5fa96acb40a19d1d6443e46b3d836aa3f04e6e80 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/38 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/39 b/blocks/task1/maps/level3/pure_text_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..f8856bdcdbcf517f9f59dac59cd16327e8be6d90 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/39 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/4 b/blocks/task1/maps/level3/pure_text_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..5f1ff35facf2da3beaa65e5e8dc45af037b97a76 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/4 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/40 b/blocks/task1/maps/level3/pure_text_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..5dedf027774128127440db2d28bc4481fe6370ec --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/40 @@ -0,0 +1 @@ +- Stack with red block, blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/41 b/blocks/task1/maps/level3/pure_text_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..073dd70b67bf910a04f953186de34e860454b2f0 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/41 @@ -0,0 +1 @@ +- Stack with yellow block, red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/42 b/blocks/task1/maps/level3/pure_text_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..09bf70a5964d228c514f2fe6afe4087bed9be54c --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/42 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block +- Stack with purple block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/43 b/blocks/task1/maps/level3/pure_text_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..3439ba615a2761ee9d3b881ec079ba94895264c2 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/43 @@ -0,0 +1 @@ +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/44 b/blocks/task1/maps/level3/pure_text_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..890bd46221431079b943cfa0606a7d0058f7635b --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/44 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block +- Stack with yellow block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/45 b/blocks/task1/maps/level3/pure_text_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..8410ff64a4a2f33bef2f7172922b340f0d058452 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/45 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/46 b/blocks/task1/maps/level3/pure_text_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..1e2b1017fdfb66b9cec643c02fdedcf5ce4d1096 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/46 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/47 b/blocks/task1/maps/level3/pure_text_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..00ffeb82d08d0e3147e3a88f06f28313b47f4747 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/47 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/48 b/blocks/task1/maps/level3/pure_text_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..9e9900a0d6976782ac1e104159de70a62b776d2c --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/48 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/49 b/blocks/task1/maps/level3/pure_text_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..2c640d746cf077ddb55561f66685c1411ec918dc --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/49 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/5 b/blocks/task1/maps/level3/pure_text_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..5dedf027774128127440db2d28bc4481fe6370ec --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/5 @@ -0,0 +1 @@ +- Stack with red block, blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/50 b/blocks/task1/maps/level3/pure_text_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..6dafa55e4dfc9342a6b899e1e8a4d34ab013ede6 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/50 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/51 b/blocks/task1/maps/level3/pure_text_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..f351c122864579a2e6e4dc95d56a107ff8745421 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/51 @@ -0,0 +1 @@ +- Stack with blue block, yellow block, red block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/52 b/blocks/task1/maps/level3/pure_text_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..87c59253f7969a789760b9f05fd6d68e98f9a7cd --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/52 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/53 b/blocks/task1/maps/level3/pure_text_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..e042c8a0926ae6f5e984b24b34652c5943a7eb9a --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/53 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with blue block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/54 b/blocks/task1/maps/level3/pure_text_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..06eb9179599c1e188d864713a1cdb4791af3b063 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/54 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/55 b/blocks/task1/maps/level3/pure_text_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..95c187231caba4ebdfb68273ba890b26d9a62171 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/55 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/56 b/blocks/task1/maps/level3/pure_text_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..93c9c1ad9203635becf5e5e07f26e64a441a05af --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/56 @@ -0,0 +1 @@ +- Stack with red block, blue block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/57 b/blocks/task1/maps/level3/pure_text_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..fede5bd3e43f7bbe7a6f749627d3ba5b6f362664 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/57 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/58 b/blocks/task1/maps/level3/pure_text_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..c9f4127d89fa8247caf05300e9047c33d67ba05d --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/58 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/59 b/blocks/task1/maps/level3/pure_text_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..b208d7bcf49a0de9b2537882d56b1d8fc0b9d676 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/59 @@ -0,0 +1 @@ +- Stack with purple block, orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/6 b/blocks/task1/maps/level3/pure_text_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..051d4a176ee673b7dda30f617524bbe7d5ecb804 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/6 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with red block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/60 b/blocks/task1/maps/level3/pure_text_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..cc9d0d3a4631abbb794cd6b3dc7801c990b72da4 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/60 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/61 b/blocks/task1/maps/level3/pure_text_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..6bb919029142c60d8de11d42b51000313fd7e5c3 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/61 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/62 b/blocks/task1/maps/level3/pure_text_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..2e85b05a6efbfd91fa4244e747c5a5147082af9d --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/62 @@ -0,0 +1 @@ +- Stack with yellow block, purple block, green block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/63 b/blocks/task1/maps/level3/pure_text_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..2c640d746cf077ddb55561f66685c1411ec918dc --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/63 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/64 b/blocks/task1/maps/level3/pure_text_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..55ae4fb45b82ecfbd085a62336a0d80448268c90 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/64 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with yellow block +- Stack with red block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/65 b/blocks/task1/maps/level3/pure_text_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..ccbf68ce7f588e6ed5194af86751e0dad8700f9a --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/65 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block +- Stack with green block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/66 b/blocks/task1/maps/level3/pure_text_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..2c640d746cf077ddb55561f66685c1411ec918dc --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/66 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/67 b/blocks/task1/maps/level3/pure_text_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..87c59253f7969a789760b9f05fd6d68e98f9a7cd --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/67 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/68 b/blocks/task1/maps/level3/pure_text_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..ed69711bc53113e359c109742f07db78f786c2da --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/68 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block +- Stack with purple block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/69 b/blocks/task1/maps/level3/pure_text_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..a95e849153b27b7fe8bceafc04f7f35359c7f369 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/69 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/7 b/blocks/task1/maps/level3/pure_text_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..aad83610f865c72a229f67b279fb55fe4d30f25b --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/7 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block +- Stack with yellow block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/70 b/blocks/task1/maps/level3/pure_text_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..8fe8dbef452dd60686452eb1f734d457386864b8 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/70 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/71 b/blocks/task1/maps/level3/pure_text_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..65fab62a3ba4312510348b8bbd49895267103e48 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/71 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/72 b/blocks/task1/maps/level3/pure_text_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..4a02ed20ac8056208408985e93992cd536a03216 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/72 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/73 b/blocks/task1/maps/level3/pure_text_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..3439ba615a2761ee9d3b881ec079ba94895264c2 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/73 @@ -0,0 +1 @@ +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/74 b/blocks/task1/maps/level3/pure_text_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..99c312c76d8a4c93fc7eec45d5ad76e685b335f6 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/74 @@ -0,0 +1 @@ +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/75 b/blocks/task1/maps/level3/pure_text_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..73f26cf00fe44d4674e5518d85bb68a15de8407f --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/75 @@ -0,0 +1 @@ +- Stack with purple block, blue block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/76 b/blocks/task1/maps/level3/pure_text_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..a1cd758accc5b7d856696db1f9c929f7f679da4d --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/76 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with blue block +- Stack with yellow block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/77 b/blocks/task1/maps/level3/pure_text_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..9536177758082efa82a771a4eab4e900129659f0 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/77 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block +- Stack with orange block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/78 b/blocks/task1/maps/level3/pure_text_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..9822899d9c4ffcc82762fc558fae73738ecbfb2d --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/78 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/79 b/blocks/task1/maps/level3/pure_text_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..949b12563fdffff58016b0850fad0786c84c8fcc --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/79 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/8 b/blocks/task1/maps/level3/pure_text_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..0f43c43486e968f41d4a64822cb0c6a655bdd60c --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/8 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/80 b/blocks/task1/maps/level3/pure_text_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..44d5612ba5fe176f4ad3e61837c944af91a4d99f --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/80 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block +- Stack with green block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/81 b/blocks/task1/maps/level3/pure_text_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..db6b23ffcf5256a58433fc792d468c9f7af3100e --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/81 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/82 b/blocks/task1/maps/level3/pure_text_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..5dedf027774128127440db2d28bc4481fe6370ec --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/82 @@ -0,0 +1 @@ +- Stack with red block, blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/83 b/blocks/task1/maps/level3/pure_text_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..ab5ad115f3db9497e22ccb948b1622c1bb8a4f98 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/83 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block +- Stack with red block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/84 b/blocks/task1/maps/level3/pure_text_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..adbd07b6762e6ad5ea6c3ceb07b4d6b8b193ce9f --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/84 @@ -0,0 +1 @@ +- Stack with orange block, red block, green block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/85 b/blocks/task1/maps/level3/pure_text_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..6e50ff7164687b5d6fcfcb5c2cc4e66a96bd29c6 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/85 @@ -0,0 +1 @@ +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/86 b/blocks/task1/maps/level3/pure_text_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..c7fc2d6bfee6248aa9c0e296608389b205c7944a --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/86 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/87 b/blocks/task1/maps/level3/pure_text_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..d4b17b79d14e3e495ca34b563a2f12724ab9d3d5 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/87 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/88 b/blocks/task1/maps/level3/pure_text_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..bd85be9f62c44b286086d94e8a15a68476d721c6 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/88 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block +- Stack with blue block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/89 b/blocks/task1/maps/level3/pure_text_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..e6d0ce89223d1a520d30cbb34e18eed962ace1f6 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/89 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/9 b/blocks/task1/maps/level3/pure_text_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..4a02ed20ac8056208408985e93992cd536a03216 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/9 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/90 b/blocks/task1/maps/level3/pure_text_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..c1cb4dd1a20ebf01078e0e4f38f4ff1222ba750e --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/90 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/91 b/blocks/task1/maps/level3/pure_text_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..7ce7840f1ca596fad72372bb804ca563c0d23e5b --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/91 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with blue block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/92 b/blocks/task1/maps/level3/pure_text_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..70d1917ec7b563d88493642e3f4f28ffcf08d37a --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/92 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/93 b/blocks/task1/maps/level3/pure_text_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..a2f3c85eb7b950e4b3f5af66855cbd9c73dfa249 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/93 @@ -0,0 +1 @@ +- Stack with purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/94 b/blocks/task1/maps/level3/pure_text_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..dbfc0911c566e1c66552a80a6ec9c8abc6fad28a --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/94 @@ -0,0 +1 @@ +- Stack with purple block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/95 b/blocks/task1/maps/level3/pure_text_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..c4f06944ab0841957fd2d618df737a0434503848 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/95 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/96 b/blocks/task1/maps/level3/pure_text_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..e6d0ce89223d1a520d30cbb34e18eed962ace1f6 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/96 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/97 b/blocks/task1/maps/level3/pure_text_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..122bba8e1f010743461be8afa801602224aca459 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/97 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level3/pure_text_rep_input/98 b/blocks/task1/maps/level3/pure_text_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..cd199939e9ca9ac0d5a8f796637b694c4b833b52 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/98 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with blue block +- Stack with red block diff --git a/blocks/task1/maps/level3/pure_text_rep_input/99 b/blocks/task1/maps/level3/pure_text_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..ace85dc3e97a3f447092934b7ec9d656d5527186 --- /dev/null +++ b/blocks/task1/maps/level3/pure_text_rep_input/99 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task1/maps/level3/table_rep_input/0 b/blocks/task1/maps/level3/table_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..39fc3bd49f6ab909fc2c8eef4d5a46c116e5174c --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/0 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | red | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/1 b/blocks/task1/maps/level3/table_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..1581b32cfb40a26322d064b35f2058a40df478c9 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/1 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | red | blue | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/10 b/blocks/task1/maps/level3/table_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..c768f7d60374764ac7dfee5506e9e9746d56f878 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/10 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | orange | red | diff --git a/blocks/task1/maps/level3/table_rep_input/11 b/blocks/task1/maps/level3/table_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..d59e879f6b86c9b45b87d10ebfe311eec017e290 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/11 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | blue | orange | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/12 b/blocks/task1/maps/level3/table_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..3d43637a2e38278a84b242372cab03e2f81d1592 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/12 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | green | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/13 b/blocks/task1/maps/level3/table_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..c768f7d60374764ac7dfee5506e9e9746d56f878 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/13 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | orange | red | diff --git a/blocks/task1/maps/level3/table_rep_input/14 b/blocks/task1/maps/level3/table_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..d7f94a745e6fb7ba356b8d9d5be4f1a8c93318ec --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/14 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task1/maps/level3/table_rep_input/15 b/blocks/task1/maps/level3/table_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..fee00e9d84227dbdc80dbcd5e54a025bd1a2f4fc --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/15 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | green | +Level 2 | red | +Level 1 | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/16 b/blocks/task1/maps/level3/table_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..7adc2f62a9482b66c52588302fea90e6dbd18c3b --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/16 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | green | +Level 2 | purple | +Level 1 | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/17 b/blocks/task1/maps/level3/table_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..7dd083bda251c428dfc0d0ddfd6178d3406ba036 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/17 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | purple | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/18 b/blocks/task1/maps/level3/table_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..16d807ae71c8ca6a338d2528d0f94ff7a8fea1b7 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/18 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | blue | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/19 b/blocks/task1/maps/level3/table_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..597b967998819dd1d5b30343d440076fd57a5a90 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/19 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | green | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/2 b/blocks/task1/maps/level3/table_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..8e543d18a068d94675c829425b41fddb78236016 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/2 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | yellow | blue | red | diff --git a/blocks/task1/maps/level3/table_rep_input/20 b/blocks/task1/maps/level3/table_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..185f46d26daa763cf1f42a97a31ca88c9756a40b --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/20 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | orange | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/21 b/blocks/task1/maps/level3/table_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..12e40114ed86ebc3a1bd9da08fa3e55b67c6066c --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/21 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | red | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task1/maps/level3/table_rep_input/22 b/blocks/task1/maps/level3/table_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..06a3477900622a628e1e6d170f7a4fd0ce8b71db --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/22 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | red | orange | diff --git a/blocks/task1/maps/level3/table_rep_input/23 b/blocks/task1/maps/level3/table_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..6d3dbe6d40a33741c53b3460998dd60abd06a03a --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/23 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | purple | blue | red | diff --git a/blocks/task1/maps/level3/table_rep_input/24 b/blocks/task1/maps/level3/table_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..3678ec4601722d79a3e9454028ce4a3a4b5670a7 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/24 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | green | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/25 b/blocks/task1/maps/level3/table_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..6a11911f8085dee150dde442566d962b8d7fd52a --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/25 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | yellow | orange | diff --git a/blocks/task1/maps/level3/table_rep_input/26 b/blocks/task1/maps/level3/table_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..6c6a092d36592412f4920013f70bb93d610d7870 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/26 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | orange | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/27 b/blocks/task1/maps/level3/table_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..e89426e776505e7d3640d72ca0df36de47075b56 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/27 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | blue | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task1/maps/level3/table_rep_input/28 b/blocks/task1/maps/level3/table_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..e1ba4272362a7b780dfa66fe1df44ae48bc20858 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/28 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | orange | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/29 b/blocks/task1/maps/level3/table_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..43eec58798f710acb47616775df31abc19a88794 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/29 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | green | purple | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/3 b/blocks/task1/maps/level3/table_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..e4e4d09e4607ac368fb9d81a36f41ff23ca7a5df --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/3 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | green | red | diff --git a/blocks/task1/maps/level3/table_rep_input/30 b/blocks/task1/maps/level3/table_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..b081ed35649093f1a202dd41a8880ba30bc76189 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/30 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | purple | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task1/maps/level3/table_rep_input/31 b/blocks/task1/maps/level3/table_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..8fc4383d9e068d5e3b9d0a637321edccdcc6c965 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/31 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | blue | yellow | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/32 b/blocks/task1/maps/level3/table_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..a1202da88bacbe1fbd0076d304966676829e848f --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/32 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | green | red | diff --git a/blocks/task1/maps/level3/table_rep_input/33 b/blocks/task1/maps/level3/table_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..8f2c30d7c8101db6e4329c630994f005237b44f6 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/33 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | orange | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/34 b/blocks/task1/maps/level3/table_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..d9d2465bf29b23cb7cb306be09ccc32bf2cb9108 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/34 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | red | green | diff --git a/blocks/task1/maps/level3/table_rep_input/35 b/blocks/task1/maps/level3/table_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..fb829e41fe8b302d91a2932ccc04f31f0aeb895c --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/35 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | purple | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/36 b/blocks/task1/maps/level3/table_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..d8a2977fe081a7bef5ae76e324f145a6b4c37ec4 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/36 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/37 b/blocks/task1/maps/level3/table_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..b2b7e802107f6d0c6a120f13833d405e3db76cc1 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/37 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | yellow | +Level 2 | purple | +Level 1 | green | diff --git a/blocks/task1/maps/level3/table_rep_input/38 b/blocks/task1/maps/level3/table_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..c768f7d60374764ac7dfee5506e9e9746d56f878 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/38 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | orange | red | diff --git a/blocks/task1/maps/level3/table_rep_input/39 b/blocks/task1/maps/level3/table_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..ef51267ce84c272c0084ed14863120ac6d55f901 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/39 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | red | purple | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/4 b/blocks/task1/maps/level3/table_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..fe38876eb8b1cafe3951b9510fdd74e8062c452e --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/4 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task1/maps/level3/table_rep_input/40 b/blocks/task1/maps/level3/table_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..cdc7cecfbe24b93874db1239aa013ab52d65b7ad --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/40 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | purple | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task1/maps/level3/table_rep_input/41 b/blocks/task1/maps/level3/table_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..2f96a53f179d733c150b8e2e46f487ff1883f04f --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/41 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | purple | +Level 2 | red | +Level 1 | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/42 b/blocks/task1/maps/level3/table_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..d20cfb7db6765c9ba2b81f1813d73a06ce2c8279 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/42 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | red | orange | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/43 b/blocks/task1/maps/level3/table_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..5646a0b9cc911686878a8e405edb3242aa745e8e --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/43 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | orange | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task1/maps/level3/table_rep_input/44 b/blocks/task1/maps/level3/table_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..be3f7d1abe5d3c470fa788593341588a24adbf4f --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/44 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | red | green | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/45 b/blocks/task1/maps/level3/table_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..6196dc94977a77f9089e3e4991ceb038b4f479d2 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/45 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | orange | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/46 b/blocks/task1/maps/level3/table_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..ec7d84f58de8b1d6d1d7c6b67d9a030db6b5fbad --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/46 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | purple | red | diff --git a/blocks/task1/maps/level3/table_rep_input/47 b/blocks/task1/maps/level3/table_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..f9d7798897aec12a3f128307964331798435d558 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/47 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | orange | blue | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/48 b/blocks/task1/maps/level3/table_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..d9d2465bf29b23cb7cb306be09ccc32bf2cb9108 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/48 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | red | green | diff --git a/blocks/task1/maps/level3/table_rep_input/49 b/blocks/task1/maps/level3/table_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..6696e5da3927bff6755d10bd5805c5d19fdedcf2 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/49 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | blue | green | diff --git a/blocks/task1/maps/level3/table_rep_input/5 b/blocks/task1/maps/level3/table_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..cdc7cecfbe24b93874db1239aa013ab52d65b7ad --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/5 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | purple | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task1/maps/level3/table_rep_input/50 b/blocks/task1/maps/level3/table_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..676df7d5e6f421e2fc1fcf3fb8eed42ec0c19990 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/50 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | blue | orange | diff --git a/blocks/task1/maps/level3/table_rep_input/51 b/blocks/task1/maps/level3/table_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..536d2edc42b2a798577d955c59b8d7e3eba749cb --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/51 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | red | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/52 b/blocks/task1/maps/level3/table_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..897d18db941a66851419e31144bde10097bbf5c2 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/52 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | green | diff --git a/blocks/task1/maps/level3/table_rep_input/53 b/blocks/task1/maps/level3/table_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..ec09d95bef8d7a3fddd385e2cf82c09ab5dc298e --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/53 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | purple | red | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/54 b/blocks/task1/maps/level3/table_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..1d71a1da840170b3f73de188f92dfc0f640bd582 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/54 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | purple | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/55 b/blocks/task1/maps/level3/table_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..3b4e84ffdb205e0d9f6bd622e8089d8ce06567df --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/55 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | orange | purple | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/56 b/blocks/task1/maps/level3/table_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..8bb681f35eef2372aa64dc72499762bdee2d1de6 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/56 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | yellow | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task1/maps/level3/table_rep_input/57 b/blocks/task1/maps/level3/table_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..597b967998819dd1d5b30343d440076fd57a5a90 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/57 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | green | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/58 b/blocks/task1/maps/level3/table_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..72d592fc85c4b50d3e484233fc537c6f4999b0cf --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/58 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | green | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/59 b/blocks/task1/maps/level3/table_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..54702540a9fc86fe853e8d6aa6f0bcd734c71f79 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/59 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | red | +Level 2 | orange | +Level 1 | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/6 b/blocks/task1/maps/level3/table_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..1900cbf53737fe3f3f60115adb85a01e928d229d --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/6 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | blue | orange | red | diff --git a/blocks/task1/maps/level3/table_rep_input/60 b/blocks/task1/maps/level3/table_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..e25ad11b7a7a7cb078ba28db17ee7f34af7ba3ec --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/60 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | orange | red | diff --git a/blocks/task1/maps/level3/table_rep_input/61 b/blocks/task1/maps/level3/table_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..3e3ed9074761a996b7946a6be53ace34d2c1e1e8 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/61 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | red | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/62 b/blocks/task1/maps/level3/table_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..82c3aa101f4208521efd0807d19cff5bd8f9abfc --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/62 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | green | +Level 2 | purple | +Level 1 | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/63 b/blocks/task1/maps/level3/table_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..6696e5da3927bff6755d10bd5805c5d19fdedcf2 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/63 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | blue | green | diff --git a/blocks/task1/maps/level3/table_rep_input/64 b/blocks/task1/maps/level3/table_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..2f8a508619272ca265a2696fdca1f43243a0a5ed --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/64 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | purple | yellow | red | diff --git a/blocks/task1/maps/level3/table_rep_input/65 b/blocks/task1/maps/level3/table_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..2ec642419d6164de00723810abc312dda078a4b8 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/65 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | yellow | purple | green | diff --git a/blocks/task1/maps/level3/table_rep_input/66 b/blocks/task1/maps/level3/table_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..6696e5da3927bff6755d10bd5805c5d19fdedcf2 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/66 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | blue | green | diff --git a/blocks/task1/maps/level3/table_rep_input/67 b/blocks/task1/maps/level3/table_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..897d18db941a66851419e31144bde10097bbf5c2 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/67 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | green | diff --git a/blocks/task1/maps/level3/table_rep_input/68 b/blocks/task1/maps/level3/table_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..0a9c26e925837fa8c22343caf5e59392ce1f83e8 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/68 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | orange | red | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/69 b/blocks/task1/maps/level3/table_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..de7bccd2d2a5418134cc256b41bab33b3afe38bb --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/69 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | yellow | green | diff --git a/blocks/task1/maps/level3/table_rep_input/7 b/blocks/task1/maps/level3/table_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..65a35b270f8abfa9e30ed3d72111545c0cdac1c7 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/7 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | orange | red | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/70 b/blocks/task1/maps/level3/table_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..3ab4ceffb305b96411d9826586d70f725ceb0677 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/70 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | red | diff --git a/blocks/task1/maps/level3/table_rep_input/71 b/blocks/task1/maps/level3/table_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..8069ac0403d8bdc7e18581a70475fe563f1830ba --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/71 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | blue | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/72 b/blocks/task1/maps/level3/table_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..150801ff7a4d37d5919e65e28c905462eaaeabf8 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/72 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | red | green | diff --git a/blocks/task1/maps/level3/table_rep_input/73 b/blocks/task1/maps/level3/table_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..5646a0b9cc911686878a8e405edb3242aa745e8e --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/73 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | orange | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task1/maps/level3/table_rep_input/74 b/blocks/task1/maps/level3/table_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..7dd083bda251c428dfc0d0ddfd6178d3406ba036 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/74 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | purple | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/75 b/blocks/task1/maps/level3/table_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..6dceb6352b4e90bec5eefd79c10c54546f420668 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/75 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | orange | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/76 b/blocks/task1/maps/level3/table_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..6e08d3cd27a067f153f1041a14ecd7a62e64df64 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/76 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | green | blue | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/77 b/blocks/task1/maps/level3/table_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..2d184aa1d8b8e08a57f514ecbaab447246d4e4f5 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/77 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | yellow | blue | orange | diff --git a/blocks/task1/maps/level3/table_rep_input/78 b/blocks/task1/maps/level3/table_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..8056ff82659429a7b6b75d6efefa10d36c2a6a4b --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/78 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | orange | blue | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/79 b/blocks/task1/maps/level3/table_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..4a7ca39549e7cd09fd6637661854e2bf4a1937ad --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/79 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | green | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/8 b/blocks/task1/maps/level3/table_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..6568ea4fb8ac04707e0767d503a253532c6c9b84 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/8 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | red | yellow | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/80 b/blocks/task1/maps/level3/table_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..06094a4fee9b40591a645f9c3694dfc1f77b5a8c --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/80 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | yellow | red | green | diff --git a/blocks/task1/maps/level3/table_rep_input/81 b/blocks/task1/maps/level3/table_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..b1e0cd7060a3d952ed6e7f0a9eeb4a9cff0765ed --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/81 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | blue | orange | diff --git a/blocks/task1/maps/level3/table_rep_input/82 b/blocks/task1/maps/level3/table_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..cdc7cecfbe24b93874db1239aa013ab52d65b7ad --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/82 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | purple | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task1/maps/level3/table_rep_input/83 b/blocks/task1/maps/level3/table_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..98f4c539f84d9861b075701a57a14c99dba37037 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/83 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | green | yellow | red | diff --git a/blocks/task1/maps/level3/table_rep_input/84 b/blocks/task1/maps/level3/table_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..1a275fe1af6fe4dab1a44a9b56b88ae009b5dfcf --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/84 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | green | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task1/maps/level3/table_rep_input/85 b/blocks/task1/maps/level3/table_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..baa0fd933a1a4d3b831d14cc69f88528a546dafc --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/85 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | blue | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task1/maps/level3/table_rep_input/86 b/blocks/task1/maps/level3/table_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..6903bb09e6bb0a255366129586d140f2996d5aca --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/86 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | purple | red | diff --git a/blocks/task1/maps/level3/table_rep_input/87 b/blocks/task1/maps/level3/table_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..8a33f1b922073886bf992fa64f7e69a17fc766d6 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/87 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | green | red | diff --git a/blocks/task1/maps/level3/table_rep_input/88 b/blocks/task1/maps/level3/table_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..914299bbe77fcc77d83660d89c34e6b395e00d76 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/88 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | yellow | green | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/89 b/blocks/task1/maps/level3/table_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..bc730627e0adfc9d2b43948b8f5b704bb3cdfbe2 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/89 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/9 b/blocks/task1/maps/level3/table_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..150801ff7a4d37d5919e65e28c905462eaaeabf8 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/9 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | red | green | diff --git a/blocks/task1/maps/level3/table_rep_input/90 b/blocks/task1/maps/level3/table_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..f8deb77164cf2c1b9d011773e963342958c16a47 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/90 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | red | orange | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/91 b/blocks/task1/maps/level3/table_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..be620c041e7c6602acc45cb9b0eff4c5a45fbe2b --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/91 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | purple | green | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/92 b/blocks/task1/maps/level3/table_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..344b6b03c18d41371c2250023dc5d8cbd9e37ab4 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/92 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | red | yellow | diff --git a/blocks/task1/maps/level3/table_rep_input/93 b/blocks/task1/maps/level3/table_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..b40c3f70d66a306c4673090b0a286dfbe5e24034 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/93 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | orange | +Level 2 | yellow | +Level 1 | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/94 b/blocks/task1/maps/level3/table_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..83dae303b1302eb9c3cfc5fbbdce3eca23752e1b --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/94 @@ -0,0 +1,4 @@ + | Stack 1 | +Level 3 | yellow | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task1/maps/level3/table_rep_input/95 b/blocks/task1/maps/level3/table_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..e1e4c3da2dcffd00ea74a85dda85e482c2095f91 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/95 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | red | yellow | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/96 b/blocks/task1/maps/level3/table_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..bc730627e0adfc9d2b43948b8f5b704bb3cdfbe2 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/96 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | blue | diff --git a/blocks/task1/maps/level3/table_rep_input/97 b/blocks/task1/maps/level3/table_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..7fd1ea048c8fa98f65d1467513c4518c3ea2c3cb --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/97 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | orange | red | diff --git a/blocks/task1/maps/level3/table_rep_input/98 b/blocks/task1/maps/level3/table_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..c597156e9cf93358baf5761110ee9f717b0c5fa3 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/98 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | green | blue | red | diff --git a/blocks/task1/maps/level3/table_rep_input/99 b/blocks/task1/maps/level3/table_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..bb488c188208d57f5c852b4f4bb98c576826ac30 --- /dev/null +++ b/blocks/task1/maps/level3/table_rep_input/99 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | yellow | green | diff --git a/blocks/task1/maps/level3/text_input/0.txt b/blocks/task1/maps/level3/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/0.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level3/text_input/1.txt b/blocks/task1/maps/level3/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/1.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/10.txt b/blocks/task1/maps/level3/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/10.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/11.txt b/blocks/task1/maps/level3/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/11.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/12.txt b/blocks/task1/maps/level3/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/12.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/13.txt b/blocks/task1/maps/level3/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/13.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/14.txt b/blocks/task1/maps/level3/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/14.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/15.txt b/blocks/task1/maps/level3/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/15.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/16.txt b/blocks/task1/maps/level3/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/16.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/17.txt b/blocks/task1/maps/level3/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/17.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/18.txt b/blocks/task1/maps/level3/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/18.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/19.txt b/blocks/task1/maps/level3/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/19.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/2.txt b/blocks/task1/maps/level3/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/2.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/20.txt b/blocks/task1/maps/level3/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/20.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/21.txt b/blocks/task1/maps/level3/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/21.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/22.txt b/blocks/task1/maps/level3/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/22.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/23.txt b/blocks/task1/maps/level3/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/23.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/24.txt b/blocks/task1/maps/level3/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/24.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/25.txt b/blocks/task1/maps/level3/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/25.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/26.txt b/blocks/task1/maps/level3/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/26.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level3/text_input/27.txt b/blocks/task1/maps/level3/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/27.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/28.txt b/blocks/task1/maps/level3/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/28.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/29.txt b/blocks/task1/maps/level3/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/29.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/3.txt b/blocks/task1/maps/level3/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/3.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/30.txt b/blocks/task1/maps/level3/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/30.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/31.txt b/blocks/task1/maps/level3/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/31.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/32.txt b/blocks/task1/maps/level3/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/32.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/33.txt b/blocks/task1/maps/level3/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/33.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/34.txt b/blocks/task1/maps/level3/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/34.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/35.txt b/blocks/task1/maps/level3/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/35.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/36.txt b/blocks/task1/maps/level3/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/36.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/37.txt b/blocks/task1/maps/level3/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/37.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/38.txt b/blocks/task1/maps/level3/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/38.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/39.txt b/blocks/task1/maps/level3/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/39.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/4.txt b/blocks/task1/maps/level3/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/4.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/40.txt b/blocks/task1/maps/level3/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/40.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/41.txt b/blocks/task1/maps/level3/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/41.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/42.txt b/blocks/task1/maps/level3/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/42.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/43.txt b/blocks/task1/maps/level3/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/43.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/44.txt b/blocks/task1/maps/level3/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/44.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/45.txt b/blocks/task1/maps/level3/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/45.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/46.txt b/blocks/task1/maps/level3/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/46.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/47.txt b/blocks/task1/maps/level3/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/47.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/48.txt b/blocks/task1/maps/level3/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/48.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/49.txt b/blocks/task1/maps/level3/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/49.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/5.txt b/blocks/task1/maps/level3/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/5.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/50.txt b/blocks/task1/maps/level3/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/50.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/51.txt b/blocks/task1/maps/level3/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/51.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/52.txt b/blocks/task1/maps/level3/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/52.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/53.txt b/blocks/task1/maps/level3/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/53.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/54.txt b/blocks/task1/maps/level3/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/54.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/55.txt b/blocks/task1/maps/level3/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/55.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/56.txt b/blocks/task1/maps/level3/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/56.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level3/text_input/57.txt b/blocks/task1/maps/level3/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/57.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/58.txt b/blocks/task1/maps/level3/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/58.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/59.txt b/blocks/task1/maps/level3/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/59.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/6.txt b/blocks/task1/maps/level3/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/6.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/60.txt b/blocks/task1/maps/level3/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/60.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/61.txt b/blocks/task1/maps/level3/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/61.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/62.txt b/blocks/task1/maps/level3/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/62.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/63.txt b/blocks/task1/maps/level3/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/63.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/64.txt b/blocks/task1/maps/level3/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/64.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/65.txt b/blocks/task1/maps/level3/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/65.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/66.txt b/blocks/task1/maps/level3/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/66.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/67.txt b/blocks/task1/maps/level3/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/67.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/68.txt b/blocks/task1/maps/level3/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/68.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/69.txt b/blocks/task1/maps/level3/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/69.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/7.txt b/blocks/task1/maps/level3/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/7.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/70.txt b/blocks/task1/maps/level3/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/70.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/71.txt b/blocks/task1/maps/level3/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/71.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/72.txt b/blocks/task1/maps/level3/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/72.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/73.txt b/blocks/task1/maps/level3/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/73.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/74.txt b/blocks/task1/maps/level3/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/74.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level3/text_input/75.txt b/blocks/task1/maps/level3/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/75.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/76.txt b/blocks/task1/maps/level3/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/76.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/77.txt b/blocks/task1/maps/level3/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/77.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/78.txt b/blocks/task1/maps/level3/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/78.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/79.txt b/blocks/task1/maps/level3/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/79.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/8.txt b/blocks/task1/maps/level3/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/8.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/80.txt b/blocks/task1/maps/level3/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/80.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/81.txt b/blocks/task1/maps/level3/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/81.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/82.txt b/blocks/task1/maps/level3/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/82.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level3/text_input/83.txt b/blocks/task1/maps/level3/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/83.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/84.txt b/blocks/task1/maps/level3/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/84.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/85.txt b/blocks/task1/maps/level3/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/85.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level3/text_input/86.txt b/blocks/task1/maps/level3/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/86.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/87.txt b/blocks/task1/maps/level3/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/87.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/88.txt b/blocks/task1/maps/level3/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/88.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/89.txt b/blocks/task1/maps/level3/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/89.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/9.txt b/blocks/task1/maps/level3/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/9.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/90.txt b/blocks/task1/maps/level3/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/90.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/91.txt b/blocks/task1/maps/level3/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/91.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/92.txt b/blocks/task1/maps/level3/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/92.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/93.txt b/blocks/task1/maps/level3/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/93.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level3/text_input/94.txt b/blocks/task1/maps/level3/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/94.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/95.txt b/blocks/task1/maps/level3/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/95.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level3/text_input/96.txt b/blocks/task1/maps/level3/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/96.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level3/text_input/97.txt b/blocks/task1/maps/level3/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/97.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level3/text_input/98.txt b/blocks/task1/maps/level3/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level3/text_input/98.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level3/text_input/99.txt b/blocks/task1/maps/level3/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level3/text_input/99.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/annotation.txt b/blocks/task1/maps/level4/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8edcde36f47d16ed793c28b3026124cd6a78fc7 --- /dev/null +++ b/blocks/task1/maps/level4/annotation.txt @@ -0,0 +1,100 @@ +purple +yellow +red +purple +yellow +orange +orange +red +orange +blue +green +red +green +yellow +orange +green +red +purple +orange +yellow +blue +green +green +green +yellow +orange +green +green +purple +orange +orange +blue +yellow +blue +orange +orange +orange +red +red +purple +purple +red +orange +purple +red +green +purple +red +yellow +red +red +orange +blue +purple +orange +yellow +red +blue +yellow +blue +blue +green +yellow +green +red +blue +purple +orange +purple +yellow +yellow +purple +orange +yellow +blue +red +red +blue +red +green +orange +red +orange +red +blue +orange +purple +orange +orange +orange +green +blue +yellow +purple +orange +purple +purple +blue +red +yellow diff --git a/blocks/task1/maps/level4/image_input/0.jpg b/blocks/task1/maps/level4/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ac8fac5296346eb6f9c42b7f13efbc16385316b --- /dev/null +++ b/blocks/task1/maps/level4/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f2caf0bdbf87ca2da5e671667b5d36221d658b8fe06c2ac87f0a651d15f19e +size 10034 diff --git a/blocks/task1/maps/level4/image_input/1.jpg b/blocks/task1/maps/level4/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..536e7a00d103f57223f3cfdce09b8cd103204200 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45be82904e04c411ce102294998a8a67aabd1c475dcd4be16e1ebedfedc6e0aa +size 9337 diff --git a/blocks/task1/maps/level4/image_input/10.jpg b/blocks/task1/maps/level4/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c0626cfe17e6c86c13ca71dc974ac9025f5ebf2 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a02ffb83e06eb750eb8175dbafe22ab4848c049984c2cd6c0f770f7402e8fd +size 9395 diff --git a/blocks/task1/maps/level4/image_input/11.jpg b/blocks/task1/maps/level4/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8072c1dc3b99e4e126e00590a2a66c97acb31a5 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b831d306f30eff220592b08ceccc6f3a8502b199bb9c01391eaab8cfc9b1456 +size 8785 diff --git a/blocks/task1/maps/level4/image_input/12.jpg b/blocks/task1/maps/level4/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1763a7e52b656a7581adca4325ea24ac9d1bcff5 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c82ed0470977e547e06109740560887ef6b61bf5c4f2a9dc899c3497e4380be +size 9547 diff --git a/blocks/task1/maps/level4/image_input/13.jpg b/blocks/task1/maps/level4/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0bd3ed64e7a696befbfb0e3ab4d02f98a72a6d4 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525aade3a8fea5fd5297fba39170a2d5249184ee4cb24d202aa94c0b84d9ca54 +size 9962 diff --git a/blocks/task1/maps/level4/image_input/14.jpg b/blocks/task1/maps/level4/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07d4e57fdc166ed4b3fe754599d7ee1afee16c06 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b746fd9d89eb81074c3183ec78377b797f9dd6e49635fcf667923dd1d7816bf +size 10027 diff --git a/blocks/task1/maps/level4/image_input/15.jpg b/blocks/task1/maps/level4/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76546a104088053c8c1b0ba5e6aca6185559b273 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac64a1670879c7738b471480f3b48165e22aa47d05aa8e1f89fec53d0653fc4 +size 10081 diff --git a/blocks/task1/maps/level4/image_input/16.jpg b/blocks/task1/maps/level4/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf57d5033bb1f5bf945c59f4ce4a41bf36a283f6 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8cbabad26d620b80da74cebd55e3510f43e47273321ed10f05437e467c5ab6 +size 9548 diff --git a/blocks/task1/maps/level4/image_input/17.jpg b/blocks/task1/maps/level4/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2868459a6d8fdcd3f90c46979f22313fc60decb9 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfe27cc7f9dc1b549053a0e3a6fa587c42b9c4a738f2cc9c101acc03e8fcad8 +size 9877 diff --git a/blocks/task1/maps/level4/image_input/18.jpg b/blocks/task1/maps/level4/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4afdc822ec8b61e84608926e2cfe1b8bf959af66 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525ebfe5339dc24dc3ad505dd019265303ac28cc3135419aa45d739b8ced0452 +size 9575 diff --git a/blocks/task1/maps/level4/image_input/19.jpg b/blocks/task1/maps/level4/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a40cf1b288650134a60e56eb590ac60dab03488d --- /dev/null +++ b/blocks/task1/maps/level4/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f0a8aabf003e39523c8b0af081dd376f6a75d7be2c44f647b034f5567bb033e +size 9010 diff --git a/blocks/task1/maps/level4/image_input/2.jpg b/blocks/task1/maps/level4/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c96a6d05fcdfa1723cc7188200928c7d5113083f --- /dev/null +++ b/blocks/task1/maps/level4/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14d98d9f05a124ff5d0692ba2d616d542f510b6b4f2080ed42a6782e269cb1b +size 9828 diff --git a/blocks/task1/maps/level4/image_input/20.jpg b/blocks/task1/maps/level4/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0887ecfb1f2413933906f6b2ef9f86477a1f1e90 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2b9b514623f755bbe17d57bacacb46df3c75d71f512c571487a0bbd0688d9c +size 10173 diff --git a/blocks/task1/maps/level4/image_input/21.jpg b/blocks/task1/maps/level4/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ffeccbd430c4b4f2cdb019dfa6482902fd2a462 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c49c5c019ec7b088299d0eccfc6af43136b5c7297595ff7dbed26749cbe1d88 +size 10031 diff --git a/blocks/task1/maps/level4/image_input/22.jpg b/blocks/task1/maps/level4/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4497b02188f2ca994595e49789da79bb4865e449 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b1b13c561892abfb7454bfb51781ca2c724016d048ea24d5c4f3d84cf5c795 +size 9589 diff --git a/blocks/task1/maps/level4/image_input/23.jpg b/blocks/task1/maps/level4/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91e00b9b53165200832040353f57a53c0a3b4f9a --- /dev/null +++ b/blocks/task1/maps/level4/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ef0d847c8ba116f73fa2aa5b130d055d0d3b354ba8b675bd186b8b8c282b75 +size 10832 diff --git a/blocks/task1/maps/level4/image_input/24.jpg b/blocks/task1/maps/level4/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c696c992b13d95d5d505c01dc3d8169787a047ee --- /dev/null +++ b/blocks/task1/maps/level4/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8691c7295eaf51d70d92bb22882d1c4baa4e9f6a3c04d726aa07e74ac61da1f3 +size 10321 diff --git a/blocks/task1/maps/level4/image_input/25.jpg b/blocks/task1/maps/level4/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8771c04eea8b70c19852393065449d6d8643d6bd --- /dev/null +++ b/blocks/task1/maps/level4/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e44c669cd27c3e6e9816b6f6c356789e486da8fbaacad7b89c4501c978668e +size 10029 diff --git a/blocks/task1/maps/level4/image_input/26.jpg b/blocks/task1/maps/level4/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..857e83694990864c2dd46e8c5808b1318c5a9d79 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33148e2031b86792601fd4db5451d3091762297d0bb77798518552e4ee1fd4a2 +size 9796 diff --git a/blocks/task1/maps/level4/image_input/27.jpg b/blocks/task1/maps/level4/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..697867330a461163a8f8398c592c8b73a0223be9 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627ec3b2ee7c943970d517f15afb632811dcd9ad7349881d3ff7a862618226c +size 10138 diff --git a/blocks/task1/maps/level4/image_input/28.jpg b/blocks/task1/maps/level4/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5146ddc432f75c9f256fa619033bdcfb84ba3fc --- /dev/null +++ b/blocks/task1/maps/level4/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdbb2c65013bf817002f75b403133dadcbfa0053a9bee136b9da8312f0ebc657 +size 9310 diff --git a/blocks/task1/maps/level4/image_input/29.jpg b/blocks/task1/maps/level4/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d792c458d7d91443a8afce82b989ba8d1db5551 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17606624041cc4585f017c948a26a144b2e8bcb103b3af899b457c84634f2dff +size 9877 diff --git a/blocks/task1/maps/level4/image_input/3.jpg b/blocks/task1/maps/level4/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5af9a49085a45818e5bda7ed692598f7eba3f4b --- /dev/null +++ b/blocks/task1/maps/level4/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93c5341bca578f58ffdd4ab590e7ebf743921145bae0f2a7a1349da3a7aa8585 +size 8983 diff --git a/blocks/task1/maps/level4/image_input/30.jpg b/blocks/task1/maps/level4/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f2e1ffe9b1d62b9c2300ec6f4c1c224cdb8ac5c --- /dev/null +++ b/blocks/task1/maps/level4/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd45b43ed89deee3d9c2ab5714d44c661dfe6e68ad3a0f6d0f9698d440f30a8 +size 9799 diff --git a/blocks/task1/maps/level4/image_input/31.jpg b/blocks/task1/maps/level4/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9896b4a6e846d84f29cf497fd59abb50bef8ce0c --- /dev/null +++ b/blocks/task1/maps/level4/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d59c6f600456529653a0a3fad03003620e2089baf6d075c0e55faca70d62931 +size 9828 diff --git a/blocks/task1/maps/level4/image_input/32.jpg b/blocks/task1/maps/level4/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16fad0acc18cba3b0ec4543238b603b591197ee6 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b59e0bf12618744f6b80245fdc1385ce6692c7c4918e861c9c06dfa4cf9608 +size 9964 diff --git a/blocks/task1/maps/level4/image_input/33.jpg b/blocks/task1/maps/level4/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08483125ad1b79ccf3bb7c108578303432e4621f --- /dev/null +++ b/blocks/task1/maps/level4/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3123254b5c42fc63caa681927cc87764be4af6c5b6a4e0e77f0e02117cf3fb +size 10683 diff --git a/blocks/task1/maps/level4/image_input/34.jpg b/blocks/task1/maps/level4/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..697867330a461163a8f8398c592c8b73a0223be9 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627ec3b2ee7c943970d517f15afb632811dcd9ad7349881d3ff7a862618226c +size 10138 diff --git a/blocks/task1/maps/level4/image_input/35.jpg b/blocks/task1/maps/level4/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8681a4ed78ec6a55c7d63a992bad09587f5f9e55 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5af445fcde0d81c4272b31e90234276c67326aeb2f8b7cb8a0455f3c988fd4 +size 10689 diff --git a/blocks/task1/maps/level4/image_input/36.jpg b/blocks/task1/maps/level4/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..096ffdfd3aa4dbbcb3fd723ec79cb6112e5587e7 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432ea39f0a8a3734bc11e5f029099561f3861f6e4968160422c3d2ee226395d2 +size 9565 diff --git a/blocks/task1/maps/level4/image_input/37.jpg b/blocks/task1/maps/level4/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..732bece7ed1acda52a51bc22fc35feb5799d252c --- /dev/null +++ b/blocks/task1/maps/level4/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43d8f38b21b7345f50b99bafd8562b321c467c420539b4d1ebb08e4a6cf9e2b +size 10565 diff --git a/blocks/task1/maps/level4/image_input/38.jpg b/blocks/task1/maps/level4/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b03595ed02bd2333532bd42a4a5f51352d9cbdbd --- /dev/null +++ b/blocks/task1/maps/level4/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32dc19f381221a23ca6203b9df4f8157ca0f87947b1690c6cc5211051c5f6e8a +size 10615 diff --git a/blocks/task1/maps/level4/image_input/39.jpg b/blocks/task1/maps/level4/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70b9b9fbe4dd9582fbddbee10bcb7623eba90bbd --- /dev/null +++ b/blocks/task1/maps/level4/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e689e41efd688de27539d894b67684dd8fa17accbb547022f117daa428fbec8 +size 10275 diff --git a/blocks/task1/maps/level4/image_input/4.jpg b/blocks/task1/maps/level4/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32d78fc0dd622988f0e3b07532e791d0ce0bb917 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27de3c76690f53f24060eb3b60e5df9eedecf9b1fe7a0abfe65fcbf5d1b9844c +size 9460 diff --git a/blocks/task1/maps/level4/image_input/40.jpg b/blocks/task1/maps/level4/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e53e182cb0bd8352d08b873cf81842ac3774776 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d84db85244025163a447bc1508136892ee120d3e8695eccf55f0b89de0bbd70 +size 10089 diff --git a/blocks/task1/maps/level4/image_input/41.jpg b/blocks/task1/maps/level4/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c7e4a620734860a5b8c5f07ca7c048addb33f89 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8bcb087aec96f63136853b265af79d07b75599bf6290a1eaef0727014c68e5 +size 10574 diff --git a/blocks/task1/maps/level4/image_input/42.jpg b/blocks/task1/maps/level4/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..536e7a00d103f57223f3cfdce09b8cd103204200 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45be82904e04c411ce102294998a8a67aabd1c475dcd4be16e1ebedfedc6e0aa +size 9337 diff --git a/blocks/task1/maps/level4/image_input/43.jpg b/blocks/task1/maps/level4/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02d60120df04b781faa3316a4544b37843a2a7eb --- /dev/null +++ b/blocks/task1/maps/level4/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c5011cb74beea025dbfb6571de4036d69afc64fbc796eb11f62fe91e330e14 +size 9963 diff --git a/blocks/task1/maps/level4/image_input/44.jpg b/blocks/task1/maps/level4/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c2d41528dc3c95c521334a200e43ec5bda002e6 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a04f3f2daa8a08db389a98111ddbeaf4cffd02e36f4ebf4629ca07bfcff04f +size 9848 diff --git a/blocks/task1/maps/level4/image_input/45.jpg b/blocks/task1/maps/level4/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3e8bd91162a88796ffd057b7ee95c67a8ec9774 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a62f6357494e7561be6f4bfab3068f885b53c2a5a148d640b4eb2410032132 +size 10070 diff --git a/blocks/task1/maps/level4/image_input/46.jpg b/blocks/task1/maps/level4/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97dad9f1b24c9e4faa085cebd049d75dbe6bdebb --- /dev/null +++ b/blocks/task1/maps/level4/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffc0c13aa1d2ecfca9c477279eb58e738f9227870c3d2349454f139a94b71b1 +size 9570 diff --git a/blocks/task1/maps/level4/image_input/47.jpg b/blocks/task1/maps/level4/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..388b3e1c0c3e60ee4380dd28e1168abf7e4e4e05 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f753ec127d6414af848a8d19143e571a5b1266028d6c921de8da8509e6566acb +size 10308 diff --git a/blocks/task1/maps/level4/image_input/48.jpg b/blocks/task1/maps/level4/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa594a1101d9bab88409320ef6bef6e072413bf3 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9028514c93b00298fb99f10a110bc75488771209e61e97a4f7060bcc3638c2 +size 10261 diff --git a/blocks/task1/maps/level4/image_input/49.jpg b/blocks/task1/maps/level4/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46d517d2c312ca8ef315ede35829b5008ddf41a0 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f364896fc0b3105d323602ab84e2bffbb62723c00d95ba91dec0b96902a214 +size 9972 diff --git a/blocks/task1/maps/level4/image_input/5.jpg b/blocks/task1/maps/level4/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f8f1c6e0e71f7351ed76d439537664e7d7a9be9 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1f688c85c12004278356a17775233c87941332f800438456db317d5c1ddaf9 +size 10032 diff --git a/blocks/task1/maps/level4/image_input/50.jpg b/blocks/task1/maps/level4/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6aefc7a8beac5f0b8a16e0fd6f823be501481dcf --- /dev/null +++ b/blocks/task1/maps/level4/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678327bbee74b9ca50cb6bcc5281955a9926acba3da4defb92c4b29a94bac6a2 +size 9229 diff --git a/blocks/task1/maps/level4/image_input/51.jpg b/blocks/task1/maps/level4/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92033012536833ce75353ffc51b9245ac3c993b5 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffaff6440f1cfabd8a6e607d88e6fb071449200b57b45440f70e2640a40d292 +size 9753 diff --git a/blocks/task1/maps/level4/image_input/52.jpg b/blocks/task1/maps/level4/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17a6f173729f7fdd3e5c81ef925980e96cae3190 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef89b2c803fff22aed1992499b08bc3abbca1fb1e98fdc926e615bc09454db0 +size 9849 diff --git a/blocks/task1/maps/level4/image_input/53.jpg b/blocks/task1/maps/level4/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abb131bd91aa0f97fa99b2ef21a73bdf93b08f07 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1f01fcd53db9800f15c34117677148e90daede353e870984e8ccfcb89a6d4c +size 9599 diff --git a/blocks/task1/maps/level4/image_input/54.jpg b/blocks/task1/maps/level4/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6021c4a03d40ed871f78c23946b52ed8711253a --- /dev/null +++ b/blocks/task1/maps/level4/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be15a9eb80bbb41aeb9c558da91122caeec26b3425dfc1e84edd90218d25a07b +size 10256 diff --git a/blocks/task1/maps/level4/image_input/55.jpg b/blocks/task1/maps/level4/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2d5a62857d9e48c20ebd821d5c5f9be6ffafe09 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326efe5f85151f26f0771b027cb9b0cd31a8b878ae2de4e92953fcadd1e2148f +size 10483 diff --git a/blocks/task1/maps/level4/image_input/56.jpg b/blocks/task1/maps/level4/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e752a07137d22a5a2eff39c0c014c6eff95c683 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175b7047e71ca6e9822f23eba5cf50274878d849042e7ed254cb9c103f213eb9 +size 9315 diff --git a/blocks/task1/maps/level4/image_input/57.jpg b/blocks/task1/maps/level4/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b69991c59d2fb7c65d023110480f11a974854816 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d133b004a9cecdea3e679a8cfb36e3bdf6f7e4d47d0cb11614346fe23f75f462 +size 10226 diff --git a/blocks/task1/maps/level4/image_input/58.jpg b/blocks/task1/maps/level4/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9779768135995b526c4097525a32e3d8fcc2eaae --- /dev/null +++ b/blocks/task1/maps/level4/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed93f10899bba83e6c725e7a95d6dfeaf62e6234d7229f5ff70f329cc15e9f86 +size 10078 diff --git a/blocks/task1/maps/level4/image_input/59.jpg b/blocks/task1/maps/level4/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b0a546dacfd4e30cbf4e1e3bbf5224bef927066 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e9abc9fb55f835df3248fa84b25152c01a1df967b9e0411313b71cd57d3d67 +size 10066 diff --git a/blocks/task1/maps/level4/image_input/6.jpg b/blocks/task1/maps/level4/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ec362dff044ea0f248543879f1dbdf518a6949c --- /dev/null +++ b/blocks/task1/maps/level4/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfecb57555a14cf019db527e79c5d1a42c0a458c1f27870fd11016ffc721caa7 +size 9772 diff --git a/blocks/task1/maps/level4/image_input/60.jpg b/blocks/task1/maps/level4/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a52887893ba2854e4028fde265640a5fd4c4e0ed --- /dev/null +++ b/blocks/task1/maps/level4/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7938ab461790ba6d59a969bcfdd741044c1a9bb7e50b0b6cb57c695347709b4 +size 10525 diff --git a/blocks/task1/maps/level4/image_input/61.jpg b/blocks/task1/maps/level4/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..134bfe876088fef69926e09af13fa80c65aad769 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79bbb57193880d55e27cca0bdeaf96bc48de85b6441dd5950822e89803610bf +size 8858 diff --git a/blocks/task1/maps/level4/image_input/62.jpg b/blocks/task1/maps/level4/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87be1f92b71c685e8e60f6a1ad6d146096a8cfae --- /dev/null +++ b/blocks/task1/maps/level4/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba53f2e051a42eb946852e5ec3e2264090436a31b609c0b7a091e01e7129dbe8 +size 9339 diff --git a/blocks/task1/maps/level4/image_input/63.jpg b/blocks/task1/maps/level4/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce9236d27f957abfaa698602211e0936461e0a0d --- /dev/null +++ b/blocks/task1/maps/level4/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936081276e7e1c9a40a13c656ef969e66413e541391de6f60ce04d834968aea7 +size 10176 diff --git a/blocks/task1/maps/level4/image_input/64.jpg b/blocks/task1/maps/level4/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aca8ff6623555b74bc4e37db5a25bba5f792d3e --- /dev/null +++ b/blocks/task1/maps/level4/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c22dedbb9d668d7880f76b77475acc9ad51c4dfb3a24f10d4a74aef263f5ae14 +size 10483 diff --git a/blocks/task1/maps/level4/image_input/65.jpg b/blocks/task1/maps/level4/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..905f1a2f441be16fbc4f17e0a0608ee7d4dcb0df --- /dev/null +++ b/blocks/task1/maps/level4/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad23639814bdaa37610e529ba156fbdd624b6a050be8c5f3533c09b69e7db2d3 +size 10468 diff --git a/blocks/task1/maps/level4/image_input/66.jpg b/blocks/task1/maps/level4/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5df4536b2904716c830f37eb6652e6f4094b55ac --- /dev/null +++ b/blocks/task1/maps/level4/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ab179389346a2f3cb035d97db315cb72ff4ef132e26cca6027259ab13d8d24 +size 9259 diff --git a/blocks/task1/maps/level4/image_input/67.jpg b/blocks/task1/maps/level4/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..916ab1df1576edfe06c9d4b6a550f5e0afb58aa3 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d259e3951a42ee1dc4c2fc502b06b7b527f7f784855a06bc732f60f6b6bf7b0 +size 10464 diff --git a/blocks/task1/maps/level4/image_input/68.jpg b/blocks/task1/maps/level4/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acb0645ed0476e1f2b42f6811e506d820dc67ea5 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b01ee8d8fde13990d447e77bb23b1475c3798226ffb6212de2d43f56f097a8 +size 9879 diff --git a/blocks/task1/maps/level4/image_input/69.jpg b/blocks/task1/maps/level4/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..289b8565244231e1b158af92481a5db5f2912de9 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e316589360b2b23aefd24860c22e6446d47c93f60987b7705910ecef83fcd89c +size 9737 diff --git a/blocks/task1/maps/level4/image_input/7.jpg b/blocks/task1/maps/level4/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..575cc03beeed2e4ed59486bf620d3884720aa130 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1316b457a758e900e66bb3d1f9dd8233d7153daa8cfef5e234d17b4bf95a1c8a +size 10418 diff --git a/blocks/task1/maps/level4/image_input/70.jpg b/blocks/task1/maps/level4/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a12ca349fee695320e9ed96e32537a1a5865b1b --- /dev/null +++ b/blocks/task1/maps/level4/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba50dd4d0e4290601e5634f78343a87e10c7972b0f0e478b3db6c4adc21505ec +size 9784 diff --git a/blocks/task1/maps/level4/image_input/71.jpg b/blocks/task1/maps/level4/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..279a62ce6120d905c47cf412aff42a8382a701cd --- /dev/null +++ b/blocks/task1/maps/level4/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa9bd440c658957e0e9928440ef81224ef781b1a07d1d996aa29b6ded51d340 +size 10238 diff --git a/blocks/task1/maps/level4/image_input/72.jpg b/blocks/task1/maps/level4/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fea3c8ca604ee7db8a08f074925049d1659d2f6 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96ef56ca285de83a4bca939f3e0fe815c545d765dc5af81d4dfdd51245f32983 +size 9549 diff --git a/blocks/task1/maps/level4/image_input/73.jpg b/blocks/task1/maps/level4/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7760938c53e08eecd558638d4d02e618079717e3 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1e7d456ef7cb0aa027a4fe744fb27595541fd1a8695648546472aae0d0e5bb +size 10296 diff --git a/blocks/task1/maps/level4/image_input/74.jpg b/blocks/task1/maps/level4/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..299b7cd1b8204bfbaa70789fb7b886e0dfc4f905 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab35703b77552a9a39318e832eb836622c21fa48d0c1ee22d858a8abb370072 +size 10141 diff --git a/blocks/task1/maps/level4/image_input/75.jpg b/blocks/task1/maps/level4/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aff6116bd7393fefb0b24113f39e63fb4c238e99 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc16944f54dcf6e856e450dbc36f9dd207e33e6b320e8631cdcfe8edba38093b +size 9493 diff --git a/blocks/task1/maps/level4/image_input/76.jpg b/blocks/task1/maps/level4/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b96fc87375044dfa6be4c9963cca5a722454d5f2 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fc5574576c6f0c691ffdc9f55adc86ac7283f70cfd26930a9aa7dfe57812ed +size 9985 diff --git a/blocks/task1/maps/level4/image_input/77.jpg b/blocks/task1/maps/level4/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc447ac8887bf07ac0455553c3f44a438665fc17 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c51cbc9d454b4422b8a9cd15764a0dc31b106da2d77b0baf2cf5a29f48784d1 +size 10034 diff --git a/blocks/task1/maps/level4/image_input/78.jpg b/blocks/task1/maps/level4/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f7ffb70b4ca9d58854e5266f282ccf0d763c12c --- /dev/null +++ b/blocks/task1/maps/level4/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10de1cdfbde72fe3d23acb80eca3254ece26e7273984d201bf3b14f1d24c97a0 +size 9671 diff --git a/blocks/task1/maps/level4/image_input/79.jpg b/blocks/task1/maps/level4/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6db8cff87b73130a9132ac755a4a09d81d2c1589 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74c10e176c63087070e0c8aeb5ed2e1fc45fb4b33495c58244c6d3ce5fb486e +size 8769 diff --git a/blocks/task1/maps/level4/image_input/8.jpg b/blocks/task1/maps/level4/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e4d3648ad30d332665dd132d5049c646e1d44c5 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9146ec40945a638d1d617a67d62be302f3dd7de2c53a8f957b01dceed8d88040 +size 8656 diff --git a/blocks/task1/maps/level4/image_input/80.jpg b/blocks/task1/maps/level4/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..240d2c8e5dcf459eda6dbe1351aebd211474ce69 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01a239d5c5128936b833d5414f64d340d8c0ff4f4ccb164a92b26416a71c1cd +size 9160 diff --git a/blocks/task1/maps/level4/image_input/81.jpg b/blocks/task1/maps/level4/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ecdb25a3393eb8981ac802aefe1d6c0b97a1a0c7 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e75eb56cc80ed37a0e0f582083de321b59f6f809e5ce9b372077d55c494223 +size 10293 diff --git a/blocks/task1/maps/level4/image_input/82.jpg b/blocks/task1/maps/level4/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..525d3caddd68f935fae4a2b1a36bc74791910509 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745dc3524d109aa09922c0c84869733f5d0914d93ebca3fb3b1b0c36014252fd +size 10119 diff --git a/blocks/task1/maps/level4/image_input/83.jpg b/blocks/task1/maps/level4/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56b23a25f8e1124c5a4e9e0edae995876098c14e --- /dev/null +++ b/blocks/task1/maps/level4/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d7d17fbc05396ff4fe4628bc84b15f68021b18222638d83ae883a42a6fdfe7 +size 9812 diff --git a/blocks/task1/maps/level4/image_input/84.jpg b/blocks/task1/maps/level4/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3e5958942fbc600375ad0e6492c096f7c47c144 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14193d7853bf3fcdb303d9ade37b45e5177e6711aa85796c7d7da6fe89056fd1 +size 10151 diff --git a/blocks/task1/maps/level4/image_input/85.jpg b/blocks/task1/maps/level4/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c03e612de8430f6e724ec8921f17fb58fbfa9011 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80d106e6c557b442b5271b02ec000fc51597f1a64f67739c3c0f9058e5660b8 +size 10560 diff --git a/blocks/task1/maps/level4/image_input/86.jpg b/blocks/task1/maps/level4/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c96a6d05fcdfa1723cc7188200928c7d5113083f --- /dev/null +++ b/blocks/task1/maps/level4/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14d98d9f05a124ff5d0692ba2d616d542f510b6b4f2080ed42a6782e269cb1b +size 9828 diff --git a/blocks/task1/maps/level4/image_input/87.jpg b/blocks/task1/maps/level4/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f790372eef4c833eafd3c1a86c0461dc71b1c95 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af87c72749cfea1d3fb9f901d5f69062514f03d69f599ba44acee174b9c9e7e +size 9972 diff --git a/blocks/task1/maps/level4/image_input/88.jpg b/blocks/task1/maps/level4/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21cc0a44486bb66a2c3b09ccbc10d371fe5dbfe1 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c399894dd712ca215dc74604a40481542dc0035d42969346edb35ea22ae5d8 +size 10099 diff --git a/blocks/task1/maps/level4/image_input/89.jpg b/blocks/task1/maps/level4/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c33041d56ac07437a83f2714b723fcaba1510e4 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47849c68e316fc0d4867a202e6dd9506767eff2ff5bb115592b3005da9e7fb9c +size 10068 diff --git a/blocks/task1/maps/level4/image_input/9.jpg b/blocks/task1/maps/level4/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72eba2a5c8dca4609dbf0d2e32ae6ac8ce923d78 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b21acfd90147e231e1a679da1384a21bfe861ab4c098982c0539f758856926 +size 9931 diff --git a/blocks/task1/maps/level4/image_input/90.jpg b/blocks/task1/maps/level4/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98ef03e5c0f89b83eecaaeab154515cf11327a81 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1076afff2342f5e153e59daf133b51da5a6d36d7345f3756ea8c4c4c2548ac8a +size 8771 diff --git a/blocks/task1/maps/level4/image_input/91.jpg b/blocks/task1/maps/level4/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b112339001baa67207480c5e4cc565711a1d96f --- /dev/null +++ b/blocks/task1/maps/level4/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e421f06e3cb3738844cc20e0b9a5ae85f620a728fd396e5d570aee7bd492ba25 +size 10651 diff --git a/blocks/task1/maps/level4/image_input/92.jpg b/blocks/task1/maps/level4/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11e003aacdcdf7ff13df45ebead3f8adb636ccf5 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d6319599b3d6242b880b3789a4269a173ab42da65bb3b1a3901cabc40dd464 +size 9922 diff --git a/blocks/task1/maps/level4/image_input/93.jpg b/blocks/task1/maps/level4/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2d66b38b7516b6a6d61d805f660d98c7ac44528 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a265fd94662f0d74093dd42569b9a26a1540e4127ef11123c746932a374e3a8 +size 9238 diff --git a/blocks/task1/maps/level4/image_input/94.jpg b/blocks/task1/maps/level4/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79518fc1cbe3db759f7236d5c6d6e043a9f3b16d --- /dev/null +++ b/blocks/task1/maps/level4/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd192188963538d0611a16bc5bebb040451467ffa32ad30b1b6e0baf06fbd8f +size 9762 diff --git a/blocks/task1/maps/level4/image_input/95.jpg b/blocks/task1/maps/level4/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b39bc4c957f021a0e18e75f16fabe83810ba62dc --- /dev/null +++ b/blocks/task1/maps/level4/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8b9d94135390324914713b0427e2fb5e076df3e86682315ca814846b97109d +size 10543 diff --git a/blocks/task1/maps/level4/image_input/96.jpg b/blocks/task1/maps/level4/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0563eec8aab3ad5b2b33e83b2ed0ff3e6a7d3954 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a2b586f5aea415881a73ca907f0caf736080b17870604722aec7eef8124302 +size 9159 diff --git a/blocks/task1/maps/level4/image_input/97.jpg b/blocks/task1/maps/level4/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcbb2114e3da78a670fdc4ad3fbce3dd393c84cd --- /dev/null +++ b/blocks/task1/maps/level4/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7723e58d15c2f31ee7bed81d83a0ed38318af5533778f958f43a95a8c6f2a3 +size 10069 diff --git a/blocks/task1/maps/level4/image_input/98.jpg b/blocks/task1/maps/level4/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a77ef22f9b604eaad494ec5f601b712f9127869 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bfeaecfb09a2f88e7d9ac97e089b4921206a003f6061f6363fe8884596bbc0 +size 9614 diff --git a/blocks/task1/maps/level4/image_input/99.jpg b/blocks/task1/maps/level4/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5483cb1a6a3636f8489a757b2f976122f80cdc2 --- /dev/null +++ b/blocks/task1/maps/level4/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d79e61cc509ebbcb6111d12a8af627c2bbf50547d1a812247a1cd836f714b1 +size 9400 diff --git a/blocks/task1/maps/level4/pure_text_rep_input/0 b/blocks/task1/maps/level4/pure_text_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..7d50f507995c902783b53d0e334daee0c3c0c4ce --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/0 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, green block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/1 b/blocks/task1/maps/level4/pure_text_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..c4ddaa76719b3bcaef1a9a0275c7a171931d6ba5 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/1 @@ -0,0 +1 @@ +- Stack with orange block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/10 b/blocks/task1/maps/level4/pure_text_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..444dea6b4df6bd88bf064b2516f7e69530a5ba7d --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/10 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, blue block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/11 b/blocks/task1/maps/level4/pure_text_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..102bba1c818a6e9ffebf4293ce24d2fc3c2a2f17 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/11 @@ -0,0 +1 @@ +- Stack with red block, blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/12 b/blocks/task1/maps/level4/pure_text_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..f30cd90ee562a35dace648459e76dfacbc7f4db3 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/12 @@ -0,0 +1 @@ +- Stack with green block, orange block, yellow block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/13 b/blocks/task1/maps/level4/pure_text_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..3a4cce9dee06f2705c200b3b92d343dae46c82b6 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/13 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/14 b/blocks/task1/maps/level4/pure_text_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..1ac6dfe467d74d47e5bd01f33c8a3b44b882bd2c --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/14 @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with green block +- Stack with yellow block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/15 b/blocks/task1/maps/level4/pure_text_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..b969e972b5f4994a1c45e261924bba26758c90b5 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/15 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/16 b/blocks/task1/maps/level4/pure_text_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..0cb89a5ccfb750f5d37dcd399491c4cf4d5e5084 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/16 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, yellow block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/17 b/blocks/task1/maps/level4/pure_text_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..134059ecff247a8ab3d6e501a7c98c341725b26f --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/17 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/18 b/blocks/task1/maps/level4/pure_text_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..47a87e1ae67abe6e064d31640a254a541181812f --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/18 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/19 b/blocks/task1/maps/level4/pure_text_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..8aeb42670212a0e09c99f14f00601be4c162842c --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/19 @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with green block +- Stack with blue block +- Stack with yellow block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/2 b/blocks/task1/maps/level4/pure_text_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..a5988042d98050f65de2d045bc99d1ca027d3e2c --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/2 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/20 b/blocks/task1/maps/level4/pure_text_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..ff792293e6ac35dc9dcb9008964c48f32583b49f --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/20 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, blue block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/21 b/blocks/task1/maps/level4/pure_text_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..f9080b0cf8e30223c30adc2ee6a17ab7ab1e6766 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/21 @@ -0,0 +1 @@ +- Stack with green block, orange block, red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/22 b/blocks/task1/maps/level4/pure_text_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..b802f152a1f031e567d1e275c19733272bec38c8 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/22 @@ -0,0 +1 @@ +- Stack with green block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/23 b/blocks/task1/maps/level4/pure_text_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..f36f0379f9f0de33cc483f07d0572e9192e97018 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/23 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with red block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/24 b/blocks/task1/maps/level4/pure_text_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..b4124116d1f2c1a3b31895c942256f89f885dab5 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/24 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/25 b/blocks/task1/maps/level4/pure_text_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..1e9a229c4247c9201e44b9f0c417b8302c8e7862 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/25 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/26 b/blocks/task1/maps/level4/pure_text_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..9f2410b94f8e17500de393745badd08851ec72cc --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/26 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/27 b/blocks/task1/maps/level4/pure_text_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..ba3890c2c116a2489da015ca88c725ea79aece72 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/27 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, orange block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/28 b/blocks/task1/maps/level4/pure_text_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..ab12a74d60e6c4aee74177967da08ed817097df4 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/28 @@ -0,0 +1 @@ +- Stack with green block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/29 b/blocks/task1/maps/level4/pure_text_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..4f28160cad18bffc917e80f3bc8171c922643e52 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/29 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/3 b/blocks/task1/maps/level4/pure_text_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..161ecfb1d0862f1e294be807e79e24cc626c5089 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/3 @@ -0,0 +1 @@ +- Stack with yellow block, purple block, orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/30 b/blocks/task1/maps/level4/pure_text_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..e2e51e99d1470c27e67fd18650ddd6519cf53f92 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/30 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/31 b/blocks/task1/maps/level4/pure_text_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..eca2796fd2ce78dbe9d184525ffa115b997aad86 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/31 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/32 b/blocks/task1/maps/level4/pure_text_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..25de40df7537804a1bd95bb8da28e81f23f0f96e --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/32 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, blue block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/33 b/blocks/task1/maps/level4/pure_text_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..5c51b7816ba65f906ead9fd1d2f1a283057c03b2 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/33 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/34 b/blocks/task1/maps/level4/pure_text_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..ba3890c2c116a2489da015ca88c725ea79aece72 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/34 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, orange block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/35 b/blocks/task1/maps/level4/pure_text_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..7903b6da2d37537a0606f9fbe362031476efa2bf --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/35 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/36 b/blocks/task1/maps/level4/pure_text_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..8f82c8ed2c3c12eaa35700d15a7b5d675177f76e --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/36 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, yellow block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/37 b/blocks/task1/maps/level4/pure_text_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..d05cccaa8289930b1f689d6ced2f7a01c804edf5 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/37 @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with red block +- Stack with blue block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/38 b/blocks/task1/maps/level4/pure_text_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..1f0488ba89f12fd77b386844368c919beff82a6c --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/38 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, blue block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/39 b/blocks/task1/maps/level4/pure_text_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..bea7c9c806d592477c2a8ec18166f8cdcdff6bf5 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/39 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/4 b/blocks/task1/maps/level4/pure_text_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..39b020cff62c55de6e0272e8615ad46bba69f727 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/4 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/40 b/blocks/task1/maps/level4/pure_text_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..1ecfe969dc6c2e8f3471eef31ca6007d027eeb57 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/40 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, purple block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/41 b/blocks/task1/maps/level4/pure_text_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..adb7a764f9e35c4c9612c6ec614f3736a8fd5392 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/41 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/42 b/blocks/task1/maps/level4/pure_text_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..c4ddaa76719b3bcaef1a9a0275c7a171931d6ba5 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/42 @@ -0,0 +1 @@ +- Stack with orange block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/43 b/blocks/task1/maps/level4/pure_text_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..19f811e3ac7cc158f059ab002464c04e5d710b0c --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/43 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/44 b/blocks/task1/maps/level4/pure_text_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..7347e6e1500a38478da3da2c09ba8e274e8f77fb --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/44 @@ -0,0 +1 @@ +- Stack with orange block, green block, red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/45 b/blocks/task1/maps/level4/pure_text_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..954d6eced5a8196314366adb5033b1e1b8012ec5 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/45 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/46 b/blocks/task1/maps/level4/pure_text_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..bd54eeb032f4ceb4bb15a828daef86e6a36c3da5 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/46 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/47 b/blocks/task1/maps/level4/pure_text_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..220558c4f0b6998e65ee635259128d7fa2ab3907 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/47 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/48 b/blocks/task1/maps/level4/pure_text_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..7881e35e160a2c9b41e63f5b58ed0fa2b7270df6 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/48 @@ -0,0 +1 @@ +- Stack with green block, yellow block, orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/49 b/blocks/task1/maps/level4/pure_text_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..61802c0d450c9d1e5d71f47d2a55fae9bdcc43d8 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/49 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/5 b/blocks/task1/maps/level4/pure_text_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..904be1f832f585a91726fc5a9de7191b0574b4f3 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/5 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/50 b/blocks/task1/maps/level4/pure_text_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..efc3ee11f0b61e9fa68f6cd87ec74db5383b2602 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/50 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/51 b/blocks/task1/maps/level4/pure_text_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..6bafe3fa98ee8a01e500b7236d15a7e288a7d10b --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/51 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, yellow block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/52 b/blocks/task1/maps/level4/pure_text_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..3b4abd4675e7c030f9a2777357f8453739c3fabe --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/52 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/53 b/blocks/task1/maps/level4/pure_text_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..ac0f69ded748dc70628f72a047a34124a829de66 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/53 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/54 b/blocks/task1/maps/level4/pure_text_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..1f0ad11308ce355ed8cbbcf774675bc6a7da3d2f --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/54 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/55 b/blocks/task1/maps/level4/pure_text_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..e4a416d5f6797db98ea8b87980d99e10a89faf17 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/55 @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with red block +- Stack with yellow block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/56 b/blocks/task1/maps/level4/pure_text_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..037444c2c0ae5221d31034cedc4919c61e88b848 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/56 @@ -0,0 +1 @@ +- Stack with blue block, red block, purple block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/57 b/blocks/task1/maps/level4/pure_text_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..4106f60a92b7e6bdafd7f1a27ac0956da31f2ac7 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/57 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/58 b/blocks/task1/maps/level4/pure_text_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..ebcb951d3ae29cd7d7b82ea4529b9ff9f8e78e3b --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/58 @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with red block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/59 b/blocks/task1/maps/level4/pure_text_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..88999957cf0e82c74f9c0679776af1e779b21091 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/59 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/6 b/blocks/task1/maps/level4/pure_text_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..586f9c2f9a8f743d4630a3de381fbf78e4fa5916 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/6 @@ -0,0 +1 @@ +- Stack with green block, red block, blue block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/60 b/blocks/task1/maps/level4/pure_text_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..382b37f4fdc96849002e263f86eba575dde9018f --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/60 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, yellow block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/61 b/blocks/task1/maps/level4/pure_text_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..fe15f266e82939badea54594d89de556e2ae2389 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/61 @@ -0,0 +1 @@ +- Stack with yellow block, orange block, green block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/62 b/blocks/task1/maps/level4/pure_text_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..61bea3519157e98f3a7356ac6dc9cc84d60e5434 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/62 @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with green block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/63 b/blocks/task1/maps/level4/pure_text_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..04e6d3ed0ef187c682f836ad6ee5a4d80f585569 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/63 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with orange block +- Stack with green block +- Stack with red block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/64 b/blocks/task1/maps/level4/pure_text_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..328368a19839d43d03cb80cc77a06cde40062a47 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/64 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/65 b/blocks/task1/maps/level4/pure_text_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..4459cf5fe75c72a5e80d4c9ebd84f8824a9e7df1 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/65 @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with green block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/66 b/blocks/task1/maps/level4/pure_text_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..cdaff6ae2c3d151b6cc0868ca53c844e1c83b493 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/66 @@ -0,0 +1 @@ +- Stack with purple block, yellow block, green block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/67 b/blocks/task1/maps/level4/pure_text_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..ab8541fb531066f3aca348a764e9efdcfd9fe59e --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/67 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/68 b/blocks/task1/maps/level4/pure_text_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..870ebb4b2209e2d5ba5f84df7baf6fc92c6e658d --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/68 @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with purple block +- Stack with orange block +- Stack with green block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/69 b/blocks/task1/maps/level4/pure_text_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..6c4ba5868142fad18ad1c58855084331cbc9e84d --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/69 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/7 b/blocks/task1/maps/level4/pure_text_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..87e670306dc9fd04402d46fee5a89fbf94c17d27 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/7 @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with red block +- Stack with purple block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/70 b/blocks/task1/maps/level4/pure_text_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..e3d06419dbee2f21a2aee9044aa47ac1bdffb552 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/70 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/71 b/blocks/task1/maps/level4/pure_text_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..3af67b237efb9d0747a2da3c270533640de13385 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/71 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, blue block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/72 b/blocks/task1/maps/level4/pure_text_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..3efb504f5a464856b955980d1ec2793a25e7868a --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/72 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, purple block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/73 b/blocks/task1/maps/level4/pure_text_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..4da9adf6b73ccb0876d45f465686280682b7f820 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/73 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, orange block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/74 b/blocks/task1/maps/level4/pure_text_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..e5c092e488e71a47096b5bf46f8a6509108460d6 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/74 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/75 b/blocks/task1/maps/level4/pure_text_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..df6e0091671f4f8e905b1d5e601f85a7d6beb522 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/75 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/76 b/blocks/task1/maps/level4/pure_text_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..87d8444955623da413170ba06a759caf85a4455d --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/76 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, green block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/77 b/blocks/task1/maps/level4/pure_text_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..88c5e2a03cc533a5b30990058023f9bca670ec2a --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/77 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/78 b/blocks/task1/maps/level4/pure_text_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..d5f13f0c0b80ad5df43a7a0e9bd56127af79273f --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/78 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, yellow block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/79 b/blocks/task1/maps/level4/pure_text_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..c4c64c4bf512cde08ce9f1be6b3320eeb75a59fb --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/79 @@ -0,0 +1 @@ +- Stack with red block, blue block, green block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/8 b/blocks/task1/maps/level4/pure_text_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..94a5aa4225aeeb44bb298b8207a9960a58a3797b --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/8 @@ -0,0 +1 @@ +- Stack with yellow block, orange block, green block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/80 b/blocks/task1/maps/level4/pure_text_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..f71d66fa6a99a0a2198b65879ea1d8be3aba9b4a --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/80 @@ -0,0 +1 @@ +- Stack with orange block, purple block, blue block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/81 b/blocks/task1/maps/level4/pure_text_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..df3b390eb0e18635e5d6539798af833f55aa4b37 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/81 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/82 b/blocks/task1/maps/level4/pure_text_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..9560c5e6e37ceacf06c78fbad0f695dd37114f8a --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/82 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/83 b/blocks/task1/maps/level4/pure_text_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..184951fd521fd994cbde76536480be06a96cda2e --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/83 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/84 b/blocks/task1/maps/level4/pure_text_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..f5e5b5785b27c7376038fad44f2e8371a1d992e2 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/84 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/85 b/blocks/task1/maps/level4/pure_text_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..b9b3f5c62fca7daa9862e17fffb6b7fc166b997c --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/85 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, red block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/86 b/blocks/task1/maps/level4/pure_text_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..a5988042d98050f65de2d045bc99d1ca027d3e2c --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/86 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/87 b/blocks/task1/maps/level4/pure_text_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..563f0892978df0ee191efe30b4f7ad69fd0ad367 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/87 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, yellow block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/88 b/blocks/task1/maps/level4/pure_text_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..9ed498da256a01dad59b3234f6b8622f0d79eb83 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/88 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with orange block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/89 b/blocks/task1/maps/level4/pure_text_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..c2f41d7ecdfdf577d46f286bb01d94fa4f5976f8 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/89 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/9 b/blocks/task1/maps/level4/pure_text_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..714e5201ebf779f67dedce5f2093c5d837136b81 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/9 @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with red block +- Stack with orange block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/90 b/blocks/task1/maps/level4/pure_text_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..c437cc3e034365b70bd513ce7972e0b1cc1facd5 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/90 @@ -0,0 +1 @@ +- Stack with purple block, green block, orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/91 b/blocks/task1/maps/level4/pure_text_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..0258131c57c83dcc162adb35b900acda3c1982e0 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/91 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, orange block, green block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/92 b/blocks/task1/maps/level4/pure_text_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..09433b4249c9587ed95accbff891dd714f47cb87 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/92 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with purple block diff --git a/blocks/task1/maps/level4/pure_text_rep_input/93 b/blocks/task1/maps/level4/pure_text_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..7b12fddcdd7d15171e86ce5d3923218250bc367c --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/93 @@ -0,0 +1 @@ +- Stack with blue block, red block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/94 b/blocks/task1/maps/level4/pure_text_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..cec5040964151030ac76b3780719bea36cc525b3 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/94 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/95 b/blocks/task1/maps/level4/pure_text_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..fbe508c7ec05c38951e63d9f30526bbefc3ab04c --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/95 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/96 b/blocks/task1/maps/level4/pure_text_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..c2d8823a9a94482b15f8885fccc39759d77c9519 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/96 @@ -0,0 +1 @@ +- Stack with blue block, orange block, green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/97 b/blocks/task1/maps/level4/pure_text_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..1568f051db8d779d55aa8d4699553a36ab390ce4 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/97 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/98 b/blocks/task1/maps/level4/pure_text_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..f37e15e543ec8dfa34286238e9b1694b0a15fb26 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/98 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level4/pure_text_rep_input/99 b/blocks/task1/maps/level4/pure_text_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..4ed7553d2ce3798e56bb5eb3291b1cd9e7b515a0 --- /dev/null +++ b/blocks/task1/maps/level4/pure_text_rep_input/99 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level4/table_rep_input/0 b/blocks/task1/maps/level4/table_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..67c6950a48a88f0753bbb6ec75c86b1e7717f3cc --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/0 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | green | +Level 1 | purple | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/1 b/blocks/task1/maps/level4/table_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..4961f09f6a1efe7449854b7152d8cc81be2f6872 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/1 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | yellow | +Level 3 | red | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/10 b/blocks/task1/maps/level4/table_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..672e558f44a1161e63bc15981b34a69e6e88329c --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/10 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | blue | +Level 1 | red | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/11 b/blocks/task1/maps/level4/table_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..df9240c3e2aa45437e00e7e2be1d8bb6dc18b44f --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/11 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | purple | +Level 3 | yellow | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task1/maps/level4/table_rep_input/12 b/blocks/task1/maps/level4/table_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..f3248d9bb237615955e301760319742a0950428c --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/12 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | yellow | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task1/maps/level4/table_rep_input/13 b/blocks/task1/maps/level4/table_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..26d709f4e1b0bbdaebd9ec9e9630f3d1c6222bcd --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/13 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | red | yellow | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/14 b/blocks/task1/maps/level4/table_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..d0b8e232f82571dcfe375fe33fff622fb2fe52e7 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/14 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | purple | orange | green | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/15 b/blocks/task1/maps/level4/table_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..944962bcc089a1198b9374dbecdd0d3ee44c20c3 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/15 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | yellow | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/16 b/blocks/task1/maps/level4/table_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..0e439c35123cd49f50d5eb02a0cd1d13e76b4603 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/16 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | red | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/17 b/blocks/task1/maps/level4/table_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..6d9213c0159d387ca173791cb235d5b25ed1a110 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/17 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | red | +Level 1 | yellow | green | diff --git a/blocks/task1/maps/level4/table_rep_input/18 b/blocks/task1/maps/level4/table_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..729b7c74f69c8a9434e1529c9c30021f1b77d76b --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/18 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | green | +Level 1 | red | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/19 b/blocks/task1/maps/level4/table_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..705c6026c4998fa4b36a65ff06c5e37e80044377 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/19 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | red | green | blue | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/2 b/blocks/task1/maps/level4/table_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..c5ca2aebce36bcd3fc3cece23ee5a2e0bf6e99c0 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/2 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/20 b/blocks/task1/maps/level4/table_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..6cf2e72ed9319e9ee8df3592cfdda6b02eefad45 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/20 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | green | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/21 b/blocks/task1/maps/level4/table_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..3dc61cc76a654a8b61fb423f10e7380e2ef38dab --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/21 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | purple | +Level 3 | red | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task1/maps/level4/table_rep_input/22 b/blocks/task1/maps/level4/table_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..017218c242b0c0fc2fd5bae430cf65c9dc5b7cb8 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/22 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | purple | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task1/maps/level4/table_rep_input/23 b/blocks/task1/maps/level4/table_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..4d566292a99f890cb7e64b28e2a6d902dc05d498 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/23 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | blue | yellow | green | red | diff --git a/blocks/task1/maps/level4/table_rep_input/24 b/blocks/task1/maps/level4/table_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..e0eeceb0bb5a68942ea341cb4377cfe013fbaaff --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/24 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | green | +Level 1 | blue | red | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/25 b/blocks/task1/maps/level4/table_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..8c0462bc50c827161e662ef574631c49459226c6 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/25 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | orange | red | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/26 b/blocks/task1/maps/level4/table_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..199af6218429bad1942df5e41c3d2561768184a3 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/26 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | yellow | orange | green | diff --git a/blocks/task1/maps/level4/table_rep_input/27 b/blocks/task1/maps/level4/table_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..aed11afc613cd6d9e94893df0edf81f44474e118 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/27 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | purple | red | diff --git a/blocks/task1/maps/level4/table_rep_input/28 b/blocks/task1/maps/level4/table_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..c8b0284ebd44f86bff3eded11746e8db91cca32d --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/28 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | yellow | +Level 3 | red | +Level 2 | purple | +Level 1 | green | diff --git a/blocks/task1/maps/level4/table_rep_input/29 b/blocks/task1/maps/level4/table_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..a2d9fcb49a5e520798b879d3bd8c64907821381d --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/29 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | purple | +Level 1 | green | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/3 b/blocks/task1/maps/level4/table_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..34ab5936018f90790ee96a2b1f03cc8aacae97ee --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/3 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | orange | +Level 2 | purple | +Level 1 | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/30 b/blocks/task1/maps/level4/table_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..e93d898a766145c5bfe0b6f2eeecf2bcba1c6260 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/30 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | orange | purple | red | diff --git a/blocks/task1/maps/level4/table_rep_input/31 b/blocks/task1/maps/level4/table_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..d316bec849a770b4d423902e83f0676deb0e557b --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/31 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | green | +Level 1 | yellow | orange | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/32 b/blocks/task1/maps/level4/table_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..985d7ed2b8ec5423244dcf3e9ed7e530172c54ed --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/32 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | purple | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/33 b/blocks/task1/maps/level4/table_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..3f2054494d0d86a0936a9e3f35129eb1031a5af5 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/33 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | blue | red | green | diff --git a/blocks/task1/maps/level4/table_rep_input/34 b/blocks/task1/maps/level4/table_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..aed11afc613cd6d9e94893df0edf81f44474e118 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/34 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | purple | red | diff --git a/blocks/task1/maps/level4/table_rep_input/35 b/blocks/task1/maps/level4/table_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..ca73136fcbed5a5b50f66526b0a2b63580a50a77 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/35 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | red | +Level 1 | green | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/36 b/blocks/task1/maps/level4/table_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..d5625b8e57058ace233f70108e6e620296983110 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/36 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | red | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/37 b/blocks/task1/maps/level4/table_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..f8c820b21afb0912672c7a7a2100237c1aad42c1 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/37 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | purple | orange | red | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/38 b/blocks/task1/maps/level4/table_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..23eeccc27c8365b8628d025e9b4f53e18dde9203 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/38 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | blue | +Level 1 | purple | red | diff --git a/blocks/task1/maps/level4/table_rep_input/39 b/blocks/task1/maps/level4/table_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..b5aed0fe5949bb0c1ba6ae0d232de297807b8273 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/39 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | red | +Level 1 | purple | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/4 b/blocks/task1/maps/level4/table_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..b9f526a5144e156d7e13115a932b9d448ee6cbe0 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/4 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | orange | +Level 1 | yellow | green | diff --git a/blocks/task1/maps/level4/table_rep_input/40 b/blocks/task1/maps/level4/table_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..22ad42504fc120c6afdc5f9aae955e2b1b9181f4 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/40 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | purple | +Level 1 | yellow | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/41 b/blocks/task1/maps/level4/table_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..3058ea5b24ea5f3717ec826e38ee00dd0df8f15c --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/41 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | red | +Level 1 | blue | orange | green | diff --git a/blocks/task1/maps/level4/table_rep_input/42 b/blocks/task1/maps/level4/table_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..4961f09f6a1efe7449854b7152d8cc81be2f6872 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/42 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | yellow | +Level 3 | red | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/43 b/blocks/task1/maps/level4/table_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..0530707ac531cc419718ceb33e51578c0b369ff0 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/43 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | purple | red | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/44 b/blocks/task1/maps/level4/table_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..3740dd068f4a40245baeabab8530b706f98dc4dd --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/44 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | blue | +Level 3 | red | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/45 b/blocks/task1/maps/level4/table_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..7c9f3945ee9f211ddcca1d27e2ce0f69e04a1de3 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/45 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | green | +Level 1 | blue | red | diff --git a/blocks/task1/maps/level4/table_rep_input/46 b/blocks/task1/maps/level4/table_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..f5d93fbb4e2aa645134a1a8bc561937a6418a4cd --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/46 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | red | +Level 1 | yellow | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/47 b/blocks/task1/maps/level4/table_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..89b0d04850135baabbc58dd02da3e75ba6cefb88 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/47 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/48 b/blocks/task1/maps/level4/table_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..2e441d0b03afa73b7422574100c16d44cfaddaa2 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/48 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | orange | +Level 2 | yellow | +Level 1 | green | diff --git a/blocks/task1/maps/level4/table_rep_input/49 b/blocks/task1/maps/level4/table_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..2091129eff1823678345d6fd8a00b6707fdb50b5 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/49 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | green | +Level 1 | red | purple | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/5 b/blocks/task1/maps/level4/table_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..d21b10ad3809f327553f6d464a92e2e4cd35965a --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/5 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | red | purple | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/50 b/blocks/task1/maps/level4/table_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..5edacb14fec9e7373c2a9aef165df02adcb48678 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/50 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | red | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/51 b/blocks/task1/maps/level4/table_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..a081fc798228b18ac90348980eec931f7a1aa6dc --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/51 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | green | red | diff --git a/blocks/task1/maps/level4/table_rep_input/52 b/blocks/task1/maps/level4/table_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..384263f06fe4d765588d3bd8b0b3678f20139c1b --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/52 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | blue | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/53 b/blocks/task1/maps/level4/table_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..5370a266543d36db515a3b324a45c47f50ab38c7 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/53 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | red | +Level 1 | yellow | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/54 b/blocks/task1/maps/level4/table_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..d758d06a2880d766d461a99e05e5096681f672c8 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/54 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | yellow | orange | green | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/55 b/blocks/task1/maps/level4/table_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..bd71b070c60387a7909be1e0d75034eebbd8254b --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/55 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | orange | blue | red | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/56 b/blocks/task1/maps/level4/table_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..3e05518eddd30c46a013a313e147b33cd0dfbc5c --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/56 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | yellow | +Level 3 | purple | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/57 b/blocks/task1/maps/level4/table_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..f64f33c8c1b913374ffaef33472c8dfc4929651d --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/57 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | orange | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/58 b/blocks/task1/maps/level4/table_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..c2d0536a2b9c2cd3eeea73704cb55a3288b84f72 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/58 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | green | red | orange | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/59 b/blocks/task1/maps/level4/table_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..cbd62af2411c5f047344ced1a1792386394cd1dd --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/59 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | purple | +Level 1 | orange | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/6 b/blocks/task1/maps/level4/table_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..2e0ce022770e65126e143d50dadd86316ec67780 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/6 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | orange | +Level 3 | blue | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task1/maps/level4/table_rep_input/60 b/blocks/task1/maps/level4/table_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..c4f542e252ab0dbc289d6db6099340a608b61f5a --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/60 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | orange | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/61 b/blocks/task1/maps/level4/table_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..847a0536fab376c871e056118f9c0aac2196f175 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/61 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | green | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/62 b/blocks/task1/maps/level4/table_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..84edffea33bad7139ff6dc0d68dc4f35878c24bb --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/62 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | red | green | purple | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/63 b/blocks/task1/maps/level4/table_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..c99edf9eeff1e609717087267693ef8a830c1226 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/63 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | blue | orange | green | red | diff --git a/blocks/task1/maps/level4/table_rep_input/64 b/blocks/task1/maps/level4/table_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..b16c37771164b30b480b2e5b3b7e06df009e555d --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/64 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/65 b/blocks/task1/maps/level4/table_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..4b12ab041932dba218e05030f1bf6978bcc294e5 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/65 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | orange | green | yellow | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/66 b/blocks/task1/maps/level4/table_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..4b06c4198c9c4f52d89c6c0a656ad1a181c199d7 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/66 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | blue | +Level 3 | green | +Level 2 | yellow | +Level 1 | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/67 b/blocks/task1/maps/level4/table_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..41be237491c4c15fdc23a5ce9d5336690f60d8c6 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/67 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/68 b/blocks/task1/maps/level4/table_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..f5c477625ddc052df6421a3df1707a5bc0143529 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/68 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | red | purple | orange | green | diff --git a/blocks/task1/maps/level4/table_rep_input/69 b/blocks/task1/maps/level4/table_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..c689da4bc3805403c3923c065c81bad87bcd9b9e --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/69 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | yellow | green | diff --git a/blocks/task1/maps/level4/table_rep_input/7 b/blocks/task1/maps/level4/table_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..252d273aa4c229136dce561d415225ca06768d55 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/7 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | orange | yellow | red | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/70 b/blocks/task1/maps/level4/table_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..538c475632a0bddfea47183f8a1397907e2d30f4 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/70 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | green | blue | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/71 b/blocks/task1/maps/level4/table_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..1b4b87989a9aef296b7bf5b8a3beb6d7c4490229 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/71 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | purple | green | diff --git a/blocks/task1/maps/level4/table_rep_input/72 b/blocks/task1/maps/level4/table_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..ceb2071897a9eb8f8d663ee567a8bff696161f46 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/72 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | red | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/73 b/blocks/task1/maps/level4/table_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..0ba37490a6b4a8835823e0a41c618fac5724ef56 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/73 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | green | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/74 b/blocks/task1/maps/level4/table_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..ecb6983351fcba0a5d5ecb6ccbd99d06026f32c4 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/74 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | red | +Level 1 | blue | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/75 b/blocks/task1/maps/level4/table_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..5925ad8948d5a41e6ea72c7fab97e78b317dbf98 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/75 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | green | +Level 1 | red | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/76 b/blocks/task1/maps/level4/table_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..98e36b6c5f6187e975cb096f7daa3d0f8d01ee93 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/76 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | blue | red | diff --git a/blocks/task1/maps/level4/table_rep_input/77 b/blocks/task1/maps/level4/table_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..0c883fd2f9ef00c670e279c805aa960965e9e267 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/77 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | red | +Level 1 | blue | green | diff --git a/blocks/task1/maps/level4/table_rep_input/78 b/blocks/task1/maps/level4/table_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..2a7146ca2be64bb0fa087702b2e7234068197b4d --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/78 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | red | green | diff --git a/blocks/task1/maps/level4/table_rep_input/79 b/blocks/task1/maps/level4/table_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..2f371cffd2356db45a69ea3982d2c195fbffdc0b --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/79 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | yellow | +Level 3 | green | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task1/maps/level4/table_rep_input/8 b/blocks/task1/maps/level4/table_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..619ab2d807f2a160703d6eb5d4717c1a23dadc5d --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/8 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | blue | +Level 3 | green | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/80 b/blocks/task1/maps/level4/table_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..836cebad63692fc5d57ee1676247cab54fe2e4da --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/80 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | blue | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/81 b/blocks/task1/maps/level4/table_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..596bf4ee301d24573124a822be19a6dcd01fda32 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/81 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | yellow | red | blue | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/82 b/blocks/task1/maps/level4/table_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..9bec191de427ebd01f3ae93b96363331157ca894 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/82 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | yellow | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/83 b/blocks/task1/maps/level4/table_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..3aa388c233e8b725ad5586a22b55cc2a6711c0a1 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/83 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | red | +Level 1 | yellow | orange | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/84 b/blocks/task1/maps/level4/table_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..7306e70a8dfd3476376df53e49569cef5b362600 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/84 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | yellow | blue | green | diff --git a/blocks/task1/maps/level4/table_rep_input/85 b/blocks/task1/maps/level4/table_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..dc76213e82f96993ed88ae4b126063b5c12f9820 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/85 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | red | +Level 1 | purple | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/86 b/blocks/task1/maps/level4/table_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..c5ca2aebce36bcd3fc3cece23ee5a2e0bf6e99c0 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/86 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/87 b/blocks/task1/maps/level4/table_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..8e1c4259f39516bc0f3ec648fa09671860b98ac0 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/87 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | blue | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/88 b/blocks/task1/maps/level4/table_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..8b1c752d6e72c72add4d682db0643f6940f282a6 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/88 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | blue | purple | green | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/89 b/blocks/task1/maps/level4/table_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..fcb72b820af4b4258150bf01116cd6baf4d0e59e --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/89 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | red | green | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/9 b/blocks/task1/maps/level4/table_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..fc3a173f9194d2164488d3ae7b8d8e550c20ba6b --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/9 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | green | blue | red | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/90 b/blocks/task1/maps/level4/table_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..3c7f9499adcd968382a26f078b533ffc502e1533 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/90 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | blue | +Level 3 | orange | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/91 b/blocks/task1/maps/level4/table_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..cff08faf77d0e6d900863a8c20022f906cde3a9b --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/91 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | blue | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/92 b/blocks/task1/maps/level4/table_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..41c6c2869ed7f4a064d8f1553d37f0b226b9bbf9 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/92 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | yellow | blue | orange | purple | diff --git a/blocks/task1/maps/level4/table_rep_input/93 b/blocks/task1/maps/level4/table_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..5b8b0fccab5d883a7f9c807dac24bd5ba554757d --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/93 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | purple | +Level 3 | yellow | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/94 b/blocks/task1/maps/level4/table_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..8affb05c89eb7646ca49c70459651abc7381f317 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/94 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | purple | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/95 b/blocks/task1/maps/level4/table_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..d217fd20da856393181f2f83a3e6a48dae7faf3a --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/95 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | red | +Level 1 | orange | green | diff --git a/blocks/task1/maps/level4/table_rep_input/96 b/blocks/task1/maps/level4/table_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..30eb7c27afe6db84d4dff22c2aea55ae53af8618 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/96 @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | purple | +Level 3 | green | +Level 2 | orange | +Level 1 | blue | diff --git a/blocks/task1/maps/level4/table_rep_input/97 b/blocks/task1/maps/level4/table_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..463a62b1e62cdd38b96fdc719077484449a6b471 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/97 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | yellow | red | orange | diff --git a/blocks/task1/maps/level4/table_rep_input/98 b/blocks/task1/maps/level4/table_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..9079df9c5ad85cdb3e30ec0d2e75ff00828750f8 --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/98 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task1/maps/level4/table_rep_input/99 b/blocks/task1/maps/level4/table_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..c8b5a633e2006d2171762fe99f7fa739682128ba --- /dev/null +++ b/blocks/task1/maps/level4/table_rep_input/99 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | yellow | red | diff --git a/blocks/task1/maps/level4/text_input/0.txt b/blocks/task1/maps/level4/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/0.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/1.txt b/blocks/task1/maps/level4/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bed5b59a946077be030ea0f6c42614dff44bf9a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/1.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 4? diff --git a/blocks/task1/maps/level4/text_input/10.txt b/blocks/task1/maps/level4/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/10.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/11.txt b/blocks/task1/maps/level4/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/11.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/12.txt b/blocks/task1/maps/level4/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/12.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/13.txt b/blocks/task1/maps/level4/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/13.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/14.txt b/blocks/task1/maps/level4/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/14.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/15.txt b/blocks/task1/maps/level4/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/15.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/16.txt b/blocks/task1/maps/level4/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/16.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/17.txt b/blocks/task1/maps/level4/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/17.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/18.txt b/blocks/task1/maps/level4/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/18.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/19.txt b/blocks/task1/maps/level4/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/19.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level4/text_input/2.txt b/blocks/task1/maps/level4/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/2.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/20.txt b/blocks/task1/maps/level4/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/20.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level4/text_input/21.txt b/blocks/task1/maps/level4/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/21.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/22.txt b/blocks/task1/maps/level4/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/22.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/23.txt b/blocks/task1/maps/level4/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/23.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level4/text_input/24.txt b/blocks/task1/maps/level4/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/24.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level4/text_input/25.txt b/blocks/task1/maps/level4/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/25.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/26.txt b/blocks/task1/maps/level4/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/26.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level4/text_input/27.txt b/blocks/task1/maps/level4/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/27.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/28.txt b/blocks/task1/maps/level4/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/28.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level4/text_input/29.txt b/blocks/task1/maps/level4/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/29.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/3.txt b/blocks/task1/maps/level4/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/3.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level4/text_input/30.txt b/blocks/task1/maps/level4/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/30.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/31.txt b/blocks/task1/maps/level4/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/31.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level4/text_input/32.txt b/blocks/task1/maps/level4/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/32.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/33.txt b/blocks/task1/maps/level4/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/33.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/34.txt b/blocks/task1/maps/level4/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/34.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level4/text_input/35.txt b/blocks/task1/maps/level4/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/35.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/36.txt b/blocks/task1/maps/level4/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/36.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/37.txt b/blocks/task1/maps/level4/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/37.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level4/text_input/38.txt b/blocks/task1/maps/level4/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/38.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/39.txt b/blocks/task1/maps/level4/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/39.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/4.txt b/blocks/task1/maps/level4/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/4.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/40.txt b/blocks/task1/maps/level4/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/40.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level4/text_input/41.txt b/blocks/task1/maps/level4/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..147b64933541a006fdcce9025fa64ab642bd8be8 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/41.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 2? diff --git a/blocks/task1/maps/level4/text_input/42.txt b/blocks/task1/maps/level4/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/42.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/43.txt b/blocks/task1/maps/level4/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/43.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/44.txt b/blocks/task1/maps/level4/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/44.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level4/text_input/45.txt b/blocks/task1/maps/level4/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/45.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level4/text_input/46.txt b/blocks/task1/maps/level4/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/46.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/47.txt b/blocks/task1/maps/level4/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/47.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/48.txt b/blocks/task1/maps/level4/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/48.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level4/text_input/49.txt b/blocks/task1/maps/level4/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/49.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/5.txt b/blocks/task1/maps/level4/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..147b64933541a006fdcce9025fa64ab642bd8be8 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/5.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 2? diff --git a/blocks/task1/maps/level4/text_input/50.txt b/blocks/task1/maps/level4/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/50.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/51.txt b/blocks/task1/maps/level4/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/51.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/52.txt b/blocks/task1/maps/level4/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/52.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/53.txt b/blocks/task1/maps/level4/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/53.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/54.txt b/blocks/task1/maps/level4/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/54.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/55.txt b/blocks/task1/maps/level4/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/55.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level4/text_input/56.txt b/blocks/task1/maps/level4/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/56.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level4/text_input/57.txt b/blocks/task1/maps/level4/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/57.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level4/text_input/58.txt b/blocks/task1/maps/level4/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/58.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level4/text_input/59.txt b/blocks/task1/maps/level4/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/59.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/6.txt b/blocks/task1/maps/level4/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..bed5b59a946077be030ea0f6c42614dff44bf9a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/6.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 4? diff --git a/blocks/task1/maps/level4/text_input/60.txt b/blocks/task1/maps/level4/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/60.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/61.txt b/blocks/task1/maps/level4/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/61.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level4/text_input/62.txt b/blocks/task1/maps/level4/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/62.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level4/text_input/63.txt b/blocks/task1/maps/level4/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/63.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level4/text_input/64.txt b/blocks/task1/maps/level4/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/64.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/65.txt b/blocks/task1/maps/level4/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/65.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level4/text_input/66.txt b/blocks/task1/maps/level4/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/66.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/67.txt b/blocks/task1/maps/level4/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/67.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/68.txt b/blocks/task1/maps/level4/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/68.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/69.txt b/blocks/task1/maps/level4/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/69.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/7.txt b/blocks/task1/maps/level4/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/7.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level4/text_input/70.txt b/blocks/task1/maps/level4/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/70.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level4/text_input/71.txt b/blocks/task1/maps/level4/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/71.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/72.txt b/blocks/task1/maps/level4/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/72.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/73.txt b/blocks/task1/maps/level4/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/73.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/74.txt b/blocks/task1/maps/level4/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/74.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/75.txt b/blocks/task1/maps/level4/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/75.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/76.txt b/blocks/task1/maps/level4/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/76.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/77.txt b/blocks/task1/maps/level4/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/77.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/78.txt b/blocks/task1/maps/level4/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/78.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/79.txt b/blocks/task1/maps/level4/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/79.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level4/text_input/8.txt b/blocks/task1/maps/level4/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/8.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level4/text_input/80.txt b/blocks/task1/maps/level4/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/80.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/81.txt b/blocks/task1/maps/level4/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/81.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/82.txt b/blocks/task1/maps/level4/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/82.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level4/text_input/83.txt b/blocks/task1/maps/level4/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..147b64933541a006fdcce9025fa64ab642bd8be8 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/83.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 2? diff --git a/blocks/task1/maps/level4/text_input/84.txt b/blocks/task1/maps/level4/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/84.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/85.txt b/blocks/task1/maps/level4/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/85.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/86.txt b/blocks/task1/maps/level4/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/86.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/87.txt b/blocks/task1/maps/level4/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/87.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/88.txt b/blocks/task1/maps/level4/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/88.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level4/text_input/89.txt b/blocks/task1/maps/level4/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..147b64933541a006fdcce9025fa64ab642bd8be8 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/89.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 2? diff --git a/blocks/task1/maps/level4/text_input/9.txt b/blocks/task1/maps/level4/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/9.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level4/text_input/90.txt b/blocks/task1/maps/level4/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level4/text_input/90.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level4/text_input/91.txt b/blocks/task1/maps/level4/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/91.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/92.txt b/blocks/task1/maps/level4/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/92.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/93.txt b/blocks/task1/maps/level4/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..bed5b59a946077be030ea0f6c42614dff44bf9a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/93.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 4? diff --git a/blocks/task1/maps/level4/text_input/94.txt b/blocks/task1/maps/level4/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/94.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level4/text_input/95.txt b/blocks/task1/maps/level4/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/95.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level4/text_input/96.txt b/blocks/task1/maps/level4/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..bed5b59a946077be030ea0f6c42614dff44bf9a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/96.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 4? diff --git a/blocks/task1/maps/level4/text_input/97.txt b/blocks/task1/maps/level4/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..147b64933541a006fdcce9025fa64ab642bd8be8 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/97.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 2? diff --git a/blocks/task1/maps/level4/text_input/98.txt b/blocks/task1/maps/level4/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/98.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level4/text_input/99.txt b/blocks/task1/maps/level4/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level4/text_input/99.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/annotation.txt b/blocks/task1/maps/level5/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e3d78fa877f66cd13626a4c483c955bbd60802e --- /dev/null +++ b/blocks/task1/maps/level5/annotation.txt @@ -0,0 +1,100 @@ +orange +blue +blue +red +purple +red +blue +yellow +purple +purple +blue +green +orange +blue +yellow +purple +yellow +red +orange +blue +yellow +green +red +orange +blue +purple +orange +green +orange +yellow +green +green +yellow +purple +orange +yellow +purple +purple +yellow +orange +green +orange +purple +yellow +red +purple +blue +orange +orange +blue +purple +orange +purple +green +green +green +blue +orange +purple +yellow +green +red +green +purple +blue +blue +orange +blue +purple +purple +purple +blue +orange +red +green +blue +purple +green +yellow +blue +yellow +red +yellow +green +blue +yellow +green +yellow +blue +green +blue +blue +yellow +green +green +yellow +orange +purple +purple +blue diff --git a/blocks/task1/maps/level5/image_input/0.jpg b/blocks/task1/maps/level5/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e6dea767c9004b16aec0c8cb07777292ebc7199 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0ee46a3fc851748c67e04bf6435a33d95642938556fca7507cf43a19e2a9fd +size 11266 diff --git a/blocks/task1/maps/level5/image_input/1.jpg b/blocks/task1/maps/level5/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e4474b13020c145a8fe2762ed38f11bd122ba0e --- /dev/null +++ b/blocks/task1/maps/level5/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d42708954106ca3302a8e1e128658c8bc0d55681edf6af95692449bcc881228 +size 11770 diff --git a/blocks/task1/maps/level5/image_input/10.jpg b/blocks/task1/maps/level5/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1334fcecbf14338eae92fe5dd843c30e3df5d04a --- /dev/null +++ b/blocks/task1/maps/level5/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc0b3ca7060d1106b5dbc20440f7b39e27bb9829fa6795dc6c720f3f951fe5b +size 10667 diff --git a/blocks/task1/maps/level5/image_input/11.jpg b/blocks/task1/maps/level5/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d86d042b41570e4bb39a1ad76a6bbebb15ab1532 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feaa42bc31ac4034e9519e4e03cf40d8b89928812f3658fd6d410e414830caf9 +size 9821 diff --git a/blocks/task1/maps/level5/image_input/12.jpg b/blocks/task1/maps/level5/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de965873cbacddbf7baefc1affc87542b4bdff9c --- /dev/null +++ b/blocks/task1/maps/level5/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c61d3f64d28736558cc2164b337028eab56645eb25673c5b447251e7dbb5a0 +size 10757 diff --git a/blocks/task1/maps/level5/image_input/13.jpg b/blocks/task1/maps/level5/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce43c0dadb6c1a02627548cec71d7e6601bcae2 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb6b44eb134021e10c46c233242a7b437aaf8b72af4f33c8d9d300bc3476f63 +size 10647 diff --git a/blocks/task1/maps/level5/image_input/14.jpg b/blocks/task1/maps/level5/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9029f18ca5258f3c247ff6a991a3bcbe0524369a --- /dev/null +++ b/blocks/task1/maps/level5/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a58e7a171c19e99d3bfc0d60f100350f05861d91c29345008573aa21be22f8a +size 10038 diff --git a/blocks/task1/maps/level5/image_input/15.jpg b/blocks/task1/maps/level5/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cfa220652b7bc2e380c604b385aebfde7019631 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffbef46324d1b6bf63baf1861e53c6d969b09d7cc32fff5ec561c51613bbfc58 +size 11449 diff --git a/blocks/task1/maps/level5/image_input/16.jpg b/blocks/task1/maps/level5/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c20b608e4bec42f9971b44a2cbe249243e104d2 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d03dbe21b9c462a33fd1c1a29815188e6258efe65cfbf0d4022705f8256f55 +size 10533 diff --git a/blocks/task1/maps/level5/image_input/17.jpg b/blocks/task1/maps/level5/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..493a1021332bfb23aa603ddf63e0345fa7352fad --- /dev/null +++ b/blocks/task1/maps/level5/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88ebd9d08eecc9b0f06bf54efca2d2ceb0f429e8077f3115d57f4e38960397b5 +size 10747 diff --git a/blocks/task1/maps/level5/image_input/18.jpg b/blocks/task1/maps/level5/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f361c880340e05d0dd1037adfe1c6362f63024a8 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d15e65a553b5120505145a65442f6bcd4997a5f08fc97865d23dc044a4b91e4 +size 10409 diff --git a/blocks/task1/maps/level5/image_input/19.jpg b/blocks/task1/maps/level5/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4e0d7875f5a2e2d3f7bc179f78933ffd73b5ea9 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af63301aad7b131904d0af8949790b91a8423837e08052f1e6846abdf18400a3 +size 11050 diff --git a/blocks/task1/maps/level5/image_input/2.jpg b/blocks/task1/maps/level5/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..844f1268cf43e76669828e9811e762c4388be990 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e2447fd6226c3d1eb49d8617aa4dc5251151993ba77b26c31fd73bb527802f7 +size 10149 diff --git a/blocks/task1/maps/level5/image_input/20.jpg b/blocks/task1/maps/level5/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16e448eae445e38bada6c40928b0659ac1372b53 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a14758c2b500bc2dee748dcfbd0e8ebb9e96b9d8e9f1205f38b986eec8db6df +size 10239 diff --git a/blocks/task1/maps/level5/image_input/21.jpg b/blocks/task1/maps/level5/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f85fa650a4c28c193c22a0af3c6c55a41dd43a0 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7b1a99deb9c3d9b3d04e5e7ecd553d60669ccfc791a04da9f2902227a9ef0c7 +size 9175 diff --git a/blocks/task1/maps/level5/image_input/22.jpg b/blocks/task1/maps/level5/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28c65f52b37c2d8821023bb58251e0c3d7212e73 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddac6ce0fa0a7873ff9acc43da0d3c866a563006ed1062d51aa71c815812c644 +size 10739 diff --git a/blocks/task1/maps/level5/image_input/23.jpg b/blocks/task1/maps/level5/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..840a6936f70064c3e9dee42bf517978b4c0db68f --- /dev/null +++ b/blocks/task1/maps/level5/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621727245a0039711bd211194900b58f88240e671c853e4772b3f415a854fab2 +size 12103 diff --git a/blocks/task1/maps/level5/image_input/24.jpg b/blocks/task1/maps/level5/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e61e87856dce9fac9ff2337bd157892ef0cf5fdd --- /dev/null +++ b/blocks/task1/maps/level5/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956d7f967b3f04f594915034ab09c8910cc978c292cccf6a2f893311f335e464 +size 10808 diff --git a/blocks/task1/maps/level5/image_input/25.jpg b/blocks/task1/maps/level5/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1ac88e56432468f9e3771025ab02092d6972422 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e2b7f4b323996f04511bb45c0388652704ca914a30c85e1b5f646d5c1efefa +size 10441 diff --git a/blocks/task1/maps/level5/image_input/26.jpg b/blocks/task1/maps/level5/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad647c59d365b70286cdffc39b47cfc19ac64b0b --- /dev/null +++ b/blocks/task1/maps/level5/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a8c012becd998036f1be3023b7493f748b7abd2c2ba9c72cbf8399f2adcb87 +size 9967 diff --git a/blocks/task1/maps/level5/image_input/27.jpg b/blocks/task1/maps/level5/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f071bf79259e3a04a3582fd759741e6cd3d946db --- /dev/null +++ b/blocks/task1/maps/level5/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c011e8d9c691446e7203b6d58bfb8c921ca00b5b66b5c4c5d830c65e66f5a3e3 +size 10132 diff --git a/blocks/task1/maps/level5/image_input/28.jpg b/blocks/task1/maps/level5/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4150190ca6b9a7c24232818041492cb608aaa92a --- /dev/null +++ b/blocks/task1/maps/level5/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b44b2b404726903121ba6d2572e07cc14aad9da7f3ac8a4ade82e4db8156abc +size 10715 diff --git a/blocks/task1/maps/level5/image_input/29.jpg b/blocks/task1/maps/level5/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdc12e6a846661844b3680f35d5ed5037d0fe96d --- /dev/null +++ b/blocks/task1/maps/level5/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7922b898f9958695fadd96b4daab21d152208f3fa491e21f1dcafb2101f9f128 +size 11745 diff --git a/blocks/task1/maps/level5/image_input/3.jpg b/blocks/task1/maps/level5/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..379994ec2c305745440f11eff45d12fc3e410468 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b2dd628f583176ddc08e36b3446e73450757e28541e7eaaeaa61c2e180dc08 +size 11267 diff --git a/blocks/task1/maps/level5/image_input/30.jpg b/blocks/task1/maps/level5/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ce6dd4af5890971b40bfea68d2ba70a392c083d --- /dev/null +++ b/blocks/task1/maps/level5/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8d690fd44c61f431ad48c843d5c55391b86dcda230393da9a068f40fe013c4 +size 10802 diff --git a/blocks/task1/maps/level5/image_input/31.jpg b/blocks/task1/maps/level5/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37854a873d4eb5ebc254e41b3d17a8667fc8a0f1 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6363ad829eea862a37728408f68c7cbcbc3d441c4da02591878264044d070e +size 11197 diff --git a/blocks/task1/maps/level5/image_input/32.jpg b/blocks/task1/maps/level5/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b1ba87a987ee8de3a08359aa950dfd08d3e20f2 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05f9b0bbcb8beaf9fed4548ecbbf8d0cfcbb07d5a547b0fc468af7823697742 +size 11571 diff --git a/blocks/task1/maps/level5/image_input/33.jpg b/blocks/task1/maps/level5/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0c49f8bbb249a475841ddf3c5e7daddb1cedcb7 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ee8ed30b8dea722437239f42ec6b301696c57a20fe9f46c555b89e5ea3d4dc +size 11622 diff --git a/blocks/task1/maps/level5/image_input/34.jpg b/blocks/task1/maps/level5/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6c42f65c2f204197fbb8b80b327c14bb10fe600 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc7246f77f2f1b6bbefa948db479d76e6347bb552f1d143ee45b7dab3a9b27d +size 10674 diff --git a/blocks/task1/maps/level5/image_input/35.jpg b/blocks/task1/maps/level5/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..262fa55281c1e9e938cb4364264d1038f7534627 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bd78fdad99831bdaffabbda270518ab74f1e5a94add15385b64471f8f972ce4 +size 10297 diff --git a/blocks/task1/maps/level5/image_input/36.jpg b/blocks/task1/maps/level5/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7eec2b1a595cf4ed567bb1ad159deb5494b7b9f --- /dev/null +++ b/blocks/task1/maps/level5/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d2dda0002a2a7c0e48eefb3091a2ba28fe30096c451706ad4ce1e1b5a98597 +size 11347 diff --git a/blocks/task1/maps/level5/image_input/37.jpg b/blocks/task1/maps/level5/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa0f2ca81ff56fea4ef345c7893a8c4815a8d448 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d61ba53c05f9be57d976bed13b58df9848d22f88241cc9b83e5bd078670ba2 +size 10932 diff --git a/blocks/task1/maps/level5/image_input/38.jpg b/blocks/task1/maps/level5/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f33ddedc54b9e8c73bcec485b683edf5544264d7 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385d5483c8a68b85caed95ce2b878122f9d00bb8858785ec55e712445f280c97 +size 9887 diff --git a/blocks/task1/maps/level5/image_input/39.jpg b/blocks/task1/maps/level5/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c8eb1688fe6f9011f087006a47c2ce400cdad93 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f075f158806f4dddd45aa9aeb075bc20491d3211f41368fe24a1c8ce5f16abe +size 11412 diff --git a/blocks/task1/maps/level5/image_input/4.jpg b/blocks/task1/maps/level5/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8aadabadc85c185dfc92a2c9ef22f2fc0004837a --- /dev/null +++ b/blocks/task1/maps/level5/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a8d145b7b40fcf7ad4e015138270279ed2fe1f0835f26efc3b1ffef0d25731 +size 9957 diff --git a/blocks/task1/maps/level5/image_input/40.jpg b/blocks/task1/maps/level5/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bd76cdfe75fa067188faee0e4624a0848396d9d --- /dev/null +++ b/blocks/task1/maps/level5/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fcee02414ae858e5f46913ecdcb43ad3a392f943d970577bbe2b996601a3ed4 +size 10750 diff --git a/blocks/task1/maps/level5/image_input/41.jpg b/blocks/task1/maps/level5/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38ec1266dd2f73781125027b8cf2c4688d308748 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75e4089eed0056925bb93021b6553dea9458dd4eba27a98ed971ffe9ffeee2 +size 10658 diff --git a/blocks/task1/maps/level5/image_input/42.jpg b/blocks/task1/maps/level5/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1f7b6f72e3fb7bf258f71cfe148cdffe97f3dde --- /dev/null +++ b/blocks/task1/maps/level5/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad2fb8f2f38eab029aa349313ff7d560693b12debdb0fab9a0633b7d3c0c5f3 +size 10938 diff --git a/blocks/task1/maps/level5/image_input/43.jpg b/blocks/task1/maps/level5/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1d2cdd97de62155d4f3df9954a8523165cdc5a7 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8370297b913b0ec46efbe92d3ad162f782333adbc9cb510c562b6b520f7542e +size 11033 diff --git a/blocks/task1/maps/level5/image_input/44.jpg b/blocks/task1/maps/level5/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf4a3e0d9b371484a33487983ee892b38bc81f21 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f12d4ad66fa419840ba345906376fc54f2f24457acd09fcf00b4b912fedfcc +size 10003 diff --git a/blocks/task1/maps/level5/image_input/45.jpg b/blocks/task1/maps/level5/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1563428db81d156264d65198b654a5e2e46c02dc --- /dev/null +++ b/blocks/task1/maps/level5/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278c23a1bd4a43db87534fa63f5e2ef6848b239d2fee25e7a11c426176125df9 +size 10049 diff --git a/blocks/task1/maps/level5/image_input/46.jpg b/blocks/task1/maps/level5/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dd6522b2d76ea41ec42915509cd8564ab1dadd8 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9fe0192db4f5bb8c8205cb547c7b2d39965b5047903bba3c171affe1a2f86f +size 11536 diff --git a/blocks/task1/maps/level5/image_input/47.jpg b/blocks/task1/maps/level5/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d78d2716480d794e71c0b739fb54fe77a4272d20 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcf98e469e52896d5a1568c3a6fd3418999381172c611f6288cf7257d808979 +size 10664 diff --git a/blocks/task1/maps/level5/image_input/48.jpg b/blocks/task1/maps/level5/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12a3b4e271ec2dbbe768e308475dab558b8222a1 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17145eaf1e1d13c0a74daaf97d658601ad0f313a42dd2e9799751d0c2d488a8c +size 11164 diff --git a/blocks/task1/maps/level5/image_input/49.jpg b/blocks/task1/maps/level5/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d2daf032519fdef7bff1ddf64fae054644d0b00 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b70c51c95330a61ae586c7568c6f91a7161478e1a08fd49ae682ef304eb8d8 +size 10715 diff --git a/blocks/task1/maps/level5/image_input/5.jpg b/blocks/task1/maps/level5/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e84ef8e53af036d060a72a6eb413cb6a2e531c0b --- /dev/null +++ b/blocks/task1/maps/level5/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a5e4a18763a3042f8e26e5e5b04c0ecf62749680c63462beb47072b608c7d7 +size 13963 diff --git a/blocks/task1/maps/level5/image_input/50.jpg b/blocks/task1/maps/level5/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a464d0f55a555bd8cbba140d8d6260cbe4ae35e --- /dev/null +++ b/blocks/task1/maps/level5/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de17434f7c2ffc06a0de0c0dc9dfe37a78d89d35aa64904828ffc1396733b6ba +size 10803 diff --git a/blocks/task1/maps/level5/image_input/51.jpg b/blocks/task1/maps/level5/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68db1493b8ab7bb0dc3843d8ad626035f7bd11aa --- /dev/null +++ b/blocks/task1/maps/level5/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d559f6a4832f254e5a9233ee81a4046ebe00a54e59c3a051b25efe954d8c0c94 +size 10611 diff --git a/blocks/task1/maps/level5/image_input/52.jpg b/blocks/task1/maps/level5/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fb5f8fabe2e89617fe9c780b2051d98fbc54817 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94dd933002e9baf19a9098b14467385a633a867d2b99c8e971905b4c9b75a86 +size 11182 diff --git a/blocks/task1/maps/level5/image_input/53.jpg b/blocks/task1/maps/level5/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09292b2b30b941b4c76b5f0081a6eeb9d7ba5506 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0cc997c7e437eb43c659c056951710189be68a11549da45f95f80d9f40ba543 +size 11144 diff --git a/blocks/task1/maps/level5/image_input/54.jpg b/blocks/task1/maps/level5/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd26a1da13934b28872b812d142063e127ec6777 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e397ea3d4aaada01b056ea07b216d4a77af1a5565858dd3deef7b6aba249eb +size 10596 diff --git a/blocks/task1/maps/level5/image_input/55.jpg b/blocks/task1/maps/level5/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..430e8766dce6badee57dcd6d56bb05c42532c46c --- /dev/null +++ b/blocks/task1/maps/level5/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7eac3adc829588ef6e7a36301a1cb8dcd8e64ea5359c01a24c12d918a9c2424 +size 10282 diff --git a/blocks/task1/maps/level5/image_input/56.jpg b/blocks/task1/maps/level5/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c97edc568b3340b1e53753d8b4133e76713ca1d1 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a46e21615710b39a7af594176a69323113d24d73b76ec09092fa2df7dd656e +size 10446 diff --git a/blocks/task1/maps/level5/image_input/57.jpg b/blocks/task1/maps/level5/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..021b4fdbb5be6a801751c0e07f8f1f04c4336319 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4424ef45f9488ad61261aa387afd71b0ed20288fcd2d111fb70eec7de563d5 +size 10768 diff --git a/blocks/task1/maps/level5/image_input/58.jpg b/blocks/task1/maps/level5/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d0836f7c96183a5f919cad2ab735e719a4e4fec --- /dev/null +++ b/blocks/task1/maps/level5/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:075ecd8b155e1611c2241b016bfdc9a632a1791f79ea143fefa47e8a46549534 +size 10388 diff --git a/blocks/task1/maps/level5/image_input/59.jpg b/blocks/task1/maps/level5/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c67074dacb52134f501392ddd5ce6ea51b56cef --- /dev/null +++ b/blocks/task1/maps/level5/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56fd5e614330c432cf05e2981882a55540b573ca9b3d7f925e498d7e8b757e1c +size 11095 diff --git a/blocks/task1/maps/level5/image_input/6.jpg b/blocks/task1/maps/level5/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59d47fbd17bac1eb45a0022f40c72aac05d48a91 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65882b5ef487c071c4b591d705e6d749e884be9eb854e289aa2b202ca2552318 +size 10186 diff --git a/blocks/task1/maps/level5/image_input/60.jpg b/blocks/task1/maps/level5/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4032518310185cc076f7a35eeeeda610c256dcd1 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0807be247557016078d978e2fa323d22319347372de97b698b5ab8dfa826ecc +size 11467 diff --git a/blocks/task1/maps/level5/image_input/61.jpg b/blocks/task1/maps/level5/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a0bc5da379190e1bf8f30f336df1d2dee5c3db1 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59277ab7b203f5cce12418ab9e80c663f63171d68c8c814652b134aff8491a65 +size 10820 diff --git a/blocks/task1/maps/level5/image_input/62.jpg b/blocks/task1/maps/level5/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53d7f46a93d1b4a08746e2d3f70b7d67341ec3ba --- /dev/null +++ b/blocks/task1/maps/level5/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7640fe50fbeb91c58e5d18d2ac1a130e2ffc664bf832fcf9f1601131e7f5c790 +size 10982 diff --git a/blocks/task1/maps/level5/image_input/63.jpg b/blocks/task1/maps/level5/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a33972cba53ca13695e3fa489c75332cadb01fd --- /dev/null +++ b/blocks/task1/maps/level5/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4079afd0816515a8badfac10cba39a42cd2f97badfd3e3eb4dc227eed8462fb5 +size 10650 diff --git a/blocks/task1/maps/level5/image_input/64.jpg b/blocks/task1/maps/level5/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f038b300e157b4762d45bdfdcc529deb0d3d953c --- /dev/null +++ b/blocks/task1/maps/level5/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7c676bd0a76229b8a666d455db80b96fa6ea0b934cc8e536711d68b2ab6820 +size 11164 diff --git a/blocks/task1/maps/level5/image_input/65.jpg b/blocks/task1/maps/level5/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce43c0dadb6c1a02627548cec71d7e6601bcae2 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb6b44eb134021e10c46c233242a7b437aaf8b72af4f33c8d9d300bc3476f63 +size 10647 diff --git a/blocks/task1/maps/level5/image_input/66.jpg b/blocks/task1/maps/level5/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d095a805692a405ad43106b8e1c8f35e621ef90 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:450a9ccd36ddc335ec9956bcc2c7f41a86c51df5ccfce7e77176a67c331efb07 +size 10676 diff --git a/blocks/task1/maps/level5/image_input/67.jpg b/blocks/task1/maps/level5/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96270786bbe8eeae956f6c12a4a22d3d08779153 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1bbe63d11c7c01307ea270bcd95355dd54ae7307d882733cd035dd183d50e94 +size 10796 diff --git a/blocks/task1/maps/level5/image_input/68.jpg b/blocks/task1/maps/level5/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ff2bb59496848ccaf2c55bde5b29f9c7cc14c0d --- /dev/null +++ b/blocks/task1/maps/level5/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8743110f9733e1f3f90001609057207547b7aa31de58b24b88426706ab8ae3 +size 10961 diff --git a/blocks/task1/maps/level5/image_input/69.jpg b/blocks/task1/maps/level5/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7885d12fb4a2a37e92bc839fcb6158e3425e1ff4 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149b8fbb3deac43a9f5c73a788bcd8063e5472bf512953160e9f2d540dfb7312 +size 10266 diff --git a/blocks/task1/maps/level5/image_input/7.jpg b/blocks/task1/maps/level5/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58e945904fdfd50a3677dd87d7fda45c997d89aa --- /dev/null +++ b/blocks/task1/maps/level5/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac356b5c50376013c02acc65f397b08917e448e88ecb2eef5dcbc6458404eb06 +size 10943 diff --git a/blocks/task1/maps/level5/image_input/70.jpg b/blocks/task1/maps/level5/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a86957f0ea5bbd8ac1beebfc06309ddbb60cbd92 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a30676f64080e7a2ba4a828d3f45d24d9a88f9482f81dc196c543a73f5014c +size 10437 diff --git a/blocks/task1/maps/level5/image_input/71.jpg b/blocks/task1/maps/level5/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e334f6cfc7dfabb8c8902c143e603f0493b7ba6e --- /dev/null +++ b/blocks/task1/maps/level5/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3241f61d0416d02f9a6ef90a316d61c38609be6e7a5af7be2c13a6caacd5975c +size 10143 diff --git a/blocks/task1/maps/level5/image_input/72.jpg b/blocks/task1/maps/level5/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d529c42b08b821ddfb01df0ecd80d9e048ff9f3a --- /dev/null +++ b/blocks/task1/maps/level5/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5993c685cf575b80b633c3aa78185e0eafb3c86bd296257cc1dcc0ef5b2dae +size 10635 diff --git a/blocks/task1/maps/level5/image_input/73.jpg b/blocks/task1/maps/level5/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c36c020649d5d4f2b96972caa1b7e2042352607 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0901204cee6d4981a73a7af76ffd15d6b8deadc8ad90f0d27161e66b645e5ab +size 11129 diff --git a/blocks/task1/maps/level5/image_input/74.jpg b/blocks/task1/maps/level5/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29977b3d71d1517620b2ca3d6114e2671b53d5ce --- /dev/null +++ b/blocks/task1/maps/level5/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4535c05c3209d97fb6bbccec1341fde9838bdc37d9bdd75bd6a2dd151f5260db +size 11221 diff --git a/blocks/task1/maps/level5/image_input/75.jpg b/blocks/task1/maps/level5/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02937606156ae49551e0ba8ab95c9d7c1aed0234 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f82300711a148927ab4dd2f13b72edded8ff618531ad2c07951577168806a3 +size 11160 diff --git a/blocks/task1/maps/level5/image_input/76.jpg b/blocks/task1/maps/level5/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..791feab1a5e1d9484db7a40c3ee17672bbf57dce --- /dev/null +++ b/blocks/task1/maps/level5/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e38672411e1e2936b619e46ef4a4ab22cf3824727032e2cd89f8b15b8a6c253 +size 10299 diff --git a/blocks/task1/maps/level5/image_input/77.jpg b/blocks/task1/maps/level5/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f2f9c1836638eee89080775c9b57e362a2a2179 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3f8efedc52aa7beb6f8b2ff54d5f0580bf086fc8f9261bbaa3944b26819039 +size 10117 diff --git a/blocks/task1/maps/level5/image_input/78.jpg b/blocks/task1/maps/level5/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7c5a89edd1994eadd4c9388d341cccd868eac46 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2010adf1e512b5aefcf031333787b085e078412ca9563ff38d94d553404fdda7 +size 11273 diff --git a/blocks/task1/maps/level5/image_input/79.jpg b/blocks/task1/maps/level5/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04066e6b329f05650b09a99874610e4d9eeee70f --- /dev/null +++ b/blocks/task1/maps/level5/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6997dc683914ef1dee8e073db98a96896e1e5fa28cda0c2c0645d392ba4bb85d +size 10418 diff --git a/blocks/task1/maps/level5/image_input/8.jpg b/blocks/task1/maps/level5/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d1b9e6a22566222956b6cbdd81eb618ff4bb31a --- /dev/null +++ b/blocks/task1/maps/level5/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ea4b43a69982693e2fb97ca173695f13593ab917cfc73d1906ed1f6c9f19f1 +size 11661 diff --git a/blocks/task1/maps/level5/image_input/80.jpg b/blocks/task1/maps/level5/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0f4a1bc9d8865e1fc0dea85ead88de65bff7257 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8d361d7e58c17bd5661fe5e3d90bf00d77e2fdc59ff98a2ccfb3741276d0ae +size 9994 diff --git a/blocks/task1/maps/level5/image_input/81.jpg b/blocks/task1/maps/level5/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c10391ff3d948d3b53bac07d38bbc2dbc26beb3a --- /dev/null +++ b/blocks/task1/maps/level5/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240a9174613f95c26fc6966f47c3299a2a7519b0700335816a8fbc82fb48f720 +size 11371 diff --git a/blocks/task1/maps/level5/image_input/82.jpg b/blocks/task1/maps/level5/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d06ebf60dd88e7b6b39a8b271fc8bfb938288ad --- /dev/null +++ b/blocks/task1/maps/level5/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfcecb36ba2f3821a3b81703c1e1fe4e77db94483c93bcbbfbd3f4a83f35fb1 +size 10434 diff --git a/blocks/task1/maps/level5/image_input/83.jpg b/blocks/task1/maps/level5/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3411352d127e2d893de5b09dd6c493387c9946f5 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6e40a79d0edbcd6b9299e9e614bfb13a246c8d2390dddf373af6a15ad15a43 +size 10789 diff --git a/blocks/task1/maps/level5/image_input/84.jpg b/blocks/task1/maps/level5/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6078669109ce0fdb290cdfe3b4da19b1eb8236e0 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8914879abbcb86703a419c02fc4dcbdc6dfd9149f759008ef92d2a1337ff3cc5 +size 10291 diff --git a/blocks/task1/maps/level5/image_input/85.jpg b/blocks/task1/maps/level5/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f3d32ad550aecc90549133b8858d2cdc850a54b --- /dev/null +++ b/blocks/task1/maps/level5/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff537a07cd2812a3aec78a56dc8c67feae9dcbde787a0a169cabd705a4d97b55 +size 11638 diff --git a/blocks/task1/maps/level5/image_input/86.jpg b/blocks/task1/maps/level5/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14c0910d9199275297c9b82093c7b519c6d8ee71 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70513f2c20d25cfc4ef1b105587506da1ea25e1ccbb28bedeac167d8de921476 +size 9974 diff --git a/blocks/task1/maps/level5/image_input/87.jpg b/blocks/task1/maps/level5/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6f7da153598aa4e11513388f4e89112f2c6f62f --- /dev/null +++ b/blocks/task1/maps/level5/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a511ab8e416cd9d9752ca7a644d0f9cc88707f4ea59dda3c9e242193ace1b48 +size 10852 diff --git a/blocks/task1/maps/level5/image_input/88.jpg b/blocks/task1/maps/level5/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6581a1b329d5033f828f2e7d45dad477e920f4a --- /dev/null +++ b/blocks/task1/maps/level5/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43b711d299bb2315728a694b242d6a23003973a9a1ae31d025a33081ebf2927 +size 10886 diff --git a/blocks/task1/maps/level5/image_input/89.jpg b/blocks/task1/maps/level5/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce43c0dadb6c1a02627548cec71d7e6601bcae2 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb6b44eb134021e10c46c233242a7b437aaf8b72af4f33c8d9d300bc3476f63 +size 10647 diff --git a/blocks/task1/maps/level5/image_input/9.jpg b/blocks/task1/maps/level5/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1c27130e9cf56ca2604420ce823268dacf4de37 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae83916b1da099e06fda7f0b96fa59ace5e0559b41ff65ca11ea4547779ca332 +size 11268 diff --git a/blocks/task1/maps/level5/image_input/90.jpg b/blocks/task1/maps/level5/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cb589bc55aba1f90246ba3e8543adda5a778065 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d07c9da662b2de52ae613d1bc452ff1da4f509358182eb41a20cc2b15a10e2f +size 10322 diff --git a/blocks/task1/maps/level5/image_input/91.jpg b/blocks/task1/maps/level5/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..880d436680d1d548219c342a6af3b57b858cf731 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47398fabf982a4278caf620a56cbb38bf32956857bf701956e890c5fbf0a68f0 +size 11072 diff --git a/blocks/task1/maps/level5/image_input/92.jpg b/blocks/task1/maps/level5/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc9b55d4aae526feea0c8bd39844a7941398066b --- /dev/null +++ b/blocks/task1/maps/level5/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751c49419f60a4064f031d673222b531a6decd4ea9bfe1a01ea26c3c4472b010 +size 9650 diff --git a/blocks/task1/maps/level5/image_input/93.jpg b/blocks/task1/maps/level5/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a63e0a260491874f9ff42a044f04e0e20500ad9b --- /dev/null +++ b/blocks/task1/maps/level5/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32583dc81a42c6fc0c974d886b348d45c39033df6e7bf895bd6afe7b79c43206 +size 11011 diff --git a/blocks/task1/maps/level5/image_input/94.jpg b/blocks/task1/maps/level5/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..987553fdd0025624ecc64941282cbde0942a81a2 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd1a09dd2116385202d1146c15802db80a6de8d732d7fc1e3f60bddbc269447 +size 10666 diff --git a/blocks/task1/maps/level5/image_input/95.jpg b/blocks/task1/maps/level5/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2059da566885b4fb18b9c4ad58c89f618670ff18 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92743231cd9f50a4cf41c950ec482bd6a9f5b900273ef6a8b2386a63f7c79328 +size 11678 diff --git a/blocks/task1/maps/level5/image_input/96.jpg b/blocks/task1/maps/level5/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bab6c0722611e84492c3c138d906174500faae95 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f6694a8be637c5d68a5ad679a4a7911f74f67ae95781e9c0a78bff981ec0079 +size 10255 diff --git a/blocks/task1/maps/level5/image_input/97.jpg b/blocks/task1/maps/level5/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1bdc8ac9d86a56876f3b882a675346badb44534 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb5b777a074a01a69be6098480956ed18677cffa7ba7dca8808d300dadf5052 +size 10930 diff --git a/blocks/task1/maps/level5/image_input/98.jpg b/blocks/task1/maps/level5/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5929f14ece27b2241d1232e048de1758016ef8b9 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb2b7690b71528714ffd33e26215aec336a6e2de7959a7cd196639be697d972 +size 11226 diff --git a/blocks/task1/maps/level5/image_input/99.jpg b/blocks/task1/maps/level5/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96a8012f9a4231a26f82a0a913ee1d9684c59246 --- /dev/null +++ b/blocks/task1/maps/level5/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93836351867097621fd5f3b98cd6b915f553910dc9f34b34d7b3da1ae341dbc3 +size 11130 diff --git a/blocks/task1/maps/level5/pure_text_rep_input/0 b/blocks/task1/maps/level5/pure_text_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..6168aa8fde2fec35f691817da36f73ca5bd7696c --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/0 @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/1 b/blocks/task1/maps/level5/pure_text_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..64ae23a79847ebcf82946f99a839902b3185d553 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/1 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, yellow block, purple block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/10 b/blocks/task1/maps/level5/pure_text_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..6865bdb6874fb92f00baf7b2a13a856e8cf5ae5a --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/10 @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with red block, blue block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/11 b/blocks/task1/maps/level5/pure_text_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..8f0da591580373f1a9f154a5a854969ae697acb3 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/11 @@ -0,0 +1 @@ +- Stack with green block, yellow block, red block, blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/12 b/blocks/task1/maps/level5/pure_text_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..73d1a24a6f4fa1f76c6a749402df81531b552f24 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/12 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/13 b/blocks/task1/maps/level5/pure_text_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..6b3ca657f70f7be411db83384514b7d78ca152ca --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/13 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/14 b/blocks/task1/maps/level5/pure_text_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..ce9ed0e3da4863a9147c0040c2fa134bc94afa02 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/14 @@ -0,0 +1 @@ +- Stack with blue block, yellow block, red block, purple block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/15 b/blocks/task1/maps/level5/pure_text_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..28d56016fa616df4d5bf301e91b00e6cf1199049 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/15 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block +- Stack with green block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/16 b/blocks/task1/maps/level5/pure_text_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..649593dfd97299bad613aa6221548fd39fdb8a20 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/16 @@ -0,0 +1 @@ +- Stack with blue block, orange block, green block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/17 b/blocks/task1/maps/level5/pure_text_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..8949a1089b52180fead3ab1c6e53267351e82173 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/17 @@ -0,0 +1 @@ +- Stack with red block, green block, purple block, orange block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/18 b/blocks/task1/maps/level5/pure_text_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..537e6020da884a9476580f6bdf7342888d1f0e69 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/18 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/19 b/blocks/task1/maps/level5/pure_text_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..30702396673f68fac5914895de89153e1a3e3794 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/19 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block, red block, from bottom to top +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/2 b/blocks/task1/maps/level5/pure_text_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..251c332c3c5908ad9d4b2939e556f0dcc0d9a5fa --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/2 @@ -0,0 +1 @@ +- Stack with green block, red block, blue block, purple block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/20 b/blocks/task1/maps/level5/pure_text_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..dedecf7f125dff2b40af012bbcf1f944763848df --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/20 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block +- Stack with green block, blue block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/21 b/blocks/task1/maps/level5/pure_text_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..6ef3ec54526bdb936bac51ec0b17829d7d582838 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/21 @@ -0,0 +1 @@ +- Stack with yellow block, orange block, red block, green block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/22 b/blocks/task1/maps/level5/pure_text_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..bf2b6933edf14dbbbd650e12d5dea3db6a8818d9 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/22 @@ -0,0 +1 @@ +- Stack with green block, red block, yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/23 b/blocks/task1/maps/level5/pure_text_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..9eba43c631823f1aa6daefee0dfd29a95bb1bd6e --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/23 @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with orange block +- Stack with green block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/24 b/blocks/task1/maps/level5/pure_text_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..1c0f42c746947b3082fcde4a3a37ce10fbe17ef0 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/24 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/25 b/blocks/task1/maps/level5/pure_text_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..25e25a932cca9bdf7713d05fb0b384f557678aee --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/25 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block, purple block, from bottom to top +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/26 b/blocks/task1/maps/level5/pure_text_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..aae34d8608263d2d967cce59add093146328a65a --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/26 @@ -0,0 +1 @@ +- Stack with orange block, red block, purple block, yellow block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/27 b/blocks/task1/maps/level5/pure_text_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..4574ae16d2266101a02f6266732a9ee1db55b96d --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/27 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block, red block, from bottom to top +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/28 b/blocks/task1/maps/level5/pure_text_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..3e5673b9b050a5fb2c9fdb51cb11c2e64f3b0147 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/28 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block, blue block, from bottom to top +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/29 b/blocks/task1/maps/level5/pure_text_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..1896bc42d9d476add665cdfe21ca6873040f7852 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/29 @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with red block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/3 b/blocks/task1/maps/level5/pure_text_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..861020363bc904ae3e2de65cdfc87e4762b7f6c1 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/3 @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with yellow block +- Stack with orange block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/30 b/blocks/task1/maps/level5/pure_text_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..a56855f49f618996477826d12fbacabf53db8648 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/30 @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/31 b/blocks/task1/maps/level5/pure_text_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..ba6da65f7961112f6a6eb4b369cf0f06792de60b --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/31 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/32 b/blocks/task1/maps/level5/pure_text_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..5c9114d4a435fb561f1efe6cf28ad156bdf30b73 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/32 @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/33 b/blocks/task1/maps/level5/pure_text_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..c0a3ef7ef3287e259b018845c8f685918e57ef07 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/33 @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/34 b/blocks/task1/maps/level5/pure_text_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..3089a2cbe8ef92320e4bfd6075c8add18fb51323 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/34 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block, blue block, from bottom to top +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/35 b/blocks/task1/maps/level5/pure_text_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..011455c2b8d32d0e86e3e44d8be70b9a0ddef025 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/35 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/36 b/blocks/task1/maps/level5/pure_text_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..6ffe74891d5b107c8cd77c102d9255d4c78b275b --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/36 @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/37 b/blocks/task1/maps/level5/pure_text_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..c5d9130dd78dbea1137c359ca4a1b193060c54ed --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/37 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with yellow block, green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/38 b/blocks/task1/maps/level5/pure_text_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..7de463d78a00686c3cd91e7f5c617796c7f8a6ab --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/38 @@ -0,0 +1,2 @@ +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/39 b/blocks/task1/maps/level5/pure_text_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..991623678097ccbf7b964eb7559cab885b3c6c39 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/39 @@ -0,0 +1,2 @@ +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, purple block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/4 b/blocks/task1/maps/level5/pure_text_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..e869dfd2a83df42085358a51e0d6d584eec1b7cb --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/4 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/40 b/blocks/task1/maps/level5/pure_text_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..0a22b0af87f9da232a7d3ded6ea7aa0487961209 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/40 @@ -0,0 +1,2 @@ +- Stack with orange block, blue block, from bottom to top +- Stack with purple block, red block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/41 b/blocks/task1/maps/level5/pure_text_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..46b6bb9024ac1212319c23a8bc813efb57e6f72d --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/41 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/42 b/blocks/task1/maps/level5/pure_text_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..cc75adc5edc0721bbb211c5b9d57e97a3803561c --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/42 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block, orange block, from bottom to top +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/43 b/blocks/task1/maps/level5/pure_text_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..28f0bacb2c41aaf3f17112b39c4241adc898ac2e --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/43 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block, yellow block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/44 b/blocks/task1/maps/level5/pure_text_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..60574c8773ae11b03d90970861bc7b1bd1aa5951 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/44 @@ -0,0 +1,2 @@ +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/45 b/blocks/task1/maps/level5/pure_text_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..e450bdaf9bca6dfa5cedd534e9bbb24e9b1d726c --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/45 @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with orange block, blue block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/46 b/blocks/task1/maps/level5/pure_text_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..ed25448edaf9c852707caa10a141848e96047987 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/46 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, orange block, red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/47 b/blocks/task1/maps/level5/pure_text_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..b4b115fb66144efe43679106fafcb0e6273ed7cb --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/47 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block, orange block, from bottom to top +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/48 b/blocks/task1/maps/level5/pure_text_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..c94086c68ac1a25b63c01f520d2d1fce9237f5b2 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/48 @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/49 b/blocks/task1/maps/level5/pure_text_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..8dab3913934e46aa5d6f37855e3254d30a1a0010 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/49 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/5 b/blocks/task1/maps/level5/pure_text_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..e42fdccb295436bc6dff8bda0d3736dc3cc50b67 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/5 @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/50 b/blocks/task1/maps/level5/pure_text_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..3744fe0ec878c860f899879c81dac42a5eead525 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/50 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block +- Stack with red block, green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/51 b/blocks/task1/maps/level5/pure_text_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..a8105418fdd0ca18b1d92d474693edc37ce6fb48 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/51 @@ -0,0 +1,2 @@ +- Stack with green block, orange block, from bottom to top +- Stack with purple block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/52 b/blocks/task1/maps/level5/pure_text_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..b03ed02e4be66d0eed2296c61778cba52b2fd667 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/52 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with blue block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/53 b/blocks/task1/maps/level5/pure_text_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..5e4bda9d0cfe81d60b766421d78738f23c3ab96f --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/53 @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/54 b/blocks/task1/maps/level5/pure_text_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..c1fc1707ddb2ed643c3268595c7b5a92e47f2397 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/54 @@ -0,0 +1,2 @@ +- Stack with orange block, purple block, from bottom to top +- Stack with green block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/55 b/blocks/task1/maps/level5/pure_text_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..9519e6432d67347aff29792ce62b8e01bf9219a6 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/55 @@ -0,0 +1 @@ +- Stack with green block, purple block, blue block, red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/56 b/blocks/task1/maps/level5/pure_text_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..ab7c50c67da2aaca4d807569410f4392ab57b2b3 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/56 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with blue block, yellow block, from bottom to top +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/57 b/blocks/task1/maps/level5/pure_text_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..f24eaf1a585dba2480b7075fa5aa1faf32c7ad4f --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/57 @@ -0,0 +1,2 @@ +- Stack with orange block, blue block, from bottom to top +- Stack with green block, purple block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/58 b/blocks/task1/maps/level5/pure_text_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..e07ba90c5548e6740e4cdcce96229e40b81d68b5 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/58 @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with red block, purple block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/59 b/blocks/task1/maps/level5/pure_text_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..870510d7192949e102fb2ce027fe2ac1cd0fc7fa --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/59 @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/6 b/blocks/task1/maps/level5/pure_text_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..a0dfb884d6dfe31ef689bb5f3af4ddde1e1ee6a0 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/6 @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/60 b/blocks/task1/maps/level5/pure_text_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..a045f840158722fbe8084ca6addcd2c3527324d4 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/60 @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with yellow block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/61 b/blocks/task1/maps/level5/pure_text_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..518a68a1a4c14741a837af3ef130289aba612276 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/61 @@ -0,0 +1,2 @@ +- Stack with orange block, yellow block, from bottom to top +- Stack with red block, green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/62 b/blocks/task1/maps/level5/pure_text_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..4d90c59325d21660c3f69190d54f86bf4a2cb3cf --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/62 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block, yellow block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/63 b/blocks/task1/maps/level5/pure_text_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..7de95717e1b9cd444b17ff0e33bfcd2e79861ecb --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/63 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/64 b/blocks/task1/maps/level5/pure_text_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..e22fb8ef217b30f070e5cfbdc604bf25fee4364f --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/64 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/65 b/blocks/task1/maps/level5/pure_text_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..6b3ca657f70f7be411db83384514b7d78ca152ca --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/65 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/66 b/blocks/task1/maps/level5/pure_text_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..ad32605c62b5ebf8c1b3d7b6de68df256ae17a16 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/66 @@ -0,0 +1 @@ +- Stack with yellow block, green block, orange block, blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/67 b/blocks/task1/maps/level5/pure_text_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..1751021152ec069506c96727eacd2d8de57a2c06 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/67 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/68 b/blocks/task1/maps/level5/pure_text_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..661fa25bbcec4f1857a525e7354852b026048ef8 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/68 @@ -0,0 +1 @@ +- Stack with green block, blue block, red block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/69 b/blocks/task1/maps/level5/pure_text_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..bb77d52110e2fa756063ed57779ba656669e7626 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/69 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/7 b/blocks/task1/maps/level5/pure_text_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..db09ff1a9bea97c67b60036c49213fd6c530a873 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/7 @@ -0,0 +1 @@ +- Stack with purple block, blue block, orange block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/70 b/blocks/task1/maps/level5/pure_text_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..14ba73c9b9b8ca4ed8539b097cae6131c9b8368b --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/70 @@ -0,0 +1 @@ +- Stack with blue block, orange block, red block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/71 b/blocks/task1/maps/level5/pure_text_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..0669e4ced3aedf88a43cf6349ad5d5d87a5301cf --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/71 @@ -0,0 +1,2 @@ +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, purple block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/72 b/blocks/task1/maps/level5/pure_text_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..55b03d238f40d0f79f9720060aa04c8c495855a8 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/72 @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/73 b/blocks/task1/maps/level5/pure_text_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..2e07cfa6b31f5a7b8f8c424dfde5aabc7a8f6f2d --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/73 @@ -0,0 +1,2 @@ +- Stack with blue block, purple block, from bottom to top +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/74 b/blocks/task1/maps/level5/pure_text_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..4154648c19f2b604fa83c0fca0be307abc8ad82a --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/74 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/75 b/blocks/task1/maps/level5/pure_text_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..a90664a6172fd73d28daf7b1bfc270fab1747aeb --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/75 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/76 b/blocks/task1/maps/level5/pure_text_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..cbf1b1044ee8f4e42b34ef30232a55c440d60406 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/76 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block, green block, from bottom to top +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/77 b/blocks/task1/maps/level5/pure_text_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..cd6de9c0459c1fb6b4b33e499d894c0cb484b37e --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/77 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/78 b/blocks/task1/maps/level5/pure_text_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..307c52bdb8da25ed3f9bf4c5a886b0157a0a8416 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/78 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, yellow block, red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/79 b/blocks/task1/maps/level5/pure_text_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..9e71860c76bd8fae95d30613eba5fc91127bbb51 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/79 @@ -0,0 +1,2 @@ +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, red block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/8 b/blocks/task1/maps/level5/pure_text_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..da369733923d7e42ff2c341e78ecd0e91c941f4a --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/8 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, green block, orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/80 b/blocks/task1/maps/level5/pure_text_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..d86e8b421ee489a89505ba95c13d54f2ef55a5b1 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/80 @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/81 b/blocks/task1/maps/level5/pure_text_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..0e4e45af7ea4b1da3f432aa74e3510e838d7f31c --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/81 @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/82 b/blocks/task1/maps/level5/pure_text_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..3a0ba377d1942b6dd9e1b73c819519918d38bdf4 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/82 @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with yellow block, green block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/83 b/blocks/task1/maps/level5/pure_text_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..bf57a801592e80b09719f870c659b6691848f4b6 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/83 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/84 b/blocks/task1/maps/level5/pure_text_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..f64e3781491c14c885f6dbcbd4e044117141130d --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/84 @@ -0,0 +1,2 @@ +- Stack with orange block, red block, from bottom to top +- Stack with blue block, green block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/85 b/blocks/task1/maps/level5/pure_text_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..29e35513b2bcc007c0dd238b0b0a528b9312c083 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/85 @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with orange block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/86 b/blocks/task1/maps/level5/pure_text_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..fec8e4bb0321af490f0f4b7333c81f80a7ab5a7f --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/86 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, purple block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/87 b/blocks/task1/maps/level5/pure_text_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..546a94b267433a218776a6cdd36e606c0283890b --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/87 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with yellow block, orange block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/88 b/blocks/task1/maps/level5/pure_text_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..6624df254b59e6525e0a358b76e07ce99302f3d6 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/88 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/89 b/blocks/task1/maps/level5/pure_text_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..6b3ca657f70f7be411db83384514b7d78ca152ca --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/89 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/9 b/blocks/task1/maps/level5/pure_text_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..d96fe877ece2e9dd172a3e136064b2f7e1b79bf6 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/9 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, blue block, red block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/90 b/blocks/task1/maps/level5/pure_text_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..367679c462f34584f24d2d2ce94ac6aba12fb166 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/90 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, purple block, blue block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/91 b/blocks/task1/maps/level5/pure_text_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..5e07f7383d5762bdb50975748b84ad1c78a6d2e9 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/91 @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/92 b/blocks/task1/maps/level5/pure_text_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..80bfbbfc37b14e78eab008f362461d46c747bc4a --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/92 @@ -0,0 +1 @@ +- Stack with blue block, yellow block, orange block, green block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/93 b/blocks/task1/maps/level5/pure_text_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..cff552089543cddcabe9ea33118a10ce006c6bf7 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/93 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/94 b/blocks/task1/maps/level5/pure_text_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..88aba90a87006be2a3dcf51af15e02e0bdfeaa21 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/94 @@ -0,0 +1,2 @@ +- Stack with blue block, green block, from bottom to top +- Stack with purple block, yellow block, red block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/95 b/blocks/task1/maps/level5/pure_text_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..6148d8d748d7f6df206d427b3eafc0012b00e2c2 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/95 @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with red block diff --git a/blocks/task1/maps/level5/pure_text_rep_input/96 b/blocks/task1/maps/level5/pure_text_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..d70559fc815ff8a6cb95877834119f662a6ab9b5 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/96 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/97 b/blocks/task1/maps/level5/pure_text_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..e9e4053fee805c7222b3491c4025f3d97cb4ea91 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/97 @@ -0,0 +1,2 @@ +- Stack with red block, green block, from bottom to top +- Stack with orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/98 b/blocks/task1/maps/level5/pure_text_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..3eae46c9e034f844202e30a4f994cb80fbb73132 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/98 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, purple block, red block, orange block, from bottom to top diff --git a/blocks/task1/maps/level5/pure_text_rep_input/99 b/blocks/task1/maps/level5/pure_text_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..2a363bc17b18bf563dcbcbe43297bf5daa08fa32 --- /dev/null +++ b/blocks/task1/maps/level5/pure_text_rep_input/99 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task1/maps/level5/table_rep_input/0 b/blocks/task1/maps/level5/table_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..ab016bc7a8a58a9f33c27a173ec726340dfe0a2f --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/0 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | orange | blue | yellow | green | diff --git a/blocks/task1/maps/level5/table_rep_input/1 b/blocks/task1/maps/level5/table_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..b16142448f8646d78e8a6d2bc63b2971c3c5a785 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/1 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | blue | red | diff --git a/blocks/task1/maps/level5/table_rep_input/10 b/blocks/task1/maps/level5/table_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..d4cc35ffe28a1aa9a01cb463dc7ada8e8456662c --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/10 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | orange | blue | +Level 1 | purple | red | diff --git a/blocks/task1/maps/level5/table_rep_input/11 b/blocks/task1/maps/level5/table_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..3cdbc156f372684eb9491ae7a466615c4fdd1675 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/11 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | blue | +Level 3 | red | +Level 2 | yellow | +Level 1 | green | diff --git a/blocks/task1/maps/level5/table_rep_input/12 b/blocks/task1/maps/level5/table_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..9008da9f33a0760ab313f2c21a4b8d4e5a028c34 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/12 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | yellow | +Level 1 | orange | red | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/13 b/blocks/task1/maps/level5/table_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..d9a22481c7caf0a4790f8086f89fe678edd50b7c --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/13 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | orange | blue | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/14 b/blocks/task1/maps/level5/table_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..d4e514dc1c83548abcaf023c44361d2263facfcb --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/14 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | purple | +Level 3 | red | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/15 b/blocks/task1/maps/level5/table_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..455a933a2612ccabdaed332d179447058d56e19f --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/15 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | yellow | +Level 1 | blue | red | green | diff --git a/blocks/task1/maps/level5/table_rep_input/16 b/blocks/task1/maps/level5/table_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..1a09dd9dcea228cc63ed483eca6bcb95189e53b6 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/16 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | green | +Level 2 | orange | +Level 1 | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/17 b/blocks/task1/maps/level5/table_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..54cd440a70c72c8037535d8f61bca3436d3a1552 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/17 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | purple | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task1/maps/level5/table_rep_input/18 b/blocks/task1/maps/level5/table_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..fd7c2f385bf32585b7d11b73d545d9e5a0cbfc3c --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/18 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | yellow | purple | red | diff --git a/blocks/task1/maps/level5/table_rep_input/19 b/blocks/task1/maps/level5/table_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..8d351c4191ee2078aeebb8768730ba0ccba34976 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/19 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | green | +Level 1 | purple | blue | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/2 b/blocks/task1/maps/level5/table_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..5ed56224d4f169fbc66f1cc2896104473c2de9eb --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/2 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | purple | +Level 3 | blue | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task1/maps/level5/table_rep_input/20 b/blocks/task1/maps/level5/table_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..c3794b99de334af43ce1e9e904378101ec758dbd --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/20 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | blue | +Level 1 | red | purple | green | diff --git a/blocks/task1/maps/level5/table_rep_input/21 b/blocks/task1/maps/level5/table_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..cca3289cc38274ffa2730616c98d1c6a9e79a5b4 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/21 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | green | +Level 3 | red | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/22 b/blocks/task1/maps/level5/table_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..540dee8e6e583c7b765b7d166339b046fa4dcd99 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/22 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | purple | +Level 3 | yellow | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task1/maps/level5/table_rep_input/23 b/blocks/task1/maps/level5/table_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..34df0e3d41da2054063d9b9ed95451ecd8e6e5fe --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/23 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | purple | yellow | orange | green | diff --git a/blocks/task1/maps/level5/table_rep_input/24 b/blocks/task1/maps/level5/table_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..9fb66eddd3529c8ef8267dd2d9dd398fb52d5e9a --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/24 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | purple | +Level 1 | green | red | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/25 b/blocks/task1/maps/level5/table_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..4e2d5ee1851a270c70416611bbd50e60867361e6 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/25 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | red | +Level 1 | green | yellow | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/26 b/blocks/task1/maps/level5/table_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..76cb940364acd087b5b2f4eb172d29c121f76a1d --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/26 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | yellow | +Level 3 | purple | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/27 b/blocks/task1/maps/level5/table_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..d9a0fb56e3c8f08b700e1b3bbd350e1e66f6657d --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/27 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | purple | +Level 1 | yellow | green | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/28 b/blocks/task1/maps/level5/table_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..bf673eeb39c1816865485a00aed568979791b7cb --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/28 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | yellow | +Level 1 | purple | red | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/29 b/blocks/task1/maps/level5/table_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..8d96e548dcf4b613b5205e783f89911bee277e30 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/29 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | purple | yellow | blue | red | diff --git a/blocks/task1/maps/level5/table_rep_input/3 b/blocks/task1/maps/level5/table_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..5a7a18c65947762f952750e44c20521bf2d51b6b --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/3 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | red | purple | yellow | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/30 b/blocks/task1/maps/level5/table_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..9e0124513662dcc5cceee9c5ac5b0fe8a1115851 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/30 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | orange | yellow | green | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/31 b/blocks/task1/maps/level5/table_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..24ee8eb67ed750bc6ca1b1d4c6c1f2fb39b142ba --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/31 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | yellow | +Level 1 | red | green | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/32 b/blocks/task1/maps/level5/table_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..7ef5e76c32186dbd61823ad7602142c092516620 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/32 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | yellow | red | green | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/33 b/blocks/task1/maps/level5/table_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..de0f446d393993bdc14155cec7786d5d247329bf --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/33 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | green | purple | yellow | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/34 b/blocks/task1/maps/level5/table_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..1d4e003a5c7fd0e8eaa92010b6372c3a38025bf7 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/34 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | yellow | +Level 1 | orange | purple | green | diff --git a/blocks/task1/maps/level5/table_rep_input/35 b/blocks/task1/maps/level5/table_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..1455c3803db154a9ea8269a2a92e566711a42e0e --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/35 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | purple | blue | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/36 b/blocks/task1/maps/level5/table_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..8475af58bef4230f8853dcda31bfa8ab521fc339 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/36 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | blue | orange | purple | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/37 b/blocks/task1/maps/level5/table_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..0b3560c0c58d02976c75c3c24589e87ea2abb4af --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/37 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | green | +Level 1 | purple | blue | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/38 b/blocks/task1/maps/level5/table_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..8a24fddf4d870feff515a1c690b6f845270ad8b7 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/38 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | blue | orange | +Level 1 | purple | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/39 b/blocks/task1/maps/level5/table_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..9c23224dfe98da2d92aeb4ff58a057d138c07c20 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/39 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | yellow | purple | +Level 1 | red | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/4 b/blocks/task1/maps/level5/table_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..dcf438500b1e3e273f754824990f769f390b06b4 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/4 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | purple | yellow | red | diff --git a/blocks/task1/maps/level5/table_rep_input/40 b/blocks/task1/maps/level5/table_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..8a2b259f5eab428ba7de283532b950022798a5e4 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/40 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | blue | red | +Level 1 | orange | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/41 b/blocks/task1/maps/level5/table_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..ea451b835d7dbfa30a4fa54adc2f46bdb5816d88 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/41 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | blue | red | orange | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/42 b/blocks/task1/maps/level5/table_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..8b4f85eef5f7093792210d40c498102f89a7aadd --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/42 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | yellow | +Level 1 | purple | blue | red | diff --git a/blocks/task1/maps/level5/table_rep_input/43 b/blocks/task1/maps/level5/table_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..03a9ca712e117be57ff13bc44972873522e4c20e --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/43 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | yellow | +Level 1 | green | purple | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/44 b/blocks/task1/maps/level5/table_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..5883add4cd7559279a35512ac8855ff5498adaf3 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/44 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | blue | +Level 1 | yellow | green | diff --git a/blocks/task1/maps/level5/table_rep_input/45 b/blocks/task1/maps/level5/table_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..3694cdafa459a9e87f1820d0045e83f4ab406f81 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/45 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | blue | +Level 1 | purple | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/46 b/blocks/task1/maps/level5/table_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..03d95fa870172f0f502e0e18a1afdc09f7b29096 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/46 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | red | +Level 2 | | orange | +Level 1 | green | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/47 b/blocks/task1/maps/level5/table_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..74ff7808f2570096f09cdbf912ce22f569ef5d04 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/47 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | blue | +Level 1 | yellow | red | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/48 b/blocks/task1/maps/level5/table_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..7a61eef2d8e8b3e8cc087a950d8c19ae6cfcddcd --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/48 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | purple | blue | red | green | diff --git a/blocks/task1/maps/level5/table_rep_input/49 b/blocks/task1/maps/level5/table_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..f8de0efbce7a09c2d56111a7765962fd375353f0 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/49 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | orange | +Level 1 | purple | yellow | green | diff --git a/blocks/task1/maps/level5/table_rep_input/5 b/blocks/task1/maps/level5/table_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..b12c9e30d07d8e386f8ad0d814e62fbc961e53db --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/5 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | red | green | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/50 b/blocks/task1/maps/level5/table_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..b71c3977490ded1ffb7bd331a50ef5c059477d12 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/50 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | blue | yellow | red | diff --git a/blocks/task1/maps/level5/table_rep_input/51 b/blocks/task1/maps/level5/table_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..3c42d56f23c78b139f8d6890e4370922bfcd9898 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/51 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | orange | red | +Level 1 | green | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/52 b/blocks/task1/maps/level5/table_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..ac5dc06552de636db7dc7cd9e1d4d23b3c7614c0 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/52 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | red | +Level 1 | purple | green | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/53 b/blocks/task1/maps/level5/table_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..c75676070f65e25c0731b604ce677b64140416c3 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/53 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | green | purple | blue | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/54 b/blocks/task1/maps/level5/table_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..8eb138e9e7666f7317da81379749ea5e4890fd16 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/54 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | red | +Level 1 | orange | green | diff --git a/blocks/task1/maps/level5/table_rep_input/55 b/blocks/task1/maps/level5/table_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..9ddea30d5cee37eeab8291a7ebfee6fb35f614ea --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/55 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | red | +Level 3 | blue | +Level 2 | purple | +Level 1 | green | diff --git a/blocks/task1/maps/level5/table_rep_input/56 b/blocks/task1/maps/level5/table_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..3030434d8c5fa7fd51c5f85efbcece84abb3a2a3 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/56 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | red | +Level 1 | green | blue | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/57 b/blocks/task1/maps/level5/table_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..f8c28e7f61b38934554893a2050fcfc1576c5ecf --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/57 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | blue | purple | +Level 1 | orange | green | diff --git a/blocks/task1/maps/level5/table_rep_input/58 b/blocks/task1/maps/level5/table_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..d5e3b91f46a365339418a3bc167b4cdad642a5b8 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/58 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | purple | +Level 1 | green | red | diff --git a/blocks/task1/maps/level5/table_rep_input/59 b/blocks/task1/maps/level5/table_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..305a0c579c66d7bebf8baeed15ceb6706a118a93 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/59 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | green | yellow | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/6 b/blocks/task1/maps/level5/table_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..0ddd1081a0ab35f4fa6a4f8f5cae6d1792d2eec7 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/6 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | yellow | red | +Level 1 | blue | green | diff --git a/blocks/task1/maps/level5/table_rep_input/60 b/blocks/task1/maps/level5/table_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..aec398534d56ca92a4a23baae34c887e96cc86db --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/60 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | orange | blue | green | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/61 b/blocks/task1/maps/level5/table_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..525205901f75f1ea56d148bcd393c482a1c933fa --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/61 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | green | +Level 1 | orange | red | diff --git a/blocks/task1/maps/level5/table_rep_input/62 b/blocks/task1/maps/level5/table_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..5e1272e0a8e99b71a0f19c3053022e02d4facbc6 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/62 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | yellow | +Level 1 | purple | green | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/63 b/blocks/task1/maps/level5/table_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..a7c89d83ade30a7804f672076cb2e7d8cce0a399 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/63 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | green | +Level 1 | yellow | blue | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/64 b/blocks/task1/maps/level5/table_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..6f3672e7a1af6fb1cfc5396cd39bde0c326c721a --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/64 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | orange | +Level 1 | green | red | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/65 b/blocks/task1/maps/level5/table_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..d9a22481c7caf0a4790f8086f89fe678edd50b7c --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/65 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | orange | blue | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/66 b/blocks/task1/maps/level5/table_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..9dc9dcec15f69f9a74068161fa86751135738a67 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/66 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | blue | +Level 3 | orange | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/67 b/blocks/task1/maps/level5/table_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..ce4e5fd5201d7b47bf7f8a12888c8b09120ba84c --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/67 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | red | purple | green | diff --git a/blocks/task1/maps/level5/table_rep_input/68 b/blocks/task1/maps/level5/table_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..4903ade37626a99e1d734de2f4dea8dfbe3f54d2 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/68 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | red | +Level 2 | blue | +Level 1 | green | diff --git a/blocks/task1/maps/level5/table_rep_input/69 b/blocks/task1/maps/level5/table_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..c14bcf04945c846858eb5bfd501cbf36aa43b02b --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/69 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | red | +Level 1 | blue | purple | green | diff --git a/blocks/task1/maps/level5/table_rep_input/7 b/blocks/task1/maps/level5/table_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..e6ad2153e89c180588c6f8c6a385b09e40f7d360 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/7 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | orange | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/70 b/blocks/task1/maps/level5/table_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..8f69cd038c07aff61bb1fa6d0520beff03a69171 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/70 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | red | +Level 2 | orange | +Level 1 | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/71 b/blocks/task1/maps/level5/table_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..fbac7c494c577584583e7e4ed44823bdb6d9d254 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/71 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | purple | +Level 1 | yellow | green | diff --git a/blocks/task1/maps/level5/table_rep_input/72 b/blocks/task1/maps/level5/table_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..c245e592d930ef8c7e87ebc22936bbf2322606a8 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/72 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | blue | +Level 1 | purple | green | diff --git a/blocks/task1/maps/level5/table_rep_input/73 b/blocks/task1/maps/level5/table_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..ba73d300efc190ee999eca5fbdb05742b5dfa21a --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/73 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | red | +Level 1 | blue | green | diff --git a/blocks/task1/maps/level5/table_rep_input/74 b/blocks/task1/maps/level5/table_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..490d18fa8a249ffe3935b5ecf758fe7c884433dd --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/74 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | purple | orange | green | diff --git a/blocks/task1/maps/level5/table_rep_input/75 b/blocks/task1/maps/level5/table_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..74ae278992e4d0112f9811a98e91abe8573a78b9 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/75 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | purple | +Level 1 | green | orange | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/76 b/blocks/task1/maps/level5/table_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..68013ad8085d5a12889a1290c2f8ef9073818164 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/76 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | purple | +Level 1 | blue | yellow | red | diff --git a/blocks/task1/maps/level5/table_rep_input/77 b/blocks/task1/maps/level5/table_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..585ac07b2c7635254d211a05bbccf03a4ab71dfe --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/77 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | yellow | green | orange | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/78 b/blocks/task1/maps/level5/table_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..b47fb88a842269f4430c007ab2c7c702c5f5b6dc --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/78 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | orange | green | diff --git a/blocks/task1/maps/level5/table_rep_input/79 b/blocks/task1/maps/level5/table_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..31ae62358eae116b9a8b2503c75196934c2e1aac --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/79 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | red | +Level 1 | blue | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/8 b/blocks/task1/maps/level5/table_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..aff1ac24189a2c75c2edffde76ba6953c79a4d10 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/8 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | orange | +Level 2 | | green | +Level 1 | purple | red | diff --git a/blocks/task1/maps/level5/table_rep_input/80 b/blocks/task1/maps/level5/table_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..c31d89976acf26e0cc1343fe985c9dbd2a75caf8 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/80 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | orange | +Level 1 | purple | red | diff --git a/blocks/task1/maps/level5/table_rep_input/81 b/blocks/task1/maps/level5/table_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..6f43fba63082c3f36fb3cd6c208ba01a7a194b84 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/81 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | blue | green | purple | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/82 b/blocks/task1/maps/level5/table_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..60a745be1fa843f04d07c0f668f34be75c36b9bb --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/82 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | green | +Level 1 | purple | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/83 b/blocks/task1/maps/level5/table_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..d6fb3a2de60bff4a13cfc99142508d3c0a841b45 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/83 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | orange | +Level 1 | red | yellow | green | diff --git a/blocks/task1/maps/level5/table_rep_input/84 b/blocks/task1/maps/level5/table_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..2da6cc82bd446ea0c76931603a38e2e6eaefc21a --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/84 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | red | green | +Level 1 | orange | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/85 b/blocks/task1/maps/level5/table_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..c0d081871a057e42cfc7ed01bab33f41b6cf2337 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/85 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | yellow | red | blue | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/86 b/blocks/task1/maps/level5/table_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..c3d60b18d3aa510179a12f15dfab7684763fdce7 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/86 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/87 b/blocks/task1/maps/level5/table_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..7660a965fa696187320a0a3ec3f69f25058b6c19 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/87 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | orange | +Level 1 | purple | blue | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/88 b/blocks/task1/maps/level5/table_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..84ddd7fe42cc346da8d11cf6ccd65ff354ae1b06 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/88 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | orange | +Level 1 | red | blue | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/89 b/blocks/task1/maps/level5/table_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..d9a22481c7caf0a4790f8086f89fe678edd50b7c --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/89 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | orange | blue | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/9 b/blocks/task1/maps/level5/table_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..3390e1b49627b47ce958a1babe07da7e35591b89 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/9 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | blue | +Level 1 | green | yellow | diff --git a/blocks/task1/maps/level5/table_rep_input/90 b/blocks/task1/maps/level5/table_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..f37512ba0284e0ae31d2e773a281bfac6de8173b --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/90 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | red | green | diff --git a/blocks/task1/maps/level5/table_rep_input/91 b/blocks/task1/maps/level5/table_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..bf3e1c39e00b92b211441a5bcc08d0b888c4d2a2 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/91 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | yellow | red | blue | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/92 b/blocks/task1/maps/level5/table_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..e8d2040170b97698a12b7ab3fc51bee74f90c842 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/92 @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | orange | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/93 b/blocks/task1/maps/level5/table_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..0804c4f72f797814b38e02be2c3b135e78070ad9 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/93 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | yellow | +Level 1 | orange | purple | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/94 b/blocks/task1/maps/level5/table_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..b3f23f8f4eafe9e438e2016d4b7923cd3f48e269 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/94 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | green | yellow | +Level 1 | blue | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/95 b/blocks/task1/maps/level5/table_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..fd69b39c5cefecdeaec6a30afd653fa8251b653a --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/95 @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | yellow | orange | purple | red | diff --git a/blocks/task1/maps/level5/table_rep_input/96 b/blocks/task1/maps/level5/table_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..67298a0d0fd51ca6ecd06f64a0250f4d756fff3f --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/96 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | red | green | purple | diff --git a/blocks/task1/maps/level5/table_rep_input/97 b/blocks/task1/maps/level5/table_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..e572ee576db1103e48d7f85f5bf1c780f6e6979a --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/97 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | green | yellow | +Level 1 | red | orange | diff --git a/blocks/task1/maps/level5/table_rep_input/98 b/blocks/task1/maps/level5/table_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..48f067390063ab05009eb9b4c60df16f506b2021 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/98 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | red | +Level 2 | | purple | +Level 1 | yellow | blue | diff --git a/blocks/task1/maps/level5/table_rep_input/99 b/blocks/task1/maps/level5/table_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..b64099eaf11b1c2a31a9a17d8c9028a19fab0631 --- /dev/null +++ b/blocks/task1/maps/level5/table_rep_input/99 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | purple | green | orange | diff --git a/blocks/task1/maps/level5/text_input/0.txt b/blocks/task1/maps/level5/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/0.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/1.txt b/blocks/task1/maps/level5/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/1.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/10.txt b/blocks/task1/maps/level5/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/10.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/11.txt b/blocks/task1/maps/level5/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/11.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/12.txt b/blocks/task1/maps/level5/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/12.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/13.txt b/blocks/task1/maps/level5/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/13.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/14.txt b/blocks/task1/maps/level5/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/14.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level5/text_input/15.txt b/blocks/task1/maps/level5/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..b10f681452d9636f4c1fa86d460a05f3b7e27e82 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/15.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 3? diff --git a/blocks/task1/maps/level5/text_input/16.txt b/blocks/task1/maps/level5/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..44813b89846b5543b57f0ec01a979d23d26953b9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/16.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 5? diff --git a/blocks/task1/maps/level5/text_input/17.txt b/blocks/task1/maps/level5/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/17.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/18.txt b/blocks/task1/maps/level5/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..5db8cda67074d2865f44122bf7af23d704935ef6 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/18.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 2? diff --git a/blocks/task1/maps/level5/text_input/19.txt b/blocks/task1/maps/level5/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/19.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/2.txt b/blocks/task1/maps/level5/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/2.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level5/text_input/20.txt b/blocks/task1/maps/level5/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b10f681452d9636f4c1fa86d460a05f3b7e27e82 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/20.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 3? diff --git a/blocks/task1/maps/level5/text_input/21.txt b/blocks/task1/maps/level5/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..bed5b59a946077be030ea0f6c42614dff44bf9a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/21.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 4? diff --git a/blocks/task1/maps/level5/text_input/22.txt b/blocks/task1/maps/level5/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/22.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level5/text_input/23.txt b/blocks/task1/maps/level5/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/23.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level5/text_input/24.txt b/blocks/task1/maps/level5/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..b10f681452d9636f4c1fa86d460a05f3b7e27e82 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/24.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 3? diff --git a/blocks/task1/maps/level5/text_input/25.txt b/blocks/task1/maps/level5/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/25.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/26.txt b/blocks/task1/maps/level5/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/26.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/27.txt b/blocks/task1/maps/level5/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/27.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/28.txt b/blocks/task1/maps/level5/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/28.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/29.txt b/blocks/task1/maps/level5/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/29.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/3.txt b/blocks/task1/maps/level5/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/3.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/30.txt b/blocks/task1/maps/level5/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/30.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/31.txt b/blocks/task1/maps/level5/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/31.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/32.txt b/blocks/task1/maps/level5/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/32.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/33.txt b/blocks/task1/maps/level5/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/33.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/34.txt b/blocks/task1/maps/level5/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/34.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/35.txt b/blocks/task1/maps/level5/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/35.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/36.txt b/blocks/task1/maps/level5/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/36.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level5/text_input/37.txt b/blocks/task1/maps/level5/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/37.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/38.txt b/blocks/task1/maps/level5/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/38.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/39.txt b/blocks/task1/maps/level5/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/39.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/4.txt b/blocks/task1/maps/level5/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/4.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/40.txt b/blocks/task1/maps/level5/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/40.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level5/text_input/41.txt b/blocks/task1/maps/level5/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/41.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/42.txt b/blocks/task1/maps/level5/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/42.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/43.txt b/blocks/task1/maps/level5/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..147b64933541a006fdcce9025fa64ab642bd8be8 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/43.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 2? diff --git a/blocks/task1/maps/level5/text_input/44.txt b/blocks/task1/maps/level5/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/44.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level5/text_input/45.txt b/blocks/task1/maps/level5/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/45.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/46.txt b/blocks/task1/maps/level5/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bd229025aff2e7007cb7b1d831abff3733524eb --- /dev/null +++ b/blocks/task1/maps/level5/text_input/46.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 4? diff --git a/blocks/task1/maps/level5/text_input/47.txt b/blocks/task1/maps/level5/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/47.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/48.txt b/blocks/task1/maps/level5/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5db8cda67074d2865f44122bf7af23d704935ef6 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/48.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 2? diff --git a/blocks/task1/maps/level5/text_input/49.txt b/blocks/task1/maps/level5/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/49.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/5.txt b/blocks/task1/maps/level5/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/5.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/50.txt b/blocks/task1/maps/level5/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..b10f681452d9636f4c1fa86d460a05f3b7e27e82 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/50.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 3? diff --git a/blocks/task1/maps/level5/text_input/51.txt b/blocks/task1/maps/level5/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/51.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level5/text_input/52.txt b/blocks/task1/maps/level5/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/52.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/53.txt b/blocks/task1/maps/level5/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/53.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/54.txt b/blocks/task1/maps/level5/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/54.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/55.txt b/blocks/task1/maps/level5/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/55.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/56.txt b/blocks/task1/maps/level5/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/56.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/57.txt b/blocks/task1/maps/level5/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/57.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/58.txt b/blocks/task1/maps/level5/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/58.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/59.txt b/blocks/task1/maps/level5/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/59.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/6.txt b/blocks/task1/maps/level5/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/6.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/60.txt b/blocks/task1/maps/level5/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/60.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level5/text_input/61.txt b/blocks/task1/maps/level5/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/61.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/62.txt b/blocks/task1/maps/level5/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/62.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/63.txt b/blocks/task1/maps/level5/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/63.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/64.txt b/blocks/task1/maps/level5/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/64.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/65.txt b/blocks/task1/maps/level5/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/65.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/66.txt b/blocks/task1/maps/level5/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..19550a7a11e2fc8001d98632c89e7bff20fce015 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/66.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 3? diff --git a/blocks/task1/maps/level5/text_input/67.txt b/blocks/task1/maps/level5/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/67.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/68.txt b/blocks/task1/maps/level5/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..44813b89846b5543b57f0ec01a979d23d26953b9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/68.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 5? diff --git a/blocks/task1/maps/level5/text_input/69.txt b/blocks/task1/maps/level5/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/69.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/7.txt b/blocks/task1/maps/level5/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..44813b89846b5543b57f0ec01a979d23d26953b9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/7.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 5? diff --git a/blocks/task1/maps/level5/text_input/70.txt b/blocks/task1/maps/level5/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..44813b89846b5543b57f0ec01a979d23d26953b9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/70.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 5? diff --git a/blocks/task1/maps/level5/text_input/71.txt b/blocks/task1/maps/level5/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/71.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level5/text_input/72.txt b/blocks/task1/maps/level5/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/72.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level5/text_input/73.txt b/blocks/task1/maps/level5/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/73.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/74.txt b/blocks/task1/maps/level5/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/74.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level5/text_input/75.txt b/blocks/task1/maps/level5/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/75.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/76.txt b/blocks/task1/maps/level5/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..147b64933541a006fdcce9025fa64ab642bd8be8 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/76.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 2? diff --git a/blocks/task1/maps/level5/text_input/77.txt b/blocks/task1/maps/level5/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/77.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/78.txt b/blocks/task1/maps/level5/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/78.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/79.txt b/blocks/task1/maps/level5/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/79.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/8.txt b/blocks/task1/maps/level5/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/8.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/80.txt b/blocks/task1/maps/level5/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/80.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level5/text_input/81.txt b/blocks/task1/maps/level5/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2e463362976d622f4d445ad5b79ba7a89d26a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/81.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 1? diff --git a/blocks/task1/maps/level5/text_input/82.txt b/blocks/task1/maps/level5/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/82.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/83.txt b/blocks/task1/maps/level5/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/83.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/84.txt b/blocks/task1/maps/level5/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/84.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/85.txt b/blocks/task1/maps/level5/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/85.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/86.txt b/blocks/task1/maps/level5/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bd229025aff2e7007cb7b1d831abff3733524eb --- /dev/null +++ b/blocks/task1/maps/level5/text_input/86.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 4? diff --git a/blocks/task1/maps/level5/text_input/87.txt b/blocks/task1/maps/level5/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..23742dd7117b2f993c25670e20f7263b8e8a2ef7 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/87.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 1? diff --git a/blocks/task1/maps/level5/text_input/88.txt b/blocks/task1/maps/level5/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/88.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/89.txt b/blocks/task1/maps/level5/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..147b64933541a006fdcce9025fa64ab642bd8be8 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/89.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 2? diff --git a/blocks/task1/maps/level5/text_input/9.txt b/blocks/task1/maps/level5/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bd229025aff2e7007cb7b1d831abff3733524eb --- /dev/null +++ b/blocks/task1/maps/level5/text_input/9.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 4? diff --git a/blocks/task1/maps/level5/text_input/90.txt b/blocks/task1/maps/level5/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/90.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level5/text_input/91.txt b/blocks/task1/maps/level5/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b25f343a8a427433d2c6b5fbfc43c3378f8d363 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/91.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 1? diff --git a/blocks/task1/maps/level5/text_input/92.txt b/blocks/task1/maps/level5/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/92.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level5/text_input/93.txt b/blocks/task1/maps/level5/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/93.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/94.txt b/blocks/task1/maps/level5/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0b7f3585764a0f9f043025d6d8a14dc358c934c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/94.txt @@ -0,0 +1 @@ +What is the color of the block at stack 1, level 2? diff --git a/blocks/task1/maps/level5/text_input/95.txt b/blocks/task1/maps/level5/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..d48f350a24e6e157fc809b1a31282fc706016c8c --- /dev/null +++ b/blocks/task1/maps/level5/text_input/95.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 1? diff --git a/blocks/task1/maps/level5/text_input/96.txt b/blocks/task1/maps/level5/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..5db8cda67074d2865f44122bf7af23d704935ef6 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/96.txt @@ -0,0 +1 @@ +What is the color of the block at stack 4, level 2? diff --git a/blocks/task1/maps/level5/text_input/97.txt b/blocks/task1/maps/level5/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d38f6998562373bb50f3b82a7f3a0d1856ce3 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/97.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 3? diff --git a/blocks/task1/maps/level5/text_input/98.txt b/blocks/task1/maps/level5/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..79a0729ee83248b4276559cce11b3ed27581e1a9 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/98.txt @@ -0,0 +1 @@ +What is the color of the block at stack 2, level 2? diff --git a/blocks/task1/maps/level5/text_input/99.txt b/blocks/task1/maps/level5/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..b10f681452d9636f4c1fa86d460a05f3b7e27e82 --- /dev/null +++ b/blocks/task1/maps/level5/text_input/99.txt @@ -0,0 +1 @@ +What is the color of the block at stack 3, level 3? diff --git a/blocks/task1/prompt-text/prompt-text.txt b/blocks/task1/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c367e34a900e7f735c1cf8b5caf58a6c10bc08c --- /dev/null +++ b/blocks/task1/prompt-text/prompt-text.txt @@ -0,0 +1,28 @@ +In this task, you will see a photo of blocks. You will analyze the block configuration and then answer a question regarding the color of blocks in a specific place. Since coding is not within your skill set, your approach relies on logical reasoning. + +## Game Setup +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. +- In the questions, the position of the blocks is represented as "Stack s, Level l". The stack number is counted from left to right, and the level number is counted from bottom to top. + +We provide an example to further illustrate the setting: + + + +In this example, there are four blocks in three stacks. From left to right: +- Stack 1 has one level. Level 1 contains a purple block. +- Stack 2 has one level. Level 1 contains a blue block. +- Stack 3 has one level. From bottom to top: level 1 has an orange block, and level 2 has a red block. + +As such, for the question "What is the color of the block at stack 3, level 1?", the correct answer is " orange". + +## Procedure and Output +Your output should follow this format: +1. First, analyze the block configuration; +2. Then, answer the question with the format , where is one of (blue, yellow, purple, orange, red, green). For example, " red". + +Now please answer the following question based on the given image below: + + + + diff --git a/blocks/task1/prompt-visual-images/example0.jpg b/blocks/task1/prompt-visual-images/example0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00441c1e743435ca733644c169ff6a8c55def2e6 --- /dev/null +++ b/blocks/task1/prompt-visual-images/example0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556d22008dc07ec6cc3025494315bceb6eab830c2f66ffe43ae21b1152e45769 +size 10171 diff --git a/blocks/task1/test.py b/blocks/task1/test.py new file mode 100644 index 0000000000000000000000000000000000000000..21b082ccd187a5490ece200cc31a8275c6621cc4 --- /dev/null +++ b/blocks/task1/test.py @@ -0,0 +1,137 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +from IPython.display import display +from IPython.display import Markdown + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) + # torch.manual_seed(seed) + # torch.cuda.manual_seed(seed) + # torch.backends.cudnn.deterministic = True + # env.seed(seed) +seed_everything(1) + +levels = [3,4,5] +in_context_example_num = 0 # 0, 1, 2, 4, 8 + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +EXAMPLE_DICT = { + 3: [], + 4: [], + 5: [], +} +for level in levels: + for example_id in range(8): + curr_example_pack = {} + curr_example_pack["image_path"] = "example/level%d/image_input/%d.jpg"%(level, example_id) + with open("example/level%d/text_input/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["question"] = f.read() + with open("example/level%d/answer/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["answer"] = f.read() + EXAMPLE_DICT[level].append(curr_example_pack) + + +# import ipdb; ipdb.set_trace() +example_img = PIL.Image.open('prompt-visual-images/example0.jpg') +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + input_img_path = "maps/level%d/image_input/"%(level) + input_txt_path = "maps/level%d/text_input/"%(level) + + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + prompt_input_1 = '''In this task, you will see a photo of blocks. You will analyze the block configuration and then answer a question regarding the color of blocks in a specific place. Since coding is not within your skill set, your approach relies on logical reasoning. + +## Game Setup +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. +- In the questions, the position of the blocks is represented as "Stack s, Level l". The stack number is counted from left to right, and the level number is counted from bottom to top. + +We provide an example to further illustrate the setting: +''' + + prompt_input_2 = ''' +In this example, there are four blocks in three stacks. From left to right: +- Stack 1 has one level. Level 1 contains a purple block. +- Stack 2 has one level. Level 1 contains a blue block. +- Stack 3 has one level. From bottom to top: level 1 has an orange block, and level 2 has a red block. + +As such, for the question "What is the color of the block at stack 3, level 1?", the correct answer is " orange". + +## Procedure and Output +Your output should follow this format: +1. First, analyze the block configuration; +2. Then, answer the question with the format , where is one of (blue, yellow, purple, orange, red, green). For example, " red". +''' + prompt_input_3 = "\n\nNow please answer the following question based on the given image below:\n" + prompt_examples = [] + image_examples = [] + if in_context_example_num > 0: + prompt_examples.append("## Example:\n") + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + image_examples.append(PIL.Image.open(this_example["image_path"])) + prompt_examples.append(this_example["question"] + "\n" + this_example["answer"] + "\n") + with open(input_txt_path + "%d.txt"%(curr_id), 'r') as f: + question = f.read() + input_img = PIL.Image.open(input_img_path + "%d.jpg"%(curr_id)) + model_input_seq = [prompt_input_1, example_img, prompt_input_2] + if in_context_example_num > 0: + assert len(prompt_examples) == len(image_examples) + 1 + assert len(prompt_examples) == in_context_example_num + 1 + model_input_seq.append(prompt_examples[0]) + for example_index in range(in_context_example_num): + model_input_seq.append(image_examples[example_index]) + model_input_seq.append(prompt_examples[example_index+1]) + model_input_seq += [prompt_input_3, question, input_img] + + + response = model.generate_content(model_input_seq) + + + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass + + diff --git a/blocks/task2/.DS_Store b/blocks/task2/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..35c39cb8afa0ee2f2b78d51c15bafa267843b06a Binary files /dev/null and b/blocks/task2/.DS_Store differ diff --git a/blocks/task2/eval.py b/blocks/task2/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..922217b850818146908b523f99fd54035d243584 --- /dev/null +++ b/blocks/task2/eval.py @@ -0,0 +1,51 @@ +import csv +import os + +def clear_answer(plan): + plan = plan.replace('"', '') + plan = plan.replace("'", '') + plan = plan.replace("\n", '') + plan = plan.replace(".", '') + plan = plan.replace("*", '') + plan = plan.replace("<", '') + plan = plan.replace(">", '') + plan = plan.replace(":", '') + plan = plan.lstrip() + plan = plan.rstrip() + return plan + +answer_dict = {0: "A", 1: 'B', 2: 'C', 3: 'D'} + +# import ipdb; ipdb.set_trace() +count_corr = [0,0,0] +invalid = [0,0,0] +for level in [3,4,5]: + with open("../level%d/annotation.txt"%(level), "r") as f: + gt_records = f.read().split('\n')[:-1] + for test_id in range(100): + try: + curr_record = gt_records[test_id] + with open("output/output_img/level%d/%d.txt"%(level, test_id), "r") as f: # img5, text4 + answer = f.read() + answer_index = answer.find("") + if answer_index != -1: + answer = answer[(answer_index + len("")):] + else: + answer_index = answer.find("Output") + answer = answer[(answer_index + len("Output")):] + answer_possible_end_index = answer.find('\n') + if answer_possible_end_index != -1: + answer = answer[:answer_possible_end_index] + answer = clear_answer(answer) + # import ipdb; ipdb.set_trace() + if answer_dict[int(curr_record)] == answer: + count_corr[level-3] += 1 + else: + print(answer, test_id) + pass + except: + invalid[level-3] += 1 + # print(test_id) +print(count_corr) +print(invalid) +print("") \ No newline at end of file diff --git a/blocks/task2/example/level3/annotation.txt b/blocks/task2/example/level3/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e31893deaea0c6593d83786a5eaf797a2a92762 --- /dev/null +++ b/blocks/task2/example/level3/annotation.txt @@ -0,0 +1,8 @@ +1 +1 +2 +1 +1 +1 +3 +1 diff --git a/blocks/task2/example/level3/answer/0.txt b/blocks/task2/example/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..b172b5223f48065fb70def920b94f5f366379297 --- /dev/null +++ b/blocks/task2/example/level3/answer/0.txt @@ -0,0 +1,5 @@ +The input contains 3 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a orange block. +- Stack 2 has 2 level. From bottom to top: level 1 has an blue block, level 2 has an purple block, +As such, for the question "What is the spatial relation betweeen the blue block and the purple block?",since the blue block is directly below the purple block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level3/answer/1.txt b/blocks/task2/example/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6880ba289e452ed91bb0d1dc7da74ec97a137a4 --- /dev/null +++ b/blocks/task2/example/level3/answer/1.txt @@ -0,0 +1,5 @@ +The input contains 3 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a red block. +- Stack 2 has 2 level. From bottom to top: level 1 has an blue block, level 2 has an yellow block, +As such, for the question "What is the spatial relation betweeen the blue block and the yellow block?",since the blue block is directly below the yellow block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level3/answer/2.txt b/blocks/task2/example/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dbf59c373e5ab0119fdac52129fc260599e9dc0 --- /dev/null +++ b/blocks/task2/example/level3/answer/2.txt @@ -0,0 +1,5 @@ +The input contains 3 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a blue block. +- Stack 2 has 2 level. From bottom to top: level 1 has an green block, level 2 has an purple block, +As such, for the question "What is the spatial relation betweeen the green block and the blue block?",since the green block and the blue block are at different stacks, the correct answer is " C". + C \ No newline at end of file diff --git a/blocks/task2/example/level3/answer/3.txt b/blocks/task2/example/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..18ae5801248261fdc6d50dd69633697424b810b4 --- /dev/null +++ b/blocks/task2/example/level3/answer/3.txt @@ -0,0 +1,5 @@ +The input contains 3 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a orange block. +- Stack 2 has 2 level. From bottom to top: level 1 has an green block, level 2 has an blue block, +As such, for the question "What is the spatial relation betweeen the green block and the blue block?",since the green block is directly below the blue block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level3/answer/4.txt b/blocks/task2/example/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..559356b76a107605d177c39dc2dd38aeb1440c83 --- /dev/null +++ b/blocks/task2/example/level3/answer/4.txt @@ -0,0 +1,5 @@ +The input contains 3 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a blue block. +- Stack 2 has 2 level. From bottom to top: level 1 has an green block, level 2 has an purple block, +As such, for the question "What is the spatial relation betweeen the green block and the purple block?",since the green block is directly below the purple block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level3/answer/5.txt b/blocks/task2/example/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..021cbd9393d3d4d23b096545e12fa510e5a4b1f6 --- /dev/null +++ b/blocks/task2/example/level3/answer/5.txt @@ -0,0 +1,5 @@ +The input contains 3 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a purple block. +- Stack 2 has 2 level. From bottom to top: level 1 has an blue block, level 2 has an green block, +As such, for the question "What is the spatial relation betweeen the blue block and the green block?",since the blue block is directly below the green block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level3/answer/6.txt b/blocks/task2/example/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..426ccd39d5403ec26ed6dd445393a66bfca82594 --- /dev/null +++ b/blocks/task2/example/level3/answer/6.txt @@ -0,0 +1,5 @@ +The input contains 3 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a yellow block. +- Stack 2 has 2 level. From bottom to top: level 1 has an orange block, level 2 has an green block, +As such, for the question "What is the spatial relation betweeen the red block and the yellow block?",since the red block does not exist in the demonstrated configurations, the correct answer is " D". + D \ No newline at end of file diff --git a/blocks/task2/example/level3/answer/7.txt b/blocks/task2/example/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2f0546158c22025f4d07a7c8ebc1c340d857005 --- /dev/null +++ b/blocks/task2/example/level3/answer/7.txt @@ -0,0 +1,5 @@ +The input contains 3 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a red block. +- Stack 2 has 2 level. From bottom to top: level 1 has an yellow block, level 2 has an blue block, +As such, for the question "What is the spatial relation betweeen the yellow block and the blue block?",since the yellow block is directly below the blue block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level3/image_input/0.jpg b/blocks/task2/example/level3/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4af2df380afda6bef1ca01aac7a9a3f04130724 --- /dev/null +++ b/blocks/task2/example/level3/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eecd3e71a417f1bc80b48371b25034ee8d0953ed6cf6283ee26ce30cc15d5f04 +size 10674 diff --git a/blocks/task2/example/level3/image_input/1.jpg b/blocks/task2/example/level3/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc85d0a690fe07b6a62db320b26d2d507fc629dd --- /dev/null +++ b/blocks/task2/example/level3/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078a07cb27c7e7377f7a403cfb42c9f67f058b4e4cfe69b7a7168762d3230025 +size 10591 diff --git a/blocks/task2/example/level3/image_input/2.jpg b/blocks/task2/example/level3/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf4ac3fd3c65a0f53de1ab3d55d363c8c17758ea --- /dev/null +++ b/blocks/task2/example/level3/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e917c94076041cea8298beb47bb41f8b3a19ef9442b01bbb143a9b5a0db5d40 +size 9914 diff --git a/blocks/task2/example/level3/image_input/3.jpg b/blocks/task2/example/level3/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8976e13cf6a3c255b668565fecb99447ca12e25 --- /dev/null +++ b/blocks/task2/example/level3/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6a7fa27bb1b349f52970a870430239220a4389b62a78dd51b93f5b758b1f53 +size 9899 diff --git a/blocks/task2/example/level3/image_input/4.jpg b/blocks/task2/example/level3/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf4ac3fd3c65a0f53de1ab3d55d363c8c17758ea --- /dev/null +++ b/blocks/task2/example/level3/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e917c94076041cea8298beb47bb41f8b3a19ef9442b01bbb143a9b5a0db5d40 +size 9914 diff --git a/blocks/task2/example/level3/image_input/5.jpg b/blocks/task2/example/level3/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..802722ff569a7ed5a48672d35ba238d3fffba2ed --- /dev/null +++ b/blocks/task2/example/level3/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a75aa95b8438073aac87cc11b0d39cb685983b20e738df7f34a3cb6ab48e60 +size 9606 diff --git a/blocks/task2/example/level3/image_input/6.jpg b/blocks/task2/example/level3/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fff379d3841fdae754895fc5d5143898ed52b80b --- /dev/null +++ b/blocks/task2/example/level3/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b314930378c4054921ec48492b9da9fb66321b9a811341ab85d6388ad76e558a +size 10000 diff --git a/blocks/task2/example/level3/image_input/7.jpg b/blocks/task2/example/level3/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60bdf2154d52e3a8ace37d830298e69c797397cb --- /dev/null +++ b/blocks/task2/example/level3/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd26691fe31c41b3550c778c2adb56eba6a69674168f8c586a982dbc5a2ecaa +size 10571 diff --git a/blocks/task2/example/level3/pure_text_rep_input/0.txt b/blocks/task2/example/level3/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..82af9c6853b05e2a8fc8069bd7d92bd8375cabe8 --- /dev/null +++ b/blocks/task2/example/level3/pure_text_rep_input/0.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task2/example/level3/pure_text_rep_input/1.txt b/blocks/task2/example/level3/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cb6c82ba75f4965ec0f3076384a5f4ed2c02959 --- /dev/null +++ b/blocks/task2/example/level3/pure_text_rep_input/1.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task2/example/level3/pure_text_rep_input/2.txt b/blocks/task2/example/level3/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..3943dd30b2f557d15e462268ca8f6332f537fe5f --- /dev/null +++ b/blocks/task2/example/level3/pure_text_rep_input/2.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/example/level3/pure_text_rep_input/3.txt b/blocks/task2/example/level3/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b770e9ddda305ec67e9877f7aef376f42c1f0e4 --- /dev/null +++ b/blocks/task2/example/level3/pure_text_rep_input/3.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task2/example/level3/pure_text_rep_input/4.txt b/blocks/task2/example/level3/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3943dd30b2f557d15e462268ca8f6332f537fe5f --- /dev/null +++ b/blocks/task2/example/level3/pure_text_rep_input/4.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/example/level3/pure_text_rep_input/5.txt b/blocks/task2/example/level3/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..06eb9179599c1e188d864713a1cdb4791af3b063 --- /dev/null +++ b/blocks/task2/example/level3/pure_text_rep_input/5.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task2/example/level3/pure_text_rep_input/6.txt b/blocks/task2/example/level3/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5f4fa4616e22207a6d5f0ea1e3a33b164eaeb22 --- /dev/null +++ b/blocks/task2/example/level3/pure_text_rep_input/6.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task2/example/level3/pure_text_rep_input/7.txt b/blocks/task2/example/level3/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d31a32417b78d079b040783e917cb4046999a1a6 --- /dev/null +++ b/blocks/task2/example/level3/pure_text_rep_input/7.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task2/example/level3/table_rep_input/0.txt b/blocks/task2/example/level3/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c3a2953317beaad0971e28d8c8427cc072f9ec7 --- /dev/null +++ b/blocks/task2/example/level3/table_rep_input/0.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | orange | blue | diff --git a/blocks/task2/example/level3/table_rep_input/1.txt b/blocks/task2/example/level3/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a99a0ec803f07cbce9031c9d9c244fee1c84b2 --- /dev/null +++ b/blocks/task2/example/level3/table_rep_input/1.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | red | blue | diff --git a/blocks/task2/example/level3/table_rep_input/2.txt b/blocks/task2/example/level3/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..8913eda33d1fbdb518fc232280830f7b10b55a72 --- /dev/null +++ b/blocks/task2/example/level3/table_rep_input/2.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | blue | green | diff --git a/blocks/task2/example/level3/table_rep_input/3.txt b/blocks/task2/example/level3/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc7fcad7ef7b9b09c989c8a78c4e5b1febeae889 --- /dev/null +++ b/blocks/task2/example/level3/table_rep_input/3.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | orange | green | diff --git a/blocks/task2/example/level3/table_rep_input/4.txt b/blocks/task2/example/level3/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..8913eda33d1fbdb518fc232280830f7b10b55a72 --- /dev/null +++ b/blocks/task2/example/level3/table_rep_input/4.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | blue | green | diff --git a/blocks/task2/example/level3/table_rep_input/5.txt b/blocks/task2/example/level3/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d71a1da840170b3f73de188f92dfc0f640bd582 --- /dev/null +++ b/blocks/task2/example/level3/table_rep_input/5.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | purple | blue | diff --git a/blocks/task2/example/level3/table_rep_input/6.txt b/blocks/task2/example/level3/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..adeac1848b6659610cb8133e21d61597ef7832ca --- /dev/null +++ b/blocks/task2/example/level3/table_rep_input/6.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | yellow | orange | diff --git a/blocks/task2/example/level3/table_rep_input/7.txt b/blocks/task2/example/level3/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8a2977fe081a7bef5ae76e324f145a6b4c37ec4 --- /dev/null +++ b/blocks/task2/example/level3/table_rep_input/7.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task2/example/level3/text_input/0.txt b/blocks/task2/example/level3/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/example/level3/text_input/0.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/example/level3/text_input/1.txt b/blocks/task2/example/level3/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/example/level3/text_input/1.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/example/level3/text_input/2.txt b/blocks/task2/example/level3/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c922db8beeba3fe2cfe562c9272632eb022efb88 --- /dev/null +++ b/blocks/task2/example/level3/text_input/2.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the blue block? +(A) The green block is directly above the blue block, and they are in the same stack. +(B) The green block is directly below the blue block, and they are in the same stack. +(C) The green block and the blue block are at different stacks. +(D) At least one of the green block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/example/level3/text_input/3.txt b/blocks/task2/example/level3/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..c922db8beeba3fe2cfe562c9272632eb022efb88 --- /dev/null +++ b/blocks/task2/example/level3/text_input/3.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the blue block? +(A) The green block is directly above the blue block, and they are in the same stack. +(B) The green block is directly below the blue block, and they are in the same stack. +(C) The green block and the blue block are at different stacks. +(D) At least one of the green block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/example/level3/text_input/4.txt b/blocks/task2/example/level3/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/example/level3/text_input/4.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/example/level3/text_input/5.txt b/blocks/task2/example/level3/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/example/level3/text_input/5.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/example/level3/text_input/6.txt b/blocks/task2/example/level3/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec0c1d6a3d4c200252cb983bd69e5a95c53dc7ad --- /dev/null +++ b/blocks/task2/example/level3/text_input/6.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the yellow block? +(A) The red block is directly above the yellow block, and they are in the same stack. +(B) The red block is directly below the yellow block, and they are in the same stack. +(C) The red block and the yellow block are at different stacks. +(D) At least one of the red block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/example/level3/text_input/7.txt b/blocks/task2/example/level3/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/example/level3/text_input/7.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/example/level4/annotation.txt b/blocks/task2/example/level4/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..70d7ff3ed60c0426174c980af0bf21a91710b0ae --- /dev/null +++ b/blocks/task2/example/level4/annotation.txt @@ -0,0 +1,8 @@ +2 +1 +0 +2 +0 +3 +2 +1 diff --git a/blocks/task2/example/level4/answer/0.txt b/blocks/task2/example/level4/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc4dcd4fde3fab3cdc58b8ce73f0ca4f2b069cfc --- /dev/null +++ b/blocks/task2/example/level4/answer/0.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a green block. +- Stack 2 has 3 level. From bottom to top: level 1 has an red block, level 2 has an orange block, level 3 has an blue block, +As such, for the question "What is the spatial relation betweeen the red block and the green block?",since the red block and the green block are at different stacks, the correct answer is " C". + C \ No newline at end of file diff --git a/blocks/task2/example/level4/answer/1.txt b/blocks/task2/example/level4/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ea55aad0af88dcda0348ec5776b70e29a716b0c --- /dev/null +++ b/blocks/task2/example/level4/answer/1.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a red block. +- Stack 2 has 3 level. From bottom to top: level 1 has an orange block, level 2 has an green block, level 3 has an purple block, +As such, for the question "What is the spatial relation betweeen the orange block and the purple block?",since the orange block is directly below the purple block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level4/answer/2.txt b/blocks/task2/example/level4/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5598d591b45c2491bac229feacd1f3f92741796 --- /dev/null +++ b/blocks/task2/example/level4/answer/2.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a red block. +- Stack 2 has 3 level. From bottom to top: level 1 has an orange block, level 2 has an purple block, level 3 has an green block, +As such, for the question "What is the spatial relation betweeen the green block and the orange block?",since the green block is directly above the orange block and they are in the same stack, the correct answer is " A". + A \ No newline at end of file diff --git a/blocks/task2/example/level4/answer/3.txt b/blocks/task2/example/level4/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ba18499c96d19cb45e075d203a32175f89f92e3 --- /dev/null +++ b/blocks/task2/example/level4/answer/3.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a purple block. +- Stack 2 has 3 level. From bottom to top: level 1 has an yellow block, level 2 has an blue block, level 3 has an orange block, +As such, for the question "What is the spatial relation betweeen the yellow block and the purple block?",since the yellow block and the purple block are at different stacks, the correct answer is " C". + C \ No newline at end of file diff --git a/blocks/task2/example/level4/answer/4.txt b/blocks/task2/example/level4/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..58abba63d4237a0355a7131cbdb1eaff0e98d735 --- /dev/null +++ b/blocks/task2/example/level4/answer/4.txt @@ -0,0 +1,6 @@ +The input contains 4 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a green block. +- Stack 2 has 1 level. Level 1 has a red block. +- Stack 3 has 2 level. From bottom to top: level 1 has an blue block, level 2 has an orange block, +As such, for the question "What is the spatial relation betweeen the orange block and the blue block?",since the orange block is directly above the blue block and they are in the same stack, the correct answer is " A". + A \ No newline at end of file diff --git a/blocks/task2/example/level4/answer/5.txt b/blocks/task2/example/level4/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fa2233593082619df66f715a2683c03b900fa4e --- /dev/null +++ b/blocks/task2/example/level4/answer/5.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a orange block. +- Stack 2 has 3 level. From bottom to top: level 1 has an purple block, level 2 has an red block, level 3 has an yellow block, +As such, for the question "What is the spatial relation betweeen the blue block and the purple block?",since the blue block does not exist in the demonstrated configurations, the correct answer is " D". + D \ No newline at end of file diff --git a/blocks/task2/example/level4/answer/6.txt b/blocks/task2/example/level4/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..dda9f14f2e52a4fe4e37b83dce159baf4a4e705f --- /dev/null +++ b/blocks/task2/example/level4/answer/6.txt @@ -0,0 +1,6 @@ +The input contains 4 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a blue block. +- Stack 2 has 1 level. Level 1 has a purple block. +- Stack 3 has 2 level. From bottom to top: level 1 has an red block, level 2 has an orange block, +As such, for the question "What is the spatial relation betweeen the red block and the purple block?",since the red block and the purple block are at different stacks, the correct answer is " C". + C \ No newline at end of file diff --git a/blocks/task2/example/level4/answer/7.txt b/blocks/task2/example/level4/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7679d3ac268f793f2818564a7eccf06e07bc5f5e --- /dev/null +++ b/blocks/task2/example/level4/answer/7.txt @@ -0,0 +1,5 @@ +The input contains 4 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a orange block. +- Stack 2 has 3 level. From bottom to top: level 1 has an yellow block, level 2 has an red block, level 3 has an green block, +As such, for the question "What is the spatial relation betweeen the yellow block and the red block?",since the yellow block is directly below the red block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level4/image_input/0.jpg b/blocks/task2/example/level4/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26bc4c23b1e2b7838591b08101d233d6f3a60ce9 --- /dev/null +++ b/blocks/task2/example/level4/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3948164c4ad9a0e7a06b2ced6500b22a61837fd6cf265ba91010de2843217c6 +size 10183 diff --git a/blocks/task2/example/level4/image_input/1.jpg b/blocks/task2/example/level4/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aff6116bd7393fefb0b24113f39e63fb4c238e99 --- /dev/null +++ b/blocks/task2/example/level4/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc16944f54dcf6e856e450dbc36f9dd207e33e6b320e8631cdcfe8edba38093b +size 9493 diff --git a/blocks/task2/example/level4/image_input/2.jpg b/blocks/task2/example/level4/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80b829c30354f42c147b661fa5e85df528498133 --- /dev/null +++ b/blocks/task2/example/level4/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34afaf5265d1835fb40ecfbcecda0b19f02bc3f54a80c7a9413ff1dc274bb1b0 +size 9858 diff --git a/blocks/task2/example/level4/image_input/3.jpg b/blocks/task2/example/level4/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16fad0acc18cba3b0ec4543238b603b591197ee6 --- /dev/null +++ b/blocks/task2/example/level4/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b59e0bf12618744f6b80245fdc1385ce6692c7c4918e861c9c06dfa4cf9608 +size 9964 diff --git a/blocks/task2/example/level4/image_input/4.jpg b/blocks/task2/example/level4/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3db3e01b7265f8a29b6cbd567fbda3968855d29 --- /dev/null +++ b/blocks/task2/example/level4/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82301b31934122ff1247cf1ec713a4440f6de4392eecd98f22f026807a57a52f +size 10217 diff --git a/blocks/task2/example/level4/image_input/5.jpg b/blocks/task2/example/level4/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbb77bc5d164487936b3f25ae0bd8741376cf67e --- /dev/null +++ b/blocks/task2/example/level4/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21240f382feaad936436cb6d9171e6c65c93010cfe2f8eedb5527bcafb87fbf +size 10272 diff --git a/blocks/task2/example/level4/image_input/6.jpg b/blocks/task2/example/level4/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dee535499da7096814d99f61b27659ac470bef3b --- /dev/null +++ b/blocks/task2/example/level4/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e6069e9353ea46f16e6be921a1a95833c3339cc4749e8ca468ef03b115c40a +size 10632 diff --git a/blocks/task2/example/level4/image_input/7.jpg b/blocks/task2/example/level4/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db37b44c141eeaf56f980c590e5512e0b03fe8a6 --- /dev/null +++ b/blocks/task2/example/level4/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2623f36308386cd6068c55131a8abf5b20f5f29f48bfffa31081de42cc8d87 +size 9997 diff --git a/blocks/task2/example/level4/pure_text_rep_input/0.txt b/blocks/task2/example/level4/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..038865e4fd6f2ea3bef775d6c850f02d6e242099 --- /dev/null +++ b/blocks/task2/example/level4/pure_text_rep_input/0.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task2/example/level4/pure_text_rep_input/1.txt b/blocks/task2/example/level4/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..df6e0091671f4f8e905b1d5e601f85a7d6beb522 --- /dev/null +++ b/blocks/task2/example/level4/pure_text_rep_input/1.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, green block, purple block, from bottom to top diff --git a/blocks/task2/example/level4/pure_text_rep_input/2.txt b/blocks/task2/example/level4/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..12097130b2a725c8bd5d2a72b001f26a5a9bc90f --- /dev/null +++ b/blocks/task2/example/level4/pure_text_rep_input/2.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, purple block, green block, from bottom to top diff --git a/blocks/task2/example/level4/pure_text_rep_input/3.txt b/blocks/task2/example/level4/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..25de40df7537804a1bd95bb8da28e81f23f0f96e --- /dev/null +++ b/blocks/task2/example/level4/pure_text_rep_input/3.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, blue block, orange block, from bottom to top diff --git a/blocks/task2/example/level4/pure_text_rep_input/4.txt b/blocks/task2/example/level4/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5c905d937b098fa9cd10ea95787dd6814547d6d --- /dev/null +++ b/blocks/task2/example/level4/pure_text_rep_input/4.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/example/level4/pure_text_rep_input/5.txt b/blocks/task2/example/level4/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..43a303ede5174634e9ae003f39344c77bacacd69 --- /dev/null +++ b/blocks/task2/example/level4/pure_text_rep_input/5.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, red block, yellow block, from bottom to top diff --git a/blocks/task2/example/level4/pure_text_rep_input/6.txt b/blocks/task2/example/level4/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..6df70a1e2f890394fbd7bf072f10fd758b9c58dc --- /dev/null +++ b/blocks/task2/example/level4/pure_text_rep_input/6.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task2/example/level4/pure_text_rep_input/7.txt b/blocks/task2/example/level4/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8231524111f6cfc53addbc92dc914bf121cb4741 --- /dev/null +++ b/blocks/task2/example/level4/pure_text_rep_input/7.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, red block, green block, from bottom to top diff --git a/blocks/task2/example/level4/table_rep_input/0.txt b/blocks/task2/example/level4/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..841328b092a570ca8d0dd5f282f06b6e5473c051 --- /dev/null +++ b/blocks/task2/example/level4/table_rep_input/0.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | green | red | diff --git a/blocks/task2/example/level4/table_rep_input/1.txt b/blocks/task2/example/level4/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..5925ad8948d5a41e6ea72c7fab97e78b317dbf98 --- /dev/null +++ b/blocks/task2/example/level4/table_rep_input/1.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | green | +Level 1 | red | orange | diff --git a/blocks/task2/example/level4/table_rep_input/2.txt b/blocks/task2/example/level4/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d10250a8a013c95b1f55a54e5e2307c1d56a7e05 --- /dev/null +++ b/blocks/task2/example/level4/table_rep_input/2.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | purple | +Level 1 | red | orange | diff --git a/blocks/task2/example/level4/table_rep_input/3.txt b/blocks/task2/example/level4/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..985d7ed2b8ec5423244dcf3e9ed7e530172c54ed --- /dev/null +++ b/blocks/task2/example/level4/table_rep_input/3.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | purple | yellow | diff --git a/blocks/task2/example/level4/table_rep_input/4.txt b/blocks/task2/example/level4/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..abff34842821ee6dd76663d4df7a148fb9098e2d --- /dev/null +++ b/blocks/task2/example/level4/table_rep_input/4.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | green | red | blue | diff --git a/blocks/task2/example/level4/table_rep_input/5.txt b/blocks/task2/example/level4/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb55f0645dc0489f7ca23d3c2973972842d39790 --- /dev/null +++ b/blocks/task2/example/level4/table_rep_input/5.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | orange | purple | diff --git a/blocks/task2/example/level4/table_rep_input/6.txt b/blocks/task2/example/level4/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c2f509e5e69ff88b79134ad63d314606b580789 --- /dev/null +++ b/blocks/task2/example/level4/table_rep_input/6.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | blue | purple | red | diff --git a/blocks/task2/example/level4/table_rep_input/7.txt b/blocks/task2/example/level4/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb9affc845a86ad6a8807085a29ff938d61b7464 --- /dev/null +++ b/blocks/task2/example/level4/table_rep_input/7.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | red | +Level 1 | orange | yellow | diff --git a/blocks/task2/example/level4/text_input/0.txt b/blocks/task2/example/level4/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/example/level4/text_input/0.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/example/level4/text_input/1.txt b/blocks/task2/example/level4/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/example/level4/text_input/1.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/example/level4/text_input/2.txt b/blocks/task2/example/level4/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/example/level4/text_input/2.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/example/level4/text_input/3.txt b/blocks/task2/example/level4/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/example/level4/text_input/3.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/example/level4/text_input/4.txt b/blocks/task2/example/level4/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/example/level4/text_input/4.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/example/level4/text_input/5.txt b/blocks/task2/example/level4/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/example/level4/text_input/5.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/example/level4/text_input/6.txt b/blocks/task2/example/level4/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/example/level4/text_input/6.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/example/level4/text_input/7.txt b/blocks/task2/example/level4/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8bddd612c20ad308f45b4b66bb0323ee4fea686 --- /dev/null +++ b/blocks/task2/example/level4/text_input/7.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the red block? +(A) The yellow block is directly above the red block, and they are in the same stack. +(B) The yellow block is directly below the red block, and they are in the same stack. +(C) The yellow block and the red block are at different stacks. +(D) At least one of the yellow block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/example/level5/annotation.txt b/blocks/task2/example/level5/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..f322fb5761589f10c1b56ee7f020db2206ca261d --- /dev/null +++ b/blocks/task2/example/level5/annotation.txt @@ -0,0 +1,8 @@ +0 +1 +0 +0 +1 +1 +3 +1 diff --git a/blocks/task2/example/level5/answer/0.txt b/blocks/task2/example/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ba97ed07a237908cc56438415bc7e831842489d --- /dev/null +++ b/blocks/task2/example/level5/answer/0.txt @@ -0,0 +1,6 @@ +The input contains 5 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a blue block. +- Stack 2 has 1 level. Level 1 has a orange block. +- Stack 3 has 3 level. From bottom to top: level 1 has an yellow block, level 2 has an purple block, level 3 has an green block, +As such, for the question "What is the spatial relation betweeen the purple block and the yellow block?",since the purple block is directly above the yellow block and they are in the same stack, the correct answer is " A". + A \ No newline at end of file diff --git a/blocks/task2/example/level5/answer/1.txt b/blocks/task2/example/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..5424b91c27488f59dfcd482f6c725020a803050e --- /dev/null +++ b/blocks/task2/example/level5/answer/1.txt @@ -0,0 +1,6 @@ +The input contains 5 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a green block. +- Stack 2 has 1 level. Level 1 has a purple block. +- Stack 3 has 3 level. From bottom to top: level 1 has an orange block, level 2 has an yellow block, level 3 has an blue block, +As such, for the question "What is the spatial relation betweeen the orange block and the yellow block?",since the orange block is directly below the yellow block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level5/answer/2.txt b/blocks/task2/example/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ee0445362e5ff46d998d0eb0754d97039b159ad --- /dev/null +++ b/blocks/task2/example/level5/answer/2.txt @@ -0,0 +1,5 @@ +The input contains 5 blocks in 2 stacks. From left to right: +- Stack 1 has 2 level. From bottom to top: level 1 has an blue block, level 2 has an yellow block, +- Stack 2 has 3 level. From bottom to top: level 1 has an green block, level 2 has an orange block, level 3 has an purple block, +As such, for the question "What is the spatial relation betweeen the yellow block and the blue block?",since the yellow block is directly above the blue block and they are in the same stack, the correct answer is " A". + A \ No newline at end of file diff --git a/blocks/task2/example/level5/answer/3.txt b/blocks/task2/example/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..df9b4ffbe136daab4c8385e67bfa91dd203dca56 --- /dev/null +++ b/blocks/task2/example/level5/answer/3.txt @@ -0,0 +1,6 @@ +The input contains 5 blocks in 3 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a orange block. +- Stack 2 has 1 level. Level 1 has a red block. +- Stack 3 has 3 level. From bottom to top: level 1 has an blue block, level 2 has an yellow block, level 3 has an purple block, +As such, for the question "What is the spatial relation betweeen the yellow block and the blue block?",since the yellow block is directly above the blue block and they are in the same stack, the correct answer is " A". + A \ No newline at end of file diff --git a/blocks/task2/example/level5/answer/4.txt b/blocks/task2/example/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a79d599427d40f31ab6491c437edfc8afe4c6704 --- /dev/null +++ b/blocks/task2/example/level5/answer/4.txt @@ -0,0 +1,7 @@ +The input contains 5 blocks in 4 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a blue block. +- Stack 2 has 1 level. Level 1 has a orange block. +- Stack 3 has 1 level. Level 1 has a purple block. +- Stack 4 has 2 level. From bottom to top: level 1 has an yellow block, level 2 has an red block, +As such, for the question "What is the spatial relation betweeen the yellow block and the red block?",since the yellow block is directly below the red block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level5/answer/5.txt b/blocks/task2/example/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c930d7b280918d786e64c7a43d4bb4c7e811063e --- /dev/null +++ b/blocks/task2/example/level5/answer/5.txt @@ -0,0 +1,7 @@ +The input contains 5 blocks in 4 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a purple block. +- Stack 2 has 1 level. Level 1 has a yellow block. +- Stack 3 has 1 level. Level 1 has a blue block. +- Stack 4 has 2 level. From bottom to top: level 1 has an green block, level 2 has an red block, +As such, for the question "What is the spatial relation betweeen the green block and the red block?",since the green block is directly below the red block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level5/answer/6.txt b/blocks/task2/example/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d18f4e7a18481365fb597a4c3ab92ce7a0e59a8 --- /dev/null +++ b/blocks/task2/example/level5/answer/6.txt @@ -0,0 +1,5 @@ +The input contains 5 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a orange block. +- Stack 2 has 4 level. From bottom to top: level 1 has an green block, level 2 has an red block, level 3 has an purple block, level 4 has an blue block, +As such, for the question "What is the spatial relation betweeen the yellow block and the orange block?",since the yellow block does not exist in the demonstrated configurations, the correct answer is " D". + D \ No newline at end of file diff --git a/blocks/task2/example/level5/answer/7.txt b/blocks/task2/example/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c25e339e032226d030ea5bd1fb127a5416e5776 --- /dev/null +++ b/blocks/task2/example/level5/answer/7.txt @@ -0,0 +1,5 @@ +The input contains 5 blocks in 2 stacks. From left to right: +- Stack 1 has 1 level. Level 1 has a orange block. +- Stack 2 has 4 level. From bottom to top: level 1 has an green block, level 2 has an blue block, level 3 has an purple block, level 4 has an yellow block, +As such, for the question "What is the spatial relation betweeen the blue block and the yellow block?",since the blue block is directly below the yellow block and they are in the same stack, the correct answer is " B". + B \ No newline at end of file diff --git a/blocks/task2/example/level5/image_input/0.jpg b/blocks/task2/example/level5/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ba4ed58c935f4c453a3419d29140870abbc8173 --- /dev/null +++ b/blocks/task2/example/level5/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5713c9c9cb4e5d91eb0faddcdd32982298063a6c7d543e16aa00995705f777a3 +size 10937 diff --git a/blocks/task2/example/level5/image_input/1.jpg b/blocks/task2/example/level5/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..189fc06df1d63c7c492d107d2675f7277f5ad693 --- /dev/null +++ b/blocks/task2/example/level5/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232fb83340d91b0b283632f4e7fbd4f775a2e2d56e992ae26f8a89a370c163bf +size 10776 diff --git a/blocks/task2/example/level5/image_input/2.jpg b/blocks/task2/example/level5/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c813530a83fb1c27c654b9909b213635ac7cf240 --- /dev/null +++ b/blocks/task2/example/level5/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a2f3cd5e33ee425ac72b9cb2d350200e4ac2aab1ad4fe1c96b815699fae474 +size 10261 diff --git a/blocks/task2/example/level5/image_input/3.jpg b/blocks/task2/example/level5/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5df520b965c64937b90d7809a321fddcf915ab99 --- /dev/null +++ b/blocks/task2/example/level5/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:729e4bfcd1d419884c25013274c0599f7f1040688f32fcd6674fc98ce7957f02 +size 11066 diff --git a/blocks/task2/example/level5/image_input/4.jpg b/blocks/task2/example/level5/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d5dd0e3d2ffc1e67055e581e684e15184c48fd2 --- /dev/null +++ b/blocks/task2/example/level5/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec87ce88629a4b64aa3dc08bf07d98c38a4ec8d9b88dc9ef7d4884dcfa1310ce +size 11011 diff --git a/blocks/task2/example/level5/image_input/5.jpg b/blocks/task2/example/level5/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbc2fea156bef2b75c967538a67c84483a28f8eb --- /dev/null +++ b/blocks/task2/example/level5/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85d45696254c0b07a4fc53beb59677fb899927f3362cb9ab18bcdd81a53b77f +size 11263 diff --git a/blocks/task2/example/level5/image_input/6.jpg b/blocks/task2/example/level5/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd10828015aca2556adb6adc265fc5957c1521bd --- /dev/null +++ b/blocks/task2/example/level5/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9d010295f2b36afa991a288f4bbff0b72e9367d22c58a23ce903cb8da81d21 +size 11235 diff --git a/blocks/task2/example/level5/image_input/7.jpg b/blocks/task2/example/level5/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4a90a3fc7fc86f3489be115c261dbec4cc6e3de --- /dev/null +++ b/blocks/task2/example/level5/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd35974c0da4d7eaa8736e3ed6ea5bcb52cd10be76e1abc70476d1cf057118d8 +size 11633 diff --git a/blocks/task2/example/level5/pure_text_rep_input/0.txt b/blocks/task2/example/level5/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..296a750400551a94c5ffbd8bf10f466dd9af78e0 --- /dev/null +++ b/blocks/task2/example/level5/pure_text_rep_input/0.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block, purple block, green block, from bottom to top diff --git a/blocks/task2/example/level5/pure_text_rep_input/1.txt b/blocks/task2/example/level5/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..99002e01657c8febb7146b3143cefba32e6862c4 --- /dev/null +++ b/blocks/task2/example/level5/pure_text_rep_input/1.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block, yellow block, blue block, from bottom to top diff --git a/blocks/task2/example/level5/pure_text_rep_input/2.txt b/blocks/task2/example/level5/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e1ad3db7861dec76e130e9f8a887ce75060c970 --- /dev/null +++ b/blocks/task2/example/level5/pure_text_rep_input/2.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task2/example/level5/pure_text_rep_input/3.txt b/blocks/task2/example/level5/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cf936adff71f8b7b6809fcdd371a04e34b7f88c --- /dev/null +++ b/blocks/task2/example/level5/pure_text_rep_input/3.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task2/example/level5/pure_text_rep_input/4.txt b/blocks/task2/example/level5/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b74bae41804d07fb78af5b14cf557f878cb9ddfe --- /dev/null +++ b/blocks/task2/example/level5/pure_text_rep_input/4.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task2/example/level5/pure_text_rep_input/5.txt b/blocks/task2/example/level5/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..93a42ea6760578e39bdb765758bd807c0f666a17 --- /dev/null +++ b/blocks/task2/example/level5/pure_text_rep_input/5.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task2/example/level5/pure_text_rep_input/6.txt b/blocks/task2/example/level5/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24b345279f8b61c9c3161cdeb179e200d42a548e --- /dev/null +++ b/blocks/task2/example/level5/pure_text_rep_input/6.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, red block, purple block, blue block, from bottom to top diff --git a/blocks/task2/example/level5/pure_text_rep_input/7.txt b/blocks/task2/example/level5/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0020da8610c68984a6808659d5a418f563d2951b --- /dev/null +++ b/blocks/task2/example/level5/pure_text_rep_input/7.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task2/example/level5/table_rep_input/0.txt b/blocks/task2/example/level5/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..61e6c19fdf6517f7c6b64f4aab182cd78a871653 --- /dev/null +++ b/blocks/task2/example/level5/table_rep_input/0.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | purple | +Level 1 | blue | orange | yellow | diff --git a/blocks/task2/example/level5/table_rep_input/1.txt b/blocks/task2/example/level5/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a77dde1d2bbf335b41d667567c125198f823443 --- /dev/null +++ b/blocks/task2/example/level5/table_rep_input/1.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | yellow | +Level 1 | green | purple | orange | diff --git a/blocks/task2/example/level5/table_rep_input/2.txt b/blocks/task2/example/level5/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c73e4c97947c9c056f498dd9c5ad5b8396b7418 --- /dev/null +++ b/blocks/task2/example/level5/table_rep_input/2.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | orange | +Level 1 | blue | green | diff --git a/blocks/task2/example/level5/table_rep_input/3.txt b/blocks/task2/example/level5/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..878a1fcf68bd5283a7c427d1b8e0aa570cfe9926 --- /dev/null +++ b/blocks/task2/example/level5/table_rep_input/3.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | yellow | +Level 1 | orange | red | blue | diff --git a/blocks/task2/example/level5/table_rep_input/4.txt b/blocks/task2/example/level5/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f319ddf65e9e7608c8a8b66e175e44decdd21491 --- /dev/null +++ b/blocks/task2/example/level5/table_rep_input/4.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | orange | purple | yellow | diff --git a/blocks/task2/example/level5/table_rep_input/5.txt b/blocks/task2/example/level5/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc301072d8769f7d63d3d9a374e1ec8ed6cac89a --- /dev/null +++ b/blocks/task2/example/level5/table_rep_input/5.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | yellow | blue | green | diff --git a/blocks/task2/example/level5/table_rep_input/6.txt b/blocks/task2/example/level5/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..adeb957814a4c487b9cc52457d34826056d63f4d --- /dev/null +++ b/blocks/task2/example/level5/table_rep_input/6.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | red | +Level 1 | orange | green | diff --git a/blocks/task2/example/level5/table_rep_input/7.txt b/blocks/task2/example/level5/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..37a57e0633ef61ed0f70b471cea64ab3b6235349 --- /dev/null +++ b/blocks/task2/example/level5/table_rep_input/7.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | orange | green | diff --git a/blocks/task2/example/level5/text_input/0.txt b/blocks/task2/example/level5/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/example/level5/text_input/0.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/example/level5/text_input/1.txt b/blocks/task2/example/level5/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/example/level5/text_input/1.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/example/level5/text_input/2.txt b/blocks/task2/example/level5/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/example/level5/text_input/2.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/example/level5/text_input/3.txt b/blocks/task2/example/level5/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/example/level5/text_input/3.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/example/level5/text_input/4.txt b/blocks/task2/example/level5/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8bddd612c20ad308f45b4b66bb0323ee4fea686 --- /dev/null +++ b/blocks/task2/example/level5/text_input/4.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the red block? +(A) The yellow block is directly above the red block, and they are in the same stack. +(B) The yellow block is directly below the red block, and they are in the same stack. +(C) The yellow block and the red block are at different stacks. +(D) At least one of the yellow block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/example/level5/text_input/5.txt b/blocks/task2/example/level5/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/example/level5/text_input/5.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/example/level5/text_input/6.txt b/blocks/task2/example/level5/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/example/level5/text_input/6.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/example/level5/text_input/7.txt b/blocks/task2/example/level5/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/example/level5/text_input/7.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/.DS_Store b/blocks/task2/maps/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..c9b4c2d5767a15629ba3e8155adaa4bc79f9932a Binary files /dev/null and b/blocks/task2/maps/.DS_Store differ diff --git a/blocks/task2/maps/level3/annotation.txt b/blocks/task2/maps/level3/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..80e93f562349bcec1e5eef8813f12dbcb68066c6 --- /dev/null +++ b/blocks/task2/maps/level3/annotation.txt @@ -0,0 +1,100 @@ +3 +1 +2 +0 +3 +3 +3 +2 +1 +3 +2 +2 +2 +0 +0 +1 +2 +2 +1 +1 +0 +3 +2 +3 +0 +0 +3 +0 +2 +0 +3 +2 +0 +1 +1 +0 +3 +3 +1 +3 +2 +0 +2 +0 +2 +3 +3 +3 +0 +2 +1 +0 +3 +3 +0 +3 +0 +3 +2 +3 +2 +3 +3 +1 +3 +2 +3 +0 +1 +3 +0 +1 +2 +3 +1 +1 +3 +2 +2 +3 +2 +3 +1 +3 +3 +3 +3 +2 +0 +1 +0 +2 +2 +3 +0 +1 +0 +1 +0 +2 diff --git a/blocks/task2/maps/level3/image_input/0.jpg b/blocks/task2/maps/level3/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..863ff6d50a0142e8caee8473c983b11119f4d649 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5d6278d1b459e1534b52ac96064c4ad8396cfd2c9bf2d5835ff6d88d364ca3 +size 10175 diff --git a/blocks/task2/maps/level3/image_input/1.jpg b/blocks/task2/maps/level3/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22e80387e16d6309221a3c5960355d80ee42b183 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf688e80a69489dab5c02c7ba78efc313a9ef7eec54f955b89b22ded9f8c783 +size 10200 diff --git a/blocks/task2/maps/level3/image_input/10.jpg b/blocks/task2/maps/level3/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13e38feac0cf3d0d06ccec1ea06dc67e8bb53ef3 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a5a05b90e37f2cce11cfa22f13f0a8a6b322df8abc999b9a91bdeeb614a064 +size 9322 diff --git a/blocks/task2/maps/level3/image_input/11.jpg b/blocks/task2/maps/level3/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b06a5d8a70b8c73b94845c1a541bd1636c4f6ac --- /dev/null +++ b/blocks/task2/maps/level3/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239d79281ca4526d4f1dded203a5e4bf83ac9da7669e4c863b418bfdf334dcf2 +size 10682 diff --git a/blocks/task2/maps/level3/image_input/12.jpg b/blocks/task2/maps/level3/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1920650220cdf3d69d1e3ba2caf24b9f4d342a0 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb16964c9339dc87485a672349cf45f6cd7dafa4f35aadc81a27f2f95329800 +size 10376 diff --git a/blocks/task2/maps/level3/image_input/13.jpg b/blocks/task2/maps/level3/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..392ffb80f02119d2639b884ff6cbc8f9a672c589 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b0478d01423d70da34a588d620d31968e65947146c11ecff9afbbc4fe86f9c +size 10244 diff --git a/blocks/task2/maps/level3/image_input/14.jpg b/blocks/task2/maps/level3/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27325cde713c09b8fcffea582b8a2e9fe7a2456 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6779673d229c436092a26b7a7f70a944034700103360006f1acd2dcc80e6381 +size 9449 diff --git a/blocks/task2/maps/level3/image_input/15.jpg b/blocks/task2/maps/level3/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60bdf2154d52e3a8ace37d830298e69c797397cb --- /dev/null +++ b/blocks/task2/maps/level3/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd26691fe31c41b3550c778c2adb56eba6a69674168f8c586a982dbc5a2ecaa +size 10571 diff --git a/blocks/task2/maps/level3/image_input/16.jpg b/blocks/task2/maps/level3/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7177360573ebceb434957ebe6aa32784c79621b5 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4746c4cea51439b406188ef48cdbb931cb89480ce7587249f0d3010d53c005 +size 10407 diff --git a/blocks/task2/maps/level3/image_input/17.jpg b/blocks/task2/maps/level3/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c6606d7581a1867d91db3758a369dba473e65ee --- /dev/null +++ b/blocks/task2/maps/level3/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f093467bfb1985a5f1abafcaa693278c172e4c4c4ad4975ce19ff7d6f4f7e69f +size 10340 diff --git a/blocks/task2/maps/level3/image_input/18.jpg b/blocks/task2/maps/level3/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..265ba54e68b9f436d8954043340a710d586d9a54 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07826c5d1648e5a494eed17b4765476816b490dc19c7ef41aadab0ce26f30ba1 +size 10124 diff --git a/blocks/task2/maps/level3/image_input/19.jpg b/blocks/task2/maps/level3/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..392ffb80f02119d2639b884ff6cbc8f9a672c589 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b0478d01423d70da34a588d620d31968e65947146c11ecff9afbbc4fe86f9c +size 10244 diff --git a/blocks/task2/maps/level3/image_input/2.jpg b/blocks/task2/maps/level3/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0960def0185a1ad78a8def2839d158aa7cbe4fdc --- /dev/null +++ b/blocks/task2/maps/level3/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe448048239a7229d845337debe3f916be4553cbe0540d8fa262017783998079 +size 10714 diff --git a/blocks/task2/maps/level3/image_input/20.jpg b/blocks/task2/maps/level3/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f47a4f8d6a3bde7e3810696aaf8ca09ffa01a08 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9794f686a0f0acb26e0f03ad5cb7a7916c17d4d33f537e39a463fb896c92e9d7 +size 9668 diff --git a/blocks/task2/maps/level3/image_input/21.jpg b/blocks/task2/maps/level3/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58244f52732062f95985c24a777f2feb611bc71d --- /dev/null +++ b/blocks/task2/maps/level3/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca8e865dd491536142a091c0c981e3d736a58f3ce3d39f62ee1926bae93415b +size 9792 diff --git a/blocks/task2/maps/level3/image_input/22.jpg b/blocks/task2/maps/level3/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..897f61ede3a90807e92bfe77cfe54ea15660442a --- /dev/null +++ b/blocks/task2/maps/level3/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d427184774b517783f391e7f10d9d836f6de3e1869143840ee0faeb1e8db82d6 +size 9872 diff --git a/blocks/task2/maps/level3/image_input/23.jpg b/blocks/task2/maps/level3/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..802722ff569a7ed5a48672d35ba238d3fffba2ed --- /dev/null +++ b/blocks/task2/maps/level3/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a75aa95b8438073aac87cc11b0d39cb685983b20e738df7f34a3cb6ab48e60 +size 9606 diff --git a/blocks/task2/maps/level3/image_input/24.jpg b/blocks/task2/maps/level3/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b09b116d7aa4874cebf289731245b542fbd7987f --- /dev/null +++ b/blocks/task2/maps/level3/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c506309a32636446e3db86b6f9f8f4b8e8e63169a6a9052054e1c2f5d824e184 +size 9952 diff --git a/blocks/task2/maps/level3/image_input/25.jpg b/blocks/task2/maps/level3/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5329ee602f1d24353a3afc4dcd71a0ea0c18a546 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a38187be4592642eff595a84a8a11ed348758a5a743b1d48ef20d36c2aa4cd +size 10205 diff --git a/blocks/task2/maps/level3/image_input/26.jpg b/blocks/task2/maps/level3/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8006e24133f11604d97f86f8d07c536d500faf74 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cdd64a3583e90b472c37a23d10638c4c6ad74a67f070fe706592938d2ffac8e +size 10503 diff --git a/blocks/task2/maps/level3/image_input/27.jpg b/blocks/task2/maps/level3/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3aaabde3ae2a18aaa4ceea2dd698a292e9f0823 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2baf791b0d4671b4f98468910d0e1ba7b26ce76a6489503202f545b9c90efd51 +size 11121 diff --git a/blocks/task2/maps/level3/image_input/28.jpg b/blocks/task2/maps/level3/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f47a4f8d6a3bde7e3810696aaf8ca09ffa01a08 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9794f686a0f0acb26e0f03ad5cb7a7916c17d4d33f537e39a463fb896c92e9d7 +size 9668 diff --git a/blocks/task2/maps/level3/image_input/29.jpg b/blocks/task2/maps/level3/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f47a4f8d6a3bde7e3810696aaf8ca09ffa01a08 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9794f686a0f0acb26e0f03ad5cb7a7916c17d4d33f537e39a463fb896c92e9d7 +size 9668 diff --git a/blocks/task2/maps/level3/image_input/3.jpg b/blocks/task2/maps/level3/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7177360573ebceb434957ebe6aa32784c79621b5 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4746c4cea51439b406188ef48cdbb931cb89480ce7587249f0d3010d53c005 +size 10407 diff --git a/blocks/task2/maps/level3/image_input/30.jpg b/blocks/task2/maps/level3/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..897f61ede3a90807e92bfe77cfe54ea15660442a --- /dev/null +++ b/blocks/task2/maps/level3/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d427184774b517783f391e7f10d9d836f6de3e1869143840ee0faeb1e8db82d6 +size 9872 diff --git a/blocks/task2/maps/level3/image_input/31.jpg b/blocks/task2/maps/level3/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..632d14d6b0c92f3be38a0bf08cf48bde578cddc7 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de5407a3ac710afa7b1f37a9a51f4f560469e4ba97abd063f87caf18dd4a8b5 +size 9764 diff --git a/blocks/task2/maps/level3/image_input/32.jpg b/blocks/task2/maps/level3/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47177ad2986f2b125bf9a3b9d9b4cda1ac7f87b8 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2194478084ff499689cd3042b41a7b6fc5985c594bfe419b9e99afde2be3bcfa +size 10215 diff --git a/blocks/task2/maps/level3/image_input/33.jpg b/blocks/task2/maps/level3/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dbe8838821e7112e6cf3f321473cc90a57518ad --- /dev/null +++ b/blocks/task2/maps/level3/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d10219e7c7c8c3dad76a3f562d4a2c19c813bc04694deab999be6bd8af347ea +size 10125 diff --git a/blocks/task2/maps/level3/image_input/34.jpg b/blocks/task2/maps/level3/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0960def0185a1ad78a8def2839d158aa7cbe4fdc --- /dev/null +++ b/blocks/task2/maps/level3/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe448048239a7229d845337debe3f916be4553cbe0540d8fa262017783998079 +size 10714 diff --git a/blocks/task2/maps/level3/image_input/35.jpg b/blocks/task2/maps/level3/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..920ce360781435d1b193189cb74ebc580bad5443 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afd3a5e44aa2cd4418ad01662f907a9b5022df23bd48e4273c095a495530f9f9 +size 9733 diff --git a/blocks/task2/maps/level3/image_input/36.jpg b/blocks/task2/maps/level3/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f105cf249e56d2e4512e93549a32b2ce1bddc4bd --- /dev/null +++ b/blocks/task2/maps/level3/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a18f3feb0b506d5886509afc739371efd24c6e3ff60e7db8903efb489e439d6 +size 9842 diff --git a/blocks/task2/maps/level3/image_input/37.jpg b/blocks/task2/maps/level3/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..053204ad0efad5b2182a7ec082fddb8a9ebeb7d5 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b250ac15850d0e08e2a5104d79b99ff18f7e7a377f02d39963db5f64cab7fe0d +size 10312 diff --git a/blocks/task2/maps/level3/image_input/38.jpg b/blocks/task2/maps/level3/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66260f50755f321230841aab7913cd6e20602714 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7496aceb0b709fce56cedda7881de1a66e0df7f5431b472ea857fe3a4f61d0 +size 10363 diff --git a/blocks/task2/maps/level3/image_input/39.jpg b/blocks/task2/maps/level3/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f10d390b73eb15ca4dd071f9803dea74f8b8fe1 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc98114e121a15053b117a2a0f891f201fa10539f5586b27a8d8cd9403c9a3a0 +size 9873 diff --git a/blocks/task2/maps/level3/image_input/4.jpg b/blocks/task2/maps/level3/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34ab7193a19c58db5423b2fcbaf2ddd26cef2f6b --- /dev/null +++ b/blocks/task2/maps/level3/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccd0e5e02c77ab7c82a7ffac70e122246dfbf819db081aa152d46c77f58ce87b +size 9888 diff --git a/blocks/task2/maps/level3/image_input/40.jpg b/blocks/task2/maps/level3/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..416b66bdc979f19219f65cd10f10b95b4421cef4 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aa815714de2d7fc9f95346a9adef20977c2e701d7133c43dddcf6634a80ed45 +size 10656 diff --git a/blocks/task2/maps/level3/image_input/41.jpg b/blocks/task2/maps/level3/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f10d390b73eb15ca4dd071f9803dea74f8b8fe1 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc98114e121a15053b117a2a0f891f201fa10539f5586b27a8d8cd9403c9a3a0 +size 9873 diff --git a/blocks/task2/maps/level3/image_input/42.jpg b/blocks/task2/maps/level3/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12ba489f4f790acd6ba03bf48b0df5481bbaa6d3 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7355d1c6eb4cd0fd09ca80fbb4f7543de752f3d5e720cfd7ea51c2994783c552 +size 10392 diff --git a/blocks/task2/maps/level3/image_input/43.jpg b/blocks/task2/maps/level3/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3973f249c44762ded648fc25f6a02f89cf92806f --- /dev/null +++ b/blocks/task2/maps/level3/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6ed71808cbb546f42b4f62b6a91bf1fb355319c8ffc96cc28e51d912a9ca3c +size 9961 diff --git a/blocks/task2/maps/level3/image_input/44.jpg b/blocks/task2/maps/level3/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f9a8407b39c06ce6086b19e87103e45c7893adb --- /dev/null +++ b/blocks/task2/maps/level3/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f27875d222839a56eb12abf082865f93aecbbf9676859eae30c989a056947a +size 10129 diff --git a/blocks/task2/maps/level3/image_input/45.jpg b/blocks/task2/maps/level3/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e01cfcbbe8ae180762485b7dc405ad7e2706701 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e6489f3f298fe7ef01cc7f58ac30bf089df9c0149085fcc78da790a0c3e981 +size 9702 diff --git a/blocks/task2/maps/level3/image_input/46.jpg b/blocks/task2/maps/level3/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27325cde713c09b8fcffea582b8a2e9fe7a2456 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6779673d229c436092a26b7a7f70a944034700103360006f1acd2dcc80e6381 +size 9449 diff --git a/blocks/task2/maps/level3/image_input/47.jpg b/blocks/task2/maps/level3/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cb8135a64af52c82b70041cedb7bf1c822f613d --- /dev/null +++ b/blocks/task2/maps/level3/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c0c35a0b49389421947b038c7165332432763b871eac4bb7b4865facd06577 +size 10113 diff --git a/blocks/task2/maps/level3/image_input/48.jpg b/blocks/task2/maps/level3/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9162cc990433d0f8bce673a5cee165c33c9aa411 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d570a359512866903288b1df94357d96e67fe19a5d59ad73ed2b10c1860e915 +size 9734 diff --git a/blocks/task2/maps/level3/image_input/49.jpg b/blocks/task2/maps/level3/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00534fdb0a9dddda9d8c4ec5741a3c51f22d984d --- /dev/null +++ b/blocks/task2/maps/level3/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:177526f522e2e973685c68b61b0b321af6a46706e2416fbff1c170eefbdb91b6 +size 9248 diff --git a/blocks/task2/maps/level3/image_input/5.jpg b/blocks/task2/maps/level3/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7177360573ebceb434957ebe6aa32784c79621b5 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4746c4cea51439b406188ef48cdbb931cb89480ce7587249f0d3010d53c005 +size 10407 diff --git a/blocks/task2/maps/level3/image_input/50.jpg b/blocks/task2/maps/level3/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27d819932c594d24545d2ea6334bda5223fed837 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a5b23d850f1ff9e3c57332dd4ab2da7bcbead7a94374403c90c562e66fee8b +size 9964 diff --git a/blocks/task2/maps/level3/image_input/51.jpg b/blocks/task2/maps/level3/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12ba489f4f790acd6ba03bf48b0df5481bbaa6d3 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7355d1c6eb4cd0fd09ca80fbb4f7543de752f3d5e720cfd7ea51c2994783c552 +size 10392 diff --git a/blocks/task2/maps/level3/image_input/52.jpg b/blocks/task2/maps/level3/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24d896e1b60ab11c10a25a081d659f93ac3b4103 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb2e0ad6236c4f973a2323dd1d38877aaff96851e1cba17d1999c884d1d6f60c +size 10817 diff --git a/blocks/task2/maps/level3/image_input/53.jpg b/blocks/task2/maps/level3/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..980eb97c0c7636b4ff511d556994b05130e06f3a --- /dev/null +++ b/blocks/task2/maps/level3/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6032e679f74e6f3732911ece1f6664f6fbd783afd0e205681be5bcf597c7733a +size 10303 diff --git a/blocks/task2/maps/level3/image_input/54.jpg b/blocks/task2/maps/level3/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c71184b00f1216106b47df652bc01046162b58c5 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5a300ac9ee3bd43911e2d228c53a61c378deb8fc49f3bfb3e5c491e89c980d +size 10639 diff --git a/blocks/task2/maps/level3/image_input/55.jpg b/blocks/task2/maps/level3/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faffbd7cf36257598784151d85a22ead275ab2e1 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae4d94fca591589f7a64ed6c59b135088aaa7332c445ce89ceb436203500885 +size 10948 diff --git a/blocks/task2/maps/level3/image_input/56.jpg b/blocks/task2/maps/level3/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b5e3fadb5d971cb7ceab0cd8460d03394b69eb0 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b322cc2eb8c58718fc5d4057a712fd6009783636202410d22fb3928702c66d1d +size 9677 diff --git a/blocks/task2/maps/level3/image_input/57.jpg b/blocks/task2/maps/level3/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ad336266dc5ed0ce19094edd051dcfc52ba0e40 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b17390b1c5b1bd5762b725d92d4958d1c82ef3f68a14af8de5a7f2c476d94fc +size 10227 diff --git a/blocks/task2/maps/level3/image_input/58.jpg b/blocks/task2/maps/level3/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..880478927b269f0e68593f53cae012f50a85eba6 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e9b8fcff74b9fb8939f9f61f4fb1f83512cf5b317c17cb3e7318750c154b86 +size 9797 diff --git a/blocks/task2/maps/level3/image_input/59.jpg b/blocks/task2/maps/level3/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b06a5d8a70b8c73b94845c1a541bd1636c4f6ac --- /dev/null +++ b/blocks/task2/maps/level3/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239d79281ca4526d4f1dded203a5e4bf83ac9da7669e4c863b418bfdf334dcf2 +size 10682 diff --git a/blocks/task2/maps/level3/image_input/6.jpg b/blocks/task2/maps/level3/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..836841b157d0ccc92e4a68ceb8be1b0d0eeedc75 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8a40c8a6ae3cf0ae1d18599fa7d2d38cd70b50bd86fa7a4e6f2703048905a4 +size 9926 diff --git a/blocks/task2/maps/level3/image_input/60.jpg b/blocks/task2/maps/level3/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e90c4ca800d224f998fb87a8cc86c1d6030306f --- /dev/null +++ b/blocks/task2/maps/level3/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da60f7eb6e6e1d967689dbc9ccf95f752a68ff5fadd9d318d6c8a556be131c1a +size 9489 diff --git a/blocks/task2/maps/level3/image_input/61.jpg b/blocks/task2/maps/level3/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1daca03d972d754217f5df7b5601b4ca24ed2fda --- /dev/null +++ b/blocks/task2/maps/level3/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def446d536e3b85c85318235d877d8c46689b1e10ab9d00089fa05d43e8bb9c8 +size 10225 diff --git a/blocks/task2/maps/level3/image_input/62.jpg b/blocks/task2/maps/level3/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3591c7a2303918015dff120c0a31187a7674872 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a07a9acf126d9c63a4517e6fea4d7a4666c90914f74d29f0b37f80160de1660 +size 9629 diff --git a/blocks/task2/maps/level3/image_input/63.jpg b/blocks/task2/maps/level3/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbe2b994b2b0306866dd946c81e5fc739a684b3c --- /dev/null +++ b/blocks/task2/maps/level3/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b40e8bd1c4cc94d2ca5a96ae7c5098a98623899b2fd87c44032680c8c72be43 +size 10374 diff --git a/blocks/task2/maps/level3/image_input/64.jpg b/blocks/task2/maps/level3/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60acf9c66291c9af99e1b2246775b9e9d3244aa7 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7690e3b9680d0eeb1bdf0b9d3e8dd15a8224af0b4f8ce00365d0ca96eb6488b +size 9798 diff --git a/blocks/task2/maps/level3/image_input/65.jpg b/blocks/task2/maps/level3/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1db9fb84ec82be39f54643aec16fb6a85f7d687 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ddf8790759059185fe0be7f3068631dbb6cfa6925ad9424db6d047210eab34 +size 9567 diff --git a/blocks/task2/maps/level3/image_input/66.jpg b/blocks/task2/maps/level3/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1db9fb84ec82be39f54643aec16fb6a85f7d687 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ddf8790759059185fe0be7f3068631dbb6cfa6925ad9424db6d047210eab34 +size 9567 diff --git a/blocks/task2/maps/level3/image_input/67.jpg b/blocks/task2/maps/level3/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f9a8407b39c06ce6086b19e87103e45c7893adb --- /dev/null +++ b/blocks/task2/maps/level3/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f27875d222839a56eb12abf082865f93aecbbf9676859eae30c989a056947a +size 10129 diff --git a/blocks/task2/maps/level3/image_input/68.jpg b/blocks/task2/maps/level3/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..053204ad0efad5b2182a7ec082fddb8a9ebeb7d5 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b250ac15850d0e08e2a5104d79b99ff18f7e7a377f02d39963db5f64cab7fe0d +size 10312 diff --git a/blocks/task2/maps/level3/image_input/69.jpg b/blocks/task2/maps/level3/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3973f249c44762ded648fc25f6a02f89cf92806f --- /dev/null +++ b/blocks/task2/maps/level3/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6ed71808cbb546f42b4f62b6a91bf1fb355319c8ffc96cc28e51d912a9ca3c +size 9961 diff --git a/blocks/task2/maps/level3/image_input/7.jpg b/blocks/task2/maps/level3/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b09b116d7aa4874cebf289731245b542fbd7987f --- /dev/null +++ b/blocks/task2/maps/level3/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c506309a32636446e3db86b6f9f8f4b8e8e63169a6a9052054e1c2f5d824e184 +size 9952 diff --git a/blocks/task2/maps/level3/image_input/70.jpg b/blocks/task2/maps/level3/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f94c94a03c86ff6a90aa66e53dbb2793e5d4428 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83e3f5182c1b77ee3cf8394c7caa956dbc0ac62c5a94d9edadb5447a9bd3a19 +size 9384 diff --git a/blocks/task2/maps/level3/image_input/71.jpg b/blocks/task2/maps/level3/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4af2df380afda6bef1ca01aac7a9a3f04130724 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eecd3e71a417f1bc80b48371b25034ee8d0953ed6cf6283ee26ce30cc15d5f04 +size 10674 diff --git a/blocks/task2/maps/level3/image_input/72.jpg b/blocks/task2/maps/level3/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec10066df3b3c32e937be06406eaed79723589e0 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d7a2a6239692d7f371f98a77d4b4e39868f90d4685b3716c16c676455dd51f4 +size 10036 diff --git a/blocks/task2/maps/level3/image_input/73.jpg b/blocks/task2/maps/level3/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c6606d7581a1867d91db3758a369dba473e65ee --- /dev/null +++ b/blocks/task2/maps/level3/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f093467bfb1985a5f1abafcaa693278c172e4c4c4ad4975ce19ff7d6f4f7e69f +size 10340 diff --git a/blocks/task2/maps/level3/image_input/74.jpg b/blocks/task2/maps/level3/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4af2df380afda6bef1ca01aac7a9a3f04130724 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eecd3e71a417f1bc80b48371b25034ee8d0953ed6cf6283ee26ce30cc15d5f04 +size 10674 diff --git a/blocks/task2/maps/level3/image_input/75.jpg b/blocks/task2/maps/level3/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b5603f9c53b3da72672c9968aa417435fd84636 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b9b1b03ffb7440754699723b425d61b8f2dfcd51a51e4c2b7d10af12689170 +size 10069 diff --git a/blocks/task2/maps/level3/image_input/76.jpg b/blocks/task2/maps/level3/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60a45bb40071f1204610bc522b1c041c9c61a88e --- /dev/null +++ b/blocks/task2/maps/level3/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f67bded37a37b911a78d2a4fcd93417e469ca2213ba5bde09fc5b5011d313e +size 9979 diff --git a/blocks/task2/maps/level3/image_input/77.jpg b/blocks/task2/maps/level3/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66260f50755f321230841aab7913cd6e20602714 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7496aceb0b709fce56cedda7881de1a66e0df7f5431b472ea857fe3a4f61d0 +size 10363 diff --git a/blocks/task2/maps/level3/image_input/78.jpg b/blocks/task2/maps/level3/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7177360573ebceb434957ebe6aa32784c79621b5 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4746c4cea51439b406188ef48cdbb931cb89480ce7587249f0d3010d53c005 +size 10407 diff --git a/blocks/task2/maps/level3/image_input/79.jpg b/blocks/task2/maps/level3/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8de67fcbc7df7d82d6d06f5eb6b079603ddc38ff --- /dev/null +++ b/blocks/task2/maps/level3/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc98716b26ec459c1fdbeee3aec291e7a2365cd41e1aaac1df1bbcf5bbfd5797 +size 10952 diff --git a/blocks/task2/maps/level3/image_input/8.jpg b/blocks/task2/maps/level3/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c71184b00f1216106b47df652bc01046162b58c5 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5a300ac9ee3bd43911e2d228c53a61c378deb8fc49f3bfb3e5c491e89c980d +size 10639 diff --git a/blocks/task2/maps/level3/image_input/80.jpg b/blocks/task2/maps/level3/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1db9fb84ec82be39f54643aec16fb6a85f7d687 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ddf8790759059185fe0be7f3068631dbb6cfa6925ad9424db6d047210eab34 +size 9567 diff --git a/blocks/task2/maps/level3/image_input/81.jpg b/blocks/task2/maps/level3/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faffbd7cf36257598784151d85a22ead275ab2e1 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae4d94fca591589f7a64ed6c59b135088aaa7332c445ce89ceb436203500885 +size 10948 diff --git a/blocks/task2/maps/level3/image_input/82.jpg b/blocks/task2/maps/level3/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faffbd7cf36257598784151d85a22ead275ab2e1 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae4d94fca591589f7a64ed6c59b135088aaa7332c445ce89ceb436203500885 +size 10948 diff --git a/blocks/task2/maps/level3/image_input/83.jpg b/blocks/task2/maps/level3/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c5dd6364cfc5ff4ec845ce22d08aa535eea9ffc --- /dev/null +++ b/blocks/task2/maps/level3/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:267396bbfb07eb45a4f658a27dff369e20447637dc5baaed2a40f8a042dc43e1 +size 9499 diff --git a/blocks/task2/maps/level3/image_input/84.jpg b/blocks/task2/maps/level3/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..602dafc2523544d7d61c55c81d32cf4a31dc0947 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e656fe4adebdab218d8b78c3e0e46e0bc19d34e44038a4a8e83c418223f3b621 +size 10027 diff --git a/blocks/task2/maps/level3/image_input/85.jpg b/blocks/task2/maps/level3/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f4acbd9ca5817a54fb2baca359333f1273ad338 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e761088d204475cf773af09d0af5e88f13b9a8a0eed17a4de7974f702e1d3e6f +size 10445 diff --git a/blocks/task2/maps/level3/image_input/86.jpg b/blocks/task2/maps/level3/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..980eb97c0c7636b4ff511d556994b05130e06f3a --- /dev/null +++ b/blocks/task2/maps/level3/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6032e679f74e6f3732911ece1f6664f6fbd783afd0e205681be5bcf597c7733a +size 10303 diff --git a/blocks/task2/maps/level3/image_input/87.jpg b/blocks/task2/maps/level3/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..265ba54e68b9f436d8954043340a710d586d9a54 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07826c5d1648e5a494eed17b4765476816b490dc19c7ef41aadab0ce26f30ba1 +size 10124 diff --git a/blocks/task2/maps/level3/image_input/88.jpg b/blocks/task2/maps/level3/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9162cc990433d0f8bce673a5cee165c33c9aa411 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d570a359512866903288b1df94357d96e67fe19a5d59ad73ed2b10c1860e915 +size 9734 diff --git a/blocks/task2/maps/level3/image_input/89.jpg b/blocks/task2/maps/level3/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8221a2947d2ac52fb8b5e13e76c15c2f91cd2194 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5375843c16795e81778069e61ef66445453bc1cfd6574ea04b56a8c99d8c27a9 +size 10785 diff --git a/blocks/task2/maps/level3/image_input/9.jpg b/blocks/task2/maps/level3/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2002c6557457b14aaf5ba4d0df5548900c3a6d71 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d469e429051e4be237f16afc665e0d0403c229d6c77485dfaf8aea7c9acd13e +size 10170 diff --git a/blocks/task2/maps/level3/image_input/90.jpg b/blocks/task2/maps/level3/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..602dafc2523544d7d61c55c81d32cf4a31dc0947 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e656fe4adebdab218d8b78c3e0e46e0bc19d34e44038a4a8e83c418223f3b621 +size 10027 diff --git a/blocks/task2/maps/level3/image_input/91.jpg b/blocks/task2/maps/level3/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a79aa3fbf4f869af075c4e8acfdc459115d655d --- /dev/null +++ b/blocks/task2/maps/level3/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a91ce685568e22a8e309117c0b282ac9ad1660ff4adefcfbdef6165d3e16d212 +size 10404 diff --git a/blocks/task2/maps/level3/image_input/92.jpg b/blocks/task2/maps/level3/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..042c680f18d33fc23c6c788b8ccf86785ca3de13 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f8d6a89483af0b095f9ffa55e93bfffcc35ec8cff00f6526c11f6d6a01ce97 +size 9981 diff --git a/blocks/task2/maps/level3/image_input/93.jpg b/blocks/task2/maps/level3/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..250f4f1e84b0691217b3bae6fb335742a0c22dcf --- /dev/null +++ b/blocks/task2/maps/level3/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e5b5205891671c2f8c8da9f482bd0a040760bece4295e0a7ded5183ff6d5223 +size 9618 diff --git a/blocks/task2/maps/level3/image_input/94.jpg b/blocks/task2/maps/level3/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..880478927b269f0e68593f53cae012f50a85eba6 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e9b8fcff74b9fb8939f9f61f4fb1f83512cf5b317c17cb3e7318750c154b86 +size 9797 diff --git a/blocks/task2/maps/level3/image_input/95.jpg b/blocks/task2/maps/level3/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22e80387e16d6309221a3c5960355d80ee42b183 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf688e80a69489dab5c02c7ba78efc313a9ef7eec54f955b89b22ded9f8c783 +size 10200 diff --git a/blocks/task2/maps/level3/image_input/96.jpg b/blocks/task2/maps/level3/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4892a2455dcfcea9504b1c872bc199960ab4af43 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d1bdc7b11917c5614d2b81a1829fcf9ea33eb8d36d178913e9e670386e898f +size 9687 diff --git a/blocks/task2/maps/level3/image_input/97.jpg b/blocks/task2/maps/level3/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f4acbd9ca5817a54fb2baca359333f1273ad338 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e761088d204475cf773af09d0af5e88f13b9a8a0eed17a4de7974f702e1d3e6f +size 10445 diff --git a/blocks/task2/maps/level3/image_input/98.jpg b/blocks/task2/maps/level3/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c6606d7581a1867d91db3758a369dba473e65ee --- /dev/null +++ b/blocks/task2/maps/level3/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f093467bfb1985a5f1abafcaa693278c172e4c4c4ad4975ce19ff7d6f4f7e69f +size 10340 diff --git a/blocks/task2/maps/level3/image_input/99.jpg b/blocks/task2/maps/level3/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22e80387e16d6309221a3c5960355d80ee42b183 --- /dev/null +++ b/blocks/task2/maps/level3/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf688e80a69489dab5c02c7ba78efc313a9ef7eec54f955b89b22ded9f8c783 +size 10200 diff --git a/blocks/task2/maps/level3/pure_text_rep_input/0 b/blocks/task2/maps/level3/pure_text_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..937106be87ac001a16066b33db969a577f2ccc47 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/0 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/1 b/blocks/task2/maps/level3/pure_text_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..5f1ff35facf2da3beaa65e5e8dc45af037b97a76 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/1 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/10 b/blocks/task2/maps/level3/pure_text_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..bf12f89a4eb67799fb28a55dad986fc04b908f2f --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/10 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/11 b/blocks/task2/maps/level3/pure_text_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..974b0cc9f49bbdcfc72ba985501d7273e7daeabe --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/11 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/12 b/blocks/task2/maps/level3/pure_text_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..ccddbf390e61084433525d96fd464472ae3b7cb2 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/12 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/13 b/blocks/task2/maps/level3/pure_text_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..9e9900a0d6976782ac1e104159de70a62b776d2c --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/13 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/14 b/blocks/task2/maps/level3/pure_text_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..e12ae7b33fdb230a5d0b3b5e155a0faa610d7d2b --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/14 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/15 b/blocks/task2/maps/level3/pure_text_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..d31a32417b78d079b040783e917cb4046999a1a6 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/15 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/16 b/blocks/task2/maps/level3/pure_text_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..5fa96acb40a19d1d6443e46b3d836aa3f04e6e80 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/16 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/17 b/blocks/task2/maps/level3/pure_text_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..8410ff64a4a2f33bef2f7172922b340f0d058452 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/17 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/18 b/blocks/task2/maps/level3/pure_text_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..1e2b1017fdfb66b9cec643c02fdedcf5ce4d1096 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/18 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/19 b/blocks/task2/maps/level3/pure_text_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..9e9900a0d6976782ac1e104159de70a62b776d2c --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/19 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/2 b/blocks/task2/maps/level3/pure_text_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..4a02ed20ac8056208408985e93992cd536a03216 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/2 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/20 b/blocks/task2/maps/level3/pure_text_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..2c640d746cf077ddb55561f66685c1411ec918dc --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/20 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/21 b/blocks/task2/maps/level3/pure_text_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..6dafa55e4dfc9342a6b899e1e8a4d34ab013ede6 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/21 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/22 b/blocks/task2/maps/level3/pure_text_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..87c59253f7969a789760b9f05fd6d68e98f9a7cd --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/22 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/23 b/blocks/task2/maps/level3/pure_text_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..06eb9179599c1e188d864713a1cdb4791af3b063 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/23 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/24 b/blocks/task2/maps/level3/pure_text_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..fede5bd3e43f7bbe7a6f749627d3ba5b6f362664 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/24 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/25 b/blocks/task2/maps/level3/pure_text_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..c9f4127d89fa8247caf05300e9047c33d67ba05d --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/25 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/26 b/blocks/task2/maps/level3/pure_text_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..cc9d0d3a4631abbb794cd6b3dc7801c990b72da4 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/26 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/27 b/blocks/task2/maps/level3/pure_text_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..6bb919029142c60d8de11d42b51000313fd7e5c3 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/27 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/28 b/blocks/task2/maps/level3/pure_text_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..2c640d746cf077ddb55561f66685c1411ec918dc --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/28 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/29 b/blocks/task2/maps/level3/pure_text_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..2c640d746cf077ddb55561f66685c1411ec918dc --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/29 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/3 b/blocks/task2/maps/level3/pure_text_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..5fa96acb40a19d1d6443e46b3d836aa3f04e6e80 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/3 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/30 b/blocks/task2/maps/level3/pure_text_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..87c59253f7969a789760b9f05fd6d68e98f9a7cd --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/30 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/31 b/blocks/task2/maps/level3/pure_text_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..a95e849153b27b7fe8bceafc04f7f35359c7f369 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/31 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/32 b/blocks/task2/maps/level3/pure_text_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..8fe8dbef452dd60686452eb1f734d457386864b8 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/32 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/33 b/blocks/task2/maps/level3/pure_text_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..65fab62a3ba4312510348b8bbd49895267103e48 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/33 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/34 b/blocks/task2/maps/level3/pure_text_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..4a02ed20ac8056208408985e93992cd536a03216 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/34 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/35 b/blocks/task2/maps/level3/pure_text_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..949b12563fdffff58016b0850fad0786c84c8fcc --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/35 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/36 b/blocks/task2/maps/level3/pure_text_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..db6b23ffcf5256a58433fc792d468c9f7af3100e --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/36 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/37 b/blocks/task2/maps/level3/pure_text_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..c7fc2d6bfee6248aa9c0e296608389b205c7944a --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/37 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/38 b/blocks/task2/maps/level3/pure_text_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..d4b17b79d14e3e495ca34b563a2f12724ab9d3d5 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/38 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/39 b/blocks/task2/maps/level3/pure_text_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..e6d0ce89223d1a520d30cbb34e18eed962ace1f6 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/39 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/4 b/blocks/task2/maps/level3/pure_text_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..67c1237a60b49a68fa881a50e03e37d4f96788e1 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/4 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/40 b/blocks/task2/maps/level3/pure_text_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..70d1917ec7b563d88493642e3f4f28ffcf08d37a --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/40 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/41 b/blocks/task2/maps/level3/pure_text_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..e6d0ce89223d1a520d30cbb34e18eed962ace1f6 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/41 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/42 b/blocks/task2/maps/level3/pure_text_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..122bba8e1f010743461be8afa801602224aca459 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/42 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/43 b/blocks/task2/maps/level3/pure_text_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..ace85dc3e97a3f447092934b7ec9d656d5527186 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/43 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/44 b/blocks/task2/maps/level3/pure_text_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..b131982d59b848ce717f285e17ec06efbe06eb98 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/44 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/45 b/blocks/task2/maps/level3/pure_text_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..64f334fa2073c1c66104a6437ca26dc9cd658e66 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/45 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/46 b/blocks/task2/maps/level3/pure_text_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..e12ae7b33fdb230a5d0b3b5e155a0faa610d7d2b --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/46 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/47 b/blocks/task2/maps/level3/pure_text_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..bb807ce3a4800b01e484ff8aacdc52aa8e859c91 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/47 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/48 b/blocks/task2/maps/level3/pure_text_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..fd6205ed5c9a853d55b9450a97f9490ddf3debc4 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/48 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/49 b/blocks/task2/maps/level3/pure_text_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..5589981e2962fe0cd2e3aad5a243bf9b2b295e33 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/49 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/5 b/blocks/task2/maps/level3/pure_text_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..5fa96acb40a19d1d6443e46b3d836aa3f04e6e80 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/5 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/50 b/blocks/task2/maps/level3/pure_text_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..5d626f57b734eb1e9a6d6c2d13a97bf17e186b63 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/50 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/51 b/blocks/task2/maps/level3/pure_text_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..122bba8e1f010743461be8afa801602224aca459 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/51 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/52 b/blocks/task2/maps/level3/pure_text_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..7b89c94aebfc8597f2cbef4461d9c6acdf763135 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/52 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/53 b/blocks/task2/maps/level3/pure_text_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..36343a8e61b98a5e03c10a59089af586c658a8fe --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/53 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/54 b/blocks/task2/maps/level3/pure_text_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..14e5f5bd55c08dd94380b8cd0a77091b761c7656 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/54 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/55 b/blocks/task2/maps/level3/pure_text_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..acae550ce186ae840ecebbf488ff5e38793d47b5 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/55 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/56 b/blocks/task2/maps/level3/pure_text_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..1ae3b1519b6d2fd7e85b1a1f3f4a358aebeb3e51 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/56 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/57 b/blocks/task2/maps/level3/pure_text_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..3718012413a0014f83222180f2e14586f0025e80 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/57 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/58 b/blocks/task2/maps/level3/pure_text_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..fb7d003ea8cfac56793d50dab5747943b90648f8 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/58 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/59 b/blocks/task2/maps/level3/pure_text_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..974b0cc9f49bbdcfc72ba985501d7273e7daeabe --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/59 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/6 b/blocks/task2/maps/level3/pure_text_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..04ed3704a0e7ea1c8baac866f7f51e4c3ca8ae28 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/6 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/60 b/blocks/task2/maps/level3/pure_text_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..76d75e7be4151e7916503ffec858aba2d36d285b --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/60 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/61 b/blocks/task2/maps/level3/pure_text_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..1dbf3e3e229749a60cc5eb06671dd39136fe746a --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/61 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/62 b/blocks/task2/maps/level3/pure_text_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..8d1053405845bfe5ce6ba155b39d51f0d2868259 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/62 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/63 b/blocks/task2/maps/level3/pure_text_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..2ac4edbb88668fa3c3c8a73e45f4e7039b476d46 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/63 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/64 b/blocks/task2/maps/level3/pure_text_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..afc5eb769074cb9d2ac9b92fc0be7605a79ef26b --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/64 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/65 b/blocks/task2/maps/level3/pure_text_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..81008b4a8f4faa45e720cb0540c149102c16ee06 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/65 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/66 b/blocks/task2/maps/level3/pure_text_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..81008b4a8f4faa45e720cb0540c149102c16ee06 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/66 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/67 b/blocks/task2/maps/level3/pure_text_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..b131982d59b848ce717f285e17ec06efbe06eb98 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/67 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/68 b/blocks/task2/maps/level3/pure_text_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..c7fc2d6bfee6248aa9c0e296608389b205c7944a --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/68 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/69 b/blocks/task2/maps/level3/pure_text_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..ace85dc3e97a3f447092934b7ec9d656d5527186 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/69 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/7 b/blocks/task2/maps/level3/pure_text_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..fede5bd3e43f7bbe7a6f749627d3ba5b6f362664 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/7 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/70 b/blocks/task2/maps/level3/pure_text_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..97ed9cca1f5d8cd948e55cab959ce5289b6ce0df --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/70 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/71 b/blocks/task2/maps/level3/pure_text_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..82af9c6853b05e2a8fc8069bd7d92bd8375cabe8 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/71 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/72 b/blocks/task2/maps/level3/pure_text_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..942b053f1430926a4e60fc7f684a87af727f4c12 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/72 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/73 b/blocks/task2/maps/level3/pure_text_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..8410ff64a4a2f33bef2f7172922b340f0d058452 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/73 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/74 b/blocks/task2/maps/level3/pure_text_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..82af9c6853b05e2a8fc8069bd7d92bd8375cabe8 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/74 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/75 b/blocks/task2/maps/level3/pure_text_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..1fb166ab302c0d11200848ffac43ed10e29eb388 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/75 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/76 b/blocks/task2/maps/level3/pure_text_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..4797a9902d925873cc31af6a63f758cb9833b1f7 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/76 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/77 b/blocks/task2/maps/level3/pure_text_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..d4b17b79d14e3e495ca34b563a2f12724ab9d3d5 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/77 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/78 b/blocks/task2/maps/level3/pure_text_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..5fa96acb40a19d1d6443e46b3d836aa3f04e6e80 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/78 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/79 b/blocks/task2/maps/level3/pure_text_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..d2c703c52c55314d0c6875e6ff961b53ff80ec6c --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/79 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/8 b/blocks/task2/maps/level3/pure_text_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..14e5f5bd55c08dd94380b8cd0a77091b761c7656 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/8 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/80 b/blocks/task2/maps/level3/pure_text_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..81008b4a8f4faa45e720cb0540c149102c16ee06 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/80 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/81 b/blocks/task2/maps/level3/pure_text_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..acae550ce186ae840ecebbf488ff5e38793d47b5 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/81 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/82 b/blocks/task2/maps/level3/pure_text_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..acae550ce186ae840ecebbf488ff5e38793d47b5 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/82 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/83 b/blocks/task2/maps/level3/pure_text_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..ce8554983b6cf5164c61f07100c9ce0e0ce9a1fe --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/83 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/84 b/blocks/task2/maps/level3/pure_text_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..f0119d9d4024a1e94832cd3cff2a6decb29ad09d --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/84 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/85 b/blocks/task2/maps/level3/pure_text_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..ba969f56dbefc2058420ac5468c843f5163b9198 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/85 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/86 b/blocks/task2/maps/level3/pure_text_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..36343a8e61b98a5e03c10a59089af586c658a8fe --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/86 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/87 b/blocks/task2/maps/level3/pure_text_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..1e2b1017fdfb66b9cec643c02fdedcf5ce4d1096 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/87 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/88 b/blocks/task2/maps/level3/pure_text_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..fd6205ed5c9a853d55b9450a97f9490ddf3debc4 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/88 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/89 b/blocks/task2/maps/level3/pure_text_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..03b6e3ef6924513f2a467bd5e6fb9d6fe814da47 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/89 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/9 b/blocks/task2/maps/level3/pure_text_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..f5c56fdcbf724af9353b0215de7e6cb1de1779ae --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/9 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/90 b/blocks/task2/maps/level3/pure_text_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..f0119d9d4024a1e94832cd3cff2a6decb29ad09d --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/90 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/91 b/blocks/task2/maps/level3/pure_text_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..ae4ec4b6a344d1cf7250a06d9cda0bff6259986e --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/91 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/92 b/blocks/task2/maps/level3/pure_text_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..ebe15a4a3e5604de034c373dff5dd00f63a2bd36 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/92 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/93 b/blocks/task2/maps/level3/pure_text_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..308ddda3e0db87afcdf671efe1a94c23c9028364 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/93 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/94 b/blocks/task2/maps/level3/pure_text_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..fb7d003ea8cfac56793d50dab5747943b90648f8 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/94 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/95 b/blocks/task2/maps/level3/pure_text_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..5f1ff35facf2da3beaa65e5e8dc45af037b97a76 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/95 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/96 b/blocks/task2/maps/level3/pure_text_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..1ef4744f5fe528e84b0a105e384774cc54b1b721 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/96 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/97 b/blocks/task2/maps/level3/pure_text_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..ba969f56dbefc2058420ac5468c843f5163b9198 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/97 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/98 b/blocks/task2/maps/level3/pure_text_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..8410ff64a4a2f33bef2f7172922b340f0d058452 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/98 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level3/pure_text_rep_input/99 b/blocks/task2/maps/level3/pure_text_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..5f1ff35facf2da3beaa65e5e8dc45af037b97a76 --- /dev/null +++ b/blocks/task2/maps/level3/pure_text_rep_input/99 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level3/table_rep_input/0 b/blocks/task2/maps/level3/table_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..e4e4d09e4607ac368fb9d81a36f41ff23ca7a5df --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/0 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | green | red | diff --git a/blocks/task2/maps/level3/table_rep_input/1 b/blocks/task2/maps/level3/table_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..fe38876eb8b1cafe3951b9510fdd74e8062c452e --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/1 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/10 b/blocks/task2/maps/level3/table_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..6a11911f8085dee150dde442566d962b8d7fd52a --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/10 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | yellow | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/11 b/blocks/task2/maps/level3/table_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..e1ba4272362a7b780dfa66fe1df44ae48bc20858 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/11 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | orange | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/12 b/blocks/task2/maps/level3/table_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..a1202da88bacbe1fbd0076d304966676829e848f --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/12 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | green | red | diff --git a/blocks/task2/maps/level3/table_rep_input/13 b/blocks/task2/maps/level3/table_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..d9d2465bf29b23cb7cb306be09ccc32bf2cb9108 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/13 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | red | green | diff --git a/blocks/task2/maps/level3/table_rep_input/14 b/blocks/task2/maps/level3/table_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..fb829e41fe8b302d91a2932ccc04f31f0aeb895c --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/14 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/15 b/blocks/task2/maps/level3/table_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..d8a2977fe081a7bef5ae76e324f145a6b4c37ec4 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/15 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/16 b/blocks/task2/maps/level3/table_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..c768f7d60374764ac7dfee5506e9e9746d56f878 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/16 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level3/table_rep_input/17 b/blocks/task2/maps/level3/table_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..6196dc94977a77f9089e3e4991ceb038b4f479d2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/17 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | orange | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/18 b/blocks/task2/maps/level3/table_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..ec7d84f58de8b1d6d1d7c6b67d9a030db6b5fbad --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/18 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level3/table_rep_input/19 b/blocks/task2/maps/level3/table_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..d9d2465bf29b23cb7cb306be09ccc32bf2cb9108 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/19 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | red | green | diff --git a/blocks/task2/maps/level3/table_rep_input/2 b/blocks/task2/maps/level3/table_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..150801ff7a4d37d5919e65e28c905462eaaeabf8 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/2 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | red | green | diff --git a/blocks/task2/maps/level3/table_rep_input/20 b/blocks/task2/maps/level3/table_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..6696e5da3927bff6755d10bd5805c5d19fdedcf2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/20 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | blue | green | diff --git a/blocks/task2/maps/level3/table_rep_input/21 b/blocks/task2/maps/level3/table_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..676df7d5e6f421e2fc1fcf3fb8eed42ec0c19990 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/21 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | blue | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/22 b/blocks/task2/maps/level3/table_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..897d18db941a66851419e31144bde10097bbf5c2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/22 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level3/table_rep_input/23 b/blocks/task2/maps/level3/table_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..1d71a1da840170b3f73de188f92dfc0f640bd582 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/23 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | purple | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/24 b/blocks/task2/maps/level3/table_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..597b967998819dd1d5b30343d440076fd57a5a90 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/24 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/25 b/blocks/task2/maps/level3/table_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..72d592fc85c4b50d3e484233fc537c6f4999b0cf --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/25 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | green | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/26 b/blocks/task2/maps/level3/table_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..e25ad11b7a7a7cb078ba28db17ee7f34af7ba3ec --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/26 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level3/table_rep_input/27 b/blocks/task2/maps/level3/table_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..3e3ed9074761a996b7946a6be53ace34d2c1e1e8 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/27 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | red | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/28 b/blocks/task2/maps/level3/table_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..6696e5da3927bff6755d10bd5805c5d19fdedcf2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/28 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | blue | green | diff --git a/blocks/task2/maps/level3/table_rep_input/29 b/blocks/task2/maps/level3/table_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..6696e5da3927bff6755d10bd5805c5d19fdedcf2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/29 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | blue | green | diff --git a/blocks/task2/maps/level3/table_rep_input/3 b/blocks/task2/maps/level3/table_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..c768f7d60374764ac7dfee5506e9e9746d56f878 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/3 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level3/table_rep_input/30 b/blocks/task2/maps/level3/table_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..897d18db941a66851419e31144bde10097bbf5c2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/30 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level3/table_rep_input/31 b/blocks/task2/maps/level3/table_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..de7bccd2d2a5418134cc256b41bab33b3afe38bb --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/31 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level3/table_rep_input/32 b/blocks/task2/maps/level3/table_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..3ab4ceffb305b96411d9826586d70f725ceb0677 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/32 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | red | diff --git a/blocks/task2/maps/level3/table_rep_input/33 b/blocks/task2/maps/level3/table_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..8069ac0403d8bdc7e18581a70475fe563f1830ba --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/33 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | blue | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/34 b/blocks/task2/maps/level3/table_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..150801ff7a4d37d5919e65e28c905462eaaeabf8 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/34 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | red | green | diff --git a/blocks/task2/maps/level3/table_rep_input/35 b/blocks/task2/maps/level3/table_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..4a7ca39549e7cd09fd6637661854e2bf4a1937ad --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/35 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/36 b/blocks/task2/maps/level3/table_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..b1e0cd7060a3d952ed6e7f0a9eeb4a9cff0765ed --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/36 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | blue | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/37 b/blocks/task2/maps/level3/table_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..6903bb09e6bb0a255366129586d140f2996d5aca --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/37 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level3/table_rep_input/38 b/blocks/task2/maps/level3/table_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..8a33f1b922073886bf992fa64f7e69a17fc766d6 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/38 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | green | red | diff --git a/blocks/task2/maps/level3/table_rep_input/39 b/blocks/task2/maps/level3/table_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..bc730627e0adfc9d2b43948b8f5b704bb3cdfbe2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/39 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/4 b/blocks/task2/maps/level3/table_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..3d43637a2e38278a84b242372cab03e2f81d1592 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/4 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | green | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/40 b/blocks/task2/maps/level3/table_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..344b6b03c18d41371c2250023dc5d8cbd9e37ab4 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/40 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | red | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/41 b/blocks/task2/maps/level3/table_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..bc730627e0adfc9d2b43948b8f5b704bb3cdfbe2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/41 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/42 b/blocks/task2/maps/level3/table_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..7fd1ea048c8fa98f65d1467513c4518c3ea2c3cb --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/42 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level3/table_rep_input/43 b/blocks/task2/maps/level3/table_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..bb488c188208d57f5c852b4f4bb98c576826ac30 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/43 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level3/table_rep_input/44 b/blocks/task2/maps/level3/table_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..bdd8d6f0f187878da13ba18a8eefb5c7d1fa31f0 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/44 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/45 b/blocks/task2/maps/level3/table_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..75c981c488df889ad236badce204073b31e583e0 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/45 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | yellow | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/46 b/blocks/task2/maps/level3/table_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..fb829e41fe8b302d91a2932ccc04f31f0aeb895c --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/46 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/47 b/blocks/task2/maps/level3/table_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..914d828123b946a6594ee2d6e27f0d632b521acc --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/47 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | red | green | diff --git a/blocks/task2/maps/level3/table_rep_input/48 b/blocks/task2/maps/level3/table_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..5bf5a633f79f35500a6f1a78ac49349d903aaabb --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/48 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | blue | red | diff --git a/blocks/task2/maps/level3/table_rep_input/49 b/blocks/task2/maps/level3/table_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..5e72a4d5a028bd7b3af69771bc89b9fe1c1c4997 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/49 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/5 b/blocks/task2/maps/level3/table_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..c768f7d60374764ac7dfee5506e9e9746d56f878 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/5 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level3/table_rep_input/50 b/blocks/task2/maps/level3/table_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..b00f6675af80e5485f6551f41e8ac92e53e45f7c --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/50 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | red | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/51 b/blocks/task2/maps/level3/table_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..7fd1ea048c8fa98f65d1467513c4518c3ea2c3cb --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/51 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level3/table_rep_input/52 b/blocks/task2/maps/level3/table_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..337bf73e263a961cc0f6089640c8cf99c536f533 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/52 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | red | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/53 b/blocks/task2/maps/level3/table_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..de92b8472f94dbd45bb3d2691f930cf267178cce --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/53 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/54 b/blocks/task2/maps/level3/table_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..185f46d26daa763cf1f42a97a31ca88c9756a40b --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/54 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | orange | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/55 b/blocks/task2/maps/level3/table_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..db31d2dfc90be69e5a3ef99157f73388ac500dc3 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/55 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/56 b/blocks/task2/maps/level3/table_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..0ec23a9aaa8f90c40e40bac5bfcf4c5ae247a6f7 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/56 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | blue | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/57 b/blocks/task2/maps/level3/table_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..5340ca860ffe847e698755a5c88fc0f8989c997d --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/57 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/58 b/blocks/task2/maps/level3/table_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..3065150c2f13d2bc7668115bc678fa3fdac4c5a4 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/58 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/59 b/blocks/task2/maps/level3/table_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..e1ba4272362a7b780dfa66fe1df44ae48bc20858 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/59 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | orange | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/6 b/blocks/task2/maps/level3/table_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..d7f94a745e6fb7ba356b8d9d5be4f1a8c93318ec --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/6 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/60 b/blocks/task2/maps/level3/table_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..9f244f22c27543f45c7d2acbb5acf03cf6f90c60 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/60 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | blue | red | diff --git a/blocks/task2/maps/level3/table_rep_input/61 b/blocks/task2/maps/level3/table_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..f986d4965535260ef2e44174f4b92aa0827a0e6b --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/61 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | yellow | red | diff --git a/blocks/task2/maps/level3/table_rep_input/62 b/blocks/task2/maps/level3/table_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..93d32748d7bf2d8fcc227e9c7328d2aa482286ff --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/62 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | blue | green | diff --git a/blocks/task2/maps/level3/table_rep_input/63 b/blocks/task2/maps/level3/table_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..524245f59ec425a45681e5b435cf26dea8b02dfa --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/63 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level3/table_rep_input/64 b/blocks/task2/maps/level3/table_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..2eb02b168825a09ef6d563e7336856d138222454 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/64 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | blue | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/65 b/blocks/task2/maps/level3/table_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..17a1851f7564ca2517bb0bc1cd5e832161b1213e --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/65 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | red | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/66 b/blocks/task2/maps/level3/table_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..17a1851f7564ca2517bb0bc1cd5e832161b1213e --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/66 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | red | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/67 b/blocks/task2/maps/level3/table_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..bdd8d6f0f187878da13ba18a8eefb5c7d1fa31f0 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/67 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/68 b/blocks/task2/maps/level3/table_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..6903bb09e6bb0a255366129586d140f2996d5aca --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/68 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level3/table_rep_input/69 b/blocks/task2/maps/level3/table_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..bb488c188208d57f5c852b4f4bb98c576826ac30 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/69 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level3/table_rep_input/7 b/blocks/task2/maps/level3/table_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..597b967998819dd1d5b30343d440076fd57a5a90 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/7 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/70 b/blocks/task2/maps/level3/table_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..fea183896694979b303345413c2269e4ed10cd9b --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/70 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | blue | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/71 b/blocks/task2/maps/level3/table_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..7c3a2953317beaad0971e28d8c8427cc072f9ec7 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/71 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | orange | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/72 b/blocks/task2/maps/level3/table_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..7daea7dfc0f3e4cb154a8e885be68d396c3ce482 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/72 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | yellow | red | diff --git a/blocks/task2/maps/level3/table_rep_input/73 b/blocks/task2/maps/level3/table_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..6196dc94977a77f9089e3e4991ceb038b4f479d2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/73 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | orange | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/74 b/blocks/task2/maps/level3/table_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..7c3a2953317beaad0971e28d8c8427cc072f9ec7 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/74 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | orange | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/75 b/blocks/task2/maps/level3/table_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..dc3a8f25f9b731f0e74d2a171698f86db0d6c6cf --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/75 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | green | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/76 b/blocks/task2/maps/level3/table_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..649539d098da2300ef9885d06bfab1325cb3fd4b --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/76 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/77 b/blocks/task2/maps/level3/table_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..8a33f1b922073886bf992fa64f7e69a17fc766d6 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/77 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | green | red | diff --git a/blocks/task2/maps/level3/table_rep_input/78 b/blocks/task2/maps/level3/table_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..c768f7d60374764ac7dfee5506e9e9746d56f878 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/78 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level3/table_rep_input/79 b/blocks/task2/maps/level3/table_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..c90e7c450fcfea97ece9598c0ba5847b1f6a4eaa --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/79 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | orange | green | diff --git a/blocks/task2/maps/level3/table_rep_input/8 b/blocks/task2/maps/level3/table_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..185f46d26daa763cf1f42a97a31ca88c9756a40b --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/8 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | orange | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/80 b/blocks/task2/maps/level3/table_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..17a1851f7564ca2517bb0bc1cd5e832161b1213e --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/80 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | red | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/81 b/blocks/task2/maps/level3/table_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..db31d2dfc90be69e5a3ef99157f73388ac500dc3 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/81 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/82 b/blocks/task2/maps/level3/table_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..db31d2dfc90be69e5a3ef99157f73388ac500dc3 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/82 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/83 b/blocks/task2/maps/level3/table_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..c9d86efa4fd6243e82b16d2526f269f00da2eaa0 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/83 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/84 b/blocks/task2/maps/level3/table_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..ffc04a7f4b86596135dd03057331ab5bdfa03fe2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/84 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | green | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/85 b/blocks/task2/maps/level3/table_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..018a4d804b704e290e629fba721029a23b62ac37 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/85 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | red | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/86 b/blocks/task2/maps/level3/table_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..de92b8472f94dbd45bb3d2691f930cf267178cce --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/86 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/87 b/blocks/task2/maps/level3/table_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..ec7d84f58de8b1d6d1d7c6b67d9a030db6b5fbad --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/87 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level3/table_rep_input/88 b/blocks/task2/maps/level3/table_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..5bf5a633f79f35500a6f1a78ac49349d903aaabb --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/88 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | blue | red | diff --git a/blocks/task2/maps/level3/table_rep_input/89 b/blocks/task2/maps/level3/table_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..dfdb6e0bb7cd624bf242fe8144ae8b128578a12b --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/89 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | red | green | diff --git a/blocks/task2/maps/level3/table_rep_input/9 b/blocks/task2/maps/level3/table_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..06a3477900622a628e1e6d170f7a4fd0ce8b71db --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/9 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/90 b/blocks/task2/maps/level3/table_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..ffc04a7f4b86596135dd03057331ab5bdfa03fe2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/90 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | green | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/91 b/blocks/task2/maps/level3/table_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..330e71bb2024574109e2ef7e5ad5cd3a6a4d4e4e --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/91 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level3/table_rep_input/92 b/blocks/task2/maps/level3/table_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..bf5e9835e4db5f06ac997c18f9e53b948df47f9c --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/92 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | purple | +Level 1 | yellow | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/93 b/blocks/task2/maps/level3/table_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..5cd3d1bf52ae40a7b3cfe2637b44a61616d8b34a --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/93 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | red | +Level 1 | purple | blue | diff --git a/blocks/task2/maps/level3/table_rep_input/94 b/blocks/task2/maps/level3/table_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..3065150c2f13d2bc7668115bc678fa3fdac4c5a4 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/94 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | yellow | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/95 b/blocks/task2/maps/level3/table_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..fe38876eb8b1cafe3951b9510fdd74e8062c452e --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/95 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level3/table_rep_input/96 b/blocks/task2/maps/level3/table_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..6031a153172440e3be533648e1f53c94fe1bd989 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/96 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | blue | +Level 1 | yellow | purple | diff --git a/blocks/task2/maps/level3/table_rep_input/97 b/blocks/task2/maps/level3/table_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..018a4d804b704e290e629fba721029a23b62ac37 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/97 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | red | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/98 b/blocks/task2/maps/level3/table_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..6196dc94977a77f9089e3e4991ceb038b4f479d2 --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/98 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | green | +Level 1 | orange | yellow | diff --git a/blocks/task2/maps/level3/table_rep_input/99 b/blocks/task2/maps/level3/table_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..fe38876eb8b1cafe3951b9510fdd74e8062c452e --- /dev/null +++ b/blocks/task2/maps/level3/table_rep_input/99 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level3/text_input/0.txt b/blocks/task2/maps/level3/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/0.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/1.txt b/blocks/task2/maps/level3/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/1.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/10.txt b/blocks/task2/maps/level3/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/10.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/11.txt b/blocks/task2/maps/level3/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level3/text_input/11.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/12.txt b/blocks/task2/maps/level3/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level3/text_input/12.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/13.txt b/blocks/task2/maps/level3/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..11d6986d2c290c1b5baa3551a51f82c68e61cc32 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/13.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the green block? +(A) The yellow block is directly above the green block, and they are in the same stack. +(B) The yellow block is directly below the green block, and they are in the same stack. +(C) The yellow block and the green block are at different stacks. +(D) At least one of the yellow block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/14.txt b/blocks/task2/maps/level3/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec0c1d6a3d4c200252cb983bd69e5a95c53dc7ad --- /dev/null +++ b/blocks/task2/maps/level3/text_input/14.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the yellow block? +(A) The red block is directly above the yellow block, and they are in the same stack. +(B) The red block is directly below the yellow block, and they are in the same stack. +(C) The red block and the yellow block are at different stacks. +(D) At least one of the red block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/15.txt b/blocks/task2/maps/level3/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/15.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/16.txt b/blocks/task2/maps/level3/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/16.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/17.txt b/blocks/task2/maps/level3/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/17.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/18.txt b/blocks/task2/maps/level3/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..276bb7c4238204a1a0e17a7894b3d0fcfeef81b2 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/18.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the orange block? +(A) The red block is directly above the orange block, and they are in the same stack. +(B) The red block is directly below the orange block, and they are in the same stack. +(C) The red block and the orange block are at different stacks. +(D) At least one of the red block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/19.txt b/blocks/task2/maps/level3/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/19.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/2.txt b/blocks/task2/maps/level3/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level3/text_input/2.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/20.txt b/blocks/task2/maps/level3/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..e75bfe0c928e64ceff34dbb15cb213dc22b66564 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/20.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the green block? +(A) The orange block is directly above the green block, and they are in the same stack. +(B) The orange block is directly below the green block, and they are in the same stack. +(C) The orange block and the green block are at different stacks. +(D) At least one of the orange block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/21.txt b/blocks/task2/maps/level3/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level3/text_input/21.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/22.txt b/blocks/task2/maps/level3/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/22.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/23.txt b/blocks/task2/maps/level3/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/23.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/24.txt b/blocks/task2/maps/level3/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/24.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/25.txt b/blocks/task2/maps/level3/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/25.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/26.txt b/blocks/task2/maps/level3/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/26.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/27.txt b/blocks/task2/maps/level3/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/27.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/28.txt b/blocks/task2/maps/level3/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level3/text_input/28.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/29.txt b/blocks/task2/maps/level3/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..e75bfe0c928e64ceff34dbb15cb213dc22b66564 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/29.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the green block? +(A) The orange block is directly above the green block, and they are in the same stack. +(B) The orange block is directly below the green block, and they are in the same stack. +(C) The orange block and the green block are at different stacks. +(D) At least one of the orange block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/3.txt b/blocks/task2/maps/level3/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a3fe4a28186816a694e0528c8c174daac9ac1d --- /dev/null +++ b/blocks/task2/maps/level3/text_input/3.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the red block? +(A) The blue block is directly above the red block, and they are in the same stack. +(B) The blue block is directly below the red block, and they are in the same stack. +(C) The blue block and the red block are at different stacks. +(D) At least one of the blue block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/30.txt b/blocks/task2/maps/level3/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level3/text_input/30.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/31.txt b/blocks/task2/maps/level3/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/31.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/32.txt b/blocks/task2/maps/level3/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/32.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/33.txt b/blocks/task2/maps/level3/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..4da8bff3c432abc5eaf0b5b6d3ddd96a9354e65c --- /dev/null +++ b/blocks/task2/maps/level3/text_input/33.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the orange block? +(A) The purple block is directly above the orange block, and they are in the same stack. +(B) The purple block is directly below the orange block, and they are in the same stack. +(C) The purple block and the orange block are at different stacks. +(D) At least one of the purple block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/34.txt b/blocks/task2/maps/level3/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level3/text_input/34.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/35.txt b/blocks/task2/maps/level3/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/35.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/36.txt b/blocks/task2/maps/level3/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level3/text_input/36.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/37.txt b/blocks/task2/maps/level3/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level3/text_input/37.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/38.txt b/blocks/task2/maps/level3/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d6f2225bb3a95f77d5223214ee63ede0ea4580a --- /dev/null +++ b/blocks/task2/maps/level3/text_input/38.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the blue block? +(A) The red block is directly above the blue block, and they are in the same stack. +(B) The red block is directly below the blue block, and they are in the same stack. +(C) The red block and the blue block are at different stacks. +(D) At least one of the red block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/39.txt b/blocks/task2/maps/level3/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..c922db8beeba3fe2cfe562c9272632eb022efb88 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/39.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the blue block? +(A) The green block is directly above the blue block, and they are in the same stack. +(B) The green block is directly below the blue block, and they are in the same stack. +(C) The green block and the blue block are at different stacks. +(D) At least one of the green block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/4.txt b/blocks/task2/maps/level3/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d6f2225bb3a95f77d5223214ee63ede0ea4580a --- /dev/null +++ b/blocks/task2/maps/level3/text_input/4.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the blue block? +(A) The red block is directly above the blue block, and they are in the same stack. +(B) The red block is directly below the blue block, and they are in the same stack. +(C) The red block and the blue block are at different stacks. +(D) At least one of the red block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/40.txt b/blocks/task2/maps/level3/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec0c1d6a3d4c200252cb983bd69e5a95c53dc7ad --- /dev/null +++ b/blocks/task2/maps/level3/text_input/40.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the yellow block? +(A) The red block is directly above the yellow block, and they are in the same stack. +(B) The red block is directly below the yellow block, and they are in the same stack. +(C) The red block and the yellow block are at different stacks. +(D) At least one of the red block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/41.txt b/blocks/task2/maps/level3/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/41.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/42.txt b/blocks/task2/maps/level3/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/42.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/43.txt b/blocks/task2/maps/level3/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level3/text_input/43.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/44.txt b/blocks/task2/maps/level3/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/44.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/45.txt b/blocks/task2/maps/level3/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/45.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/46.txt b/blocks/task2/maps/level3/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/46.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/47.txt b/blocks/task2/maps/level3/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level3/text_input/47.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/48.txt b/blocks/task2/maps/level3/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level3/text_input/48.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/49.txt b/blocks/task2/maps/level3/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/49.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/5.txt b/blocks/task2/maps/level3/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..35555537fc7c65dc91e4506b889f94e90930d613 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/5.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the green block? +(A) The purple block is directly above the green block, and they are in the same stack. +(B) The purple block is directly below the green block, and they are in the same stack. +(C) The purple block and the green block are at different stacks. +(D) At least one of the purple block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/50.txt b/blocks/task2/maps/level3/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..4da8bff3c432abc5eaf0b5b6d3ddd96a9354e65c --- /dev/null +++ b/blocks/task2/maps/level3/text_input/50.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the orange block? +(A) The purple block is directly above the orange block, and they are in the same stack. +(B) The purple block is directly below the orange block, and they are in the same stack. +(C) The purple block and the orange block are at different stacks. +(D) At least one of the purple block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/51.txt b/blocks/task2/maps/level3/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level3/text_input/51.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/52.txt b/blocks/task2/maps/level3/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level3/text_input/52.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/53.txt b/blocks/task2/maps/level3/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level3/text_input/53.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/54.txt b/blocks/task2/maps/level3/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/54.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/55.txt b/blocks/task2/maps/level3/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/55.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/56.txt b/blocks/task2/maps/level3/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/56.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/57.txt b/blocks/task2/maps/level3/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..35555537fc7c65dc91e4506b889f94e90930d613 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/57.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the green block? +(A) The purple block is directly above the green block, and they are in the same stack. +(B) The purple block is directly below the green block, and they are in the same stack. +(C) The purple block and the green block are at different stacks. +(D) At least one of the purple block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/58.txt b/blocks/task2/maps/level3/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/58.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/59.txt b/blocks/task2/maps/level3/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..11d6986d2c290c1b5baa3551a51f82c68e61cc32 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/59.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the green block? +(A) The yellow block is directly above the green block, and they are in the same stack. +(B) The yellow block is directly below the green block, and they are in the same stack. +(C) The yellow block and the green block are at different stacks. +(D) At least one of the yellow block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/6.txt b/blocks/task2/maps/level3/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level3/text_input/6.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/60.txt b/blocks/task2/maps/level3/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d6f2225bb3a95f77d5223214ee63ede0ea4580a --- /dev/null +++ b/blocks/task2/maps/level3/text_input/60.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the blue block? +(A) The red block is directly above the blue block, and they are in the same stack. +(B) The red block is directly below the blue block, and they are in the same stack. +(C) The red block and the blue block are at different stacks. +(D) At least one of the red block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/61.txt b/blocks/task2/maps/level3/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..4da8bff3c432abc5eaf0b5b6d3ddd96a9354e65c --- /dev/null +++ b/blocks/task2/maps/level3/text_input/61.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the orange block? +(A) The purple block is directly above the orange block, and they are in the same stack. +(B) The purple block is directly below the orange block, and they are in the same stack. +(C) The purple block and the orange block are at different stacks. +(D) At least one of the purple block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/62.txt b/blocks/task2/maps/level3/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level3/text_input/62.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/63.txt b/blocks/task2/maps/level3/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec0c1d6a3d4c200252cb983bd69e5a95c53dc7ad --- /dev/null +++ b/blocks/task2/maps/level3/text_input/63.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the yellow block? +(A) The red block is directly above the yellow block, and they are in the same stack. +(B) The red block is directly below the yellow block, and they are in the same stack. +(C) The red block and the yellow block are at different stacks. +(D) At least one of the red block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/64.txt b/blocks/task2/maps/level3/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..c922db8beeba3fe2cfe562c9272632eb022efb88 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/64.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the blue block? +(A) The green block is directly above the blue block, and they are in the same stack. +(B) The green block is directly below the blue block, and they are in the same stack. +(C) The green block and the blue block are at different stacks. +(D) At least one of the green block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/65.txt b/blocks/task2/maps/level3/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/65.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/66.txt b/blocks/task2/maps/level3/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level3/text_input/66.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/67.txt b/blocks/task2/maps/level3/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/67.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/68.txt b/blocks/task2/maps/level3/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d6f2225bb3a95f77d5223214ee63ede0ea4580a --- /dev/null +++ b/blocks/task2/maps/level3/text_input/68.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the blue block? +(A) The red block is directly above the blue block, and they are in the same stack. +(B) The red block is directly below the blue block, and they are in the same stack. +(C) The red block and the blue block are at different stacks. +(D) At least one of the red block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/69.txt b/blocks/task2/maps/level3/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/69.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/7.txt b/blocks/task2/maps/level3/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level3/text_input/7.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/70.txt b/blocks/task2/maps/level3/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/70.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/71.txt b/blocks/task2/maps/level3/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/71.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/72.txt b/blocks/task2/maps/level3/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec0c1d6a3d4c200252cb983bd69e5a95c53dc7ad --- /dev/null +++ b/blocks/task2/maps/level3/text_input/72.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the yellow block? +(A) The red block is directly above the yellow block, and they are in the same stack. +(B) The red block is directly below the yellow block, and they are in the same stack. +(C) The red block and the yellow block are at different stacks. +(D) At least one of the red block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/73.txt b/blocks/task2/maps/level3/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a3fe4a28186816a694e0528c8c174daac9ac1d --- /dev/null +++ b/blocks/task2/maps/level3/text_input/73.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the red block? +(A) The blue block is directly above the red block, and they are in the same stack. +(B) The blue block is directly below the red block, and they are in the same stack. +(C) The blue block and the red block are at different stacks. +(D) At least one of the blue block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/74.txt b/blocks/task2/maps/level3/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/74.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/75.txt b/blocks/task2/maps/level3/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/75.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/76.txt b/blocks/task2/maps/level3/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/76.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/77.txt b/blocks/task2/maps/level3/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level3/text_input/77.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/78.txt b/blocks/task2/maps/level3/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..276bb7c4238204a1a0e17a7894b3d0fcfeef81b2 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/78.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the orange block? +(A) The red block is directly above the orange block, and they are in the same stack. +(B) The red block is directly below the orange block, and they are in the same stack. +(C) The red block and the orange block are at different stacks. +(D) At least one of the red block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/79.txt b/blocks/task2/maps/level3/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level3/text_input/79.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/8.txt b/blocks/task2/maps/level3/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level3/text_input/8.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/80.txt b/blocks/task2/maps/level3/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level3/text_input/80.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/81.txt b/blocks/task2/maps/level3/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..c922db8beeba3fe2cfe562c9272632eb022efb88 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/81.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the blue block? +(A) The green block is directly above the blue block, and they are in the same stack. +(B) The green block is directly below the blue block, and they are in the same stack. +(C) The green block and the blue block are at different stacks. +(D) At least one of the green block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/82.txt b/blocks/task2/maps/level3/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level3/text_input/82.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/83.txt b/blocks/task2/maps/level3/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level3/text_input/83.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/84.txt b/blocks/task2/maps/level3/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..35555537fc7c65dc91e4506b889f94e90930d613 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/84.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the green block? +(A) The purple block is directly above the green block, and they are in the same stack. +(B) The purple block is directly below the green block, and they are in the same stack. +(C) The purple block and the green block are at different stacks. +(D) At least one of the purple block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/85.txt b/blocks/task2/maps/level3/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/85.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/86.txt b/blocks/task2/maps/level3/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level3/text_input/86.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/87.txt b/blocks/task2/maps/level3/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level3/text_input/87.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/88.txt b/blocks/task2/maps/level3/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level3/text_input/88.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/89.txt b/blocks/task2/maps/level3/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/89.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/9.txt b/blocks/task2/maps/level3/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level3/text_input/9.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/90.txt b/blocks/task2/maps/level3/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/90.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/91.txt b/blocks/task2/maps/level3/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/91.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/92.txt b/blocks/task2/maps/level3/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/92.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/93.txt b/blocks/task2/maps/level3/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/93.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/94.txt b/blocks/task2/maps/level3/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/94.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/95.txt b/blocks/task2/maps/level3/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/95.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/96.txt b/blocks/task2/maps/level3/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/96.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/97.txt b/blocks/task2/maps/level3/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level3/text_input/97.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/98.txt b/blocks/task2/maps/level3/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/98.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level3/text_input/99.txt b/blocks/task2/maps/level3/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level3/text_input/99.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/annotation.txt b/blocks/task2/maps/level4/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..0af10139e5ef05debad5688571062d369a744e61 --- /dev/null +++ b/blocks/task2/maps/level4/annotation.txt @@ -0,0 +1,100 @@ +3 +0 +1 +2 +1 +1 +0 +0 +1 +3 +1 +0 +3 +1 +0 +1 +2 +0 +2 +2 +2 +2 +0 +2 +0 +2 +0 +3 +2 +2 +3 +1 +3 +2 +2 +3 +3 +3 +2 +1 +1 +0 +0 +1 +3 +0 +1 +0 +3 +2 +3 +3 +2 +1 +0 +2 +0 +1 +1 +3 +1 +0 +0 +3 +1 +2 +0 +3 +1 +0 +1 +0 +2 +2 +2 +0 +0 +0 +1 +3 +1 +2 +1 +0 +3 +1 +0 +3 +2 +3 +2 +3 +2 +3 +1 +3 +3 +3 +3 +2 diff --git a/blocks/task2/maps/level4/image_input/0.jpg b/blocks/task2/maps/level4/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ac8fac5296346eb6f9c42b7f13efbc16385316b --- /dev/null +++ b/blocks/task2/maps/level4/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f2caf0bdbf87ca2da5e671667b5d36221d658b8fe06c2ac87f0a651d15f19e +size 10034 diff --git a/blocks/task2/maps/level4/image_input/1.jpg b/blocks/task2/maps/level4/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c96a6d05fcdfa1723cc7188200928c7d5113083f --- /dev/null +++ b/blocks/task2/maps/level4/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14d98d9f05a124ff5d0692ba2d616d542f510b6b4f2080ed42a6782e269cb1b +size 9828 diff --git a/blocks/task2/maps/level4/image_input/10.jpg b/blocks/task2/maps/level4/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0887ecfb1f2413933906f6b2ef9f86477a1f1e90 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2b9b514623f755bbe17d57bacacb46df3c75d71f512c571487a0bbd0688d9c +size 10173 diff --git a/blocks/task2/maps/level4/image_input/11.jpg b/blocks/task2/maps/level4/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c696c992b13d95d5d505c01dc3d8169787a047ee --- /dev/null +++ b/blocks/task2/maps/level4/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8691c7295eaf51d70d92bb22882d1c4baa4e9f6a3c04d726aa07e74ac61da1f3 +size 10321 diff --git a/blocks/task2/maps/level4/image_input/12.jpg b/blocks/task2/maps/level4/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8771c04eea8b70c19852393065449d6d8643d6bd --- /dev/null +++ b/blocks/task2/maps/level4/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e44c669cd27c3e6e9816b6f6c356789e486da8fbaacad7b89c4501c978668e +size 10029 diff --git a/blocks/task2/maps/level4/image_input/13.jpg b/blocks/task2/maps/level4/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..857e83694990864c2dd46e8c5808b1318c5a9d79 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33148e2031b86792601fd4db5451d3091762297d0bb77798518552e4ee1fd4a2 +size 9796 diff --git a/blocks/task2/maps/level4/image_input/14.jpg b/blocks/task2/maps/level4/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..697867330a461163a8f8398c592c8b73a0223be9 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627ec3b2ee7c943970d517f15afb632811dcd9ad7349881d3ff7a862618226c +size 10138 diff --git a/blocks/task2/maps/level4/image_input/15.jpg b/blocks/task2/maps/level4/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d792c458d7d91443a8afce82b989ba8d1db5551 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17606624041cc4585f017c948a26a144b2e8bcb103b3af899b457c84634f2dff +size 9877 diff --git a/blocks/task2/maps/level4/image_input/16.jpg b/blocks/task2/maps/level4/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f2e1ffe9b1d62b9c2300ec6f4c1c224cdb8ac5c --- /dev/null +++ b/blocks/task2/maps/level4/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd45b43ed89deee3d9c2ab5714d44c661dfe6e68ad3a0f6d0f9698d440f30a8 +size 9799 diff --git a/blocks/task2/maps/level4/image_input/17.jpg b/blocks/task2/maps/level4/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9896b4a6e846d84f29cf497fd59abb50bef8ce0c --- /dev/null +++ b/blocks/task2/maps/level4/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d59c6f600456529653a0a3fad03003620e2089baf6d075c0e55faca70d62931 +size 9828 diff --git a/blocks/task2/maps/level4/image_input/18.jpg b/blocks/task2/maps/level4/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16fad0acc18cba3b0ec4543238b603b591197ee6 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b59e0bf12618744f6b80245fdc1385ce6692c7c4918e861c9c06dfa4cf9608 +size 9964 diff --git a/blocks/task2/maps/level4/image_input/19.jpg b/blocks/task2/maps/level4/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08483125ad1b79ccf3bb7c108578303432e4621f --- /dev/null +++ b/blocks/task2/maps/level4/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3123254b5c42fc63caa681927cc87764be4af6c5b6a4e0e77f0e02117cf3fb +size 10683 diff --git a/blocks/task2/maps/level4/image_input/2.jpg b/blocks/task2/maps/level4/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32d78fc0dd622988f0e3b07532e791d0ce0bb917 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27de3c76690f53f24060eb3b60e5df9eedecf9b1fe7a0abfe65fcbf5d1b9844c +size 9460 diff --git a/blocks/task2/maps/level4/image_input/20.jpg b/blocks/task2/maps/level4/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..697867330a461163a8f8398c592c8b73a0223be9 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627ec3b2ee7c943970d517f15afb632811dcd9ad7349881d3ff7a862618226c +size 10138 diff --git a/blocks/task2/maps/level4/image_input/21.jpg b/blocks/task2/maps/level4/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8681a4ed78ec6a55c7d63a992bad09587f5f9e55 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5af445fcde0d81c4272b31e90234276c67326aeb2f8b7cb8a0455f3c988fd4 +size 10689 diff --git a/blocks/task2/maps/level4/image_input/22.jpg b/blocks/task2/maps/level4/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..096ffdfd3aa4dbbcb3fd723ec79cb6112e5587e7 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432ea39f0a8a3734bc11e5f029099561f3861f6e4968160422c3d2ee226395d2 +size 9565 diff --git a/blocks/task2/maps/level4/image_input/23.jpg b/blocks/task2/maps/level4/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b03595ed02bd2333532bd42a4a5f51352d9cbdbd --- /dev/null +++ b/blocks/task2/maps/level4/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32dc19f381221a23ca6203b9df4f8157ca0f87947b1690c6cc5211051c5f6e8a +size 10615 diff --git a/blocks/task2/maps/level4/image_input/24.jpg b/blocks/task2/maps/level4/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70b9b9fbe4dd9582fbddbee10bcb7623eba90bbd --- /dev/null +++ b/blocks/task2/maps/level4/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e689e41efd688de27539d894b67684dd8fa17accbb547022f117daa428fbec8 +size 10275 diff --git a/blocks/task2/maps/level4/image_input/25.jpg b/blocks/task2/maps/level4/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e53e182cb0bd8352d08b873cf81842ac3774776 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d84db85244025163a447bc1508136892ee120d3e8695eccf55f0b89de0bbd70 +size 10089 diff --git a/blocks/task2/maps/level4/image_input/26.jpg b/blocks/task2/maps/level4/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c7e4a620734860a5b8c5f07ca7c048addb33f89 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8bcb087aec96f63136853b265af79d07b75599bf6290a1eaef0727014c68e5 +size 10574 diff --git a/blocks/task2/maps/level4/image_input/27.jpg b/blocks/task2/maps/level4/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02d60120df04b781faa3316a4544b37843a2a7eb --- /dev/null +++ b/blocks/task2/maps/level4/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c5011cb74beea025dbfb6571de4036d69afc64fbc796eb11f62fe91e330e14 +size 9963 diff --git a/blocks/task2/maps/level4/image_input/28.jpg b/blocks/task2/maps/level4/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3e8bd91162a88796ffd057b7ee95c67a8ec9774 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a62f6357494e7561be6f4bfab3068f885b53c2a5a148d640b4eb2410032132 +size 10070 diff --git a/blocks/task2/maps/level4/image_input/29.jpg b/blocks/task2/maps/level4/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97dad9f1b24c9e4faa085cebd049d75dbe6bdebb --- /dev/null +++ b/blocks/task2/maps/level4/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffc0c13aa1d2ecfca9c477279eb58e738f9227870c3d2349454f139a94b71b1 +size 9570 diff --git a/blocks/task2/maps/level4/image_input/3.jpg b/blocks/task2/maps/level4/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f8f1c6e0e71f7351ed76d439537664e7d7a9be9 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1f688c85c12004278356a17775233c87941332f800438456db317d5c1ddaf9 +size 10032 diff --git a/blocks/task2/maps/level4/image_input/30.jpg b/blocks/task2/maps/level4/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..388b3e1c0c3e60ee4380dd28e1168abf7e4e4e05 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f753ec127d6414af848a8d19143e571a5b1266028d6c921de8da8509e6566acb +size 10308 diff --git a/blocks/task2/maps/level4/image_input/31.jpg b/blocks/task2/maps/level4/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46d517d2c312ca8ef315ede35829b5008ddf41a0 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f364896fc0b3105d323602ab84e2bffbb62723c00d95ba91dec0b96902a214 +size 9972 diff --git a/blocks/task2/maps/level4/image_input/32.jpg b/blocks/task2/maps/level4/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6aefc7a8beac5f0b8a16e0fd6f823be501481dcf --- /dev/null +++ b/blocks/task2/maps/level4/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678327bbee74b9ca50cb6bcc5281955a9926acba3da4defb92c4b29a94bac6a2 +size 9229 diff --git a/blocks/task2/maps/level4/image_input/33.jpg b/blocks/task2/maps/level4/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92033012536833ce75353ffc51b9245ac3c993b5 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffaff6440f1cfabd8a6e607d88e6fb071449200b57b45440f70e2640a40d292 +size 9753 diff --git a/blocks/task2/maps/level4/image_input/34.jpg b/blocks/task2/maps/level4/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17a6f173729f7fdd3e5c81ef925980e96cae3190 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef89b2c803fff22aed1992499b08bc3abbca1fb1e98fdc926e615bc09454db0 +size 9849 diff --git a/blocks/task2/maps/level4/image_input/35.jpg b/blocks/task2/maps/level4/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abb131bd91aa0f97fa99b2ef21a73bdf93b08f07 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1f01fcd53db9800f15c34117677148e90daede353e870984e8ccfcb89a6d4c +size 9599 diff --git a/blocks/task2/maps/level4/image_input/36.jpg b/blocks/task2/maps/level4/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b69991c59d2fb7c65d023110480f11a974854816 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d133b004a9cecdea3e679a8cfb36e3bdf6f7e4d47d0cb11614346fe23f75f462 +size 10226 diff --git a/blocks/task2/maps/level4/image_input/37.jpg b/blocks/task2/maps/level4/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b0a546dacfd4e30cbf4e1e3bbf5224bef927066 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e9abc9fb55f835df3248fa84b25152c01a1df967b9e0411313b71cd57d3d67 +size 10066 diff --git a/blocks/task2/maps/level4/image_input/38.jpg b/blocks/task2/maps/level4/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a52887893ba2854e4028fde265640a5fd4c4e0ed --- /dev/null +++ b/blocks/task2/maps/level4/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7938ab461790ba6d59a969bcfdd741044c1a9bb7e50b0b6cb57c695347709b4 +size 10525 diff --git a/blocks/task2/maps/level4/image_input/39.jpg b/blocks/task2/maps/level4/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aca8ff6623555b74bc4e37db5a25bba5f792d3e --- /dev/null +++ b/blocks/task2/maps/level4/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c22dedbb9d668d7880f76b77475acc9ad51c4dfb3a24f10d4a74aef263f5ae14 +size 10483 diff --git a/blocks/task2/maps/level4/image_input/4.jpg b/blocks/task2/maps/level4/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c0626cfe17e6c86c13ca71dc974ac9025f5ebf2 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a02ffb83e06eb750eb8175dbafe22ab4848c049984c2cd6c0f770f7402e8fd +size 9395 diff --git a/blocks/task2/maps/level4/image_input/40.jpg b/blocks/task2/maps/level4/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..916ab1df1576edfe06c9d4b6a550f5e0afb58aa3 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d259e3951a42ee1dc4c2fc502b06b7b527f7f784855a06bc732f60f6b6bf7b0 +size 10464 diff --git a/blocks/task2/maps/level4/image_input/41.jpg b/blocks/task2/maps/level4/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..289b8565244231e1b158af92481a5db5f2912de9 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e316589360b2b23aefd24860c22e6446d47c93f60987b7705910ecef83fcd89c +size 9737 diff --git a/blocks/task2/maps/level4/image_input/42.jpg b/blocks/task2/maps/level4/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a12ca349fee695320e9ed96e32537a1a5865b1b --- /dev/null +++ b/blocks/task2/maps/level4/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba50dd4d0e4290601e5634f78343a87e10c7972b0f0e478b3db6c4adc21505ec +size 9784 diff --git a/blocks/task2/maps/level4/image_input/43.jpg b/blocks/task2/maps/level4/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..279a62ce6120d905c47cf412aff42a8382a701cd --- /dev/null +++ b/blocks/task2/maps/level4/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa9bd440c658957e0e9928440ef81224ef781b1a07d1d996aa29b6ded51d340 +size 10238 diff --git a/blocks/task2/maps/level4/image_input/44.jpg b/blocks/task2/maps/level4/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fea3c8ca604ee7db8a08f074925049d1659d2f6 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96ef56ca285de83a4bca939f3e0fe815c545d765dc5af81d4dfdd51245f32983 +size 9549 diff --git a/blocks/task2/maps/level4/image_input/45.jpg b/blocks/task2/maps/level4/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7760938c53e08eecd558638d4d02e618079717e3 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1e7d456ef7cb0aa027a4fe744fb27595541fd1a8695648546472aae0d0e5bb +size 10296 diff --git a/blocks/task2/maps/level4/image_input/46.jpg b/blocks/task2/maps/level4/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..299b7cd1b8204bfbaa70789fb7b886e0dfc4f905 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab35703b77552a9a39318e832eb836622c21fa48d0c1ee22d858a8abb370072 +size 10141 diff --git a/blocks/task2/maps/level4/image_input/47.jpg b/blocks/task2/maps/level4/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aff6116bd7393fefb0b24113f39e63fb4c238e99 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc16944f54dcf6e856e450dbc36f9dd207e33e6b320e8631cdcfe8edba38093b +size 9493 diff --git a/blocks/task2/maps/level4/image_input/48.jpg b/blocks/task2/maps/level4/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b96fc87375044dfa6be4c9963cca5a722454d5f2 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fc5574576c6f0c691ffdc9f55adc86ac7283f70cfd26930a9aa7dfe57812ed +size 9985 diff --git a/blocks/task2/maps/level4/image_input/49.jpg b/blocks/task2/maps/level4/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc447ac8887bf07ac0455553c3f44a438665fc17 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c51cbc9d454b4422b8a9cd15764a0dc31b106da2d77b0baf2cf5a29f48784d1 +size 10034 diff --git a/blocks/task2/maps/level4/image_input/5.jpg b/blocks/task2/maps/level4/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0bd3ed64e7a696befbfb0e3ab4d02f98a72a6d4 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525aade3a8fea5fd5297fba39170a2d5249184ee4cb24d202aa94c0b84d9ca54 +size 9962 diff --git a/blocks/task2/maps/level4/image_input/50.jpg b/blocks/task2/maps/level4/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f7ffb70b4ca9d58854e5266f282ccf0d763c12c --- /dev/null +++ b/blocks/task2/maps/level4/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10de1cdfbde72fe3d23acb80eca3254ece26e7273984d201bf3b14f1d24c97a0 +size 9671 diff --git a/blocks/task2/maps/level4/image_input/51.jpg b/blocks/task2/maps/level4/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..525d3caddd68f935fae4a2b1a36bc74791910509 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745dc3524d109aa09922c0c84869733f5d0914d93ebca3fb3b1b0c36014252fd +size 10119 diff --git a/blocks/task2/maps/level4/image_input/52.jpg b/blocks/task2/maps/level4/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56b23a25f8e1124c5a4e9e0edae995876098c14e --- /dev/null +++ b/blocks/task2/maps/level4/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d7d17fbc05396ff4fe4628bc84b15f68021b18222638d83ae883a42a6fdfe7 +size 9812 diff --git a/blocks/task2/maps/level4/image_input/53.jpg b/blocks/task2/maps/level4/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3e5958942fbc600375ad0e6492c096f7c47c144 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14193d7853bf3fcdb303d9ade37b45e5177e6711aa85796c7d7da6fe89056fd1 +size 10151 diff --git a/blocks/task2/maps/level4/image_input/54.jpg b/blocks/task2/maps/level4/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c03e612de8430f6e724ec8921f17fb58fbfa9011 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80d106e6c557b442b5271b02ec000fc51597f1a64f67739c3c0f9058e5660b8 +size 10560 diff --git a/blocks/task2/maps/level4/image_input/55.jpg b/blocks/task2/maps/level4/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c96a6d05fcdfa1723cc7188200928c7d5113083f --- /dev/null +++ b/blocks/task2/maps/level4/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14d98d9f05a124ff5d0692ba2d616d542f510b6b4f2080ed42a6782e269cb1b +size 9828 diff --git a/blocks/task2/maps/level4/image_input/56.jpg b/blocks/task2/maps/level4/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f790372eef4c833eafd3c1a86c0461dc71b1c95 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af87c72749cfea1d3fb9f901d5f69062514f03d69f599ba44acee174b9c9e7e +size 9972 diff --git a/blocks/task2/maps/level4/image_input/57.jpg b/blocks/task2/maps/level4/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c33041d56ac07437a83f2714b723fcaba1510e4 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47849c68e316fc0d4867a202e6dd9506767eff2ff5bb115592b3005da9e7fb9c +size 10068 diff --git a/blocks/task2/maps/level4/image_input/58.jpg b/blocks/task2/maps/level4/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b112339001baa67207480c5e4cc565711a1d96f --- /dev/null +++ b/blocks/task2/maps/level4/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e421f06e3cb3738844cc20e0b9a5ae85f620a728fd396e5d570aee7bd492ba25 +size 10651 diff --git a/blocks/task2/maps/level4/image_input/59.jpg b/blocks/task2/maps/level4/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79518fc1cbe3db759f7236d5c6d6e043a9f3b16d --- /dev/null +++ b/blocks/task2/maps/level4/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd192188963538d0611a16bc5bebb040451467ffa32ad30b1b6e0baf06fbd8f +size 9762 diff --git a/blocks/task2/maps/level4/image_input/6.jpg b/blocks/task2/maps/level4/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76546a104088053c8c1b0ba5e6aca6185559b273 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac64a1670879c7738b471480f3b48165e22aa47d05aa8e1f89fec53d0653fc4 +size 10081 diff --git a/blocks/task2/maps/level4/image_input/60.jpg b/blocks/task2/maps/level4/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b39bc4c957f021a0e18e75f16fabe83810ba62dc --- /dev/null +++ b/blocks/task2/maps/level4/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8b9d94135390324914713b0427e2fb5e076df3e86682315ca814846b97109d +size 10543 diff --git a/blocks/task2/maps/level4/image_input/61.jpg b/blocks/task2/maps/level4/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcbb2114e3da78a670fdc4ad3fbce3dd393c84cd --- /dev/null +++ b/blocks/task2/maps/level4/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7723e58d15c2f31ee7bed81d83a0ed38318af5533778f958f43a95a8c6f2a3 +size 10069 diff --git a/blocks/task2/maps/level4/image_input/62.jpg b/blocks/task2/maps/level4/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a77ef22f9b604eaad494ec5f601b712f9127869 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bfeaecfb09a2f88e7d9ac97e089b4921206a003f6061f6363fe8884596bbc0 +size 9614 diff --git a/blocks/task2/maps/level4/image_input/63.jpg b/blocks/task2/maps/level4/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5483cb1a6a3636f8489a757b2f976122f80cdc2 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d79e61cc509ebbcb6111d12a8af627c2bbf50547d1a812247a1cd836f714b1 +size 9400 diff --git a/blocks/task2/maps/level4/image_input/64.jpg b/blocks/task2/maps/level4/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c8947b3a0f216e60391c1e9c8dc7fd1eec53cc5 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b954be343545e48b37e735fabf3e5672b57029aa4cb87c3cfb88c90d5883cd4e +size 10011 diff --git a/blocks/task2/maps/level4/image_input/65.jpg b/blocks/task2/maps/level4/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a36f5d957991518237fade4f023cf94151b4d4b0 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:742362dbdbb6362e5ef970973e34c26d3c63fb52bc48b5f5b9cdfb1367ce6e9f +size 9993 diff --git a/blocks/task2/maps/level4/image_input/66.jpg b/blocks/task2/maps/level4/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e4c676da64c306b714900ceba95e519e721c0ae --- /dev/null +++ b/blocks/task2/maps/level4/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb571763082f24bd3355024a6fd76c2e9de3aa1e51858e50563a0eada297771 +size 10405 diff --git a/blocks/task2/maps/level4/image_input/67.jpg b/blocks/task2/maps/level4/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcdb73ef77c64394c868e2f7005753e72a26d333 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0546561a7d158796d693fc2daf5f8603a41c63cd645b97102c30054ddad12224 +size 10111 diff --git a/blocks/task2/maps/level4/image_input/68.jpg b/blocks/task2/maps/level4/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebf24652175f1952173679cc20e09cfeee1457ad --- /dev/null +++ b/blocks/task2/maps/level4/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389536bad0d23d3fc7a1cd69f8914605b23b0f558d3723b5a9e3fd8084eff215 +size 9658 diff --git a/blocks/task2/maps/level4/image_input/69.jpg b/blocks/task2/maps/level4/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b91c635a7bcf301044e4f1e1d76fdf2d35ade9d --- /dev/null +++ b/blocks/task2/maps/level4/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40f63bf66c3bfb6de0ba35fb07da688039108f82ffd6f0bfcea876ec057392a7 +size 9373 diff --git a/blocks/task2/maps/level4/image_input/7.jpg b/blocks/task2/maps/level4/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf57d5033bb1f5bf945c59f4ce4a41bf36a283f6 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8cbabad26d620b80da74cebd55e3510f43e47273321ed10f05437e467c5ab6 +size 9548 diff --git a/blocks/task2/maps/level4/image_input/70.jpg b/blocks/task2/maps/level4/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..340954a5762239e9e70f9de7917fcafcad27bc99 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f485c99a4da6ea362083a65dab8d1e58111a937bca130481c81e20a8307d932d +size 9299 diff --git a/blocks/task2/maps/level4/image_input/71.jpg b/blocks/task2/maps/level4/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f493a99a169ece03a6db2d82df80c041f5bc204 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d5463bad37835f487a19e15edbedaf15e2cc2f02450d8f26ca6ffd2c283e57 +size 10063 diff --git a/blocks/task2/maps/level4/image_input/72.jpg b/blocks/task2/maps/level4/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..590390389d73e37cd55d7e956d6cb639bcfda530 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93d40cd2d227bccbda7d5625c6d6b541998d70587325865e2e48d79643266cb +size 9949 diff --git a/blocks/task2/maps/level4/image_input/73.jpg b/blocks/task2/maps/level4/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5edfc407a498f66729461eae4e06991be377d8bc --- /dev/null +++ b/blocks/task2/maps/level4/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22b138e6de4a4b47d52d5e8b7d1ea7c8391e16eabda882d17f5a94db6f175f40 +size 9807 diff --git a/blocks/task2/maps/level4/image_input/74.jpg b/blocks/task2/maps/level4/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fad37be083078edb6e922c4bf7025fba9a9fa20 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc7d619ef1873e6c98677194a6568d7e537a093b4d50767dfa18e54808619d91 +size 10151 diff --git a/blocks/task2/maps/level4/image_input/75.jpg b/blocks/task2/maps/level4/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f134095813437d168691f7d3a20ef0944845eb9 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c770fbfd1a935f1c633c11d6f7b79429cdeeab4a7ccbc8176989bce828883514 +size 9850 diff --git a/blocks/task2/maps/level4/image_input/76.jpg b/blocks/task2/maps/level4/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dbd1a3a5c4eb7829f0de453b03f9a4804cf42083 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52e5989c1dc758cf9345c14a0f6d8fc3aec79af494c4e557e34702e0894a3b6 +size 10409 diff --git a/blocks/task2/maps/level4/image_input/77.jpg b/blocks/task2/maps/level4/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbb77bc5d164487936b3f25ae0bd8741376cf67e --- /dev/null +++ b/blocks/task2/maps/level4/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21240f382feaad936436cb6d9171e6c65c93010cfe2f8eedb5527bcafb87fbf +size 10272 diff --git a/blocks/task2/maps/level4/image_input/78.jpg b/blocks/task2/maps/level4/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f59c6e4125f5ff60b63586e66851f2535ac3e4eb --- /dev/null +++ b/blocks/task2/maps/level4/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b6fcaa9dd364cf55c39e122ae7e06b24185a93e7b54d260ab153b3bceda599 +size 9920 diff --git a/blocks/task2/maps/level4/image_input/79.jpg b/blocks/task2/maps/level4/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c387845aeb1018d8cb66f5da4f81eddec222b4a5 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbb441de413d1c430c62fd28eb9ec7168d2d34b4301fb5b0523220ce33d7621 +size 10060 diff --git a/blocks/task2/maps/level4/image_input/8.jpg b/blocks/task2/maps/level4/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2868459a6d8fdcd3f90c46979f22313fc60decb9 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfe27cc7f9dc1b549053a0e3a6fa587c42b9c4a738f2cc9c101acc03e8fcad8 +size 9877 diff --git a/blocks/task2/maps/level4/image_input/80.jpg b/blocks/task2/maps/level4/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8eb8361b63c889a448b874fa9954566c0c12eee --- /dev/null +++ b/blocks/task2/maps/level4/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd8c6cdacac3e06a8c5e1774c6eb37f7ace6acbbad39ebb2747ae9149888b55 +size 10266 diff --git a/blocks/task2/maps/level4/image_input/81.jpg b/blocks/task2/maps/level4/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea732887ef343ebe5245d41d954d01a54e9e1e2a --- /dev/null +++ b/blocks/task2/maps/level4/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf963e5cfa95428cf9d8bd5f37167f5888142391dfe21d94688cfae4ef2c6aa1 +size 10473 diff --git a/blocks/task2/maps/level4/image_input/82.jpg b/blocks/task2/maps/level4/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c8947b3a0f216e60391c1e9c8dc7fd1eec53cc5 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b954be343545e48b37e735fabf3e5672b57029aa4cb87c3cfb88c90d5883cd4e +size 10011 diff --git a/blocks/task2/maps/level4/image_input/83.jpg b/blocks/task2/maps/level4/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2ef05f629f9fa070dfc749eb6f6f4aa160a5e5e --- /dev/null +++ b/blocks/task2/maps/level4/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3ffae04131ab9d991c67efaff70ac75ed5eaf72f814c2a0e9fd5aaab92486b +size 10248 diff --git a/blocks/task2/maps/level4/image_input/84.jpg b/blocks/task2/maps/level4/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b36cd5145f157b534620c9d10be19e04030672a3 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe7d5eb51ca1643815890a3588b7ebb18a120e6786b2619fc4f4ad8e1e9f51d +size 10038 diff --git a/blocks/task2/maps/level4/image_input/85.jpg b/blocks/task2/maps/level4/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..145ee78962a08cd6d133d520fc10f78022089ac9 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1cc21f3d7b4a45a37c955464cef521ad656fffd111aa482d8aa1e05740c6196 +size 10458 diff --git a/blocks/task2/maps/level4/image_input/86.jpg b/blocks/task2/maps/level4/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0de6fe578265952d72cb2869219c05bb26be0793 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2363f1a31796881a93a334162e2ae21ee171bbe57b05ed7bd6948bc218c80c92 +size 10081 diff --git a/blocks/task2/maps/level4/image_input/87.jpg b/blocks/task2/maps/level4/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13b672c2371f64a7d39a9dc862294f3965dd56b9 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f3e537f0860dd799eb9fbc3e490fecd624534971d0d9f252551eb6eb309b50 +size 9669 diff --git a/blocks/task2/maps/level4/image_input/88.jpg b/blocks/task2/maps/level4/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e12d4ab931b9dc4d6d94ae48c0b67a65c3e11e3b --- /dev/null +++ b/blocks/task2/maps/level4/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f2fcff113d0dbf202c9854578f6f3528417f466d08cea5dac9d8bd450eef6e +size 10395 diff --git a/blocks/task2/maps/level4/image_input/89.jpg b/blocks/task2/maps/level4/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92033012536833ce75353ffc51b9245ac3c993b5 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffaff6440f1cfabd8a6e607d88e6fb071449200b57b45440f70e2640a40d292 +size 9753 diff --git a/blocks/task2/maps/level4/image_input/9.jpg b/blocks/task2/maps/level4/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4afdc822ec8b61e84608926e2cfe1b8bf959af66 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525ebfe5339dc24dc3ad505dd019265303ac28cc3135419aa45d739b8ced0452 +size 9575 diff --git a/blocks/task2/maps/level4/image_input/90.jpg b/blocks/task2/maps/level4/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dc08a17a7dab475193892dd292fdd18bb5144b1 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d356bf73cf9f64a2c202ded7cdd73a216023235533b23cb03a1963a82f9a53b +size 10262 diff --git a/blocks/task2/maps/level4/image_input/91.jpg b/blocks/task2/maps/level4/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e6169ed49a29b47d61c02f98f530b6261fdbc20 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f0ae4901d47dae494f68661e46a320e30c69b49da3e2699de89af138211d83 +size 9541 diff --git a/blocks/task2/maps/level4/image_input/92.jpg b/blocks/task2/maps/level4/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..279a62ce6120d905c47cf412aff42a8382a701cd --- /dev/null +++ b/blocks/task2/maps/level4/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa9bd440c658957e0e9928440ef81224ef781b1a07d1d996aa29b6ded51d340 +size 10238 diff --git a/blocks/task2/maps/level4/image_input/93.jpg b/blocks/task2/maps/level4/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..473d41cd4e200e182e78238cf6837e886ddbf22f --- /dev/null +++ b/blocks/task2/maps/level4/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26159837fdf020c0c974dbac522b72ab2cd901b7a93bd4562330c3febcee9731 +size 10232 diff --git a/blocks/task2/maps/level4/image_input/94.jpg b/blocks/task2/maps/level4/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac9a006d333d8e3b8b6a732e05b28d667156b28f --- /dev/null +++ b/blocks/task2/maps/level4/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2305d63d0a0a6b0b7a9f4d855e9246180940b72fb0a488e84754cda99842176a +size 10229 diff --git a/blocks/task2/maps/level4/image_input/95.jpg b/blocks/task2/maps/level4/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17a6f173729f7fdd3e5c81ef925980e96cae3190 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef89b2c803fff22aed1992499b08bc3abbca1fb1e98fdc926e615bc09454db0 +size 9849 diff --git a/blocks/task2/maps/level4/image_input/96.jpg b/blocks/task2/maps/level4/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75b9fc215783e68b9617dd8e5795cde2cad81cf1 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcc114b26a11085d356cf10fddae39b64d0f3e551fded36d8eb10d6b3433741 +size 10734 diff --git a/blocks/task2/maps/level4/image_input/97.jpg b/blocks/task2/maps/level4/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1eefd3600c659be45710e3abd206011034fca02e --- /dev/null +++ b/blocks/task2/maps/level4/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5afbc44e89aabc8ef56a113b8e3285bf21a2ae9f70ca6da8a7883bb27e426b +size 10143 diff --git a/blocks/task2/maps/level4/image_input/98.jpg b/blocks/task2/maps/level4/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6aefc7a8beac5f0b8a16e0fd6f823be501481dcf --- /dev/null +++ b/blocks/task2/maps/level4/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678327bbee74b9ca50cb6bcc5281955a9926acba3da4defb92c4b29a94bac6a2 +size 9229 diff --git a/blocks/task2/maps/level4/image_input/99.jpg b/blocks/task2/maps/level4/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..113686d1132e3d26625425abda100852bfac0bd9 --- /dev/null +++ b/blocks/task2/maps/level4/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc4c4e921496be1cc05d0633b298f06357f40ceeea569b1feeca3523d006a5ee +size 9888 diff --git a/blocks/task2/maps/level4/pure_text_rep_input/0 b/blocks/task2/maps/level4/pure_text_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..7d50f507995c902783b53d0e334daee0c3c0c4ce --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/0 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, green block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/1 b/blocks/task2/maps/level4/pure_text_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..a5988042d98050f65de2d045bc99d1ca027d3e2c --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/1 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/10 b/blocks/task2/maps/level4/pure_text_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..ff792293e6ac35dc9dcb9008964c48f32583b49f --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/10 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/11 b/blocks/task2/maps/level4/pure_text_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..b4124116d1f2c1a3b31895c942256f89f885dab5 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/11 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/12 b/blocks/task2/maps/level4/pure_text_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..1e9a229c4247c9201e44b9f0c417b8302c8e7862 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/12 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/13 b/blocks/task2/maps/level4/pure_text_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..9f2410b94f8e17500de393745badd08851ec72cc --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/13 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/14 b/blocks/task2/maps/level4/pure_text_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..ba3890c2c116a2489da015ca88c725ea79aece72 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/14 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/15 b/blocks/task2/maps/level4/pure_text_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..4f28160cad18bffc917e80f3bc8171c922643e52 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/15 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/16 b/blocks/task2/maps/level4/pure_text_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..e2e51e99d1470c27e67fd18650ddd6519cf53f92 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/16 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/17 b/blocks/task2/maps/level4/pure_text_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..eca2796fd2ce78dbe9d184525ffa115b997aad86 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/17 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/18 b/blocks/task2/maps/level4/pure_text_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..25de40df7537804a1bd95bb8da28e81f23f0f96e --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/18 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/19 b/blocks/task2/maps/level4/pure_text_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..5c51b7816ba65f906ead9fd1d2f1a283057c03b2 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/19 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/2 b/blocks/task2/maps/level4/pure_text_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..39b020cff62c55de6e0272e8615ad46bba69f727 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/2 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/20 b/blocks/task2/maps/level4/pure_text_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..ba3890c2c116a2489da015ca88c725ea79aece72 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/20 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/21 b/blocks/task2/maps/level4/pure_text_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..7903b6da2d37537a0606f9fbe362031476efa2bf --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/21 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/22 b/blocks/task2/maps/level4/pure_text_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..8f82c8ed2c3c12eaa35700d15a7b5d675177f76e --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/22 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/23 b/blocks/task2/maps/level4/pure_text_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..1f0488ba89f12fd77b386844368c919beff82a6c --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/23 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/24 b/blocks/task2/maps/level4/pure_text_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..bea7c9c806d592477c2a8ec18166f8cdcdff6bf5 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/24 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/25 b/blocks/task2/maps/level4/pure_text_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..1ecfe969dc6c2e8f3471eef31ca6007d027eeb57 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/25 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, purple block, red block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/26 b/blocks/task2/maps/level4/pure_text_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..adb7a764f9e35c4c9612c6ec614f3736a8fd5392 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/26 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/27 b/blocks/task2/maps/level4/pure_text_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..19f811e3ac7cc158f059ab002464c04e5d710b0c --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/27 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/28 b/blocks/task2/maps/level4/pure_text_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..954d6eced5a8196314366adb5033b1e1b8012ec5 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/28 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/29 b/blocks/task2/maps/level4/pure_text_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..bd54eeb032f4ceb4bb15a828daef86e6a36c3da5 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/29 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/3 b/blocks/task2/maps/level4/pure_text_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..904be1f832f585a91726fc5a9de7191b0574b4f3 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/3 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/30 b/blocks/task2/maps/level4/pure_text_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..220558c4f0b6998e65ee635259128d7fa2ab3907 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/30 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/31 b/blocks/task2/maps/level4/pure_text_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..61802c0d450c9d1e5d71f47d2a55fae9bdcc43d8 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/31 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/32 b/blocks/task2/maps/level4/pure_text_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..efc3ee11f0b61e9fa68f6cd87ec74db5383b2602 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/32 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/33 b/blocks/task2/maps/level4/pure_text_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..6bafe3fa98ee8a01e500b7236d15a7e288a7d10b --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/33 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/34 b/blocks/task2/maps/level4/pure_text_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..3b4abd4675e7c030f9a2777357f8453739c3fabe --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/34 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/35 b/blocks/task2/maps/level4/pure_text_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..ac0f69ded748dc70628f72a047a34124a829de66 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/35 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/36 b/blocks/task2/maps/level4/pure_text_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..4106f60a92b7e6bdafd7f1a27ac0956da31f2ac7 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/36 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/37 b/blocks/task2/maps/level4/pure_text_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..88999957cf0e82c74f9c0679776af1e779b21091 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/37 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/38 b/blocks/task2/maps/level4/pure_text_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..382b37f4fdc96849002e263f86eba575dde9018f --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/38 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/39 b/blocks/task2/maps/level4/pure_text_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..328368a19839d43d03cb80cc77a06cde40062a47 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/39 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, red block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/4 b/blocks/task2/maps/level4/pure_text_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..444dea6b4df6bd88bf064b2516f7e69530a5ba7d --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/4 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/40 b/blocks/task2/maps/level4/pure_text_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..ab8541fb531066f3aca348a764e9efdcfd9fe59e --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/40 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/41 b/blocks/task2/maps/level4/pure_text_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..6c4ba5868142fad18ad1c58855084331cbc9e84d --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/41 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/42 b/blocks/task2/maps/level4/pure_text_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..e3d06419dbee2f21a2aee9044aa47ac1bdffb552 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/42 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/43 b/blocks/task2/maps/level4/pure_text_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..3af67b237efb9d0747a2da3c270533640de13385 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/43 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/44 b/blocks/task2/maps/level4/pure_text_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..3efb504f5a464856b955980d1ec2793a25e7868a --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/44 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, purple block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/45 b/blocks/task2/maps/level4/pure_text_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..4da9adf6b73ccb0876d45f465686280682b7f820 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/45 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/46 b/blocks/task2/maps/level4/pure_text_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..e5c092e488e71a47096b5bf46f8a6509108460d6 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/46 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/47 b/blocks/task2/maps/level4/pure_text_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..df6e0091671f4f8e905b1d5e601f85a7d6beb522 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/47 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/48 b/blocks/task2/maps/level4/pure_text_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..87d8444955623da413170ba06a759caf85a4455d --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/48 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, green block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/49 b/blocks/task2/maps/level4/pure_text_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..88c5e2a03cc533a5b30990058023f9bca670ec2a --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/49 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/5 b/blocks/task2/maps/level4/pure_text_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..3a4cce9dee06f2705c200b3b92d343dae46c82b6 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/5 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/50 b/blocks/task2/maps/level4/pure_text_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..d5f13f0c0b80ad5df43a7a0e9bd56127af79273f --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/50 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/51 b/blocks/task2/maps/level4/pure_text_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..9560c5e6e37ceacf06c78fbad0f695dd37114f8a --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/51 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/52 b/blocks/task2/maps/level4/pure_text_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..184951fd521fd994cbde76536480be06a96cda2e --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/52 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/53 b/blocks/task2/maps/level4/pure_text_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..f5e5b5785b27c7376038fad44f2e8371a1d992e2 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/53 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/54 b/blocks/task2/maps/level4/pure_text_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..b9b3f5c62fca7daa9862e17fffb6b7fc166b997c --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/54 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, red block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/55 b/blocks/task2/maps/level4/pure_text_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..a5988042d98050f65de2d045bc99d1ca027d3e2c --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/55 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/56 b/blocks/task2/maps/level4/pure_text_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..563f0892978df0ee191efe30b4f7ad69fd0ad367 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/56 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/57 b/blocks/task2/maps/level4/pure_text_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..c2f41d7ecdfdf577d46f286bb01d94fa4f5976f8 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/57 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/58 b/blocks/task2/maps/level4/pure_text_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..0258131c57c83dcc162adb35b900acda3c1982e0 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/58 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/59 b/blocks/task2/maps/level4/pure_text_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..cec5040964151030ac76b3780719bea36cc525b3 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/59 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/6 b/blocks/task2/maps/level4/pure_text_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..b969e972b5f4994a1c45e261924bba26758c90b5 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/6 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/60 b/blocks/task2/maps/level4/pure_text_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..fbe508c7ec05c38951e63d9f30526bbefc3ab04c --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/60 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/61 b/blocks/task2/maps/level4/pure_text_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..1568f051db8d779d55aa8d4699553a36ab390ce4 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/61 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/62 b/blocks/task2/maps/level4/pure_text_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..f37e15e543ec8dfa34286238e9b1694b0a15fb26 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/62 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/63 b/blocks/task2/maps/level4/pure_text_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..4ed7553d2ce3798e56bb5eb3291b1cd9e7b515a0 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/63 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/64 b/blocks/task2/maps/level4/pure_text_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..f1e73c0d219b422c155735cdbba5e67252f0a711 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/64 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/65 b/blocks/task2/maps/level4/pure_text_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..bfb31d842f1036c8ddc2fd5e8a0f3eeaa137d10a --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/65 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/66 b/blocks/task2/maps/level4/pure_text_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..a5fec3cc31c0830f9f3b1262176eafefc9e6ce08 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/66 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/67 b/blocks/task2/maps/level4/pure_text_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..92441a360c90bb8b67167b4052e6e6ec3823e75c --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/67 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/68 b/blocks/task2/maps/level4/pure_text_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..af5418343de9fa2f4a9cb542c21444fda0c7515d --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/68 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/69 b/blocks/task2/maps/level4/pure_text_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..5108483eb8a3b5e6085317a5079b7d8d7e518c05 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/69 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, green block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/7 b/blocks/task2/maps/level4/pure_text_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..0cb89a5ccfb750f5d37dcd399491c4cf4d5e5084 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/7 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/70 b/blocks/task2/maps/level4/pure_text_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..1c1f3f9fa4f8b4d36157936060b6b3473fa5081b --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/70 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/71 b/blocks/task2/maps/level4/pure_text_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..673dadd27daf1fc2bdd0f051f8f7651aa268bb49 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/71 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/72 b/blocks/task2/maps/level4/pure_text_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..ed73620bfb1983596da50bad5db352d62b54084f --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/72 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/73 b/blocks/task2/maps/level4/pure_text_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..d9bff3f7ba9e7f7c87a7d3be3caa80111deccb47 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/73 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/74 b/blocks/task2/maps/level4/pure_text_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..fc13c28b9feb42ef960d6c659475cf7a072727dc --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/74 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/75 b/blocks/task2/maps/level4/pure_text_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..a3cc2befdc43297a7831005defaf64926680f2c4 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/75 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/76 b/blocks/task2/maps/level4/pure_text_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..c25a5cd8dd47d25cc82b70114967a13a6b2d512d --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/76 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/77 b/blocks/task2/maps/level4/pure_text_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..43a303ede5174634e9ae003f39344c77bacacd69 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/77 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/78 b/blocks/task2/maps/level4/pure_text_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..6e61f5ef5446d86539faa82bdb274abb0a112a93 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/78 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/79 b/blocks/task2/maps/level4/pure_text_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..932d185ecdcab8cc5b31a8c97d24d2912a60d9ef --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/79 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/8 b/blocks/task2/maps/level4/pure_text_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..134059ecff247a8ab3d6e501a7c98c341725b26f --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/8 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/80 b/blocks/task2/maps/level4/pure_text_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..da2c820e1398ec297883d2eea4cbb4553ca8fb1b --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/80 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/81 b/blocks/task2/maps/level4/pure_text_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..39aa29c03d1e83b6e7a262b212e538ae58e4244c --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/81 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/82 b/blocks/task2/maps/level4/pure_text_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..f1e73c0d219b422c155735cdbba5e67252f0a711 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/82 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/83 b/blocks/task2/maps/level4/pure_text_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..53ffb223da257f2af0b29ff7c38c5730223be197 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/83 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/84 b/blocks/task2/maps/level4/pure_text_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..3bd8aa265e4e641ff22879773faf059bef07ef90 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/84 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/85 b/blocks/task2/maps/level4/pure_text_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..c572c7be28c96a831d828a057f4fde301c942aee --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/85 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, red block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/86 b/blocks/task2/maps/level4/pure_text_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..fbeb0fdd91970ad029afeabc607629a5a1769130 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/86 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/87 b/blocks/task2/maps/level4/pure_text_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..d77e1bbef8aa1c1ed889ae6072f0ac043ce522a2 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/87 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, green block, red block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/88 b/blocks/task2/maps/level4/pure_text_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..ceb6dd87ad460808e19e84bdf5dc76e82302c0b8 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/88 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/89 b/blocks/task2/maps/level4/pure_text_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..6bafe3fa98ee8a01e500b7236d15a7e288a7d10b --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/89 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/9 b/blocks/task2/maps/level4/pure_text_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..47a87e1ae67abe6e064d31640a254a541181812f --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/9 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/90 b/blocks/task2/maps/level4/pure_text_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..68934a80a60825acab569bad48273e39297e4671 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/90 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/91 b/blocks/task2/maps/level4/pure_text_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..6f71ccaee69e1ae28b866a1bcb155d94feedf1da --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/91 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/92 b/blocks/task2/maps/level4/pure_text_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..3af67b237efb9d0747a2da3c270533640de13385 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/92 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/93 b/blocks/task2/maps/level4/pure_text_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..e2e4d909df1537c214a04c398c4df1f9a66710ce --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/93 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/94 b/blocks/task2/maps/level4/pure_text_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..0257bedeae4d162ca9f8dd3fda1972928e6c3515 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/94 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/95 b/blocks/task2/maps/level4/pure_text_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..3b4abd4675e7c030f9a2777357f8453739c3fabe --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/95 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/96 b/blocks/task2/maps/level4/pure_text_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..0992d348c0fcdc0355d06cac1d16e98bfa0c2e26 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/96 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/97 b/blocks/task2/maps/level4/pure_text_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..aff12b9dfa8b9a76e89b5b41666291adacc1b8c5 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/97 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/98 b/blocks/task2/maps/level4/pure_text_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..efc3ee11f0b61e9fa68f6cd87ec74db5383b2602 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/98 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level4/pure_text_rep_input/99 b/blocks/task2/maps/level4/pure_text_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..e4a1f2613912a813ff4563ca0b43a809df50dbe3 --- /dev/null +++ b/blocks/task2/maps/level4/pure_text_rep_input/99 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level4/table_rep_input/0 b/blocks/task2/maps/level4/table_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..67c6950a48a88f0753bbb6ec75c86b1e7717f3cc --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/0 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | green | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/1 b/blocks/task2/maps/level4/table_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..c5ca2aebce36bcd3fc3cece23ee5a2e0bf6e99c0 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/1 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/10 b/blocks/task2/maps/level4/table_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..6cf2e72ed9319e9ee8df3592cfdda6b02eefad45 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/10 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/11 b/blocks/task2/maps/level4/table_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..e0eeceb0bb5a68942ea341cb4377cfe013fbaaff --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/11 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | green | +Level 1 | blue | red | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/12 b/blocks/task2/maps/level4/table_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..8c0462bc50c827161e662ef574631c49459226c6 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/12 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | orange | red | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/13 b/blocks/task2/maps/level4/table_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..199af6218429bad1942df5e41c3d2561768184a3 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/13 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | yellow | orange | green | diff --git a/blocks/task2/maps/level4/table_rep_input/14 b/blocks/task2/maps/level4/table_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..aed11afc613cd6d9e94893df0edf81f44474e118 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/14 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level4/table_rep_input/15 b/blocks/task2/maps/level4/table_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..a2d9fcb49a5e520798b879d3bd8c64907821381d --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/15 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | purple | +Level 1 | green | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/16 b/blocks/task2/maps/level4/table_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..e93d898a766145c5bfe0b6f2eeecf2bcba1c6260 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/16 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | orange | purple | red | diff --git a/blocks/task2/maps/level4/table_rep_input/17 b/blocks/task2/maps/level4/table_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..d316bec849a770b4d423902e83f0676deb0e557b --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/17 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | green | +Level 1 | yellow | orange | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/18 b/blocks/task2/maps/level4/table_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..985d7ed2b8ec5423244dcf3e9ed7e530172c54ed --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/18 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/19 b/blocks/task2/maps/level4/table_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..3f2054494d0d86a0936a9e3f35129eb1031a5af5 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/19 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | blue | red | green | diff --git a/blocks/task2/maps/level4/table_rep_input/2 b/blocks/task2/maps/level4/table_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..b9f526a5144e156d7e13115a932b9d448ee6cbe0 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/2 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | orange | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level4/table_rep_input/20 b/blocks/task2/maps/level4/table_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..aed11afc613cd6d9e94893df0edf81f44474e118 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/20 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level4/table_rep_input/21 b/blocks/task2/maps/level4/table_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..ca73136fcbed5a5b50f66526b0a2b63580a50a77 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/21 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | red | +Level 1 | green | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/22 b/blocks/task2/maps/level4/table_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..d5625b8e57058ace233f70108e6e620296983110 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/22 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/23 b/blocks/task2/maps/level4/table_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..23eeccc27c8365b8628d025e9b4f53e18dde9203 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/23 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | blue | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level4/table_rep_input/24 b/blocks/task2/maps/level4/table_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..b5aed0fe5949bb0c1ba6ae0d232de297807b8273 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/24 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | red | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/25 b/blocks/task2/maps/level4/table_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..22ad42504fc120c6afdc5f9aae955e2b1b9181f4 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/25 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | purple | +Level 1 | yellow | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/26 b/blocks/task2/maps/level4/table_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..3058ea5b24ea5f3717ec826e38ee00dd0df8f15c --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/26 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | red | +Level 1 | blue | orange | green | diff --git a/blocks/task2/maps/level4/table_rep_input/27 b/blocks/task2/maps/level4/table_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..0530707ac531cc419718ceb33e51578c0b369ff0 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/27 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | purple | red | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/28 b/blocks/task2/maps/level4/table_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..7c9f3945ee9f211ddcca1d27e2ce0f69e04a1de3 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/28 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | green | +Level 1 | blue | red | diff --git a/blocks/task2/maps/level4/table_rep_input/29 b/blocks/task2/maps/level4/table_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..f5d93fbb4e2aa645134a1a8bc561937a6418a4cd --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/29 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | red | +Level 1 | yellow | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/3 b/blocks/task2/maps/level4/table_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..d21b10ad3809f327553f6d464a92e2e4cd35965a --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/3 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | red | purple | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/30 b/blocks/task2/maps/level4/table_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..89b0d04850135baabbc58dd02da3e75ba6cefb88 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/30 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/31 b/blocks/task2/maps/level4/table_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..2091129eff1823678345d6fd8a00b6707fdb50b5 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/31 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | green | +Level 1 | red | purple | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/32 b/blocks/task2/maps/level4/table_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..5edacb14fec9e7373c2a9aef165df02adcb48678 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/32 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | red | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/33 b/blocks/task2/maps/level4/table_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..a081fc798228b18ac90348980eec931f7a1aa6dc --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/33 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | green | red | diff --git a/blocks/task2/maps/level4/table_rep_input/34 b/blocks/task2/maps/level4/table_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..384263f06fe4d765588d3bd8b0b3678f20139c1b --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/34 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | blue | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/35 b/blocks/task2/maps/level4/table_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..5370a266543d36db515a3b324a45c47f50ab38c7 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/35 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | red | +Level 1 | yellow | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/36 b/blocks/task2/maps/level4/table_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..f64f33c8c1b913374ffaef33472c8dfc4929651d --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/36 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | orange | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/37 b/blocks/task2/maps/level4/table_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..cbd62af2411c5f047344ced1a1792386394cd1dd --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/37 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | purple | +Level 1 | orange | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/38 b/blocks/task2/maps/level4/table_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..c4f542e252ab0dbc289d6db6099340a608b61f5a --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/38 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | orange | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/39 b/blocks/task2/maps/level4/table_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..b16c37771164b30b480b2e5b3b7e06df009e555d --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/39 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/4 b/blocks/task2/maps/level4/table_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..672e558f44a1161e63bc15981b34a69e6e88329c --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/4 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | blue | +Level 1 | red | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/40 b/blocks/task2/maps/level4/table_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..41be237491c4c15fdc23a5ce9d5336690f60d8c6 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/40 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/41 b/blocks/task2/maps/level4/table_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..c689da4bc3805403c3923c065c81bad87bcd9b9e --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/41 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level4/table_rep_input/42 b/blocks/task2/maps/level4/table_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..538c475632a0bddfea47183f8a1397907e2d30f4 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/42 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | green | blue | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/43 b/blocks/task2/maps/level4/table_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..1b4b87989a9aef296b7bf5b8a3beb6d7c4490229 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/43 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | purple | green | diff --git a/blocks/task2/maps/level4/table_rep_input/44 b/blocks/task2/maps/level4/table_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..ceb2071897a9eb8f8d663ee567a8bff696161f46 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/44 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/45 b/blocks/task2/maps/level4/table_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..0ba37490a6b4a8835823e0a41c618fac5724ef56 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/45 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | green | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/46 b/blocks/task2/maps/level4/table_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..ecb6983351fcba0a5d5ecb6ccbd99d06026f32c4 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/46 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | red | +Level 1 | blue | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/47 b/blocks/task2/maps/level4/table_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..5925ad8948d5a41e6ea72c7fab97e78b317dbf98 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/47 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | green | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/48 b/blocks/task2/maps/level4/table_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..98e36b6c5f6187e975cb096f7daa3d0f8d01ee93 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/48 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | blue | red | diff --git a/blocks/task2/maps/level4/table_rep_input/49 b/blocks/task2/maps/level4/table_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..0c883fd2f9ef00c670e279c805aa960965e9e267 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/49 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | red | +Level 1 | blue | green | diff --git a/blocks/task2/maps/level4/table_rep_input/5 b/blocks/task2/maps/level4/table_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..26d709f4e1b0bbdaebd9ec9e9630f3d1c6222bcd --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/5 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | red | yellow | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/50 b/blocks/task2/maps/level4/table_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..2a7146ca2be64bb0fa087702b2e7234068197b4d --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/50 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | red | green | diff --git a/blocks/task2/maps/level4/table_rep_input/51 b/blocks/task2/maps/level4/table_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..9bec191de427ebd01f3ae93b96363331157ca894 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/51 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | yellow | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/52 b/blocks/task2/maps/level4/table_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..3aa388c233e8b725ad5586a22b55cc2a6711c0a1 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/52 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | red | +Level 1 | yellow | orange | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/53 b/blocks/task2/maps/level4/table_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..7306e70a8dfd3476376df53e49569cef5b362600 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/53 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | yellow | blue | green | diff --git a/blocks/task2/maps/level4/table_rep_input/54 b/blocks/task2/maps/level4/table_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..dc76213e82f96993ed88ae4b126063b5c12f9820 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/54 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | red | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/55 b/blocks/task2/maps/level4/table_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..c5ca2aebce36bcd3fc3cece23ee5a2e0bf6e99c0 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/55 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/56 b/blocks/task2/maps/level4/table_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..8e1c4259f39516bc0f3ec648fa09671860b98ac0 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/56 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | blue | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/57 b/blocks/task2/maps/level4/table_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..fcb72b820af4b4258150bf01116cd6baf4d0e59e --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/57 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | red | green | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/58 b/blocks/task2/maps/level4/table_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..cff08faf77d0e6d900863a8c20022f906cde3a9b --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/58 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | blue | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/59 b/blocks/task2/maps/level4/table_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..8affb05c89eb7646ca49c70459651abc7381f317 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/59 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | purple | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/6 b/blocks/task2/maps/level4/table_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..944962bcc089a1198b9374dbecdd0d3ee44c20c3 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/6 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | yellow | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/60 b/blocks/task2/maps/level4/table_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..d217fd20da856393181f2f83a3e6a48dae7faf3a --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/60 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | red | +Level 1 | orange | green | diff --git a/blocks/task2/maps/level4/table_rep_input/61 b/blocks/task2/maps/level4/table_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..463a62b1e62cdd38b96fdc719077484449a6b471 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/61 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | yellow | red | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/62 b/blocks/task2/maps/level4/table_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..9079df9c5ad85cdb3e30ec0d2e75ff00828750f8 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/62 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/63 b/blocks/task2/maps/level4/table_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..c8b5a633e2006d2171762fe99f7fa739682128ba --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/63 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | yellow | red | diff --git a/blocks/task2/maps/level4/table_rep_input/64 b/blocks/task2/maps/level4/table_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..5ee8a91cf7538453e11e622eca69b8a19b6fc9f2 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/64 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | yellow | +Level 1 | green | orange | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/65 b/blocks/task2/maps/level4/table_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..75c1abc7b274069f386f49a5fa05815c682a862b --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/65 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | purple | green | diff --git a/blocks/task2/maps/level4/table_rep_input/66 b/blocks/task2/maps/level4/table_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..b5184fd7a1e40024b02d794b5b839d9c9925b157 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/66 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | purple | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level4/table_rep_input/67 b/blocks/task2/maps/level4/table_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..39718eb5c300404180bde40995796828dc53116c --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/67 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | green | red | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/68 b/blocks/task2/maps/level4/table_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..31dc349a3170d34b3cc985d813e98b0094f495e0 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/68 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | green | yellow | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/69 b/blocks/task2/maps/level4/table_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..83b64c292b6a90e2c11039189d21741097156c17 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/69 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | red | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/7 b/blocks/task2/maps/level4/table_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..0e439c35123cd49f50d5eb02a0cd1d13e76b4603 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/7 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | red | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/70 b/blocks/task2/maps/level4/table_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..5185337d99d5247ae326f3860cb003498f018230 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/70 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | red | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/71 b/blocks/task2/maps/level4/table_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..36156d71d590438eba056e51c737f8d698acd713 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/71 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | red | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/72 b/blocks/task2/maps/level4/table_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..3355da60edc2440d7db17ec33aaf14581d373cd0 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/72 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | purple | +Level 1 | yellow | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/73 b/blocks/task2/maps/level4/table_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..f2ddffdeec261bb814ebf1314fdb8481cf4aaa22 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/73 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | purple | +Level 1 | green | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/74 b/blocks/task2/maps/level4/table_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..73aff6918fb2eac2813187395192073bcb8ebc13 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/74 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/75 b/blocks/task2/maps/level4/table_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..1c6131d483fb2f5905dd338a93acf9e6b605abff --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/75 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | yellow | purple | green | diff --git a/blocks/task2/maps/level4/table_rep_input/76 b/blocks/task2/maps/level4/table_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..fb733e60d670ab7f5790a5aad4c5e60589026156 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/76 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | blue | red | diff --git a/blocks/task2/maps/level4/table_rep_input/77 b/blocks/task2/maps/level4/table_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..fb55f0645dc0489f7ca23d3c2973972842d39790 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/77 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | orange | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/78 b/blocks/task2/maps/level4/table_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..1d590de17422ba20d5415ab6b305571d655a0550 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/78 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | purple | +Level 1 | green | red | diff --git a/blocks/task2/maps/level4/table_rep_input/79 b/blocks/task2/maps/level4/table_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..16b9e8b5e3351ec43edd548490e0bf2ee6a9dfba --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/79 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | yellow | +Level 1 | purple | green | red | diff --git a/blocks/task2/maps/level4/table_rep_input/8 b/blocks/task2/maps/level4/table_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..6d9213c0159d387ca173791cb235d5b25ed1a110 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/8 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | red | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level4/table_rep_input/80 b/blocks/task2/maps/level4/table_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..cbc35b03c78d8f9c99f61b52d340e5a928b5b444 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/80 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/81 b/blocks/task2/maps/level4/table_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..ebb34d35121a9ab2914754a0b3419a7215abcfe9 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/81 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | purple | +Level 1 | blue | green | diff --git a/blocks/task2/maps/level4/table_rep_input/82 b/blocks/task2/maps/level4/table_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..5ee8a91cf7538453e11e622eca69b8a19b6fc9f2 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/82 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | yellow | +Level 1 | green | orange | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/83 b/blocks/task2/maps/level4/table_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..f6f7f504a5b2b41a9fb7ff697a159ab8ed8b9948 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/83 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/84 b/blocks/task2/maps/level4/table_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..a90532444e373ac43ac859edb71fb7ce030105db --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/84 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | yellow | red | green | diff --git a/blocks/task2/maps/level4/table_rep_input/85 b/blocks/task2/maps/level4/table_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..09e100ebdf1e9d5b2c19bec72992e3c67a206175 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/85 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/86 b/blocks/task2/maps/level4/table_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..4c1867d33f9c1901c104316b5f95beefcefc870b --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/86 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | green | purple | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/87 b/blocks/task2/maps/level4/table_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..26483407c400c678a101b053eccf77fca02038fa --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/87 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | green | +Level 1 | yellow | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/88 b/blocks/task2/maps/level4/table_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..1ab6612895af443d3394b6e3f67addc91ff35a8b --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/88 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | blue | orange | red | diff --git a/blocks/task2/maps/level4/table_rep_input/89 b/blocks/task2/maps/level4/table_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..a081fc798228b18ac90348980eec931f7a1aa6dc --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/89 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | green | red | diff --git a/blocks/task2/maps/level4/table_rep_input/9 b/blocks/task2/maps/level4/table_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..729b7c74f69c8a9434e1529c9c30021f1b77d76b --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/9 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | green | +Level 1 | red | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/90 b/blocks/task2/maps/level4/table_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..ad6de8e1a49ea93edd6eb6160a248bc10a2807b9 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/90 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/91 b/blocks/task2/maps/level4/table_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..baec94bf8321e9596c7dafd55c741be7eb356263 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/91 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/92 b/blocks/task2/maps/level4/table_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..1b4b87989a9aef296b7bf5b8a3beb6d7c4490229 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/92 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | purple | green | diff --git a/blocks/task2/maps/level4/table_rep_input/93 b/blocks/task2/maps/level4/table_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..7389fc05cb227397f246df1fdeb88562fc351e18 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/93 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | blue | +Level 1 | orange | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/94 b/blocks/task2/maps/level4/table_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..291d2198d08cf110922a0293678663d0f5a9fe84 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/94 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | red | blue | green | diff --git a/blocks/task2/maps/level4/table_rep_input/95 b/blocks/task2/maps/level4/table_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..384263f06fe4d765588d3bd8b0b3678f20139c1b --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/95 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | blue | orange | diff --git a/blocks/task2/maps/level4/table_rep_input/96 b/blocks/task2/maps/level4/table_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..44a65c51062aa00a5cb445ee9a0fee31bff7de5d --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/96 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | orange | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level4/table_rep_input/97 b/blocks/task2/maps/level4/table_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..ed5a7016efb52af1471d0376786913e0d1a61a99 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/97 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | red | green | yellow | diff --git a/blocks/task2/maps/level4/table_rep_input/98 b/blocks/task2/maps/level4/table_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..5edacb14fec9e7373c2a9aef165df02adcb48678 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/98 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | red | blue | diff --git a/blocks/task2/maps/level4/table_rep_input/99 b/blocks/task2/maps/level4/table_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..07f9b4f48e2c0598923360e8b9380804a7aa2840 --- /dev/null +++ b/blocks/task2/maps/level4/table_rep_input/99 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | green | blue | diff --git a/blocks/task2/maps/level4/text_input/0.txt b/blocks/task2/maps/level4/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec0c1d6a3d4c200252cb983bd69e5a95c53dc7ad --- /dev/null +++ b/blocks/task2/maps/level4/text_input/0.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the yellow block? +(A) The red block is directly above the yellow block, and they are in the same stack. +(B) The red block is directly below the yellow block, and they are in the same stack. +(C) The red block and the yellow block are at different stacks. +(D) At least one of the red block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/1.txt b/blocks/task2/maps/level4/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/1.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/10.txt b/blocks/task2/maps/level4/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/10.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/11.txt b/blocks/task2/maps/level4/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/11.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/12.txt b/blocks/task2/maps/level4/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..11d6986d2c290c1b5baa3551a51f82c68e61cc32 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/12.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the green block? +(A) The yellow block is directly above the green block, and they are in the same stack. +(B) The yellow block is directly below the green block, and they are in the same stack. +(C) The yellow block and the green block are at different stacks. +(D) At least one of the yellow block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/13.txt b/blocks/task2/maps/level4/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/13.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/14.txt b/blocks/task2/maps/level4/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level4/text_input/14.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/15.txt b/blocks/task2/maps/level4/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..4da8bff3c432abc5eaf0b5b6d3ddd96a9354e65c --- /dev/null +++ b/blocks/task2/maps/level4/text_input/15.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the orange block? +(A) The purple block is directly above the orange block, and they are in the same stack. +(B) The purple block is directly below the orange block, and they are in the same stack. +(C) The purple block and the orange block are at different stacks. +(D) At least one of the purple block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/16.txt b/blocks/task2/maps/level4/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/16.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/17.txt b/blocks/task2/maps/level4/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..c922db8beeba3fe2cfe562c9272632eb022efb88 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/17.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the blue block? +(A) The green block is directly above the blue block, and they are in the same stack. +(B) The green block is directly below the blue block, and they are in the same stack. +(C) The green block and the blue block are at different stacks. +(D) At least one of the green block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/18.txt b/blocks/task2/maps/level4/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/18.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/19.txt b/blocks/task2/maps/level4/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level4/text_input/19.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/2.txt b/blocks/task2/maps/level4/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level4/text_input/2.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/20.txt b/blocks/task2/maps/level4/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level4/text_input/20.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/21.txt b/blocks/task2/maps/level4/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/21.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/22.txt b/blocks/task2/maps/level4/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level4/text_input/22.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/23.txt b/blocks/task2/maps/level4/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/23.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/24.txt b/blocks/task2/maps/level4/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level4/text_input/24.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/25.txt b/blocks/task2/maps/level4/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level4/text_input/25.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/26.txt b/blocks/task2/maps/level4/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level4/text_input/26.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/27.txt b/blocks/task2/maps/level4/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level4/text_input/27.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/28.txt b/blocks/task2/maps/level4/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a3fe4a28186816a694e0528c8c174daac9ac1d --- /dev/null +++ b/blocks/task2/maps/level4/text_input/28.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the red block? +(A) The blue block is directly above the red block, and they are in the same stack. +(B) The blue block is directly below the red block, and they are in the same stack. +(C) The blue block and the red block are at different stacks. +(D) At least one of the blue block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/29.txt b/blocks/task2/maps/level4/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/29.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/3.txt b/blocks/task2/maps/level4/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/3.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/30.txt b/blocks/task2/maps/level4/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level4/text_input/30.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/31.txt b/blocks/task2/maps/level4/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level4/text_input/31.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/32.txt b/blocks/task2/maps/level4/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/32.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/33.txt b/blocks/task2/maps/level4/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level4/text_input/33.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/34.txt b/blocks/task2/maps/level4/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/34.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/35.txt b/blocks/task2/maps/level4/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level4/text_input/35.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/36.txt b/blocks/task2/maps/level4/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d6f2225bb3a95f77d5223214ee63ede0ea4580a --- /dev/null +++ b/blocks/task2/maps/level4/text_input/36.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the blue block? +(A) The red block is directly above the blue block, and they are in the same stack. +(B) The red block is directly below the blue block, and they are in the same stack. +(C) The red block and the blue block are at different stacks. +(D) At least one of the red block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/37.txt b/blocks/task2/maps/level4/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/37.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/38.txt b/blocks/task2/maps/level4/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/38.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/39.txt b/blocks/task2/maps/level4/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/39.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/4.txt b/blocks/task2/maps/level4/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/4.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/40.txt b/blocks/task2/maps/level4/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/40.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/41.txt b/blocks/task2/maps/level4/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level4/text_input/41.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/42.txt b/blocks/task2/maps/level4/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/42.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/43.txt b/blocks/task2/maps/level4/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level4/text_input/43.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/44.txt b/blocks/task2/maps/level4/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/44.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/45.txt b/blocks/task2/maps/level4/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/45.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/46.txt b/blocks/task2/maps/level4/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/46.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/47.txt b/blocks/task2/maps/level4/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/47.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/48.txt b/blocks/task2/maps/level4/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/48.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/49.txt b/blocks/task2/maps/level4/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..c922db8beeba3fe2cfe562c9272632eb022efb88 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/49.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the blue block? +(A) The green block is directly above the blue block, and they are in the same stack. +(B) The green block is directly below the blue block, and they are in the same stack. +(C) The green block and the blue block are at different stacks. +(D) At least one of the green block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/5.txt b/blocks/task2/maps/level4/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4da8bff3c432abc5eaf0b5b6d3ddd96a9354e65c --- /dev/null +++ b/blocks/task2/maps/level4/text_input/5.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the orange block? +(A) The purple block is directly above the orange block, and they are in the same stack. +(B) The purple block is directly below the orange block, and they are in the same stack. +(C) The purple block and the orange block are at different stacks. +(D) At least one of the purple block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/50.txt b/blocks/task2/maps/level4/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a3fe4a28186816a694e0528c8c174daac9ac1d --- /dev/null +++ b/blocks/task2/maps/level4/text_input/50.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the red block? +(A) The blue block is directly above the red block, and they are in the same stack. +(B) The blue block is directly below the red block, and they are in the same stack. +(C) The blue block and the red block are at different stacks. +(D) At least one of the blue block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/51.txt b/blocks/task2/maps/level4/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d6f2225bb3a95f77d5223214ee63ede0ea4580a --- /dev/null +++ b/blocks/task2/maps/level4/text_input/51.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the blue block? +(A) The red block is directly above the blue block, and they are in the same stack. +(B) The red block is directly below the blue block, and they are in the same stack. +(C) The red block and the blue block are at different stacks. +(D) At least one of the red block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/52.txt b/blocks/task2/maps/level4/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/52.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/53.txt b/blocks/task2/maps/level4/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/53.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/54.txt b/blocks/task2/maps/level4/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/54.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/55.txt b/blocks/task2/maps/level4/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a3fe4a28186816a694e0528c8c174daac9ac1d --- /dev/null +++ b/blocks/task2/maps/level4/text_input/55.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the red block? +(A) The blue block is directly above the red block, and they are in the same stack. +(B) The blue block is directly below the red block, and they are in the same stack. +(C) The blue block and the red block are at different stacks. +(D) At least one of the blue block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/56.txt b/blocks/task2/maps/level4/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level4/text_input/56.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/57.txt b/blocks/task2/maps/level4/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..4da8bff3c432abc5eaf0b5b6d3ddd96a9354e65c --- /dev/null +++ b/blocks/task2/maps/level4/text_input/57.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the orange block? +(A) The purple block is directly above the orange block, and they are in the same stack. +(B) The purple block is directly below the orange block, and they are in the same stack. +(C) The purple block and the orange block are at different stacks. +(D) At least one of the purple block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/58.txt b/blocks/task2/maps/level4/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level4/text_input/58.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/59.txt b/blocks/task2/maps/level4/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..276bb7c4238204a1a0e17a7894b3d0fcfeef81b2 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/59.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the orange block? +(A) The red block is directly above the orange block, and they are in the same stack. +(B) The red block is directly below the orange block, and they are in the same stack. +(C) The red block and the orange block are at different stacks. +(D) At least one of the red block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/6.txt b/blocks/task2/maps/level4/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/6.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/60.txt b/blocks/task2/maps/level4/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/60.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/61.txt b/blocks/task2/maps/level4/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/61.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/62.txt b/blocks/task2/maps/level4/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/62.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/63.txt b/blocks/task2/maps/level4/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level4/text_input/63.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/64.txt b/blocks/task2/maps/level4/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level4/text_input/64.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/65.txt b/blocks/task2/maps/level4/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/65.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/66.txt b/blocks/task2/maps/level4/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/66.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/67.txt b/blocks/task2/maps/level4/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/67.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/68.txt b/blocks/task2/maps/level4/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/68.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/69.txt b/blocks/task2/maps/level4/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/69.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/7.txt b/blocks/task2/maps/level4/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/7.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/70.txt b/blocks/task2/maps/level4/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/70.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/71.txt b/blocks/task2/maps/level4/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/71.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/72.txt b/blocks/task2/maps/level4/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/72.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/73.txt b/blocks/task2/maps/level4/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level4/text_input/73.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/74.txt b/blocks/task2/maps/level4/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..35555537fc7c65dc91e4506b889f94e90930d613 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/74.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the green block? +(A) The purple block is directly above the green block, and they are in the same stack. +(B) The purple block is directly below the green block, and they are in the same stack. +(C) The purple block and the green block are at different stacks. +(D) At least one of the purple block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/75.txt b/blocks/task2/maps/level4/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level4/text_input/75.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/76.txt b/blocks/task2/maps/level4/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level4/text_input/76.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/77.txt b/blocks/task2/maps/level4/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/77.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/78.txt b/blocks/task2/maps/level4/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/78.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/79.txt b/blocks/task2/maps/level4/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/79.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/8.txt b/blocks/task2/maps/level4/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level4/text_input/8.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/80.txt b/blocks/task2/maps/level4/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level4/text_input/80.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/81.txt b/blocks/task2/maps/level4/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level4/text_input/81.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/82.txt b/blocks/task2/maps/level4/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level4/text_input/82.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/83.txt b/blocks/task2/maps/level4/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8bddd612c20ad308f45b4b66bb0323ee4fea686 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/83.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the red block? +(A) The yellow block is directly above the red block, and they are in the same stack. +(B) The yellow block is directly below the red block, and they are in the same stack. +(C) The yellow block and the red block are at different stacks. +(D) At least one of the yellow block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/84.txt b/blocks/task2/maps/level4/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/84.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/85.txt b/blocks/task2/maps/level4/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/85.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/86.txt b/blocks/task2/maps/level4/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level4/text_input/86.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/87.txt b/blocks/task2/maps/level4/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/87.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/88.txt b/blocks/task2/maps/level4/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/88.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/89.txt b/blocks/task2/maps/level4/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a3fe4a28186816a694e0528c8c174daac9ac1d --- /dev/null +++ b/blocks/task2/maps/level4/text_input/89.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the red block? +(A) The blue block is directly above the red block, and they are in the same stack. +(B) The blue block is directly below the red block, and they are in the same stack. +(C) The blue block and the red block are at different stacks. +(D) At least one of the blue block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/9.txt b/blocks/task2/maps/level4/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level4/text_input/9.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/90.txt b/blocks/task2/maps/level4/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..35555537fc7c65dc91e4506b889f94e90930d613 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/90.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the green block? +(A) The purple block is directly above the green block, and they are in the same stack. +(B) The purple block is directly below the green block, and they are in the same stack. +(C) The purple block and the green block are at different stacks. +(D) At least one of the purple block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/91.txt b/blocks/task2/maps/level4/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/91.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/92.txt b/blocks/task2/maps/level4/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level4/text_input/92.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/93.txt b/blocks/task2/maps/level4/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/93.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/94.txt b/blocks/task2/maps/level4/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/94.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/95.txt b/blocks/task2/maps/level4/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level4/text_input/95.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/96.txt b/blocks/task2/maps/level4/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level4/text_input/96.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/97.txt b/blocks/task2/maps/level4/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/97.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/98.txt b/blocks/task2/maps/level4/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..e75bfe0c928e64ceff34dbb15cb213dc22b66564 --- /dev/null +++ b/blocks/task2/maps/level4/text_input/98.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the green block? +(A) The orange block is directly above the green block, and they are in the same stack. +(B) The orange block is directly below the green block, and they are in the same stack. +(C) The orange block and the green block are at different stacks. +(D) At least one of the orange block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level4/text_input/99.txt b/blocks/task2/maps/level4/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level4/text_input/99.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/annotation.txt b/blocks/task2/maps/level5/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dd37cdeb1b9640b1f8732d210c1d9daa86778b8 --- /dev/null +++ b/blocks/task2/maps/level5/annotation.txt @@ -0,0 +1,100 @@ +0 +1 +0 +0 +1 +1 +3 +2 +1 +0 +0 +2 +3 +0 +1 +1 +1 +2 +1 +1 +1 +3 +1 +1 +3 +1 +3 +1 +1 +3 +1 +1 +0 +3 +0 +2 +3 +0 +0 +1 +0 +0 +2 +1 +3 +1 +1 +1 +3 +3 +1 +0 +0 +1 +2 +1 +1 +1 +1 +3 +3 +0 +2 +1 +2 +0 +0 +1 +3 +3 +3 +2 +3 +1 +0 +0 +1 +1 +1 +1 +3 +1 +3 +3 +0 +0 +2 +0 +2 +2 +0 +0 +2 +2 +3 +0 +0 +1 +3 +0 diff --git a/blocks/task2/maps/level5/image_input/0.jpg b/blocks/task2/maps/level5/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e6dea767c9004b16aec0c8cb07777292ebc7199 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0ee46a3fc851748c67e04bf6435a33d95642938556fca7507cf43a19e2a9fd +size 11266 diff --git a/blocks/task2/maps/level5/image_input/1.jpg b/blocks/task2/maps/level5/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e4474b13020c145a8fe2762ed38f11bd122ba0e --- /dev/null +++ b/blocks/task2/maps/level5/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d42708954106ca3302a8e1e128658c8bc0d55681edf6af95692449bcc881228 +size 11770 diff --git a/blocks/task2/maps/level5/image_input/10.jpg b/blocks/task2/maps/level5/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cfa220652b7bc2e380c604b385aebfde7019631 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffbef46324d1b6bf63baf1861e53c6d969b09d7cc32fff5ec561c51613bbfc58 +size 11449 diff --git a/blocks/task2/maps/level5/image_input/11.jpg b/blocks/task2/maps/level5/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f361c880340e05d0dd1037adfe1c6362f63024a8 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d15e65a553b5120505145a65442f6bcd4997a5f08fc97865d23dc044a4b91e4 +size 10409 diff --git a/blocks/task2/maps/level5/image_input/12.jpg b/blocks/task2/maps/level5/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4e0d7875f5a2e2d3f7bc179f78933ffd73b5ea9 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af63301aad7b131904d0af8949790b91a8423837e08052f1e6846abdf18400a3 +size 11050 diff --git a/blocks/task2/maps/level5/image_input/13.jpg b/blocks/task2/maps/level5/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16e448eae445e38bada6c40928b0659ac1372b53 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a14758c2b500bc2dee748dcfbd0e8ebb9e96b9d8e9f1205f38b986eec8db6df +size 10239 diff --git a/blocks/task2/maps/level5/image_input/14.jpg b/blocks/task2/maps/level5/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e61e87856dce9fac9ff2337bd157892ef0cf5fdd --- /dev/null +++ b/blocks/task2/maps/level5/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956d7f967b3f04f594915034ab09c8910cc978c292cccf6a2f893311f335e464 +size 10808 diff --git a/blocks/task2/maps/level5/image_input/15.jpg b/blocks/task2/maps/level5/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1ac88e56432468f9e3771025ab02092d6972422 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e2b7f4b323996f04511bb45c0388652704ca914a30c85e1b5f646d5c1efefa +size 10441 diff --git a/blocks/task2/maps/level5/image_input/16.jpg b/blocks/task2/maps/level5/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f071bf79259e3a04a3582fd759741e6cd3d946db --- /dev/null +++ b/blocks/task2/maps/level5/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c011e8d9c691446e7203b6d58bfb8c921ca00b5b66b5c4c5d830c65e66f5a3e3 +size 10132 diff --git a/blocks/task2/maps/level5/image_input/17.jpg b/blocks/task2/maps/level5/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4150190ca6b9a7c24232818041492cb608aaa92a --- /dev/null +++ b/blocks/task2/maps/level5/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b44b2b404726903121ba6d2572e07cc14aad9da7f3ac8a4ade82e4db8156abc +size 10715 diff --git a/blocks/task2/maps/level5/image_input/18.jpg b/blocks/task2/maps/level5/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ce6dd4af5890971b40bfea68d2ba70a392c083d --- /dev/null +++ b/blocks/task2/maps/level5/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8d690fd44c61f431ad48c843d5c55391b86dcda230393da9a068f40fe013c4 +size 10802 diff --git a/blocks/task2/maps/level5/image_input/19.jpg b/blocks/task2/maps/level5/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37854a873d4eb5ebc254e41b3d17a8667fc8a0f1 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6363ad829eea862a37728408f68c7cbcbc3d441c4da02591878264044d070e +size 11197 diff --git a/blocks/task2/maps/level5/image_input/2.jpg b/blocks/task2/maps/level5/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8aadabadc85c185dfc92a2c9ef22f2fc0004837a --- /dev/null +++ b/blocks/task2/maps/level5/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a8d145b7b40fcf7ad4e015138270279ed2fe1f0835f26efc3b1ffef0d25731 +size 9957 diff --git a/blocks/task2/maps/level5/image_input/20.jpg b/blocks/task2/maps/level5/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6c42f65c2f204197fbb8b80b327c14bb10fe600 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc7246f77f2f1b6bbefa948db479d76e6347bb552f1d143ee45b7dab3a9b27d +size 10674 diff --git a/blocks/task2/maps/level5/image_input/21.jpg b/blocks/task2/maps/level5/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..262fa55281c1e9e938cb4364264d1038f7534627 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bd78fdad99831bdaffabbda270518ab74f1e5a94add15385b64471f8f972ce4 +size 10297 diff --git a/blocks/task2/maps/level5/image_input/22.jpg b/blocks/task2/maps/level5/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa0f2ca81ff56fea4ef345c7893a8c4815a8d448 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d61ba53c05f9be57d976bed13b58df9848d22f88241cc9b83e5bd078670ba2 +size 10932 diff --git a/blocks/task2/maps/level5/image_input/23.jpg b/blocks/task2/maps/level5/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f33ddedc54b9e8c73bcec485b683edf5544264d7 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385d5483c8a68b85caed95ce2b878122f9d00bb8858785ec55e712445f280c97 +size 9887 diff --git a/blocks/task2/maps/level5/image_input/24.jpg b/blocks/task2/maps/level5/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c8eb1688fe6f9011f087006a47c2ce400cdad93 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f075f158806f4dddd45aa9aeb075bc20491d3211f41368fe24a1c8ce5f16abe +size 11412 diff --git a/blocks/task2/maps/level5/image_input/25.jpg b/blocks/task2/maps/level5/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bd76cdfe75fa067188faee0e4624a0848396d9d --- /dev/null +++ b/blocks/task2/maps/level5/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fcee02414ae858e5f46913ecdcb43ad3a392f943d970577bbe2b996601a3ed4 +size 10750 diff --git a/blocks/task2/maps/level5/image_input/26.jpg b/blocks/task2/maps/level5/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38ec1266dd2f73781125027b8cf2c4688d308748 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75e4089eed0056925bb93021b6553dea9458dd4eba27a98ed971ffe9ffeee2 +size 10658 diff --git a/blocks/task2/maps/level5/image_input/27.jpg b/blocks/task2/maps/level5/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1f7b6f72e3fb7bf258f71cfe148cdffe97f3dde --- /dev/null +++ b/blocks/task2/maps/level5/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad2fb8f2f38eab029aa349313ff7d560693b12debdb0fab9a0633b7d3c0c5f3 +size 10938 diff --git a/blocks/task2/maps/level5/image_input/28.jpg b/blocks/task2/maps/level5/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1d2cdd97de62155d4f3df9954a8523165cdc5a7 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8370297b913b0ec46efbe92d3ad162f782333adbc9cb510c562b6b520f7542e +size 11033 diff --git a/blocks/task2/maps/level5/image_input/29.jpg b/blocks/task2/maps/level5/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf4a3e0d9b371484a33487983ee892b38bc81f21 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f12d4ad66fa419840ba345906376fc54f2f24457acd09fcf00b4b912fedfcc +size 10003 diff --git a/blocks/task2/maps/level5/image_input/3.jpg b/blocks/task2/maps/level5/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e84ef8e53af036d060a72a6eb413cb6a2e531c0b --- /dev/null +++ b/blocks/task2/maps/level5/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a5e4a18763a3042f8e26e5e5b04c0ecf62749680c63462beb47072b608c7d7 +size 13963 diff --git a/blocks/task2/maps/level5/image_input/30.jpg b/blocks/task2/maps/level5/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1563428db81d156264d65198b654a5e2e46c02dc --- /dev/null +++ b/blocks/task2/maps/level5/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278c23a1bd4a43db87534fa63f5e2ef6848b239d2fee25e7a11c426176125df9 +size 10049 diff --git a/blocks/task2/maps/level5/image_input/31.jpg b/blocks/task2/maps/level5/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dd6522b2d76ea41ec42915509cd8564ab1dadd8 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9fe0192db4f5bb8c8205cb547c7b2d39965b5047903bba3c171affe1a2f86f +size 11536 diff --git a/blocks/task2/maps/level5/image_input/32.jpg b/blocks/task2/maps/level5/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d78d2716480d794e71c0b739fb54fe77a4272d20 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcf98e469e52896d5a1568c3a6fd3418999381172c611f6288cf7257d808979 +size 10664 diff --git a/blocks/task2/maps/level5/image_input/33.jpg b/blocks/task2/maps/level5/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12a3b4e271ec2dbbe768e308475dab558b8222a1 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17145eaf1e1d13c0a74daaf97d658601ad0f313a42dd2e9799751d0c2d488a8c +size 11164 diff --git a/blocks/task2/maps/level5/image_input/34.jpg b/blocks/task2/maps/level5/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d2daf032519fdef7bff1ddf64fae054644d0b00 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b70c51c95330a61ae586c7568c6f91a7161478e1a08fd49ae682ef304eb8d8 +size 10715 diff --git a/blocks/task2/maps/level5/image_input/35.jpg b/blocks/task2/maps/level5/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a464d0f55a555bd8cbba140d8d6260cbe4ae35e --- /dev/null +++ b/blocks/task2/maps/level5/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de17434f7c2ffc06a0de0c0dc9dfe37a78d89d35aa64904828ffc1396733b6ba +size 10803 diff --git a/blocks/task2/maps/level5/image_input/36.jpg b/blocks/task2/maps/level5/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68db1493b8ab7bb0dc3843d8ad626035f7bd11aa --- /dev/null +++ b/blocks/task2/maps/level5/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d559f6a4832f254e5a9233ee81a4046ebe00a54e59c3a051b25efe954d8c0c94 +size 10611 diff --git a/blocks/task2/maps/level5/image_input/37.jpg b/blocks/task2/maps/level5/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fb5f8fabe2e89617fe9c780b2051d98fbc54817 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94dd933002e9baf19a9098b14467385a633a867d2b99c8e971905b4c9b75a86 +size 11182 diff --git a/blocks/task2/maps/level5/image_input/38.jpg b/blocks/task2/maps/level5/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09292b2b30b941b4c76b5f0081a6eeb9d7ba5506 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0cc997c7e437eb43c659c056951710189be68a11549da45f95f80d9f40ba543 +size 11144 diff --git a/blocks/task2/maps/level5/image_input/39.jpg b/blocks/task2/maps/level5/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd26a1da13934b28872b812d142063e127ec6777 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e397ea3d4aaada01b056ea07b216d4a77af1a5565858dd3deef7b6aba249eb +size 10596 diff --git a/blocks/task2/maps/level5/image_input/4.jpg b/blocks/task2/maps/level5/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59d47fbd17bac1eb45a0022f40c72aac05d48a91 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65882b5ef487c071c4b591d705e6d749e884be9eb854e289aa2b202ca2552318 +size 10186 diff --git a/blocks/task2/maps/level5/image_input/40.jpg b/blocks/task2/maps/level5/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c97edc568b3340b1e53753d8b4133e76713ca1d1 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a46e21615710b39a7af594176a69323113d24d73b76ec09092fa2df7dd656e +size 10446 diff --git a/blocks/task2/maps/level5/image_input/41.jpg b/blocks/task2/maps/level5/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..021b4fdbb5be6a801751c0e07f8f1f04c4336319 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4424ef45f9488ad61261aa387afd71b0ed20288fcd2d111fb70eec7de563d5 +size 10768 diff --git a/blocks/task2/maps/level5/image_input/42.jpg b/blocks/task2/maps/level5/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d0836f7c96183a5f919cad2ab735e719a4e4fec --- /dev/null +++ b/blocks/task2/maps/level5/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:075ecd8b155e1611c2241b016bfdc9a632a1791f79ea143fefa47e8a46549534 +size 10388 diff --git a/blocks/task2/maps/level5/image_input/43.jpg b/blocks/task2/maps/level5/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c67074dacb52134f501392ddd5ce6ea51b56cef --- /dev/null +++ b/blocks/task2/maps/level5/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56fd5e614330c432cf05e2981882a55540b573ca9b3d7f925e498d7e8b757e1c +size 11095 diff --git a/blocks/task2/maps/level5/image_input/44.jpg b/blocks/task2/maps/level5/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a0bc5da379190e1bf8f30f336df1d2dee5c3db1 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59277ab7b203f5cce12418ab9e80c663f63171d68c8c814652b134aff8491a65 +size 10820 diff --git a/blocks/task2/maps/level5/image_input/45.jpg b/blocks/task2/maps/level5/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53d7f46a93d1b4a08746e2d3f70b7d67341ec3ba --- /dev/null +++ b/blocks/task2/maps/level5/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7640fe50fbeb91c58e5d18d2ac1a130e2ffc664bf832fcf9f1601131e7f5c790 +size 10982 diff --git a/blocks/task2/maps/level5/image_input/46.jpg b/blocks/task2/maps/level5/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a33972cba53ca13695e3fa489c75332cadb01fd --- /dev/null +++ b/blocks/task2/maps/level5/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4079afd0816515a8badfac10cba39a42cd2f97badfd3e3eb4dc227eed8462fb5 +size 10650 diff --git a/blocks/task2/maps/level5/image_input/47.jpg b/blocks/task2/maps/level5/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f038b300e157b4762d45bdfdcc529deb0d3d953c --- /dev/null +++ b/blocks/task2/maps/level5/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7c676bd0a76229b8a666d455db80b96fa6ea0b934cc8e536711d68b2ab6820 +size 11164 diff --git a/blocks/task2/maps/level5/image_input/48.jpg b/blocks/task2/maps/level5/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce43c0dadb6c1a02627548cec71d7e6601bcae2 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb6b44eb134021e10c46c233242a7b437aaf8b72af4f33c8d9d300bc3476f63 +size 10647 diff --git a/blocks/task2/maps/level5/image_input/49.jpg b/blocks/task2/maps/level5/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96270786bbe8eeae956f6c12a4a22d3d08779153 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1bbe63d11c7c01307ea270bcd95355dd54ae7307d882733cd035dd183d50e94 +size 10796 diff --git a/blocks/task2/maps/level5/image_input/5.jpg b/blocks/task2/maps/level5/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d1b9e6a22566222956b6cbdd81eb618ff4bb31a --- /dev/null +++ b/blocks/task2/maps/level5/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ea4b43a69982693e2fb97ca173695f13593ab917cfc73d1906ed1f6c9f19f1 +size 11661 diff --git a/blocks/task2/maps/level5/image_input/50.jpg b/blocks/task2/maps/level5/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7885d12fb4a2a37e92bc839fcb6158e3425e1ff4 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149b8fbb3deac43a9f5c73a788bcd8063e5472bf512953160e9f2d540dfb7312 +size 10266 diff --git a/blocks/task2/maps/level5/image_input/51.jpg b/blocks/task2/maps/level5/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e334f6cfc7dfabb8c8902c143e603f0493b7ba6e --- /dev/null +++ b/blocks/task2/maps/level5/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3241f61d0416d02f9a6ef90a316d61c38609be6e7a5af7be2c13a6caacd5975c +size 10143 diff --git a/blocks/task2/maps/level5/image_input/52.jpg b/blocks/task2/maps/level5/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d529c42b08b821ddfb01df0ecd80d9e048ff9f3a --- /dev/null +++ b/blocks/task2/maps/level5/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5993c685cf575b80b633c3aa78185e0eafb3c86bd296257cc1dcc0ef5b2dae +size 10635 diff --git a/blocks/task2/maps/level5/image_input/53.jpg b/blocks/task2/maps/level5/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c36c020649d5d4f2b96972caa1b7e2042352607 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0901204cee6d4981a73a7af76ffd15d6b8deadc8ad90f0d27161e66b645e5ab +size 11129 diff --git a/blocks/task2/maps/level5/image_input/54.jpg b/blocks/task2/maps/level5/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29977b3d71d1517620b2ca3d6114e2671b53d5ce --- /dev/null +++ b/blocks/task2/maps/level5/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4535c05c3209d97fb6bbccec1341fde9838bdc37d9bdd75bd6a2dd151f5260db +size 11221 diff --git a/blocks/task2/maps/level5/image_input/55.jpg b/blocks/task2/maps/level5/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02937606156ae49551e0ba8ab95c9d7c1aed0234 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f82300711a148927ab4dd2f13b72edded8ff618531ad2c07951577168806a3 +size 11160 diff --git a/blocks/task2/maps/level5/image_input/56.jpg b/blocks/task2/maps/level5/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..791feab1a5e1d9484db7a40c3ee17672bbf57dce --- /dev/null +++ b/blocks/task2/maps/level5/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e38672411e1e2936b619e46ef4a4ab22cf3824727032e2cd89f8b15b8a6c253 +size 10299 diff --git a/blocks/task2/maps/level5/image_input/57.jpg b/blocks/task2/maps/level5/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f2f9c1836638eee89080775c9b57e362a2a2179 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3f8efedc52aa7beb6f8b2ff54d5f0580bf086fc8f9261bbaa3944b26819039 +size 10117 diff --git a/blocks/task2/maps/level5/image_input/58.jpg b/blocks/task2/maps/level5/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7c5a89edd1994eadd4c9388d341cccd868eac46 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2010adf1e512b5aefcf031333787b085e078412ca9563ff38d94d553404fdda7 +size 11273 diff --git a/blocks/task2/maps/level5/image_input/59.jpg b/blocks/task2/maps/level5/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04066e6b329f05650b09a99874610e4d9eeee70f --- /dev/null +++ b/blocks/task2/maps/level5/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6997dc683914ef1dee8e073db98a96896e1e5fa28cda0c2c0645d392ba4bb85d +size 10418 diff --git a/blocks/task2/maps/level5/image_input/6.jpg b/blocks/task2/maps/level5/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1c27130e9cf56ca2604420ce823268dacf4de37 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae83916b1da099e06fda7f0b96fa59ace5e0559b41ff65ca11ea4547779ca332 +size 11268 diff --git a/blocks/task2/maps/level5/image_input/60.jpg b/blocks/task2/maps/level5/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0f4a1bc9d8865e1fc0dea85ead88de65bff7257 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8d361d7e58c17bd5661fe5e3d90bf00d77e2fdc59ff98a2ccfb3741276d0ae +size 9994 diff --git a/blocks/task2/maps/level5/image_input/61.jpg b/blocks/task2/maps/level5/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d06ebf60dd88e7b6b39a8b271fc8bfb938288ad --- /dev/null +++ b/blocks/task2/maps/level5/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfcecb36ba2f3821a3b81703c1e1fe4e77db94483c93bcbbfbd3f4a83f35fb1 +size 10434 diff --git a/blocks/task2/maps/level5/image_input/62.jpg b/blocks/task2/maps/level5/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3411352d127e2d893de5b09dd6c493387c9946f5 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6e40a79d0edbcd6b9299e9e614bfb13a246c8d2390dddf373af6a15ad15a43 +size 10789 diff --git a/blocks/task2/maps/level5/image_input/63.jpg b/blocks/task2/maps/level5/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6078669109ce0fdb290cdfe3b4da19b1eb8236e0 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8914879abbcb86703a419c02fc4dcbdc6dfd9149f759008ef92d2a1337ff3cc5 +size 10291 diff --git a/blocks/task2/maps/level5/image_input/64.jpg b/blocks/task2/maps/level5/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14c0910d9199275297c9b82093c7b519c6d8ee71 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70513f2c20d25cfc4ef1b105587506da1ea25e1ccbb28bedeac167d8de921476 +size 9974 diff --git a/blocks/task2/maps/level5/image_input/65.jpg b/blocks/task2/maps/level5/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6f7da153598aa4e11513388f4e89112f2c6f62f --- /dev/null +++ b/blocks/task2/maps/level5/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a511ab8e416cd9d9752ca7a644d0f9cc88707f4ea59dda3c9e242193ace1b48 +size 10852 diff --git a/blocks/task2/maps/level5/image_input/66.jpg b/blocks/task2/maps/level5/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6581a1b329d5033f828f2e7d45dad477e920f4a --- /dev/null +++ b/blocks/task2/maps/level5/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43b711d299bb2315728a694b242d6a23003973a9a1ae31d025a33081ebf2927 +size 10886 diff --git a/blocks/task2/maps/level5/image_input/67.jpg b/blocks/task2/maps/level5/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce43c0dadb6c1a02627548cec71d7e6601bcae2 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb6b44eb134021e10c46c233242a7b437aaf8b72af4f33c8d9d300bc3476f63 +size 10647 diff --git a/blocks/task2/maps/level5/image_input/68.jpg b/blocks/task2/maps/level5/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cb589bc55aba1f90246ba3e8543adda5a778065 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d07c9da662b2de52ae613d1bc452ff1da4f509358182eb41a20cc2b15a10e2f +size 10322 diff --git a/blocks/task2/maps/level5/image_input/69.jpg b/blocks/task2/maps/level5/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a63e0a260491874f9ff42a044f04e0e20500ad9b --- /dev/null +++ b/blocks/task2/maps/level5/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32583dc81a42c6fc0c974d886b348d45c39033df6e7bf895bd6afe7b79c43206 +size 11011 diff --git a/blocks/task2/maps/level5/image_input/7.jpg b/blocks/task2/maps/level5/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1334fcecbf14338eae92fe5dd843c30e3df5d04a --- /dev/null +++ b/blocks/task2/maps/level5/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc0b3ca7060d1106b5dbc20440f7b39e27bb9829fa6795dc6c720f3f951fe5b +size 10667 diff --git a/blocks/task2/maps/level5/image_input/70.jpg b/blocks/task2/maps/level5/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..987553fdd0025624ecc64941282cbde0942a81a2 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd1a09dd2116385202d1146c15802db80a6de8d732d7fc1e3f60bddbc269447 +size 10666 diff --git a/blocks/task2/maps/level5/image_input/71.jpg b/blocks/task2/maps/level5/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bab6c0722611e84492c3c138d906174500faae95 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f6694a8be637c5d68a5ad679a4a7911f74f67ae95781e9c0a78bff981ec0079 +size 10255 diff --git a/blocks/task2/maps/level5/image_input/72.jpg b/blocks/task2/maps/level5/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1bdc8ac9d86a56876f3b882a675346badb44534 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb5b777a074a01a69be6098480956ed18677cffa7ba7dca8808d300dadf5052 +size 10930 diff --git a/blocks/task2/maps/level5/image_input/73.jpg b/blocks/task2/maps/level5/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5929f14ece27b2241d1232e048de1758016ef8b9 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb2b7690b71528714ffd33e26215aec336a6e2de7959a7cd196639be697d972 +size 11226 diff --git a/blocks/task2/maps/level5/image_input/74.jpg b/blocks/task2/maps/level5/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96a8012f9a4231a26f82a0a913ee1d9684c59246 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93836351867097621fd5f3b98cd6b915f553910dc9f34b34d7b3da1ae341dbc3 +size 11130 diff --git a/blocks/task2/maps/level5/image_input/75.jpg b/blocks/task2/maps/level5/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34cb56a89c10d7b4936ce01459588d725ec4a8bd --- /dev/null +++ b/blocks/task2/maps/level5/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924135fc9aa254f5e2c8330b965c2625fca0daaaa1747c53212073aa2b194852 +size 10530 diff --git a/blocks/task2/maps/level5/image_input/76.jpg b/blocks/task2/maps/level5/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..100db4dcd9609ef8bb23f59a8c6fe538203de7fd --- /dev/null +++ b/blocks/task2/maps/level5/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cad7afef594373f11d24c3a937d826cd00865971a354cf38160936b0f49e993 +size 11259 diff --git a/blocks/task2/maps/level5/image_input/77.jpg b/blocks/task2/maps/level5/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0b66997e496c6427fa161694b47a35b559b2504 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db2f41f764f7b4b27c32d051ccaf77e121f9ffc97f30f8c17a9795ff14af7da6 +size 11686 diff --git a/blocks/task2/maps/level5/image_input/78.jpg b/blocks/task2/maps/level5/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd88e5abd15de5d811d4f3c941a305bbe90e9703 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b356afa91dcff52f2eb680dd92f7b56de1d84373080e537402ccd0c8f391af2 +size 11077 diff --git a/blocks/task2/maps/level5/image_input/79.jpg b/blocks/task2/maps/level5/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bd369dad1aaf350246c4b39aed93207b9aca140 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d252e811dc2ea17248fe9db066ea901a8a80295df4b79f34f991524614ad8e5f +size 11008 diff --git a/blocks/task2/maps/level5/image_input/8.jpg b/blocks/task2/maps/level5/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de965873cbacddbf7baefc1affc87542b4bdff9c --- /dev/null +++ b/blocks/task2/maps/level5/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c61d3f64d28736558cc2164b337028eab56645eb25673c5b447251e7dbb5a0 +size 10757 diff --git a/blocks/task2/maps/level5/image_input/80.jpg b/blocks/task2/maps/level5/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d817888b5307a0107ea49d8d40ed7442233f3543 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91bcb69e10680a5a4ff56bcbb2ec75123453b9153bae966f137590aabf96d0d +size 10360 diff --git a/blocks/task2/maps/level5/image_input/81.jpg b/blocks/task2/maps/level5/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa89df7aec011a1a463e8853d4067923b5ba0751 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f00227b79619b29814794b95b398d0a059ac020a0245ba4966ca65efb4fa58c +size 12002 diff --git a/blocks/task2/maps/level5/image_input/82.jpg b/blocks/task2/maps/level5/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79d8a439fc31ba17fe244d109ece8f331efcc72c --- /dev/null +++ b/blocks/task2/maps/level5/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f387099c30ed74630ab233bf777eb78c2359573a741af4e25b2b98e8a673ff3b +size 11142 diff --git a/blocks/task2/maps/level5/image_input/83.jpg b/blocks/task2/maps/level5/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d87326161652d05b048b0a49ee85728d8dd9aa1 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6f9722251f900eb5af6b295036e72ea72027fa727937322484d38395613cbd +size 12196 diff --git a/blocks/task2/maps/level5/image_input/84.jpg b/blocks/task2/maps/level5/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fca5ee419436651d360b381e8572cec45f2d515 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0558a41f11f4c555a097c12a52ea8e68a70bd4128c7f14afd93faaa8ad10d782 +size 10020 diff --git a/blocks/task2/maps/level5/image_input/85.jpg b/blocks/task2/maps/level5/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d05c20fe5220bde1b00e05dca4e5ba31a5bca3d --- /dev/null +++ b/blocks/task2/maps/level5/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655ea54ae44f628c0e1c81f119e935ff399b63c0aa4f2647dc04ce1a849662b7 +size 12385 diff --git a/blocks/task2/maps/level5/image_input/86.jpg b/blocks/task2/maps/level5/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e4ef73122aadb65cf5e21374e7214b3658b209e --- /dev/null +++ b/blocks/task2/maps/level5/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1067c6f8f00f7c12575ca92e4195f5827177ba23bb425e4bfaad8f10d8444d9 +size 10332 diff --git a/blocks/task2/maps/level5/image_input/87.jpg b/blocks/task2/maps/level5/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18a9bea0318e29697841654af0d9ada34b9f16a4 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eda002bb105d01ff82a87990dd8c90b2ac93feaae91afa69bb94fa6220acedf +size 12447 diff --git a/blocks/task2/maps/level5/image_input/88.jpg b/blocks/task2/maps/level5/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e89d527c92f6ddc1dffdded9425dbef96e35cbec --- /dev/null +++ b/blocks/task2/maps/level5/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc636e58df1d8473a2d56826937c6fe76af7ec39b6d4e7a7e09deaef3b8d7aeb +size 10834 diff --git a/blocks/task2/maps/level5/image_input/89.jpg b/blocks/task2/maps/level5/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72ffd113738108bcea6633955c97ffab845188fb --- /dev/null +++ b/blocks/task2/maps/level5/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06865d49842f3cce571ca090846151e89691146118abab25825aad7fd772d7a7 +size 11715 diff --git a/blocks/task2/maps/level5/image_input/9.jpg b/blocks/task2/maps/level5/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce43c0dadb6c1a02627548cec71d7e6601bcae2 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb6b44eb134021e10c46c233242a7b437aaf8b72af4f33c8d9d300bc3476f63 +size 10647 diff --git a/blocks/task2/maps/level5/image_input/90.jpg b/blocks/task2/maps/level5/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48053e5e00e2fb4615d8d8073698565e1637cc60 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba3acf56315e5965b690e7e8404b243f26f8607cc0ac1a27e8b3596cfb7a780 +size 10337 diff --git a/blocks/task2/maps/level5/image_input/91.jpg b/blocks/task2/maps/level5/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e59c7ca3c59be15febaa89796e30247ce16c8f20 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9990bd616d7507a363be140e153abfa997a51921a50bdc6375bedd99b927642 +size 10796 diff --git a/blocks/task2/maps/level5/image_input/92.jpg b/blocks/task2/maps/level5/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bec6bed7c370780787691b028e14d6256d0bc495 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1004c0edb15534cf75c1b518e3dda5aab4a9d24c7291ef71bc7db472f670e5aa +size 10380 diff --git a/blocks/task2/maps/level5/image_input/93.jpg b/blocks/task2/maps/level5/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..673c5cf3ddaee990dc249c58270b7f7eb174ac5e --- /dev/null +++ b/blocks/task2/maps/level5/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e371063a2a51fb7f0f336827cf6d6207f2c6d5c646bc93a59de812b391c19a +size 9650 diff --git a/blocks/task2/maps/level5/image_input/94.jpg b/blocks/task2/maps/level5/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af70b0110e889c2213b3c71a87552d145c79b3cc --- /dev/null +++ b/blocks/task2/maps/level5/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e8cf1986b77aec5da7e4938deadffe3ea9b8d4abef1914074be771ae72b869 +size 10034 diff --git a/blocks/task2/maps/level5/image_input/95.jpg b/blocks/task2/maps/level5/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc8079300a878ce2bc51b39dc7d8f45c8765c294 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948706ffe1a4c1355a1314be504d4a38c9a7bb35bde49316c89d1037ca747a5 +size 10580 diff --git a/blocks/task2/maps/level5/image_input/96.jpg b/blocks/task2/maps/level5/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f5fd551854d85120d68ae287c51edb33c1f05e0 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0625e424459f2706789fb5c7c3edaeff96b3ab3ce908f4e903b43d864fdddb +size 11081 diff --git a/blocks/task2/maps/level5/image_input/97.jpg b/blocks/task2/maps/level5/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74c470c07430cfbdea1a63848d543df536faa71e --- /dev/null +++ b/blocks/task2/maps/level5/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed2704dff359a34d4db35bdeec78c880ee3a4cf6f3d65d1045db7d24c04ad86 +size 10987 diff --git a/blocks/task2/maps/level5/image_input/98.jpg b/blocks/task2/maps/level5/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f361c880340e05d0dd1037adfe1c6362f63024a8 --- /dev/null +++ b/blocks/task2/maps/level5/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d15e65a553b5120505145a65442f6bcd4997a5f08fc97865d23dc044a4b91e4 +size 10409 diff --git a/blocks/task2/maps/level5/image_input/99.jpg b/blocks/task2/maps/level5/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd8e68b43edadb76a21bca4d1be589fec6f6513a --- /dev/null +++ b/blocks/task2/maps/level5/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce0bbbc8d2877eeff6a161375962ca28add84fb6407874643d1680466b3e161 +size 10168 diff --git a/blocks/task2/maps/level5/pure_text_rep_input/0 b/blocks/task2/maps/level5/pure_text_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..6168aa8fde2fec35f691817da36f73ca5bd7696c --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/0 @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/1 b/blocks/task2/maps/level5/pure_text_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..64ae23a79847ebcf82946f99a839902b3185d553 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/1 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, yellow block, purple block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/10 b/blocks/task2/maps/level5/pure_text_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..28d56016fa616df4d5bf301e91b00e6cf1199049 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/10 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block +- Stack with green block, yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/11 b/blocks/task2/maps/level5/pure_text_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..537e6020da884a9476580f6bdf7342888d1f0e69 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/11 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/12 b/blocks/task2/maps/level5/pure_text_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..30702396673f68fac5914895de89153e1a3e3794 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/12 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block, red block, from bottom to top +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/13 b/blocks/task2/maps/level5/pure_text_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..dedecf7f125dff2b40af012bbcf1f944763848df --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/13 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block +- Stack with green block, blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/14 b/blocks/task2/maps/level5/pure_text_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..1c0f42c746947b3082fcde4a3a37ce10fbe17ef0 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/14 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/15 b/blocks/task2/maps/level5/pure_text_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..25e25a932cca9bdf7713d05fb0b384f557678aee --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/15 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block, purple block, from bottom to top +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/16 b/blocks/task2/maps/level5/pure_text_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..4574ae16d2266101a02f6266732a9ee1db55b96d --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/16 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block, red block, from bottom to top +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/17 b/blocks/task2/maps/level5/pure_text_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..3e5673b9b050a5fb2c9fdb51cb11c2e64f3b0147 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/17 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block, blue block, from bottom to top +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/18 b/blocks/task2/maps/level5/pure_text_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..a56855f49f618996477826d12fbacabf53db8648 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/18 @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/19 b/blocks/task2/maps/level5/pure_text_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..ba6da65f7961112f6a6eb4b369cf0f06792de60b --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/19 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/2 b/blocks/task2/maps/level5/pure_text_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..e869dfd2a83df42085358a51e0d6d584eec1b7cb --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/2 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/20 b/blocks/task2/maps/level5/pure_text_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..3089a2cbe8ef92320e4bfd6075c8add18fb51323 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/20 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block, blue block, from bottom to top +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/21 b/blocks/task2/maps/level5/pure_text_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..011455c2b8d32d0e86e3e44d8be70b9a0ddef025 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/21 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/22 b/blocks/task2/maps/level5/pure_text_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..c5d9130dd78dbea1137c359ca4a1b193060c54ed --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/22 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with yellow block, green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/23 b/blocks/task2/maps/level5/pure_text_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..7de463d78a00686c3cd91e7f5c617796c7f8a6ab --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/23 @@ -0,0 +1,2 @@ +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/24 b/blocks/task2/maps/level5/pure_text_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..991623678097ccbf7b964eb7559cab885b3c6c39 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/24 @@ -0,0 +1,2 @@ +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, purple block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/25 b/blocks/task2/maps/level5/pure_text_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..0a22b0af87f9da232a7d3ded6ea7aa0487961209 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/25 @@ -0,0 +1,2 @@ +- Stack with orange block, blue block, from bottom to top +- Stack with purple block, red block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/26 b/blocks/task2/maps/level5/pure_text_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..46b6bb9024ac1212319c23a8bc813efb57e6f72d --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/26 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/27 b/blocks/task2/maps/level5/pure_text_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..cc75adc5edc0721bbb211c5b9d57e97a3803561c --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/27 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block, orange block, from bottom to top +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/28 b/blocks/task2/maps/level5/pure_text_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..28f0bacb2c41aaf3f17112b39c4241adc898ac2e --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/28 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block, yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/29 b/blocks/task2/maps/level5/pure_text_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..60574c8773ae11b03d90970861bc7b1bd1aa5951 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/29 @@ -0,0 +1,2 @@ +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/3 b/blocks/task2/maps/level5/pure_text_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..e42fdccb295436bc6dff8bda0d3736dc3cc50b67 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/3 @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/30 b/blocks/task2/maps/level5/pure_text_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..e450bdaf9bca6dfa5cedd534e9bbb24e9b1d726c --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/30 @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with orange block, blue block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/31 b/blocks/task2/maps/level5/pure_text_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..ed25448edaf9c852707caa10a141848e96047987 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/31 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, orange block, red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/32 b/blocks/task2/maps/level5/pure_text_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..b4b115fb66144efe43679106fafcb0e6273ed7cb --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/32 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block, orange block, from bottom to top +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/33 b/blocks/task2/maps/level5/pure_text_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..c94086c68ac1a25b63c01f520d2d1fce9237f5b2 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/33 @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/34 b/blocks/task2/maps/level5/pure_text_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..8dab3913934e46aa5d6f37855e3254d30a1a0010 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/34 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/35 b/blocks/task2/maps/level5/pure_text_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..3744fe0ec878c860f899879c81dac42a5eead525 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/35 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block +- Stack with red block, green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/36 b/blocks/task2/maps/level5/pure_text_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..a8105418fdd0ca18b1d92d474693edc37ce6fb48 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/36 @@ -0,0 +1,2 @@ +- Stack with green block, orange block, from bottom to top +- Stack with purple block, red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/37 b/blocks/task2/maps/level5/pure_text_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..b03ed02e4be66d0eed2296c61778cba52b2fd667 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/37 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with blue block, red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/38 b/blocks/task2/maps/level5/pure_text_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..5e4bda9d0cfe81d60b766421d78738f23c3ab96f --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/38 @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/39 b/blocks/task2/maps/level5/pure_text_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..c1fc1707ddb2ed643c3268595c7b5a92e47f2397 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/39 @@ -0,0 +1,2 @@ +- Stack with orange block, purple block, from bottom to top +- Stack with green block, red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/4 b/blocks/task2/maps/level5/pure_text_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..a0dfb884d6dfe31ef689bb5f3af4ddde1e1ee6a0 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/4 @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/40 b/blocks/task2/maps/level5/pure_text_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..ab7c50c67da2aaca4d807569410f4392ab57b2b3 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/40 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with blue block, yellow block, from bottom to top +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/41 b/blocks/task2/maps/level5/pure_text_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..f24eaf1a585dba2480b7075fa5aa1faf32c7ad4f --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/41 @@ -0,0 +1,2 @@ +- Stack with orange block, blue block, from bottom to top +- Stack with green block, purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/42 b/blocks/task2/maps/level5/pure_text_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..e07ba90c5548e6740e4cdcce96229e40b81d68b5 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/42 @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with red block, purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/43 b/blocks/task2/maps/level5/pure_text_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..870510d7192949e102fb2ce027fe2ac1cd0fc7fa --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/43 @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/44 b/blocks/task2/maps/level5/pure_text_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..518a68a1a4c14741a837af3ef130289aba612276 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/44 @@ -0,0 +1,2 @@ +- Stack with orange block, yellow block, from bottom to top +- Stack with red block, green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/45 b/blocks/task2/maps/level5/pure_text_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..4d90c59325d21660c3f69190d54f86bf4a2cb3cf --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/45 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block, yellow block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/46 b/blocks/task2/maps/level5/pure_text_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..7de95717e1b9cd444b17ff0e33bfcd2e79861ecb --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/46 @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/47 b/blocks/task2/maps/level5/pure_text_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..e22fb8ef217b30f070e5cfbdc604bf25fee4364f --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/47 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/48 b/blocks/task2/maps/level5/pure_text_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..6b3ca657f70f7be411db83384514b7d78ca152ca --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/48 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/49 b/blocks/task2/maps/level5/pure_text_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..1751021152ec069506c96727eacd2d8de57a2c06 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/49 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/5 b/blocks/task2/maps/level5/pure_text_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..da369733923d7e42ff2c341e78ecd0e91c941f4a --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/5 @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, green block, orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/50 b/blocks/task2/maps/level5/pure_text_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..bb77d52110e2fa756063ed57779ba656669e7626 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/50 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/51 b/blocks/task2/maps/level5/pure_text_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..0669e4ced3aedf88a43cf6349ad5d5d87a5301cf --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/51 @@ -0,0 +1,2 @@ +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/52 b/blocks/task2/maps/level5/pure_text_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..55b03d238f40d0f79f9720060aa04c8c495855a8 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/52 @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/53 b/blocks/task2/maps/level5/pure_text_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..2e07cfa6b31f5a7b8f8c424dfde5aabc7a8f6f2d --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/53 @@ -0,0 +1,2 @@ +- Stack with blue block, purple block, from bottom to top +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/54 b/blocks/task2/maps/level5/pure_text_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..4154648c19f2b604fa83c0fca0be307abc8ad82a --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/54 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/55 b/blocks/task2/maps/level5/pure_text_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..a90664a6172fd73d28daf7b1bfc270fab1747aeb --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/55 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/56 b/blocks/task2/maps/level5/pure_text_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..cbf1b1044ee8f4e42b34ef30232a55c440d60406 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/56 @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block, green block, from bottom to top +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/57 b/blocks/task2/maps/level5/pure_text_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..cd6de9c0459c1fb6b4b33e499d894c0cb484b37e --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/57 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/58 b/blocks/task2/maps/level5/pure_text_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..307c52bdb8da25ed3f9bf4c5a886b0157a0a8416 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/58 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, yellow block, red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/59 b/blocks/task2/maps/level5/pure_text_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..9e71860c76bd8fae95d30613eba5fc91127bbb51 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/59 @@ -0,0 +1,2 @@ +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/6 b/blocks/task2/maps/level5/pure_text_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..d96fe877ece2e9dd172a3e136064b2f7e1b79bf6 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/6 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, blue block, red block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/60 b/blocks/task2/maps/level5/pure_text_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..d86e8b421ee489a89505ba95c13d54f2ef55a5b1 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/60 @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/61 b/blocks/task2/maps/level5/pure_text_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..3a0ba377d1942b6dd9e1b73c819519918d38bdf4 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/61 @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with yellow block, green block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/62 b/blocks/task2/maps/level5/pure_text_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..bf57a801592e80b09719f870c659b6691848f4b6 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/62 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/63 b/blocks/task2/maps/level5/pure_text_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..f64e3781491c14c885f6dbcbd4e044117141130d --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/63 @@ -0,0 +1,2 @@ +- Stack with orange block, red block, from bottom to top +- Stack with blue block, green block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/64 b/blocks/task2/maps/level5/pure_text_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..fec8e4bb0321af490f0f4b7333c81f80a7ab5a7f --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/64 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, purple block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/65 b/blocks/task2/maps/level5/pure_text_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..546a94b267433a218776a6cdd36e606c0283890b --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/65 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with yellow block, orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/66 b/blocks/task2/maps/level5/pure_text_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..6624df254b59e6525e0a358b76e07ce99302f3d6 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/66 @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/67 b/blocks/task2/maps/level5/pure_text_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..6b3ca657f70f7be411db83384514b7d78ca152ca --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/67 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/68 b/blocks/task2/maps/level5/pure_text_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..367679c462f34584f24d2d2ce94ac6aba12fb166 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/68 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, purple block, blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/69 b/blocks/task2/maps/level5/pure_text_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..cff552089543cddcabe9ea33118a10ce006c6bf7 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/69 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/7 b/blocks/task2/maps/level5/pure_text_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..6865bdb6874fb92f00baf7b2a13a856e8cf5ae5a --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/7 @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with red block, blue block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/70 b/blocks/task2/maps/level5/pure_text_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..88aba90a87006be2a3dcf51af15e02e0bdfeaa21 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/70 @@ -0,0 +1,2 @@ +- Stack with blue block, green block, from bottom to top +- Stack with purple block, yellow block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/71 b/blocks/task2/maps/level5/pure_text_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..d70559fc815ff8a6cb95877834119f662a6ab9b5 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/71 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/72 b/blocks/task2/maps/level5/pure_text_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..e9e4053fee805c7222b3491c4025f3d97cb4ea91 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/72 @@ -0,0 +1,2 @@ +- Stack with red block, green block, from bottom to top +- Stack with orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/73 b/blocks/task2/maps/level5/pure_text_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..3eae46c9e034f844202e30a4f994cb80fbb73132 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/73 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, purple block, red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/74 b/blocks/task2/maps/level5/pure_text_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..2a363bc17b18bf563dcbcbe43297bf5daa08fa32 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/74 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/75 b/blocks/task2/maps/level5/pure_text_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..2bd4f3d7a2ab01efd6a8b1fffd6f9a9a418c0027 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/75 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, yellow block, orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/76 b/blocks/task2/maps/level5/pure_text_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..231b773fada6beb7d185dfa985aca61bd250566b --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/76 @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/77 b/blocks/task2/maps/level5/pure_text_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..a47736923dc590669734c2b7598c14fae14dead8 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/77 @@ -0,0 +1,2 @@ +- Stack with red block, green block, from bottom to top +- Stack with yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/78 b/blocks/task2/maps/level5/pure_text_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..efa4bd1b31fdd4ee7803c69b34a9ec2e209ac560 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/78 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with yellow block, orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/79 b/blocks/task2/maps/level5/pure_text_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..b4d1f894a8bd244b459f358fd6242d00cedfb5e3 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/79 @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/8 b/blocks/task2/maps/level5/pure_text_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..73d1a24a6f4fa1f76c6a749402df81531b552f24 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/8 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/80 b/blocks/task2/maps/level5/pure_text_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..fea92fa60bc8ec9b70cccbc9b14f37de02e0684a --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/80 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/81 b/blocks/task2/maps/level5/pure_text_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..6b84ca1bb4fab0b2cf0fe1f26cb6a8b1d16f1637 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/81 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, purple block, orange block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/82 b/blocks/task2/maps/level5/pure_text_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..c8c1130628f111c1c690bb4dc7ceec80f1aaa9a7 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/82 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, green block, purple block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/83 b/blocks/task2/maps/level5/pure_text_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..6abe6ab716f254ccf15499b1598dcad2799efa79 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/83 @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, purple block, blue block, red block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/84 b/blocks/task2/maps/level5/pure_text_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..9d7921f6b7640e4551e021e87db051ef855d1a42 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/84 @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with blue block +- Stack with red block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/85 b/blocks/task2/maps/level5/pure_text_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..aa35a923a2fe46f9e81d4117509cca544eabe7ef --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/85 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, purple block, green block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/86 b/blocks/task2/maps/level5/pure_text_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..ea206afebff4582e71c0f909566a0bd8cfc27a46 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/86 @@ -0,0 +1,2 @@ +- Stack with green block, yellow block, from bottom to top +- Stack with orange block, purple block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/87 b/blocks/task2/maps/level5/pure_text_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..82c50543dae9f74128964af1731b81a3bc903f74 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/87 @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, green block, purple block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/88 b/blocks/task2/maps/level5/pure_text_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..4145c6c7598c919e16148cce784a03b8f9a9f890 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/88 @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/89 b/blocks/task2/maps/level5/pure_text_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..c2549a6509cba0b276743ffb7198127b8b3d6d5f --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/89 @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, purple block, blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/9 b/blocks/task2/maps/level5/pure_text_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..6b3ca657f70f7be411db83384514b7d78ca152ca --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/9 @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/90 b/blocks/task2/maps/level5/pure_text_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..748ac7793150169f6484c48e347d9bd1309bb2ae --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/90 @@ -0,0 +1,2 @@ +- Stack with orange block, blue block, from bottom to top +- Stack with yellow block, red block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/91 b/blocks/task2/maps/level5/pure_text_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..b208b6796875a5db6fd85970500677872535a988 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/91 @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with yellow block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/92 b/blocks/task2/maps/level5/pure_text_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..32b790bc450beaa831b346942b3352c434429a0b --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/92 @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with orange block, green block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/93 b/blocks/task2/maps/level5/pure_text_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..410e10a1e628ee96d6560079a8c4ad4132d0cfa7 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/93 @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, purple block, blue block, yellow block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/94 b/blocks/task2/maps/level5/pure_text_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..4f51f264f7ec62df81cdf39c48c561468721b96e --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/94 @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, red block, purple block, blue block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/95 b/blocks/task2/maps/level5/pure_text_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..7556461b014136ab8bf2898f7abc7f4d8f0dd0db --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/95 @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/96 b/blocks/task2/maps/level5/pure_text_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..257980f1d5ca0ceb5124056a353e3fc5a18ac42b --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/96 @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with orange block, yellow block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/97 b/blocks/task2/maps/level5/pure_text_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..922e94a036efea7346aa207f435ea86f2538b78d --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/97 @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/98 b/blocks/task2/maps/level5/pure_text_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..537e6020da884a9476580f6bdf7342888d1f0e69 --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/98 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task2/maps/level5/pure_text_rep_input/99 b/blocks/task2/maps/level5/pure_text_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..f7e5a5da359eada3209760e57be4bfad6660c89d --- /dev/null +++ b/blocks/task2/maps/level5/pure_text_rep_input/99 @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with yellow block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task2/maps/level5/table_rep_input/0 b/blocks/task2/maps/level5/table_rep_input/0 new file mode 100644 index 0000000000000000000000000000000000000000..ab016bc7a8a58a9f33c27a173ec726340dfe0a2f --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/0 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | orange | blue | yellow | green | diff --git a/blocks/task2/maps/level5/table_rep_input/1 b/blocks/task2/maps/level5/table_rep_input/1 new file mode 100644 index 0000000000000000000000000000000000000000..b16142448f8646d78e8a6d2bc63b2971c3c5a785 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/1 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | blue | red | diff --git a/blocks/task2/maps/level5/table_rep_input/10 b/blocks/task2/maps/level5/table_rep_input/10 new file mode 100644 index 0000000000000000000000000000000000000000..455a933a2612ccabdaed332d179447058d56e19f --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/10 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | yellow | +Level 1 | blue | red | green | diff --git a/blocks/task2/maps/level5/table_rep_input/11 b/blocks/task2/maps/level5/table_rep_input/11 new file mode 100644 index 0000000000000000000000000000000000000000..fd7c2f385bf32585b7d11b73d545d9e5a0cbfc3c --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/11 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | yellow | purple | red | diff --git a/blocks/task2/maps/level5/table_rep_input/12 b/blocks/task2/maps/level5/table_rep_input/12 new file mode 100644 index 0000000000000000000000000000000000000000..8d351c4191ee2078aeebb8768730ba0ccba34976 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/12 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | green | +Level 1 | purple | blue | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/13 b/blocks/task2/maps/level5/table_rep_input/13 new file mode 100644 index 0000000000000000000000000000000000000000..c3794b99de334af43ce1e9e904378101ec758dbd --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/13 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | blue | +Level 1 | red | purple | green | diff --git a/blocks/task2/maps/level5/table_rep_input/14 b/blocks/task2/maps/level5/table_rep_input/14 new file mode 100644 index 0000000000000000000000000000000000000000..9fb66eddd3529c8ef8267dd2d9dd398fb52d5e9a --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/14 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | purple | +Level 1 | green | red | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/15 b/blocks/task2/maps/level5/table_rep_input/15 new file mode 100644 index 0000000000000000000000000000000000000000..4e2d5ee1851a270c70416611bbd50e60867361e6 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/15 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | red | +Level 1 | green | yellow | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/16 b/blocks/task2/maps/level5/table_rep_input/16 new file mode 100644 index 0000000000000000000000000000000000000000..d9a0fb56e3c8f08b700e1b3bbd350e1e66f6657d --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/16 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | purple | +Level 1 | yellow | green | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/17 b/blocks/task2/maps/level5/table_rep_input/17 new file mode 100644 index 0000000000000000000000000000000000000000..bf673eeb39c1816865485a00aed568979791b7cb --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/17 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | yellow | +Level 1 | purple | red | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/18 b/blocks/task2/maps/level5/table_rep_input/18 new file mode 100644 index 0000000000000000000000000000000000000000..9e0124513662dcc5cceee9c5ac5b0fe8a1115851 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/18 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | orange | yellow | green | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/19 b/blocks/task2/maps/level5/table_rep_input/19 new file mode 100644 index 0000000000000000000000000000000000000000..24ee8eb67ed750bc6ca1b1d4c6c1f2fb39b142ba --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/19 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | yellow | +Level 1 | red | green | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/2 b/blocks/task2/maps/level5/table_rep_input/2 new file mode 100644 index 0000000000000000000000000000000000000000..dcf438500b1e3e273f754824990f769f390b06b4 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/2 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | purple | yellow | red | diff --git a/blocks/task2/maps/level5/table_rep_input/20 b/blocks/task2/maps/level5/table_rep_input/20 new file mode 100644 index 0000000000000000000000000000000000000000..1d4e003a5c7fd0e8eaa92010b6372c3a38025bf7 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/20 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | yellow | +Level 1 | orange | purple | green | diff --git a/blocks/task2/maps/level5/table_rep_input/21 b/blocks/task2/maps/level5/table_rep_input/21 new file mode 100644 index 0000000000000000000000000000000000000000..1455c3803db154a9ea8269a2a92e566711a42e0e --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/21 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | purple | blue | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/22 b/blocks/task2/maps/level5/table_rep_input/22 new file mode 100644 index 0000000000000000000000000000000000000000..0b3560c0c58d02976c75c3c24589e87ea2abb4af --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/22 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | green | +Level 1 | purple | blue | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/23 b/blocks/task2/maps/level5/table_rep_input/23 new file mode 100644 index 0000000000000000000000000000000000000000..8a24fddf4d870feff515a1c690b6f845270ad8b7 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/23 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | blue | orange | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/24 b/blocks/task2/maps/level5/table_rep_input/24 new file mode 100644 index 0000000000000000000000000000000000000000..9c23224dfe98da2d92aeb4ff58a057d138c07c20 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/24 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | yellow | purple | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/25 b/blocks/task2/maps/level5/table_rep_input/25 new file mode 100644 index 0000000000000000000000000000000000000000..8a2b259f5eab428ba7de283532b950022798a5e4 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/25 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | blue | red | +Level 1 | orange | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/26 b/blocks/task2/maps/level5/table_rep_input/26 new file mode 100644 index 0000000000000000000000000000000000000000..ea451b835d7dbfa30a4fa54adc2f46bdb5816d88 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/26 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | blue | red | orange | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/27 b/blocks/task2/maps/level5/table_rep_input/27 new file mode 100644 index 0000000000000000000000000000000000000000..8b4f85eef5f7093792210d40c498102f89a7aadd --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/27 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | yellow | +Level 1 | purple | blue | red | diff --git a/blocks/task2/maps/level5/table_rep_input/28 b/blocks/task2/maps/level5/table_rep_input/28 new file mode 100644 index 0000000000000000000000000000000000000000..03a9ca712e117be57ff13bc44972873522e4c20e --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/28 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | yellow | +Level 1 | green | purple | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/29 b/blocks/task2/maps/level5/table_rep_input/29 new file mode 100644 index 0000000000000000000000000000000000000000..5883add4cd7559279a35512ac8855ff5498adaf3 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/29 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | blue | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level5/table_rep_input/3 b/blocks/task2/maps/level5/table_rep_input/3 new file mode 100644 index 0000000000000000000000000000000000000000..b12c9e30d07d8e386f8ad0d814e62fbc961e53db --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/3 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | red | green | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/30 b/blocks/task2/maps/level5/table_rep_input/30 new file mode 100644 index 0000000000000000000000000000000000000000..3694cdafa459a9e87f1820d0045e83f4ab406f81 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/30 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | blue | +Level 1 | purple | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/31 b/blocks/task2/maps/level5/table_rep_input/31 new file mode 100644 index 0000000000000000000000000000000000000000..03d95fa870172f0f502e0e18a1afdc09f7b29096 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/31 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | red | +Level 2 | | orange | +Level 1 | green | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/32 b/blocks/task2/maps/level5/table_rep_input/32 new file mode 100644 index 0000000000000000000000000000000000000000..74ff7808f2570096f09cdbf912ce22f569ef5d04 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/32 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | blue | +Level 1 | yellow | red | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/33 b/blocks/task2/maps/level5/table_rep_input/33 new file mode 100644 index 0000000000000000000000000000000000000000..7a61eef2d8e8b3e8cc087a950d8c19ae6cfcddcd --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/33 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | purple | blue | red | green | diff --git a/blocks/task2/maps/level5/table_rep_input/34 b/blocks/task2/maps/level5/table_rep_input/34 new file mode 100644 index 0000000000000000000000000000000000000000..f8de0efbce7a09c2d56111a7765962fd375353f0 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/34 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | orange | +Level 1 | purple | yellow | green | diff --git a/blocks/task2/maps/level5/table_rep_input/35 b/blocks/task2/maps/level5/table_rep_input/35 new file mode 100644 index 0000000000000000000000000000000000000000..b71c3977490ded1ffb7bd331a50ef5c059477d12 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/35 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | blue | yellow | red | diff --git a/blocks/task2/maps/level5/table_rep_input/36 b/blocks/task2/maps/level5/table_rep_input/36 new file mode 100644 index 0000000000000000000000000000000000000000..3c42d56f23c78b139f8d6890e4370922bfcd9898 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/36 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | orange | red | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/37 b/blocks/task2/maps/level5/table_rep_input/37 new file mode 100644 index 0000000000000000000000000000000000000000..ac5dc06552de636db7dc7cd9e1d4d23b3c7614c0 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/37 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | red | +Level 1 | purple | green | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/38 b/blocks/task2/maps/level5/table_rep_input/38 new file mode 100644 index 0000000000000000000000000000000000000000..c75676070f65e25c0731b604ce677b64140416c3 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/38 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | green | purple | blue | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/39 b/blocks/task2/maps/level5/table_rep_input/39 new file mode 100644 index 0000000000000000000000000000000000000000..8eb138e9e7666f7317da81379749ea5e4890fd16 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/39 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | red | +Level 1 | orange | green | diff --git a/blocks/task2/maps/level5/table_rep_input/4 b/blocks/task2/maps/level5/table_rep_input/4 new file mode 100644 index 0000000000000000000000000000000000000000..0ddd1081a0ab35f4fa6a4f8f5cae6d1792d2eec7 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/4 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | yellow | red | +Level 1 | blue | green | diff --git a/blocks/task2/maps/level5/table_rep_input/40 b/blocks/task2/maps/level5/table_rep_input/40 new file mode 100644 index 0000000000000000000000000000000000000000..3030434d8c5fa7fd51c5f85efbcece84abb3a2a3 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/40 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | red | +Level 1 | green | blue | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/41 b/blocks/task2/maps/level5/table_rep_input/41 new file mode 100644 index 0000000000000000000000000000000000000000..f8c28e7f61b38934554893a2050fcfc1576c5ecf --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/41 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | blue | purple | +Level 1 | orange | green | diff --git a/blocks/task2/maps/level5/table_rep_input/42 b/blocks/task2/maps/level5/table_rep_input/42 new file mode 100644 index 0000000000000000000000000000000000000000..d5e3b91f46a365339418a3bc167b4cdad642a5b8 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/42 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | purple | +Level 1 | green | red | diff --git a/blocks/task2/maps/level5/table_rep_input/43 b/blocks/task2/maps/level5/table_rep_input/43 new file mode 100644 index 0000000000000000000000000000000000000000..305a0c579c66d7bebf8baeed15ceb6706a118a93 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/43 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | green | yellow | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/44 b/blocks/task2/maps/level5/table_rep_input/44 new file mode 100644 index 0000000000000000000000000000000000000000..525205901f75f1ea56d148bcd393c482a1c933fa --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/44 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | green | +Level 1 | orange | red | diff --git a/blocks/task2/maps/level5/table_rep_input/45 b/blocks/task2/maps/level5/table_rep_input/45 new file mode 100644 index 0000000000000000000000000000000000000000..5e1272e0a8e99b71a0f19c3053022e02d4facbc6 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/45 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | yellow | +Level 1 | purple | green | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/46 b/blocks/task2/maps/level5/table_rep_input/46 new file mode 100644 index 0000000000000000000000000000000000000000..a7c89d83ade30a7804f672076cb2e7d8cce0a399 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/46 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | green | +Level 1 | yellow | blue | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/47 b/blocks/task2/maps/level5/table_rep_input/47 new file mode 100644 index 0000000000000000000000000000000000000000..6f3672e7a1af6fb1cfc5396cd39bde0c326c721a --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/47 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | orange | +Level 1 | green | red | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/48 b/blocks/task2/maps/level5/table_rep_input/48 new file mode 100644 index 0000000000000000000000000000000000000000..d9a22481c7caf0a4790f8086f89fe678edd50b7c --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/48 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | orange | blue | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/49 b/blocks/task2/maps/level5/table_rep_input/49 new file mode 100644 index 0000000000000000000000000000000000000000..ce4e5fd5201d7b47bf7f8a12888c8b09120ba84c --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/49 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | red | purple | green | diff --git a/blocks/task2/maps/level5/table_rep_input/5 b/blocks/task2/maps/level5/table_rep_input/5 new file mode 100644 index 0000000000000000000000000000000000000000..aff1ac24189a2c75c2edffde76ba6953c79a4d10 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/5 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | orange | +Level 2 | | green | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level5/table_rep_input/50 b/blocks/task2/maps/level5/table_rep_input/50 new file mode 100644 index 0000000000000000000000000000000000000000..c14bcf04945c846858eb5bfd501cbf36aa43b02b --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/50 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | red | +Level 1 | blue | purple | green | diff --git a/blocks/task2/maps/level5/table_rep_input/51 b/blocks/task2/maps/level5/table_rep_input/51 new file mode 100644 index 0000000000000000000000000000000000000000..fbac7c494c577584583e7e4ed44823bdb6d9d254 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/51 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | purple | +Level 1 | yellow | green | diff --git a/blocks/task2/maps/level5/table_rep_input/52 b/blocks/task2/maps/level5/table_rep_input/52 new file mode 100644 index 0000000000000000000000000000000000000000..c245e592d930ef8c7e87ebc22936bbf2322606a8 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/52 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | blue | +Level 1 | purple | green | diff --git a/blocks/task2/maps/level5/table_rep_input/53 b/blocks/task2/maps/level5/table_rep_input/53 new file mode 100644 index 0000000000000000000000000000000000000000..ba73d300efc190ee999eca5fbdb05742b5dfa21a --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/53 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | red | +Level 1 | blue | green | diff --git a/blocks/task2/maps/level5/table_rep_input/54 b/blocks/task2/maps/level5/table_rep_input/54 new file mode 100644 index 0000000000000000000000000000000000000000..490d18fa8a249ffe3935b5ecf758fe7c884433dd --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/54 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | purple | orange | green | diff --git a/blocks/task2/maps/level5/table_rep_input/55 b/blocks/task2/maps/level5/table_rep_input/55 new file mode 100644 index 0000000000000000000000000000000000000000..74ae278992e4d0112f9811a98e91abe8573a78b9 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/55 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | purple | +Level 1 | green | orange | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/56 b/blocks/task2/maps/level5/table_rep_input/56 new file mode 100644 index 0000000000000000000000000000000000000000..68013ad8085d5a12889a1290c2f8ef9073818164 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/56 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | purple | +Level 1 | blue | yellow | red | diff --git a/blocks/task2/maps/level5/table_rep_input/57 b/blocks/task2/maps/level5/table_rep_input/57 new file mode 100644 index 0000000000000000000000000000000000000000..585ac07b2c7635254d211a05bbccf03a4ab71dfe --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/57 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | yellow | green | orange | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/58 b/blocks/task2/maps/level5/table_rep_input/58 new file mode 100644 index 0000000000000000000000000000000000000000..b47fb88a842269f4430c007ab2c7c702c5f5b6dc --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/58 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | orange | green | diff --git a/blocks/task2/maps/level5/table_rep_input/59 b/blocks/task2/maps/level5/table_rep_input/59 new file mode 100644 index 0000000000000000000000000000000000000000..31ae62358eae116b9a8b2503c75196934c2e1aac --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/59 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | red | +Level 1 | blue | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/6 b/blocks/task2/maps/level5/table_rep_input/6 new file mode 100644 index 0000000000000000000000000000000000000000..3390e1b49627b47ce958a1babe07da7e35591b89 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/6 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | blue | +Level 1 | green | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/60 b/blocks/task2/maps/level5/table_rep_input/60 new file mode 100644 index 0000000000000000000000000000000000000000..c31d89976acf26e0cc1343fe985c9dbd2a75caf8 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/60 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | orange | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level5/table_rep_input/61 b/blocks/task2/maps/level5/table_rep_input/61 new file mode 100644 index 0000000000000000000000000000000000000000..60a745be1fa843f04d07c0f668f34be75c36b9bb --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/61 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | green | +Level 1 | purple | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/62 b/blocks/task2/maps/level5/table_rep_input/62 new file mode 100644 index 0000000000000000000000000000000000000000..d6fb3a2de60bff4a13cfc99142508d3c0a841b45 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/62 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | orange | +Level 1 | red | yellow | green | diff --git a/blocks/task2/maps/level5/table_rep_input/63 b/blocks/task2/maps/level5/table_rep_input/63 new file mode 100644 index 0000000000000000000000000000000000000000..2da6cc82bd446ea0c76931603a38e2e6eaefc21a --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/63 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | red | green | +Level 1 | orange | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/64 b/blocks/task2/maps/level5/table_rep_input/64 new file mode 100644 index 0000000000000000000000000000000000000000..c3d60b18d3aa510179a12f15dfab7684763fdce7 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/64 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/65 b/blocks/task2/maps/level5/table_rep_input/65 new file mode 100644 index 0000000000000000000000000000000000000000..7660a965fa696187320a0a3ec3f69f25058b6c19 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/65 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | orange | +Level 1 | purple | blue | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/66 b/blocks/task2/maps/level5/table_rep_input/66 new file mode 100644 index 0000000000000000000000000000000000000000..84ddd7fe42cc346da8d11cf6ccd65ff354ae1b06 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/66 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | orange | +Level 1 | red | blue | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/67 b/blocks/task2/maps/level5/table_rep_input/67 new file mode 100644 index 0000000000000000000000000000000000000000..d9a22481c7caf0a4790f8086f89fe678edd50b7c --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/67 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | orange | blue | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/68 b/blocks/task2/maps/level5/table_rep_input/68 new file mode 100644 index 0000000000000000000000000000000000000000..f37512ba0284e0ae31d2e773a281bfac6de8173b --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/68 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | red | green | diff --git a/blocks/task2/maps/level5/table_rep_input/69 b/blocks/task2/maps/level5/table_rep_input/69 new file mode 100644 index 0000000000000000000000000000000000000000..0804c4f72f797814b38e02be2c3b135e78070ad9 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/69 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | yellow | +Level 1 | orange | purple | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/7 b/blocks/task2/maps/level5/table_rep_input/7 new file mode 100644 index 0000000000000000000000000000000000000000..d4cc35ffe28a1aa9a01cb463dc7ada8e8456662c --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/7 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | orange | blue | +Level 1 | purple | red | diff --git a/blocks/task2/maps/level5/table_rep_input/70 b/blocks/task2/maps/level5/table_rep_input/70 new file mode 100644 index 0000000000000000000000000000000000000000..b3f23f8f4eafe9e438e2016d4b7923cd3f48e269 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/70 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | green | yellow | +Level 1 | blue | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/71 b/blocks/task2/maps/level5/table_rep_input/71 new file mode 100644 index 0000000000000000000000000000000000000000..67298a0d0fd51ca6ecd06f64a0250f4d756fff3f --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/71 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | red | green | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/72 b/blocks/task2/maps/level5/table_rep_input/72 new file mode 100644 index 0000000000000000000000000000000000000000..e572ee576db1103e48d7f85f5bf1c780f6e6979a --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/72 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | green | yellow | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/73 b/blocks/task2/maps/level5/table_rep_input/73 new file mode 100644 index 0000000000000000000000000000000000000000..48f067390063ab05009eb9b4c60df16f506b2021 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/73 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | red | +Level 2 | | purple | +Level 1 | yellow | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/74 b/blocks/task2/maps/level5/table_rep_input/74 new file mode 100644 index 0000000000000000000000000000000000000000..b64099eaf11b1c2a31a9a17d8c9028a19fab0631 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/74 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | purple | green | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/75 b/blocks/task2/maps/level5/table_rep_input/75 new file mode 100644 index 0000000000000000000000000000000000000000..167304a915a18e01ec2b7f3916459d0d9030b7e7 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/75 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | red | green | diff --git a/blocks/task2/maps/level5/table_rep_input/76 b/blocks/task2/maps/level5/table_rep_input/76 new file mode 100644 index 0000000000000000000000000000000000000000..7fa504526469ec70e22987b95abc6d66e0aeed98 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/76 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | green | purple | red | diff --git a/blocks/task2/maps/level5/table_rep_input/77 b/blocks/task2/maps/level5/table_rep_input/77 new file mode 100644 index 0000000000000000000000000000000000000000..32895e94399c79de9cdb3aa6474535d225408ee5 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/77 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | green | blue | +Level 1 | red | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/78 b/blocks/task2/maps/level5/table_rep_input/78 new file mode 100644 index 0000000000000000000000000000000000000000..7789ccfb1e321d0262b4c5d55f260b566e64e3b0 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/78 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | orange | +Level 1 | purple | green | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/79 b/blocks/task2/maps/level5/table_rep_input/79 new file mode 100644 index 0000000000000000000000000000000000000000..6aced1eeb190dd667ea55fc18a4d16c5c7051755 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/79 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | purple | blue | green | diff --git a/blocks/task2/maps/level5/table_rep_input/8 b/blocks/task2/maps/level5/table_rep_input/8 new file mode 100644 index 0000000000000000000000000000000000000000..9008da9f33a0760ab313f2c21a4b8d4e5a028c34 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/8 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | yellow | +Level 1 | orange | red | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/80 b/blocks/task2/maps/level5/table_rep_input/80 new file mode 100644 index 0000000000000000000000000000000000000000..6316bc11ac712515b003a9ceb573f8980957dd7e --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/80 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | red | purple | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/81 b/blocks/task2/maps/level5/table_rep_input/81 new file mode 100644 index 0000000000000000000000000000000000000000..8dd79de7ed24eca84ccd032080bff74d43ee56f9 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/81 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | orange | +Level 2 | | purple | +Level 1 | blue | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/82 b/blocks/task2/maps/level5/table_rep_input/82 new file mode 100644 index 0000000000000000000000000000000000000000..92820ea4fbf855230d9c7e27cc8b0e816085dc03 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/82 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | purple | +Level 2 | | green | +Level 1 | blue | red | diff --git a/blocks/task2/maps/level5/table_rep_input/83 b/blocks/task2/maps/level5/table_rep_input/83 new file mode 100644 index 0000000000000000000000000000000000000000..365bcbcd5cb9b81f60e7bfbf33da6abdc945112e --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/83 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | orange | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/84 b/blocks/task2/maps/level5/table_rep_input/84 new file mode 100644 index 0000000000000000000000000000000000000000..34013162e974d1063e1c990a2fb99c0d11a00af6 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/84 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | yellow | blue | red | green | diff --git a/blocks/task2/maps/level5/table_rep_input/85 b/blocks/task2/maps/level5/table_rep_input/85 new file mode 100644 index 0000000000000000000000000000000000000000..bb9fdf8834f00a62bd6586719451afe7570da37f --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/85 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | green | +Level 2 | | purple | +Level 1 | blue | red | diff --git a/blocks/task2/maps/level5/table_rep_input/86 b/blocks/task2/maps/level5/table_rep_input/86 new file mode 100644 index 0000000000000000000000000000000000000000..944eb4868da7cd64ff4728d56385a56a41b62ab1 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/86 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | purple | +Level 1 | green | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/87 b/blocks/task2/maps/level5/table_rep_input/87 new file mode 100644 index 0000000000000000000000000000000000000000..6d9300580ff1c0ad6a404f5e7e63e969fd39025f --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/87 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | purple | +Level 2 | | green | +Level 1 | blue | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/88 b/blocks/task2/maps/level5/table_rep_input/88 new file mode 100644 index 0000000000000000000000000000000000000000..9c7d5096166601fb778031412e2805a9b228ef4f --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/88 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | red | yellow | green | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/89 b/blocks/task2/maps/level5/table_rep_input/89 new file mode 100644 index 0000000000000000000000000000000000000000..fb7d336865946b85e3c480decb011470d3dededd --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/89 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | green | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/9 b/blocks/task2/maps/level5/table_rep_input/9 new file mode 100644 index 0000000000000000000000000000000000000000..d9a22481c7caf0a4790f8086f89fe678edd50b7c --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/9 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | orange | blue | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/90 b/blocks/task2/maps/level5/table_rep_input/90 new file mode 100644 index 0000000000000000000000000000000000000000..e5e06fb0fe0b6a99c8d1cc9ebbf335ad182abdcd --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/90 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | blue | red | +Level 1 | orange | yellow | diff --git a/blocks/task2/maps/level5/table_rep_input/91 b/blocks/task2/maps/level5/table_rep_input/91 new file mode 100644 index 0000000000000000000000000000000000000000..5ce413d3fc5ce97f487a2ccabd7fd13e3c278f54 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/91 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | blue | yellow | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/92 b/blocks/task2/maps/level5/table_rep_input/92 new file mode 100644 index 0000000000000000000000000000000000000000..70288136bbf323310340d36dba2f6b2f6cfd1e23 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/92 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | purple | green | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/93 b/blocks/task2/maps/level5/table_rep_input/93 new file mode 100644 index 0000000000000000000000000000000000000000..50626404dd132ed6daba24687b89b9f529193537 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/93 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | red | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/94 b/blocks/task2/maps/level5/table_rep_input/94 new file mode 100644 index 0000000000000000000000000000000000000000..8b30842e990ac6af58763719fa5e9a38cb45f95a --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/94 @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | red | +Level 1 | yellow | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/95 b/blocks/task2/maps/level5/table_rep_input/95 new file mode 100644 index 0000000000000000000000000000000000000000..5a5cbcbb6a7ca0ec687cefd86d4c94083f94dd1e --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/95 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | yellow | +Level 1 | green | purple | diff --git a/blocks/task2/maps/level5/table_rep_input/96 b/blocks/task2/maps/level5/table_rep_input/96 new file mode 100644 index 0000000000000000000000000000000000000000..a5c5b1bc340e60de42ba98e2ee6519dc79281be9 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/96 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | yellow | +Level 1 | purple | blue | orange | diff --git a/blocks/task2/maps/level5/table_rep_input/97 b/blocks/task2/maps/level5/table_rep_input/97 new file mode 100644 index 0000000000000000000000000000000000000000..9a4adfc7b7aef31a5efc6ecd224e2d65f6fbe9e2 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/97 @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | orange | +Level 1 | green | yellow | blue | diff --git a/blocks/task2/maps/level5/table_rep_input/98 b/blocks/task2/maps/level5/table_rep_input/98 new file mode 100644 index 0000000000000000000000000000000000000000..fd7c2f385bf32585b7d11b73d545d9e5a0cbfc3c --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/98 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | yellow | purple | red | diff --git a/blocks/task2/maps/level5/table_rep_input/99 b/blocks/task2/maps/level5/table_rep_input/99 new file mode 100644 index 0000000000000000000000000000000000000000..68a3253dbf2b36525048e0cd079e8a708d4ecec4 --- /dev/null +++ b/blocks/task2/maps/level5/table_rep_input/99 @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | blue | red | yellow | orange | diff --git a/blocks/task2/maps/level5/text_input/0.txt b/blocks/task2/maps/level5/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level5/text_input/0.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/1.txt b/blocks/task2/maps/level5/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec0c1d6a3d4c200252cb983bd69e5a95c53dc7ad --- /dev/null +++ b/blocks/task2/maps/level5/text_input/1.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the yellow block? +(A) The red block is directly above the yellow block, and they are in the same stack. +(B) The red block is directly below the yellow block, and they are in the same stack. +(C) The red block and the yellow block are at different stacks. +(D) At least one of the red block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/10.txt b/blocks/task2/maps/level5/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/10.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/11.txt b/blocks/task2/maps/level5/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/11.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/12.txt b/blocks/task2/maps/level5/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8bddd612c20ad308f45b4b66bb0323ee4fea686 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/12.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the red block? +(A) The yellow block is directly above the red block, and they are in the same stack. +(B) The yellow block is directly below the red block, and they are in the same stack. +(C) The yellow block and the red block are at different stacks. +(D) At least one of the yellow block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/13.txt b/blocks/task2/maps/level5/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/13.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/14.txt b/blocks/task2/maps/level5/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/14.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/15.txt b/blocks/task2/maps/level5/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/15.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/16.txt b/blocks/task2/maps/level5/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level5/text_input/16.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/17.txt b/blocks/task2/maps/level5/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..276bb7c4238204a1a0e17a7894b3d0fcfeef81b2 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/17.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the orange block? +(A) The red block is directly above the orange block, and they are in the same stack. +(B) The red block is directly below the orange block, and they are in the same stack. +(C) The red block and the orange block are at different stacks. +(D) At least one of the red block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/18.txt b/blocks/task2/maps/level5/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/18.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/19.txt b/blocks/task2/maps/level5/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/19.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/2.txt b/blocks/task2/maps/level5/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/2.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/20.txt b/blocks/task2/maps/level5/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/20.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/21.txt b/blocks/task2/maps/level5/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/21.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/22.txt b/blocks/task2/maps/level5/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level5/text_input/22.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/23.txt b/blocks/task2/maps/level5/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/23.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/24.txt b/blocks/task2/maps/level5/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level5/text_input/24.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/25.txt b/blocks/task2/maps/level5/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/25.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/26.txt b/blocks/task2/maps/level5/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8bddd612c20ad308f45b4b66bb0323ee4fea686 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/26.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the red block? +(A) The yellow block is directly above the red block, and they are in the same stack. +(B) The yellow block is directly below the red block, and they are in the same stack. +(C) The yellow block and the red block are at different stacks. +(D) At least one of the yellow block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/27.txt b/blocks/task2/maps/level5/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level5/text_input/27.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/28.txt b/blocks/task2/maps/level5/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level5/text_input/28.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/29.txt b/blocks/task2/maps/level5/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d15b90a8659f8daf876c46867d90739ce2ac0e9 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/29.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the blue block? +(A) The purple block is directly above the blue block, and they are in the same stack. +(B) The purple block is directly below the blue block, and they are in the same stack. +(C) The purple block and the blue block are at different stacks. +(D) At least one of the purple block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/3.txt b/blocks/task2/maps/level5/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level5/text_input/3.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/30.txt b/blocks/task2/maps/level5/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/30.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/31.txt b/blocks/task2/maps/level5/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/31.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/32.txt b/blocks/task2/maps/level5/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/32.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/33.txt b/blocks/task2/maps/level5/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fcbba5f743e043d4b558f24ba12eda7d4a6836 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/33.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the purple block? +(A) The yellow block is directly above the purple block, and they are in the same stack. +(B) The yellow block is directly below the purple block, and they are in the same stack. +(C) The yellow block and the purple block are at different stacks. +(D) At least one of the yellow block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/34.txt b/blocks/task2/maps/level5/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level5/text_input/34.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/35.txt b/blocks/task2/maps/level5/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level5/text_input/35.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/36.txt b/blocks/task2/maps/level5/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a3fe4a28186816a694e0528c8c174daac9ac1d --- /dev/null +++ b/blocks/task2/maps/level5/text_input/36.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the red block? +(A) The blue block is directly above the red block, and they are in the same stack. +(B) The blue block is directly below the red block, and they are in the same stack. +(C) The blue block and the red block are at different stacks. +(D) At least one of the blue block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/37.txt b/blocks/task2/maps/level5/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/37.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/38.txt b/blocks/task2/maps/level5/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/38.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/39.txt b/blocks/task2/maps/level5/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/39.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/4.txt b/blocks/task2/maps/level5/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level5/text_input/4.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/40.txt b/blocks/task2/maps/level5/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/40.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/41.txt b/blocks/task2/maps/level5/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level5/text_input/41.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/42.txt b/blocks/task2/maps/level5/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level5/text_input/42.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/43.txt b/blocks/task2/maps/level5/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/43.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/44.txt b/blocks/task2/maps/level5/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/44.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/45.txt b/blocks/task2/maps/level5/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/45.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/46.txt b/blocks/task2/maps/level5/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/46.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/47.txt b/blocks/task2/maps/level5/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level5/text_input/47.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/48.txt b/blocks/task2/maps/level5/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level5/text_input/48.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/49.txt b/blocks/task2/maps/level5/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/49.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/5.txt b/blocks/task2/maps/level5/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b179c31fd97b218321bd4d836d3e0189544e6210 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/5.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the blue block? +(A) The orange block is directly above the blue block, and they are in the same stack. +(B) The orange block is directly below the blue block, and they are in the same stack. +(C) The orange block and the blue block are at different stacks. +(D) At least one of the orange block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/50.txt b/blocks/task2/maps/level5/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/50.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/51.txt b/blocks/task2/maps/level5/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level5/text_input/51.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/52.txt b/blocks/task2/maps/level5/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/52.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/53.txt b/blocks/task2/maps/level5/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/53.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/54.txt b/blocks/task2/maps/level5/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level5/text_input/54.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/55.txt b/blocks/task2/maps/level5/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f1d3cc8f6b75c3d16abbff67081d279feae01 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/55.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the yellow block? +(A) The purple block is directly above the yellow block, and they are in the same stack. +(B) The purple block is directly below the yellow block, and they are in the same stack. +(C) The purple block and the yellow block are at different stacks. +(D) At least one of the purple block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/56.txt b/blocks/task2/maps/level5/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..11d6986d2c290c1b5baa3551a51f82c68e61cc32 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/56.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the green block? +(A) The yellow block is directly above the green block, and they are in the same stack. +(B) The yellow block is directly below the green block, and they are in the same stack. +(C) The yellow block and the green block are at different stacks. +(D) At least one of the yellow block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/57.txt b/blocks/task2/maps/level5/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/57.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/58.txt b/blocks/task2/maps/level5/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/58.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/59.txt b/blocks/task2/maps/level5/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a029e5640f4ca1b82c4e231944fcf520a509d1b --- /dev/null +++ b/blocks/task2/maps/level5/text_input/59.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the red block? +(A) The green block is directly above the red block, and they are in the same stack. +(B) The green block is directly below the red block, and they are in the same stack. +(C) The green block and the red block are at different stacks. +(D) At least one of the green block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/6.txt b/blocks/task2/maps/level5/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/6.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/60.txt b/blocks/task2/maps/level5/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/60.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/61.txt b/blocks/task2/maps/level5/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/61.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/62.txt b/blocks/task2/maps/level5/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level5/text_input/62.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/63.txt b/blocks/task2/maps/level5/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/63.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/64.txt b/blocks/task2/maps/level5/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8bddd612c20ad308f45b4b66bb0323ee4fea686 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/64.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the red block? +(A) The yellow block is directly above the red block, and they are in the same stack. +(B) The yellow block is directly below the red block, and they are in the same stack. +(C) The yellow block and the red block are at different stacks. +(D) At least one of the yellow block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/65.txt b/blocks/task2/maps/level5/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec0c1d6a3d4c200252cb983bd69e5a95c53dc7ad --- /dev/null +++ b/blocks/task2/maps/level5/text_input/65.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the yellow block? +(A) The red block is directly above the yellow block, and they are in the same stack. +(B) The red block is directly below the yellow block, and they are in the same stack. +(C) The red block and the yellow block are at different stacks. +(D) At least one of the red block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/66.txt b/blocks/task2/maps/level5/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff49383f0105e11f9fe31ab8c3527907cbf66b2 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/66.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the purple block? +(A) The orange block is directly above the purple block, and they are in the same stack. +(B) The orange block is directly below the purple block, and they are in the same stack. +(C) The orange block and the purple block are at different stacks. +(D) At least one of the orange block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/67.txt b/blocks/task2/maps/level5/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..11d6986d2c290c1b5baa3551a51f82c68e61cc32 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/67.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the green block? +(A) The yellow block is directly above the green block, and they are in the same stack. +(B) The yellow block is directly below the green block, and they are in the same stack. +(C) The yellow block and the green block are at different stacks. +(D) At least one of the yellow block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/68.txt b/blocks/task2/maps/level5/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13adaf8d602e25967ddce1ad3a6e96634f934a6 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/68.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the yellow block? +(A) The orange block is directly above the yellow block, and they are in the same stack. +(B) The orange block is directly below the yellow block, and they are in the same stack. +(C) The orange block and the yellow block are at different stacks. +(D) At least one of the orange block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/69.txt b/blocks/task2/maps/level5/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d6f2225bb3a95f77d5223214ee63ede0ea4580a --- /dev/null +++ b/blocks/task2/maps/level5/text_input/69.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the blue block? +(A) The red block is directly above the blue block, and they are in the same stack. +(B) The red block is directly below the blue block, and they are in the same stack. +(C) The red block and the blue block are at different stacks. +(D) At least one of the red block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/7.txt b/blocks/task2/maps/level5/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level5/text_input/7.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/70.txt b/blocks/task2/maps/level5/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/70.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/71.txt b/blocks/task2/maps/level5/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff61c7b14fdd8e432331c257fd6c38b12628312e --- /dev/null +++ b/blocks/task2/maps/level5/text_input/71.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the red block? +(A) The purple block is directly above the red block, and they are in the same stack. +(B) The purple block is directly below the red block, and they are in the same stack. +(C) The purple block and the red block are at different stacks. +(D) At least one of the purple block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/72.txt b/blocks/task2/maps/level5/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b3b5c54e9a9e054c35bf42ae7680d54cc263da --- /dev/null +++ b/blocks/task2/maps/level5/text_input/72.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the yellow block? +(A) The blue block is directly above the yellow block, and they are in the same stack. +(B) The blue block is directly below the yellow block, and they are in the same stack. +(C) The blue block and the yellow block are at different stacks. +(D) At least one of the blue block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/73.txt b/blocks/task2/maps/level5/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a3fe4a28186816a694e0528c8c174daac9ac1d --- /dev/null +++ b/blocks/task2/maps/level5/text_input/73.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the red block? +(A) The blue block is directly above the red block, and they are in the same stack. +(B) The blue block is directly below the red block, and they are in the same stack. +(C) The blue block and the red block are at different stacks. +(D) At least one of the blue block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/74.txt b/blocks/task2/maps/level5/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..276bb7c4238204a1a0e17a7894b3d0fcfeef81b2 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/74.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the orange block? +(A) The red block is directly above the orange block, and they are in the same stack. +(B) The red block is directly below the orange block, and they are in the same stack. +(C) The red block and the orange block are at different stacks. +(D) At least one of the red block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/75.txt b/blocks/task2/maps/level5/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..11d6986d2c290c1b5baa3551a51f82c68e61cc32 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/75.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the green block? +(A) The yellow block is directly above the green block, and they are in the same stack. +(B) The yellow block is directly below the green block, and they are in the same stack. +(C) The yellow block and the green block are at different stacks. +(D) At least one of the yellow block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/76.txt b/blocks/task2/maps/level5/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec0c1d6a3d4c200252cb983bd69e5a95c53dc7ad --- /dev/null +++ b/blocks/task2/maps/level5/text_input/76.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the yellow block? +(A) The red block is directly above the yellow block, and they are in the same stack. +(B) The red block is directly below the yellow block, and they are in the same stack. +(C) The red block and the yellow block are at different stacks. +(D) At least one of the red block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/77.txt b/blocks/task2/maps/level5/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e9384b03801049a875c483f573eecf7e7052ca --- /dev/null +++ b/blocks/task2/maps/level5/text_input/77.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the green block? +(A) The red block is directly above the green block, and they are in the same stack. +(B) The red block is directly below the green block, and they are in the same stack. +(C) The red block and the green block are at different stacks. +(D) At least one of the red block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/78.txt b/blocks/task2/maps/level5/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8bddd612c20ad308f45b4b66bb0323ee4fea686 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/78.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the red block? +(A) The yellow block is directly above the red block, and they are in the same stack. +(B) The yellow block is directly below the red block, and they are in the same stack. +(C) The yellow block and the red block are at different stacks. +(D) At least one of the yellow block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/79.txt b/blocks/task2/maps/level5/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/79.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/8.txt b/blocks/task2/maps/level5/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7f0272e63929d24e3fd8b7920feb88da97ec016 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/8.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the purple block? +(A) The red block is directly above the purple block, and they are in the same stack. +(B) The red block is directly below the purple block, and they are in the same stack. +(C) The red block and the purple block are at different stacks. +(D) At least one of the red block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/80.txt b/blocks/task2/maps/level5/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/80.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/81.txt b/blocks/task2/maps/level5/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/81.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/82.txt b/blocks/task2/maps/level5/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..11d6986d2c290c1b5baa3551a51f82c68e61cc32 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/82.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the green block? +(A) The yellow block is directly above the green block, and they are in the same stack. +(B) The yellow block is directly below the green block, and they are in the same stack. +(C) The yellow block and the green block are at different stacks. +(D) At least one of the yellow block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/83.txt b/blocks/task2/maps/level5/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/83.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/84.txt b/blocks/task2/maps/level5/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..35555537fc7c65dc91e4506b889f94e90930d613 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/84.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the purple block and the green block? +(A) The purple block is directly above the green block, and they are in the same stack. +(B) The purple block is directly below the green block, and they are in the same stack. +(C) The purple block and the green block are at different stacks. +(D) At least one of the purple block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/85.txt b/blocks/task2/maps/level5/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/85.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/86.txt b/blocks/task2/maps/level5/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/86.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/87.txt b/blocks/task2/maps/level5/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/87.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/88.txt b/blocks/task2/maps/level5/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5781279b8f038570c62006116751766a3d01885 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/88.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the blue block? +(A) The yellow block is directly above the blue block, and they are in the same stack. +(B) The yellow block is directly below the blue block, and they are in the same stack. +(C) The yellow block and the blue block are at different stacks. +(D) At least one of the yellow block and the blue block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/89.txt b/blocks/task2/maps/level5/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/89.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/9.txt b/blocks/task2/maps/level5/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d01fc0a12a03747264cc796ea6658f9c68115f9 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/9.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the yellow block? +(A) The green block is directly above the yellow block, and they are in the same stack. +(B) The green block is directly below the yellow block, and they are in the same stack. +(C) The green block and the yellow block are at different stacks. +(D) At least one of the green block and the yellow block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/90.txt b/blocks/task2/maps/level5/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..63c8257386de0204c00f712a34208f26c7004b2f --- /dev/null +++ b/blocks/task2/maps/level5/text_input/90.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the orange block? +(A) The blue block is directly above the orange block, and they are in the same stack. +(B) The blue block is directly below the orange block, and they are in the same stack. +(C) The blue block and the orange block are at different stacks. +(D) At least one of the blue block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/91.txt b/blocks/task2/maps/level5/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level5/text_input/91.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/92.txt b/blocks/task2/maps/level5/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..376f3d3ea034f52a0c1527fa112922b2fd08e681 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/92.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the orange block and the red block? +(A) The orange block is directly above the red block, and they are in the same stack. +(B) The orange block is directly below the red block, and they are in the same stack. +(C) The orange block and the red block are at different stacks. +(D) At least one of the orange block and the red block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/93.txt b/blocks/task2/maps/level5/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..276bb7c4238204a1a0e17a7894b3d0fcfeef81b2 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/93.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the red block and the orange block? +(A) The red block is directly above the orange block, and they are in the same stack. +(B) The red block is directly below the orange block, and they are in the same stack. +(C) The red block and the orange block are at different stacks. +(D) At least one of the red block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/94.txt b/blocks/task2/maps/level5/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/94.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/95.txt b/blocks/task2/maps/level5/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bd89f7da3dee49d6d0b45fe7f7471b264dbebd --- /dev/null +++ b/blocks/task2/maps/level5/text_input/95.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the green block? +(A) The blue block is directly above the green block, and they are in the same stack. +(B) The blue block is directly below the green block, and they are in the same stack. +(C) The blue block and the green block are at different stacks. +(D) At least one of the blue block and the green block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/96.txt b/blocks/task2/maps/level5/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7ce43daefa1fc5b91e9f7abfbdb3b4243bce3c --- /dev/null +++ b/blocks/task2/maps/level5/text_input/96.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the yellow block and the orange block? +(A) The yellow block is directly above the orange block, and they are in the same stack. +(B) The yellow block is directly below the orange block, and they are in the same stack. +(C) The yellow block and the orange block are at different stacks. +(D) At least one of the yellow block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/97.txt b/blocks/task2/maps/level5/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..e423767c81ef45791631964cbbacd5ec4d8098e3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/97.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the blue block and the purple block? +(A) The blue block is directly above the purple block, and they are in the same stack. +(B) The blue block is directly below the purple block, and they are in the same stack. +(C) The blue block and the purple block are at different stacks. +(D) At least one of the blue block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/98.txt b/blocks/task2/maps/level5/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e42e996227eeef125eb059b6e0d38c5f837f --- /dev/null +++ b/blocks/task2/maps/level5/text_input/98.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the purple block? +(A) The green block is directly above the purple block, and they are in the same stack. +(B) The green block is directly below the purple block, and they are in the same stack. +(C) The green block and the purple block are at different stacks. +(D) At least one of the green block and the purple block does not exist in the presented configurations. diff --git a/blocks/task2/maps/level5/text_input/99.txt b/blocks/task2/maps/level5/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3963ea6fb674ed4edd474dafca1e3352a166dc3 --- /dev/null +++ b/blocks/task2/maps/level5/text_input/99.txt @@ -0,0 +1,5 @@ +What is the spatial relation betweeen the green block and the orange block? +(A) The green block is directly above the orange block, and they are in the same stack. +(B) The green block is directly below the orange block, and they are in the same stack. +(C) The green block and the orange block are at different stacks. +(D) At least one of the green block and the orange block does not exist in the presented configurations. diff --git a/blocks/task2/prompt-text/prompt-text.txt b/blocks/task2/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f99e2557c756d620aea32ac7dbe4f19ef122dc7 --- /dev/null +++ b/blocks/task2/prompt-text/prompt-text.txt @@ -0,0 +1,29 @@ +In this task, you will see a photo of blocks. You will analyze the block configuration and then answer a question regarding the spatial relation of two specified blocks. Since coding is not within your skill set, your approach relies on logical reasoning. + +## Game Setup +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. +- The possible relations of two blocks include: (A) One block is directly above another block, and they are at the same stack; (B) One block is directly below another block, and they are at the same stack; (C) Two blocks are at different blocks; (D) At least one of the asked blocks does not exist in the image. + +We provide an example to further illustrate the rules: + + + +In this example, there are four blocks in three stacks. From left to right: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block + +We can answer the questiosn regarding the spatial relations accordingly. +For example, for the question "What is the spatial relation between the purple block and blue block?", since the purple block and the blue block are at different stacks, we should choose the choice indicating they are at different stacks. + +## Procedure and Output +Your output should follow this format: +1. First, analyze the block configuration; +2. Then, answer the question with the format , where is one of {A,B,C,D}. For example, " A". + +Now please answer the following question based on the given image below: + + + + diff --git a/blocks/task2/prompt-visual-images/example0.jpg b/blocks/task2/prompt-visual-images/example0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00441c1e743435ca733644c169ff6a8c55def2e6 --- /dev/null +++ b/blocks/task2/prompt-visual-images/example0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556d22008dc07ec6cc3025494315bceb6eab830c2f66ffe43ae21b1152e45769 +size 10171 diff --git a/blocks/task2/test.py b/blocks/task2/test.py new file mode 100644 index 0000000000000000000000000000000000000000..7a469241395763b982860d8b24bf39f2c52f19a6 --- /dev/null +++ b/blocks/task2/test.py @@ -0,0 +1,138 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +from IPython.display import display +from IPython.display import Markdown + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) + # torch.manual_seed(seed) + # torch.cuda.manual_seed(seed) + # torch.backends.cudnn.deterministic = True + # env.seed(seed) +seed_everything(1) + +levels = [3,4,5] +in_context_example_num = 0 # 0, 1, 2, 4, 8 + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +EXAMPLE_DICT = { + 3: [], + 4: [], + 5: [], +} +for level in levels: + for example_id in range(8): + curr_example_pack = {} + curr_example_pack["image_path"] = "example/level%d/image_input/%d.jpg"%(level, example_id) + with open("example/level%d/text_input/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["question"] = f.read() + with open("example/level%d/answer/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["answer"] = f.read() + EXAMPLE_DICT[level].append(curr_example_pack) + + +example_img = PIL.Image.open('prompt-visual-images/example0.jpg') +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + input_img_path = "level%d/image_input/"%(level) + input_txt_path = "level%d/text_input/"%(level) + + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + prompt_input_1 = '''In this task, you will see a photo of blocks. You will analyze the block configuration and then answer a question regarding the spatial relation of two specified blocks. Since coding is not within your skill set, your approach relies on logical reasoning. + +## Game Setup +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. +- The possible relations of two blocks include: (A) One block is directly above another block, and they are at the same stack; (B) One block is directly below another block, and they are at the same stack; (C) Two blocks are at different blocks; (D) At least one of the asked blocks does not exist in the image. + +We provide an example to further illustrate the rules: +''' + + prompt_input_2 = ''' +In this example, there are four blocks in three stacks. From left to right: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block + +We can answer the questiosn regarding the spatial relations accordingly. +For example, for the question "What is the spatial relation between the purple block and blue block?", since the purple block and the blue block are at different stacks, we should choose the choice indicating they are at different stacks. + +## Procedure and Output +Your output should follow this format: +1. First, analyze the block configuration; +2. Then, answer the question with the format , where is one of {A,B,C,D}. For example, " A". +''' + + prompt_examples = [] + image_examples = [] + if in_context_example_num > 0: + prompt_examples.append("## Example:\n") + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + image_examples.append(PIL.Image.open(this_example["image_path"])) + prompt_examples.append(this_example["question"] + "\n" + this_example["answer"] + "\n") + prompt_input_3 = "\n\nNow please answer the following question based on the given image below:\n" + with open(input_txt_path + "%d.txt"%(curr_id), 'r') as f: + question = f.read() + input_img = PIL.Image.open(input_img_path + "%d.jpg"%(curr_id)) + model_input_seq = [prompt_input_1, example_img, prompt_input_2] + if in_context_example_num > 0: + assert len(prompt_examples) == len(image_examples) + 1 + assert len(prompt_examples) == in_context_example_num + 1 + model_input_seq.append(prompt_examples[0]) + for example_index in range(in_context_example_num): + model_input_seq.append(image_examples[example_index]) + model_input_seq.append(prompt_examples[example_index+1]) + model_input_seq += [prompt_input_3, input_img, question] + + + response = model.generate_content(model_input_seq) + + + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass + + diff --git a/blocks/task3/.DS_Store b/blocks/task3/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5da9819155a52865a658d1ea064a7db63da2c079 Binary files /dev/null and b/blocks/task3/.DS_Store differ diff --git a/blocks/task3/eval.py b/blocks/task3/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..70068555c925913fc993cb9a75af5138be2024c0 --- /dev/null +++ b/blocks/task3/eval.py @@ -0,0 +1,48 @@ +import csv +import os + +def clear_answer(plan): + plan = plan.replace('"', '') + plan = plan.replace("'", '') + plan = plan.replace("\n", '') + plan = plan.replace(".", '') + plan = plan.replace("*", '') + plan = plan.lstrip() + plan = plan.rstrip() + return plan + +answer_dict = {0: "A", 1: 'B', 2: 'C', 3: 'D'} + +# import ipdb; ipdb.set_trace() +count_corr = [0,0,0] +invalid = [0,0,0] +for level in [3,4,5]: + with open("../level%d/annotation.txt"%(level), "r") as f: + gt_records = f.read().split('\n')[:-1] + for test_id in range(100): + try: + curr_record = gt_records[test_id] + with open("output/output_img/level%d/%d.txt"%(level, test_id), "r") as f: # img5, text4 + answer = f.read() + answer_index = answer.find("") + if answer_index == -1: + answer_index = answer.find("Output") + answer = answer[(answer_index + len("Output")):] + else: + answer = answer[(answer_index + len("")):] + answer_possible_end_index = answer.find('\n') + if answer_possible_end_index != -1: + answer = answer[:answer_possible_end_index] + answer = clear_answer(answer) + # import ipdb; ipdb.set_trace() + if answer_dict[int(curr_record)] == answer.upper(): + count_corr[level-3] += 1 + else: + print(answer, test_id) + pass + except: + invalid[level-3] += 1 + # print(test_id) +print(count_corr) +print(invalid) +print("") \ No newline at end of file diff --git a/blocks/task3/example/level3/annotation.txt b/blocks/task3/example/level3/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..6aa657295fd01071daa6df713c4f0221bd4e134d --- /dev/null +++ b/blocks/task3/example/level3/annotation.txt @@ -0,0 +1,8 @@ +3 +2 +0 +3 +2 +2 +2 +0 diff --git a/blocks/task3/example/level3/answer/0.txt b/blocks/task3/example/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a061dfc7208f3933023ce37ece9ce80571c4d1 --- /dev/null +++ b/blocks/task3/example/level3/answer/0.txt @@ -0,0 +1,6 @@ +First, the block configuration in the input image is as follow: +- Stack with red block +- Stack with orange block +- Stack with purple block +Therefore, we will choose the candidate with 3 stacks and the same configuration as shown above. + D \ No newline at end of file diff --git a/blocks/task3/example/level3/answer/1.txt b/blocks/task3/example/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2c2db22930ee189d6702304c264cc0712342442 --- /dev/null +++ b/blocks/task3/example/level3/answer/1.txt @@ -0,0 +1,6 @@ +First, the block configuration in the input image is as follow: +- Stack with blue block +- Stack with orange block +- Stack with yellow block +Therefore, we will choose the candidate with 3 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level3/answer/2.txt b/blocks/task3/example/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..5990dde400ff8f59454e66a8e8803226c926fbcc --- /dev/null +++ b/blocks/task3/example/level3/answer/2.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with orange block +- Stack with blue block, purple block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + A \ No newline at end of file diff --git a/blocks/task3/example/level3/answer/3.txt b/blocks/task3/example/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e545d8ba55274cfcdd0c95b13ef630c842dae43 --- /dev/null +++ b/blocks/task3/example/level3/answer/3.txt @@ -0,0 +1,6 @@ +First, the block configuration in the input image is as follow: +- Stack with orange block +- Stack with green block +- Stack with yellow block +Therefore, we will choose the candidate with 3 stacks and the same configuration as shown above. + D \ No newline at end of file diff --git a/blocks/task3/example/level3/answer/4.txt b/blocks/task3/example/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..715c14bbcbd6e348b3ce4232a6ef7181f6c8d362 --- /dev/null +++ b/blocks/task3/example/level3/answer/4.txt @@ -0,0 +1,6 @@ +First, the block configuration in the input image is as follow: +- Stack with orange block +- Stack with blue block +- Stack with yellow block +Therefore, we will choose the candidate with 3 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level3/answer/5.txt b/blocks/task3/example/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa56b30b1a86372bf6a21283d00bdfbbba164f2a --- /dev/null +++ b/blocks/task3/example/level3/answer/5.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with red block +- Stack with blue block, yellow block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level3/answer/6.txt b/blocks/task3/example/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..742554c7f196841c2744c1e58071d0afdd3aa695 --- /dev/null +++ b/blocks/task3/example/level3/answer/6.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with blue block +- Stack with green block, purple block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level3/answer/7.txt b/blocks/task3/example/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..994f7b4496bc6c4a83c2957a5484e4fc1bca36d9 --- /dev/null +++ b/blocks/task3/example/level3/answer/7.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with orange block +- Stack with green block, blue block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + A \ No newline at end of file diff --git a/blocks/task3/example/level3/image_input/0.jpg b/blocks/task3/example/level3/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21e95b8e8358de4899654d0ee44bc7b630e6c017 --- /dev/null +++ b/blocks/task3/example/level3/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16bbf31e502cad4101223d7bec561ff7dfb8e2be926a8aa4de7076ecf8e0f1be +size 10252 diff --git a/blocks/task3/example/level3/image_input/1.jpg b/blocks/task3/example/level3/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a4527c76c1dc6f623ef7cee14024c15a919f565 --- /dev/null +++ b/blocks/task3/example/level3/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e13a152d5e2101ce4f0f70d8d6ccabff48d9012328d904a5bfd936b11a3267a +size 9610 diff --git a/blocks/task3/example/level3/image_input/2.jpg b/blocks/task3/example/level3/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4af2df380afda6bef1ca01aac7a9a3f04130724 --- /dev/null +++ b/blocks/task3/example/level3/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eecd3e71a417f1bc80b48371b25034ee8d0953ed6cf6283ee26ce30cc15d5f04 +size 10674 diff --git a/blocks/task3/example/level3/image_input/3.jpg b/blocks/task3/example/level3/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..202a6a22db3bee3efdcc406ef15cff24cb1e1d28 --- /dev/null +++ b/blocks/task3/example/level3/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8e3af63c07731af06aff7904beaf6da5d1adfe44733b208d6c7f776f90db9a +size 9610 diff --git a/blocks/task3/example/level3/image_input/4.jpg b/blocks/task3/example/level3/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79e9b77706dbc55cb82bba2bfc34d5908c00943c --- /dev/null +++ b/blocks/task3/example/level3/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9116da8d1a8db825d80ed84f2fa46eb77adcfa270ef2b3927869d6c74ad07ecb +size 9129 diff --git a/blocks/task3/example/level3/image_input/5.jpg b/blocks/task3/example/level3/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc85d0a690fe07b6a62db320b26d2d507fc629dd --- /dev/null +++ b/blocks/task3/example/level3/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078a07cb27c7e7377f7a403cfb42c9f67f058b4e4cfe69b7a7168762d3230025 +size 10591 diff --git a/blocks/task3/example/level3/image_input/6.jpg b/blocks/task3/example/level3/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf4ac3fd3c65a0f53de1ab3d55d363c8c17758ea --- /dev/null +++ b/blocks/task3/example/level3/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e917c94076041cea8298beb47bb41f8b3a19ef9442b01bbb143a9b5a0db5d40 +size 9914 diff --git a/blocks/task3/example/level3/image_input/7.jpg b/blocks/task3/example/level3/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8976e13cf6a3c255b668565fecb99447ca12e25 --- /dev/null +++ b/blocks/task3/example/level3/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6a7fa27bb1b349f52970a870430239220a4389b62a78dd51b93f5b758b1f53 +size 9899 diff --git a/blocks/task3/example/level3/text_input/0.txt b/blocks/task3/example/level3/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e581f71b0450c091cced24798af68819de8300ae --- /dev/null +++ b/blocks/task3/example/level3/text_input/0.txt @@ -0,0 +1,16 @@ +(A) +- Stack with red block +- Stack with orange block, purple block, from bottom to top + +(B) +- Stack with green block +- Stack with orange block, blue block, from bottom to top + +(C) +- Stack with blue block + +(D) +- Stack with red block +- Stack with orange block +- Stack with purple block + diff --git a/blocks/task3/example/level3/text_input/1.txt b/blocks/task3/example/level3/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3f99a3d34888b33b6fb6136fb654d44e76ff5f3 --- /dev/null +++ b/blocks/task3/example/level3/text_input/1.txt @@ -0,0 +1,22 @@ +(A) +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with yellow block + +(B) +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with red block +- Stack with orange block + +(C) +- Stack with blue block +- Stack with orange block +- Stack with yellow block + +(D) +- Stack with yellow block, orange block, blue block, from bottom to top + diff --git a/blocks/task3/example/level3/text_input/2.txt b/blocks/task3/example/level3/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b822914ed9b931635b45c9b5c27fdd95b65886b3 --- /dev/null +++ b/blocks/task3/example/level3/text_input/2.txt @@ -0,0 +1,15 @@ +(A) +- Stack with orange block +- Stack with blue block, purple block, from bottom to top + +(B) +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top + +(C) +- Stack with blue block, yellow block, orange block, green block, purple block, from bottom to top + +(D) +- Stack with purple block, orange block, blue block, from bottom to top + diff --git a/blocks/task3/example/level3/text_input/3.txt b/blocks/task3/example/level3/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f9da485cf2647c50effd9c4206ab6ccca5f0510 --- /dev/null +++ b/blocks/task3/example/level3/text_input/3.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block +- Stack with yellow block, green block, from bottom to top + +(B) +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with yellow block, red block, from bottom to top + +(D) +- Stack with orange block +- Stack with green block +- Stack with yellow block + diff --git a/blocks/task3/example/level3/text_input/4.txt b/blocks/task3/example/level3/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..8767bac31c3fc085d6aa966884ebe209c8dbb8b3 --- /dev/null +++ b/blocks/task3/example/level3/text_input/4.txt @@ -0,0 +1,19 @@ +(A) +- Stack with orange block, blue block, yellow block, from bottom to top + +(B) +- Stack with green block +- Stack with red block +- Stack with purple block, yellow block, orange block, from bottom to top + +(C) +- Stack with orange block +- Stack with blue block +- Stack with yellow block + +(D) +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with blue block + diff --git a/blocks/task3/example/level3/text_input/5.txt b/blocks/task3/example/level3/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb6337d649898cc3db1123287c3dd5e64c74a360 --- /dev/null +++ b/blocks/task3/example/level3/text_input/5.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block, red block, from bottom to top +- Stack with yellow block, green block, from bottom to top + +(B) +- Stack with yellow block +- Stack with blue block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with blue block, yellow block, from bottom to top + +(D) +- Stack with red block +- Stack with purple block, orange block, from bottom to top +- Stack with blue block, green block, from bottom to top + diff --git a/blocks/task3/example/level3/text_input/6.txt b/blocks/task3/example/level3/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..e034b526065d0043874ec8a5c3ad0085300e0b7b --- /dev/null +++ b/blocks/task3/example/level3/text_input/6.txt @@ -0,0 +1,21 @@ +(A) +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block, orange block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block, blue block, from bottom to top + +(C) +- Stack with blue block +- Stack with green block, purple block, from bottom to top + +(D) +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block + diff --git a/blocks/task3/example/level3/text_input/7.txt b/blocks/task3/example/level3/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f46f1a1ec1af98cd0e2d4e3e01d460df1a054e91 --- /dev/null +++ b/blocks/task3/example/level3/text_input/7.txt @@ -0,0 +1,18 @@ +(A) +- Stack with orange block +- Stack with green block, blue block, from bottom to top + +(B) +- Stack with orange block +- Stack with blue block, green block, from bottom to top + +(C) +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block, blue block, from bottom to top + +(D) +- Stack with orange block +- Stack with blue block, yellow block, green block, from bottom to top + diff --git a/blocks/task3/example/level4/annotation.txt b/blocks/task3/example/level4/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6e6bcf05e130add42be92e2dcbee8a288d4386b --- /dev/null +++ b/blocks/task3/example/level4/annotation.txt @@ -0,0 +1,8 @@ +2 +2 +2 +1 +3 +3 +0 +2 diff --git a/blocks/task3/example/level4/answer/0.txt b/blocks/task3/example/level4/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c3b25e8856ef21b7cc3126b7f5fff50f639eb97 --- /dev/null +++ b/blocks/task3/example/level4/answer/0.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with green block +- Stack with red block, orange block, blue block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level4/answer/1.txt b/blocks/task3/example/level4/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..56b1dc9436109af26c4b02b9cfafe15706e3de98 --- /dev/null +++ b/blocks/task3/example/level4/answer/1.txt @@ -0,0 +1,7 @@ +First, the block configuration in the input image is as follow: +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block +Therefore, we will choose the candidate with 4 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level4/answer/2.txt b/blocks/task3/example/level4/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..790b2a038522f12bcb3ff169a5d14831eecd94d9 --- /dev/null +++ b/blocks/task3/example/level4/answer/2.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with red block +- Stack with orange block, green block, purple block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level4/answer/3.txt b/blocks/task3/example/level4/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd40749c1f65259bc7200f52cc75a6683f78efa2 --- /dev/null +++ b/blocks/task3/example/level4/answer/3.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with purple block +- Stack with yellow block, blue block, orange block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + B \ No newline at end of file diff --git a/blocks/task3/example/level4/answer/4.txt b/blocks/task3/example/level4/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b44e293d8b15b42906b7a1a2c860ad9791452383 --- /dev/null +++ b/blocks/task3/example/level4/answer/4.txt @@ -0,0 +1,4 @@ +First, the block configuration in the input image is as follow: +- Stack with blue block, red block, green block, purple block, from bottom to top +Therefore, we will choose the candidate with 1 stacks and the same configuration as shown above. + D \ No newline at end of file diff --git a/blocks/task3/example/level4/answer/5.txt b/blocks/task3/example/level4/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae0132dce2d5cec3bd2737092bc108af67af3655 --- /dev/null +++ b/blocks/task3/example/level4/answer/5.txt @@ -0,0 +1,7 @@ +First, the block configuration in the input image is as follow: +- Stack with orange block +- Stack with red block +- Stack with yellow block +- Stack with purple block +Therefore, we will choose the candidate with 4 stacks and the same configuration as shown above. + D \ No newline at end of file diff --git a/blocks/task3/example/level4/answer/6.txt b/blocks/task3/example/level4/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..720ddb9524112984d9e8eba834b08f486f5381ee --- /dev/null +++ b/blocks/task3/example/level4/answer/6.txt @@ -0,0 +1,6 @@ +First, the block configuration in the input image is as follow: +- Stack with blue block +- Stack with purple block +- Stack with red block, orange block, from bottom to top +Therefore, we will choose the candidate with 3 stacks and the same configuration as shown above. + A \ No newline at end of file diff --git a/blocks/task3/example/level4/answer/7.txt b/blocks/task3/example/level4/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..11878829548338c4e905e7352169a3cfa2f01928 --- /dev/null +++ b/blocks/task3/example/level4/answer/7.txt @@ -0,0 +1,4 @@ +First, the block configuration in the input image is as follow: +- Stack with red block, blue block, yellow block, purple block, from bottom to top +Therefore, we will choose the candidate with 1 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level4/image_input/0.jpg b/blocks/task3/example/level4/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26bc4c23b1e2b7838591b08101d233d6f3a60ce9 --- /dev/null +++ b/blocks/task3/example/level4/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3948164c4ad9a0e7a06b2ced6500b22a61837fd6cf265ba91010de2843217c6 +size 10183 diff --git a/blocks/task3/example/level4/image_input/1.jpg b/blocks/task3/example/level4/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6021c4a03d40ed871f78c23946b52ed8711253a --- /dev/null +++ b/blocks/task3/example/level4/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be15a9eb80bbb41aeb9c558da91122caeec26b3425dfc1e84edd90218d25a07b +size 10256 diff --git a/blocks/task3/example/level4/image_input/2.jpg b/blocks/task3/example/level4/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aff6116bd7393fefb0b24113f39e63fb4c238e99 --- /dev/null +++ b/blocks/task3/example/level4/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc16944f54dcf6e856e450dbc36f9dd207e33e6b320e8631cdcfe8edba38093b +size 9493 diff --git a/blocks/task3/example/level4/image_input/3.jpg b/blocks/task3/example/level4/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16fad0acc18cba3b0ec4543238b603b591197ee6 --- /dev/null +++ b/blocks/task3/example/level4/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b59e0bf12618744f6b80245fdc1385ce6692c7c4918e861c9c06dfa4cf9608 +size 9964 diff --git a/blocks/task3/example/level4/image_input/4.jpg b/blocks/task3/example/level4/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae5e4aa083231ee31ce586ca8c036578eb0b6bc8 --- /dev/null +++ b/blocks/task3/example/level4/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbc2f529ef21ed2a05fdbd43b2ea13e922f0b33a4aafb9e0836c90646b82709f +size 9286 diff --git a/blocks/task3/example/level4/image_input/5.jpg b/blocks/task3/example/level4/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78a3ceff5008266bb634b8ffc3b051ffb9c3a773 --- /dev/null +++ b/blocks/task3/example/level4/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc1d9e06e43e71639376d3b8731bc4c4279641c4933efaa5c25f069eedd8f07 +size 10725 diff --git a/blocks/task3/example/level4/image_input/6.jpg b/blocks/task3/example/level4/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dee535499da7096814d99f61b27659ac470bef3b --- /dev/null +++ b/blocks/task3/example/level4/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e6069e9353ea46f16e6be921a1a95833c3339cc4749e8ca468ef03b115c40a +size 10632 diff --git a/blocks/task3/example/level4/image_input/7.jpg b/blocks/task3/example/level4/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8072c1dc3b99e4e126e00590a2a66c97acb31a5 --- /dev/null +++ b/blocks/task3/example/level4/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b831d306f30eff220592b08ceccc6f3a8502b199bb9c01391eaab8cfc9b1456 +size 8785 diff --git a/blocks/task3/example/level4/text_input/0.txt b/blocks/task3/example/level4/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..043cd8d6942430d5ffd99c403dbdc3707c80e681 --- /dev/null +++ b/blocks/task3/example/level4/text_input/0.txt @@ -0,0 +1,19 @@ +(A) +- Stack with green block +- Stack with yellow block, purple block, from bottom to top +- Stack with orange block, red block, from bottom to top + +(B) +- Stack with green block +- Stack with orange block +- Stack with red block +- Stack with blue block + +(C) +- Stack with green block +- Stack with red block, orange block, blue block, from bottom to top + +(D) +- Stack with purple block +- Stack with yellow block, blue block, green block, from bottom to top + diff --git a/blocks/task3/example/level4/text_input/1.txt b/blocks/task3/example/level4/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e58c50164e041d3128cf15a6d866a51d08832e96 --- /dev/null +++ b/blocks/task3/example/level4/text_input/1.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block, red block, from bottom to top +- Stack with yellow block, green block, from bottom to top + +(B) +- Stack with yellow block, orange block, from bottom to top +- Stack with purple block, green block, from bottom to top + +(C) +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block + +(D) +- Stack with orange block, red block, from bottom to top +- Stack with blue block, green block, yellow block, from bottom to top + diff --git a/blocks/task3/example/level4/text_input/2.txt b/blocks/task3/example/level4/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c694cdb42b00f9ceda7ea208802dc0f40a020b86 --- /dev/null +++ b/blocks/task3/example/level4/text_input/2.txt @@ -0,0 +1,20 @@ +(A) +- Stack with purple block +- Stack with blue block +- Stack with orange block, yellow block, green block, from bottom to top + +(B) +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with purple block + +(C) +- Stack with red block +- Stack with orange block, green block, purple block, from bottom to top + +(D) +- Stack with yellow block +- Stack with orange block +- Stack with green block + diff --git a/blocks/task3/example/level4/text_input/3.txt b/blocks/task3/example/level4/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b5c8514ebf6fb8e05913d45b66340b433cc7bf8 --- /dev/null +++ b/blocks/task3/example/level4/text_input/3.txt @@ -0,0 +1,18 @@ +(A) +- Stack with orange block, blue block, from bottom to top +- Stack with yellow block, purple block, from bottom to top + +(B) +- Stack with purple block +- Stack with yellow block, blue block, orange block, from bottom to top + +(C) +- Stack with orange block +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with yellow block + +(D) +- Stack with orange block, blue block, purple block, green block, from bottom to top + diff --git a/blocks/task3/example/level4/text_input/4.txt b/blocks/task3/example/level4/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..990503e1eac6c6dc46e71e8eddd4fbaf88ae780e --- /dev/null +++ b/blocks/task3/example/level4/text_input/4.txt @@ -0,0 +1,19 @@ +(A) +- Stack with red block +- Stack with purple block +- Stack with green block +- Stack with blue block + +(B) +- Stack with green block, blue block, red block, from bottom to top + +(C) +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with purple block +- Stack with blue block + +(D) +- Stack with blue block, red block, green block, purple block, from bottom to top + diff --git a/blocks/task3/example/level4/text_input/5.txt b/blocks/task3/example/level4/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a16b30a4c392424f97e3a14ea4c1ec55eb181aef --- /dev/null +++ b/blocks/task3/example/level4/text_input/5.txt @@ -0,0 +1,19 @@ +(A) +- Stack with orange block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top + +(B) +- Stack with orange block +- Stack with blue block +- Stack with green block, purple block, from bottom to top + +(C) +- Stack with blue block, orange block, red block, yellow block, purple block, from bottom to top + +(D) +- Stack with orange block +- Stack with red block +- Stack with yellow block +- Stack with purple block + diff --git a/blocks/task3/example/level4/text_input/6.txt b/blocks/task3/example/level4/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..56d949a48e10bbe639e4facf52be78b7bedee417 --- /dev/null +++ b/blocks/task3/example/level4/text_input/6.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block +- Stack with purple block +- Stack with red block, orange block, from bottom to top + +(B) +- Stack with red block +- Stack with blue block +- Stack with purple block, orange block, from bottom to top + +(C) +- Stack with blue block, yellow block, orange block, green block, purple block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + diff --git a/blocks/task3/example/level4/text_input/7.txt b/blocks/task3/example/level4/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..20578111e9881d05077c30188b39a1fe2d776768 --- /dev/null +++ b/blocks/task3/example/level4/text_input/7.txt @@ -0,0 +1,14 @@ +(A) +- Stack with purple block, blue block, orange block, green block, yellow block, from bottom to top + +(B) +- Stack with yellow block +- Stack with purple block, blue block, red block, from bottom to top + +(C) +- Stack with red block, blue block, yellow block, purple block, from bottom to top + +(D) +- Stack with purple block, orange block, from bottom to top +- Stack with blue block, red block, from bottom to top + diff --git a/blocks/task3/example/level5/annotation.txt b/blocks/task3/example/level5/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..6524a2488f0f1488da8f073afaef902477fe9272 --- /dev/null +++ b/blocks/task3/example/level5/annotation.txt @@ -0,0 +1,8 @@ +3 +1 +3 +3 +3 +2 +3 +2 diff --git a/blocks/task3/example/level5/answer/0.txt b/blocks/task3/example/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..aedc9596dcb6876106b89a32f8ece02944f0d04e --- /dev/null +++ b/blocks/task3/example/level5/answer/0.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + D \ No newline at end of file diff --git a/blocks/task3/example/level5/answer/1.txt b/blocks/task3/example/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb511f2b55804fa2a959d6054d52b4934332e804 --- /dev/null +++ b/blocks/task3/example/level5/answer/1.txt @@ -0,0 +1,6 @@ +First, the block configuration in the input image is as follow: +- Stack with orange block +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top +Therefore, we will choose the candidate with 3 stacks and the same configuration as shown above. + B \ No newline at end of file diff --git a/blocks/task3/example/level5/answer/2.txt b/blocks/task3/example/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e07added3b716955721d0227a23073739d8fc80e --- /dev/null +++ b/blocks/task3/example/level5/answer/2.txt @@ -0,0 +1,4 @@ +First, the block configuration in the input image is as follow: +- Stack with yellow block, orange block, purple block, blue block, green block, from bottom to top +Therefore, we will choose the candidate with 1 stacks and the same configuration as shown above. + D \ No newline at end of file diff --git a/blocks/task3/example/level5/answer/3.txt b/blocks/task3/example/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..67c2aee5f250c34d8d4c905f39ccb8d82ce85bb5 --- /dev/null +++ b/blocks/task3/example/level5/answer/3.txt @@ -0,0 +1,8 @@ +First, the block configuration in the input image is as follow: +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with red block +Therefore, we will choose the candidate with 5 stacks and the same configuration as shown above. + D \ No newline at end of file diff --git a/blocks/task3/example/level5/answer/4.txt b/blocks/task3/example/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c08391ad7d64ae9725b616c3b0c2b0ca9616d5b --- /dev/null +++ b/blocks/task3/example/level5/answer/4.txt @@ -0,0 +1,4 @@ +First, the block configuration in the input image is as follow: +- Stack with red block, purple block, yellow block, green block, blue block, from bottom to top +Therefore, we will choose the candidate with 1 stacks and the same configuration as shown above. + D \ No newline at end of file diff --git a/blocks/task3/example/level5/answer/5.txt b/blocks/task3/example/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fe046f02c411307e123cca3934336658e6713d9 --- /dev/null +++ b/blocks/task3/example/level5/answer/5.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with orange block +- Stack with green block, red block, purple block, blue block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level5/answer/6.txt b/blocks/task3/example/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..96223cd4697ac06ddda34db9466389ecebecab43 --- /dev/null +++ b/blocks/task3/example/level5/answer/6.txt @@ -0,0 +1,4 @@ +First, the block configuration in the input image is as follow: +- Stack with yellow block, purple block, orange block, red block, blue block, from bottom to top +Therefore, we will choose the candidate with 1 stacks and the same configuration as shown above. + D \ No newline at end of file diff --git a/blocks/task3/example/level5/answer/7.txt b/blocks/task3/example/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..eae6b4a0d5f22a549e7c3cf841691c035fe28e88 --- /dev/null +++ b/blocks/task3/example/level5/answer/7.txt @@ -0,0 +1,5 @@ +First, the block configuration in the input image is as follow: +- Stack with orange block +- Stack with green block, blue block, purple block, yellow block, from bottom to top +Therefore, we will choose the candidate with 2 stacks and the same configuration as shown above. + C \ No newline at end of file diff --git a/blocks/task3/example/level5/image_input/0.jpg b/blocks/task3/example/level5/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c813530a83fb1c27c654b9909b213635ac7cf240 --- /dev/null +++ b/blocks/task3/example/level5/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a2f3cd5e33ee425ac72b9cb2d350200e4ac2aab1ad4fe1c96b815699fae474 +size 10261 diff --git a/blocks/task3/example/level5/image_input/1.jpg b/blocks/task3/example/level5/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5df520b965c64937b90d7809a321fddcf915ab99 --- /dev/null +++ b/blocks/task3/example/level5/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:729e4bfcd1d419884c25013274c0599f7f1040688f32fcd6674fc98ce7957f02 +size 11066 diff --git a/blocks/task3/example/level5/image_input/2.jpg b/blocks/task3/example/level5/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..847b6707c21ed34874741e67958b47bfe5699170 --- /dev/null +++ b/blocks/task3/example/level5/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f0c25949fecd4ac710a52af87946aa0c8d3b8fea3dbb67fc1de0b7d1963646 +size 9995 diff --git a/blocks/task3/example/level5/image_input/3.jpg b/blocks/task3/example/level5/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..215db65970f040ea3b1cb301253d860d1a75f4fd --- /dev/null +++ b/blocks/task3/example/level5/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8943c51dcd97c6dbb3938c003902dcf6168c3e55c4a48e098863071c314fe0 +size 11171 diff --git a/blocks/task3/example/level5/image_input/4.jpg b/blocks/task3/example/level5/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5863d03f8bbf743eca71e621f7c64eacfb2bd3ef --- /dev/null +++ b/blocks/task3/example/level5/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278b9e4277898f35d6ac0d103d1aab3159c7d01a1e314a17ba8b4312c371eb78 +size 9152 diff --git a/blocks/task3/example/level5/image_input/5.jpg b/blocks/task3/example/level5/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd10828015aca2556adb6adc265fc5957c1521bd --- /dev/null +++ b/blocks/task3/example/level5/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9d010295f2b36afa991a288f4bbff0b72e9367d22c58a23ce903cb8da81d21 +size 11235 diff --git a/blocks/task3/example/level5/image_input/6.jpg b/blocks/task3/example/level5/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4be5d551f223730ad0770635833df22adddb3f9 --- /dev/null +++ b/blocks/task3/example/level5/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3c03b8baa7757c27121eecad693588d661f2582e713119b6e9950e62cc43b1 +size 9422 diff --git a/blocks/task3/example/level5/image_input/7.jpg b/blocks/task3/example/level5/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4a90a3fc7fc86f3489be115c261dbec4cc6e3de --- /dev/null +++ b/blocks/task3/example/level5/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd35974c0da4d7eaa8736e3ed6ea5bcb52cd10be76e1abc70476d1cf057118d8 +size 11633 diff --git a/blocks/task3/example/level5/text_input/0.txt b/blocks/task3/example/level5/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..7eceb5479579686ff589f4661388aeec5ecb2e98 --- /dev/null +++ b/blocks/task3/example/level5/text_input/0.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with green block +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with purple block +- Stack with orange block +- Stack with blue block, yellow block, green block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block, blue block, from bottom to top +- Stack with purple block, orange block, from bottom to top + +(D) +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top + diff --git a/blocks/task3/example/level5/text_input/1.txt b/blocks/task3/example/level5/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2de9a0f578a94333c9b720a28dd96ffc5693710 --- /dev/null +++ b/blocks/task3/example/level5/text_input/1.txt @@ -0,0 +1,18 @@ +(A) +- Stack with yellow block, purple block, orange block, red block, from bottom to top + +(B) +- Stack with orange block +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top + +(C) +- Stack with green block +- Stack with red block, orange block, purple block, blue block, from bottom to top + +(D) +- Stack with blue block +- Stack with orange block +- Stack with yellow block +- Stack with red block, purple block, from bottom to top + diff --git a/blocks/task3/example/level5/text_input/2.txt b/blocks/task3/example/level5/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..1afe945dd34fef32be536506190e9ed0404954c5 --- /dev/null +++ b/blocks/task3/example/level5/text_input/2.txt @@ -0,0 +1,19 @@ +(A) +- Stack with red block +- Stack with orange block, blue block, green block, from bottom to top + +(B) +- Stack with yellow block +- Stack with green block +- Stack with purple block, orange block, blue block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with purple block +- Stack with red block + +(D) +- Stack with yellow block, orange block, purple block, blue block, green block, from bottom to top + diff --git a/blocks/task3/example/level5/text_input/3.txt b/blocks/task3/example/level5/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..45387e050d1fda01481d6c097e9610edccb81f29 --- /dev/null +++ b/blocks/task3/example/level5/text_input/3.txt @@ -0,0 +1,19 @@ +(A) +- Stack with green block, blue block, from bottom to top +- Stack with orange block, red block, purple block, from bottom to top + +(B) +- Stack with purple block +- Stack with red block, green block, orange block, blue block, from bottom to top + +(C) +- Stack with purple block +- Stack with blue block, yellow block, orange block, from bottom to top + +(D) +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with red block + diff --git a/blocks/task3/example/level5/text_input/4.txt b/blocks/task3/example/level5/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc474836d330142f4530428a229f7eee6458a86a --- /dev/null +++ b/blocks/task3/example/level5/text_input/4.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block +- Stack with green block +- Stack with red block +- Stack with purple block +- Stack with yellow block + +(B) +- Stack with green block, blue block, yellow block, orange block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block + +(D) +- Stack with red block, purple block, yellow block, green block, blue block, from bottom to top + diff --git a/blocks/task3/example/level5/text_input/5.txt b/blocks/task3/example/level5/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..efa0967322b67aabcec8dd7e5c6c90a031ad6188 --- /dev/null +++ b/blocks/task3/example/level5/text_input/5.txt @@ -0,0 +1,17 @@ +(A) +- Stack with yellow block +- Stack with green block, red block, from bottom to top +- Stack with orange block, purple block, from bottom to top + +(B) +- Stack with purple block +- Stack with orange block, green block, red block, blue block, from bottom to top + +(C) +- Stack with orange block +- Stack with green block, red block, purple block, blue block, from bottom to top + +(D) +- Stack with purple block +- Stack with green block, orange block, yellow block, red block, from bottom to top + diff --git a/blocks/task3/example/level5/text_input/6.txt b/blocks/task3/example/level5/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..c191360a239c988491255c10e4cc865a8a612aeb --- /dev/null +++ b/blocks/task3/example/level5/text_input/6.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top + +(B) +- Stack with red block, purple block, from bottom to top +- Stack with orange block, yellow block, blue block, from bottom to top + +(C) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + +(D) +- Stack with yellow block, purple block, orange block, red block, blue block, from bottom to top + diff --git a/blocks/task3/example/level5/text_input/7.txt b/blocks/task3/example/level5/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae79b1b525c741ff4500ea6f9ec69f8a364ec438 --- /dev/null +++ b/blocks/task3/example/level5/text_input/7.txt @@ -0,0 +1,21 @@ +(A) +- Stack with red block +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, orange block, from bottom to top + +(B) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + +(C) +- Stack with orange block +- Stack with green block, blue block, purple block, yellow block, from bottom to top + +(D) +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/.DS_Store b/blocks/task3/maps/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..c9b4c2d5767a15629ba3e8155adaa4bc79f9932a Binary files /dev/null and b/blocks/task3/maps/.DS_Store differ diff --git a/blocks/task3/maps/level3/.DS_Store b/blocks/task3/maps/level3/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..aab9940239ba7973243db38bb12e53b69e3e8407 Binary files /dev/null and b/blocks/task3/maps/level3/.DS_Store differ diff --git a/blocks/task3/maps/level3/annotation.txt b/blocks/task3/maps/level3/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..d07d4d3e253ef53bb7e5e261842ebfdee279378b --- /dev/null +++ b/blocks/task3/maps/level3/annotation.txt @@ -0,0 +1,100 @@ +0 +2 +2 +0 +0 +0 +0 +0 +0 +2 +1 +0 +3 +1 +0 +0 +1 +0 +3 +3 +3 +0 +1 +3 +1 +0 +1 +0 +0 +2 +0 +3 +3 +0 +0 +1 +3 +1 +0 +0 +2 +2 +0 +3 +3 +0 +3 +1 +0 +3 +2 +0 +1 +3 +2 +2 +2 +3 +3 +2 +1 +2 +2 +2 +2 +3 +1 +1 +1 +1 +2 +2 +0 +2 +0 +0 +3 +1 +3 +3 +3 +0 +0 +2 +0 +1 +3 +0 +3 +2 +3 +1 +1 +1 +0 +0 +3 +0 +1 +2 diff --git a/blocks/task3/maps/level3/image_input/0.jpg b/blocks/task3/maps/level3/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..616814e1047f59093a7b5c19c62bdb732b50edb8 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d5d01e4c49759978d1acb0b90a1b37b124431bf1c93e6ee79db610998eb25b +size 9164 diff --git a/blocks/task3/maps/level3/image_input/1.jpg b/blocks/task3/maps/level3/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..863ff6d50a0142e8caee8473c983b11119f4d649 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5d6278d1b459e1534b52ac96064c4ad8396cfd2c9bf2d5835ff6d88d364ca3 +size 10175 diff --git a/blocks/task3/maps/level3/image_input/10.jpg b/blocks/task3/maps/level3/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2002c6557457b14aaf5ba4d0df5548900c3a6d71 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d469e429051e4be237f16afc665e0d0403c229d6c77485dfaf8aea7c9acd13e +size 10170 diff --git a/blocks/task3/maps/level3/image_input/11.jpg b/blocks/task3/maps/level3/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04297f74667848474625b57a7a52b8a1b7bae0f9 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3458441dfffbb02979ac6a9afa2f573eee3ea3ce977ad8f4b894d075fa0244c +size 8675 diff --git a/blocks/task3/maps/level3/image_input/12.jpg b/blocks/task3/maps/level3/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc451e148261d75d00e51207bdd0a37912b454dd --- /dev/null +++ b/blocks/task3/maps/level3/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ca4b530c8c553469635c719dd0f20a37a5156b390126c1244d651fdced0179 +size 9877 diff --git a/blocks/task3/maps/level3/image_input/13.jpg b/blocks/task3/maps/level3/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe1454526f72901df88f2ca2a1d65a31ec789140 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5439f9912971053729e007a052c3c502ae4f1f85e3948d37c7f8ac7c2e584929 +size 8736 diff --git a/blocks/task3/maps/level3/image_input/14.jpg b/blocks/task3/maps/level3/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e9aa1a683d370dbbcd5ac9812e45e4d38892456 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb90141cc9cd12660ed01c40b72951491062ec75ed64cfcd933c35da1034e3c5 +size 8629 diff --git a/blocks/task3/maps/level3/image_input/15.jpg b/blocks/task3/maps/level3/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27325cde713c09b8fcffea582b8a2e9fe7a2456 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6779673d229c436092a26b7a7f70a944034700103360006f1acd2dcc80e6381 +size 9449 diff --git a/blocks/task3/maps/level3/image_input/16.jpg b/blocks/task3/maps/level3/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..210f07b36d6dc264bf04465e4701d2205afbf648 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9757da01301117ed0d8a528d40414189cb67c8849202af44cf134e3b774b29e +size 8654 diff --git a/blocks/task3/maps/level3/image_input/17.jpg b/blocks/task3/maps/level3/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65ae2969eb12266cdc0e095942fc4e893de8a5f6 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b934b0b73fd53c66ede86138bf0a173ab9ffcf81a4d60259f65a413da57e8edd +size 8546 diff --git a/blocks/task3/maps/level3/image_input/18.jpg b/blocks/task3/maps/level3/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21e95b8e8358de4899654d0ee44bc7b630e6c017 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16bbf31e502cad4101223d7bec561ff7dfb8e2be926a8aa4de7076ecf8e0f1be +size 10252 diff --git a/blocks/task3/maps/level3/image_input/19.jpg b/blocks/task3/maps/level3/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc9613dc7c471c52aea0f4e68cc7315376dae171 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016fc7e7a6cc6e5419bda687d6125cb70fa6922b65570cffdacea358d17f8b08 +size 8484 diff --git a/blocks/task3/maps/level3/image_input/2.jpg b/blocks/task3/maps/level3/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bab7ecaae315dd10a9b43e0c72af49da7d12a01 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da01b1aae86f6977d4cc9a7a5444e90713bf410dc22a962acb1f0f70b5a1a1d3 +size 8731 diff --git a/blocks/task3/maps/level3/image_input/20.jpg b/blocks/task3/maps/level3/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6cb1cc4f03cb4afe8bfda0d61d1f1f10d573f94 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474b9970aea51d3bac5e95c0e235b726884ae6e30bca1df485ba2d22a545471b +size 9676 diff --git a/blocks/task3/maps/level3/image_input/21.jpg b/blocks/task3/maps/level3/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c6606d7581a1867d91db3758a369dba473e65ee --- /dev/null +++ b/blocks/task3/maps/level3/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f093467bfb1985a5f1abafcaa693278c172e4c4c4ad4975ce19ff7d6f4f7e69f +size 10340 diff --git a/blocks/task3/maps/level3/image_input/22.jpg b/blocks/task3/maps/level3/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..265ba54e68b9f436d8954043340a710d586d9a54 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07826c5d1648e5a494eed17b4765476816b490dc19c7ef41aadab0ce26f30ba1 +size 10124 diff --git a/blocks/task3/maps/level3/image_input/23.jpg b/blocks/task3/maps/level3/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..392ffb80f02119d2639b884ff6cbc8f9a672c589 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b0478d01423d70da34a588d620d31968e65947146c11ecff9afbbc4fe86f9c +size 10244 diff --git a/blocks/task3/maps/level3/image_input/24.jpg b/blocks/task3/maps/level3/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f47a4f8d6a3bde7e3810696aaf8ca09ffa01a08 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9794f686a0f0acb26e0f03ad5cb7a7916c17d4d33f537e39a463fb896c92e9d7 +size 9668 diff --git a/blocks/task3/maps/level3/image_input/25.jpg b/blocks/task3/maps/level3/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58244f52732062f95985c24a777f2feb611bc71d --- /dev/null +++ b/blocks/task3/maps/level3/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca8e865dd491536142a091c0c981e3d736a58f3ce3d39f62ee1926bae93415b +size 9792 diff --git a/blocks/task3/maps/level3/image_input/26.jpg b/blocks/task3/maps/level3/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..897f61ede3a90807e92bfe77cfe54ea15660442a --- /dev/null +++ b/blocks/task3/maps/level3/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d427184774b517783f391e7f10d9d836f6de3e1869143840ee0faeb1e8db82d6 +size 9872 diff --git a/blocks/task3/maps/level3/image_input/27.jpg b/blocks/task3/maps/level3/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..162b009335e0d1ff67742bd832c843d543c76a0f --- /dev/null +++ b/blocks/task3/maps/level3/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1906eda11ef430aefaa06344bc546d4080263d08443eb163abd640f0192bee6c +size 8589 diff --git a/blocks/task3/maps/level3/image_input/28.jpg b/blocks/task3/maps/level3/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b09b116d7aa4874cebf289731245b542fbd7987f --- /dev/null +++ b/blocks/task3/maps/level3/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c506309a32636446e3db86b6f9f8f4b8e8e63169a6a9052054e1c2f5d824e184 +size 9952 diff --git a/blocks/task3/maps/level3/image_input/29.jpg b/blocks/task3/maps/level3/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31399e3bc0308ff27fe492e4b2bc05324a127620 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3c87c01c6b11a2992cd8147a9578a15316685db1cb4ca766b6801bb3ae30c5 +size 8659 diff --git a/blocks/task3/maps/level3/image_input/3.jpg b/blocks/task3/maps/level3/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5dfe74d314adb68c10a29aef4aa1b52291cf881 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe68d199e11d0a41662d5799a5ef68a1664962da3ea0ac48ecac298eaf541d79 +size 9471 diff --git a/blocks/task3/maps/level3/image_input/30.jpg b/blocks/task3/maps/level3/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8006e24133f11604d97f86f8d07c536d500faf74 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cdd64a3583e90b472c37a23d10638c4c6ad74a67f070fe706592938d2ffac8e +size 10503 diff --git a/blocks/task3/maps/level3/image_input/31.jpg b/blocks/task3/maps/level3/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3aaabde3ae2a18aaa4ceea2dd698a292e9f0823 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2baf791b0d4671b4f98468910d0e1ba7b26ce76a6489503202f545b9c90efd51 +size 11121 diff --git a/blocks/task3/maps/level3/image_input/32.jpg b/blocks/task3/maps/level3/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89b9f98ef7bc857d0fb13eeade866c3ca843e973 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5daff7f3b4ae190f0a04fd28a5e69f7daaeeaa7bc875e94d4b090565250caa14 +size 9222 diff --git a/blocks/task3/maps/level3/image_input/33.jpg b/blocks/task3/maps/level3/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f47a4f8d6a3bde7e3810696aaf8ca09ffa01a08 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9794f686a0f0acb26e0f03ad5cb7a7916c17d4d33f537e39a463fb896c92e9d7 +size 9668 diff --git a/blocks/task3/maps/level3/image_input/34.jpg b/blocks/task3/maps/level3/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..897f61ede3a90807e92bfe77cfe54ea15660442a --- /dev/null +++ b/blocks/task3/maps/level3/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d427184774b517783f391e7f10d9d836f6de3e1869143840ee0faeb1e8db82d6 +size 9872 diff --git a/blocks/task3/maps/level3/image_input/35.jpg b/blocks/task3/maps/level3/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..632d14d6b0c92f3be38a0bf08cf48bde578cddc7 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de5407a3ac710afa7b1f37a9a51f4f560469e4ba97abd063f87caf18dd4a8b5 +size 9764 diff --git a/blocks/task3/maps/level3/image_input/36.jpg b/blocks/task3/maps/level3/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47177ad2986f2b125bf9a3b9d9b4cda1ac7f87b8 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2194478084ff499689cd3042b41a7b6fc5985c594bfe419b9e99afde2be3bcfa +size 10215 diff --git a/blocks/task3/maps/level3/image_input/37.jpg b/blocks/task3/maps/level3/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc9613dc7c471c52aea0f4e68cc7315376dae171 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016fc7e7a6cc6e5419bda687d6125cb70fa6922b65570cffdacea358d17f8b08 +size 8484 diff --git a/blocks/task3/maps/level3/image_input/38.jpg b/blocks/task3/maps/level3/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0795ab5c7ff09e5e94ff6086ed20ef426e8a6471 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a75dd7be6ee103c2b4494c13b4838f503d21a194d17b5cfacf90a40a2a4e6af +size 8478 diff --git a/blocks/task3/maps/level3/image_input/39.jpg b/blocks/task3/maps/level3/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b062f9de9e935a854319dd370c5d167edf54855e --- /dev/null +++ b/blocks/task3/maps/level3/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8fdd9504ac800ba62f4ca41e6e15305ba55603332fd7259616d032f60ee21ab +size 9783 diff --git a/blocks/task3/maps/level3/image_input/4.jpg b/blocks/task3/maps/level3/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a4527c76c1dc6f623ef7cee14024c15a919f565 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e13a152d5e2101ce4f0f70d8d6ccabff48d9012328d904a5bfd936b11a3267a +size 9610 diff --git a/blocks/task3/maps/level3/image_input/40.jpg b/blocks/task3/maps/level3/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3089632f463ac1a4908b94212c859485cc016d5 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea9e583c9f1b84141992a0571418cf1ab6505f1e945fef2a8747032d1e89b13 +size 9787 diff --git a/blocks/task3/maps/level3/image_input/41.jpg b/blocks/task3/maps/level3/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b991af5c16b564d67de8b396395a640baab5b4cd --- /dev/null +++ b/blocks/task3/maps/level3/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ca61169fb68c45a68d0aac1d1f87b562fc03856f069706cd354c097b571a55 +size 9325 diff --git a/blocks/task3/maps/level3/image_input/42.jpg b/blocks/task3/maps/level3/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f105cf249e56d2e4512e93549a32b2ce1bddc4bd --- /dev/null +++ b/blocks/task3/maps/level3/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a18f3feb0b506d5886509afc739371efd24c6e3ff60e7db8903efb489e439d6 +size 9842 diff --git a/blocks/task3/maps/level3/image_input/43.jpg b/blocks/task3/maps/level3/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3f7086096597e95512396083834d00b23602a63 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac895563d6cedbbe50a8d56f4e9177dc70caadb95ffec007be824d64bdc8b75 +size 8709 diff --git a/blocks/task3/maps/level3/image_input/44.jpg b/blocks/task3/maps/level3/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66260f50755f321230841aab7913cd6e20602714 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7496aceb0b709fce56cedda7881de1a66e0df7f5431b472ea857fe3a4f61d0 +size 10363 diff --git a/blocks/task3/maps/level3/image_input/45.jpg b/blocks/task3/maps/level3/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f771eb1a1a2dbf15a307d82b1d76d1cbc01c4f9c --- /dev/null +++ b/blocks/task3/maps/level3/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718dedc667517bd09fc4e9d4d98ac9f1de82bf4bbf9030ba9d4a92d65be413a5 +size 10093 diff --git a/blocks/task3/maps/level3/image_input/46.jpg b/blocks/task3/maps/level3/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..416b66bdc979f19219f65cd10f10b95b4421cef4 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aa815714de2d7fc9f95346a9adef20977c2e701d7133c43dddcf6634a80ed45 +size 10656 diff --git a/blocks/task3/maps/level3/image_input/47.jpg b/blocks/task3/maps/level3/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9823b5651bc8372117f567645c7d296638a5b3e --- /dev/null +++ b/blocks/task3/maps/level3/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02846b606dcc7800f429a44e734fd04b785e151327a9190d794b5a2a85eba5c +size 8733 diff --git a/blocks/task3/maps/level3/image_input/48.jpg b/blocks/task3/maps/level3/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fac492fb514c0ba131741afdd72d1404ead0cfa --- /dev/null +++ b/blocks/task3/maps/level3/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb39d174a3f61fc277388e579aff50ac08028ebf00d0c238070553f9a2d2964 +size 8584 diff --git a/blocks/task3/maps/level3/image_input/49.jpg b/blocks/task3/maps/level3/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12ba489f4f790acd6ba03bf48b0df5481bbaa6d3 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7355d1c6eb4cd0fd09ca80fbb4f7543de752f3d5e720cfd7ea51c2994783c552 +size 10392 diff --git a/blocks/task3/maps/level3/image_input/5.jpg b/blocks/task3/maps/level3/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7177360573ebceb434957ebe6aa32784c79621b5 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4746c4cea51439b406188ef48cdbb931cb89480ce7587249f0d3010d53c005 +size 10407 diff --git a/blocks/task3/maps/level3/image_input/50.jpg b/blocks/task3/maps/level3/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba3361762629df5fc68c3d02dc6fc910a8e58914 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd376bba1cab73fcf8d092ad0ee7117f4ef8b3a1099c4ad8aba4f07ab2e16732 +size 9926 diff --git a/blocks/task3/maps/level3/image_input/51.jpg b/blocks/task3/maps/level3/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3973f249c44762ded648fc25f6a02f89cf92806f --- /dev/null +++ b/blocks/task3/maps/level3/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6ed71808cbb546f42b4f62b6a91bf1fb355319c8ffc96cc28e51d912a9ca3c +size 9961 diff --git a/blocks/task3/maps/level3/image_input/52.jpg b/blocks/task3/maps/level3/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f9a8407b39c06ce6086b19e87103e45c7893adb --- /dev/null +++ b/blocks/task3/maps/level3/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f27875d222839a56eb12abf082865f93aecbbf9676859eae30c989a056947a +size 10129 diff --git a/blocks/task3/maps/level3/image_input/53.jpg b/blocks/task3/maps/level3/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1faf4ea9d56268b29943caa8355511af7e9fbeb8 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6ab0fa455abe2b99e777a9e0bb775457bb866da7579d64e29f0aefe1e6847e +size 8501 diff --git a/blocks/task3/maps/level3/image_input/54.jpg b/blocks/task3/maps/level3/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e01cfcbbe8ae180762485b7dc405ad7e2706701 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e6489f3f298fe7ef01cc7f58ac30bf089df9c0149085fcc78da790a0c3e981 +size 9702 diff --git a/blocks/task3/maps/level3/image_input/55.jpg b/blocks/task3/maps/level3/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27325cde713c09b8fcffea582b8a2e9fe7a2456 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6779673d229c436092a26b7a7f70a944034700103360006f1acd2dcc80e6381 +size 9449 diff --git a/blocks/task3/maps/level3/image_input/56.jpg b/blocks/task3/maps/level3/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cb8135a64af52c82b70041cedb7bf1c822f613d --- /dev/null +++ b/blocks/task3/maps/level3/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c0c35a0b49389421947b038c7165332432763b871eac4bb7b4865facd06577 +size 10113 diff --git a/blocks/task3/maps/level3/image_input/57.jpg b/blocks/task3/maps/level3/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00534fdb0a9dddda9d8c4ec5741a3c51f22d984d --- /dev/null +++ b/blocks/task3/maps/level3/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:177526f522e2e973685c68b61b0b321af6a46706e2416fbff1c170eefbdb91b6 +size 9248 diff --git a/blocks/task3/maps/level3/image_input/58.jpg b/blocks/task3/maps/level3/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27d819932c594d24545d2ea6334bda5223fed837 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a5b23d850f1ff9e3c57332dd4ab2da7bcbead7a94374403c90c562e66fee8b +size 9964 diff --git a/blocks/task3/maps/level3/image_input/59.jpg b/blocks/task3/maps/level3/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc9613dc7c471c52aea0f4e68cc7315376dae171 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016fc7e7a6cc6e5419bda687d6125cb70fa6922b65570cffdacea358d17f8b08 +size 8484 diff --git a/blocks/task3/maps/level3/image_input/6.jpg b/blocks/task3/maps/level3/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f87807ce69c91411565c29bdb3f05380988181e --- /dev/null +++ b/blocks/task3/maps/level3/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d43651b1e13a73c0dd5aaa71104d7bad7365da3975a2e55d8a0dcb5893de71 +size 8113 diff --git a/blocks/task3/maps/level3/image_input/60.jpg b/blocks/task3/maps/level3/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f02418eb36d2588c3185941ae04bf947342a13a --- /dev/null +++ b/blocks/task3/maps/level3/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a522ed4c8cde17ae8a6b0e6b1a085f9c792f6ec5339e2feac0843a613fd16c64 +size 9012 diff --git a/blocks/task3/maps/level3/image_input/61.jpg b/blocks/task3/maps/level3/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12ba489f4f790acd6ba03bf48b0df5481bbaa6d3 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7355d1c6eb4cd0fd09ca80fbb4f7543de752f3d5e720cfd7ea51c2994783c552 +size 10392 diff --git a/blocks/task3/maps/level3/image_input/62.jpg b/blocks/task3/maps/level3/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24d896e1b60ab11c10a25a081d659f93ac3b4103 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb2e0ad6236c4f973a2323dd1d38877aaff96851e1cba17d1999c884d1d6f60c +size 10817 diff --git a/blocks/task3/maps/level3/image_input/63.jpg b/blocks/task3/maps/level3/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..205c4eb9d628d68695e9cb1238cbab84f219397a --- /dev/null +++ b/blocks/task3/maps/level3/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f005e6349d15788a4cd08fe6600616db22b2fb984961be7168fe6236d13c8f6 +size 9147 diff --git a/blocks/task3/maps/level3/image_input/64.jpg b/blocks/task3/maps/level3/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1978d699999f4311eb0821f3b4f9727db8cf9c2e --- /dev/null +++ b/blocks/task3/maps/level3/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe65ddf0dd84e1ca18b448b573424334bdb5a4fc4cc693eb73db7c2de1b7729 +size 8823 diff --git a/blocks/task3/maps/level3/image_input/65.jpg b/blocks/task3/maps/level3/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c71184b00f1216106b47df652bc01046162b58c5 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5a300ac9ee3bd43911e2d228c53a61c378deb8fc49f3bfb3e5c491e89c980d +size 10639 diff --git a/blocks/task3/maps/level3/image_input/66.jpg b/blocks/task3/maps/level3/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faffbd7cf36257598784151d85a22ead275ab2e1 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae4d94fca591589f7a64ed6c59b135088aaa7332c445ce89ceb436203500885 +size 10948 diff --git a/blocks/task3/maps/level3/image_input/67.jpg b/blocks/task3/maps/level3/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17a916f46016a8657741b8cd87bf86e0dcbb3f96 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09208ea15e056e7c772b78d1c5db472d442439a3a8bcc082531412535a66a63a +size 9323 diff --git a/blocks/task3/maps/level3/image_input/68.jpg b/blocks/task3/maps/level3/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea39ceede585cab6ed32b0fb135650a5b5becc29 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dba0737b67e45b58746f56a92bbb5698da35b502b512de4b126cfc99540661b5 +size 9007 diff --git a/blocks/task3/maps/level3/image_input/69.jpg b/blocks/task3/maps/level3/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ad336266dc5ed0ce19094edd051dcfc52ba0e40 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b17390b1c5b1bd5762b725d92d4958d1c82ef3f68a14af8de5a7f2c476d94fc +size 10227 diff --git a/blocks/task3/maps/level3/image_input/7.jpg b/blocks/task3/maps/level3/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90a362d23580f5be4b2bce646ccfaee39c00e26e --- /dev/null +++ b/blocks/task3/maps/level3/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e853206f7968f71f4c08f3c17e37361ceb62d67747db88e9d21f267c99b4dfa +size 8554 diff --git a/blocks/task3/maps/level3/image_input/70.jpg b/blocks/task3/maps/level3/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1daca03d972d754217f5df7b5601b4ca24ed2fda --- /dev/null +++ b/blocks/task3/maps/level3/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def446d536e3b85c85318235d877d8c46689b1e10ab9d00089fa05d43e8bb9c8 +size 10225 diff --git a/blocks/task3/maps/level3/image_input/71.jpg b/blocks/task3/maps/level3/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6fc8a43d13e101d9b5e6cbff58ba0e40988407e --- /dev/null +++ b/blocks/task3/maps/level3/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4edb5e0b0eec4dad578dcb41a3346d9358f50f21484e67dbe1dd1f231b8dd4 +size 10002 diff --git a/blocks/task3/maps/level3/image_input/72.jpg b/blocks/task3/maps/level3/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..605878a5753be9e6bbaffdc0b209c6b6f676b043 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562d997656cb69d5da281ec795a9a4ebe60923fefb2ef8b6c8020a62f9213105 +size 8340 diff --git a/blocks/task3/maps/level3/image_input/73.jpg b/blocks/task3/maps/level3/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3591c7a2303918015dff120c0a31187a7674872 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a07a9acf126d9c63a4517e6fea4d7a4666c90914f74d29f0b37f80160de1660 +size 9629 diff --git a/blocks/task3/maps/level3/image_input/74.jpg b/blocks/task3/maps/level3/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1db9fb84ec82be39f54643aec16fb6a85f7d687 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ddf8790759059185fe0be7f3068631dbb6cfa6925ad9424db6d047210eab34 +size 9567 diff --git a/blocks/task3/maps/level3/image_input/75.jpg b/blocks/task3/maps/level3/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37486fcf8838f77eb09eb135d6b04652daafb8c3 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac5bc5b2310a4acbeb5d1d6b792b75f9f9674623069e2e4f8abbbf197a9e519 +size 9493 diff --git a/blocks/task3/maps/level3/image_input/76.jpg b/blocks/task3/maps/level3/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f9a8407b39c06ce6086b19e87103e45c7893adb --- /dev/null +++ b/blocks/task3/maps/level3/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f27875d222839a56eb12abf082865f93aecbbf9676859eae30c989a056947a +size 10129 diff --git a/blocks/task3/maps/level3/image_input/77.jpg b/blocks/task3/maps/level3/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04fa681ffd0927f0ac6833d9de1ef08b5a855d75 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85674c3df63f14f3f1e0815a817ff231ea052764ac48ec5fd82311c9bffcf31e +size 9300 diff --git a/blocks/task3/maps/level3/image_input/78.jpg b/blocks/task3/maps/level3/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04297f74667848474625b57a7a52b8a1b7bae0f9 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3458441dfffbb02979ac6a9afa2f573eee3ea3ce977ad8f4b894d075fa0244c +size 8675 diff --git a/blocks/task3/maps/level3/image_input/79.jpg b/blocks/task3/maps/level3/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d17f9e643c3e62571809c118b0879e4134dddf9b --- /dev/null +++ b/blocks/task3/maps/level3/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a63452865e0c0d7656acdf261b952112f6b0104f10642401a5cc5f14702edf +size 8875 diff --git a/blocks/task3/maps/level3/image_input/8.jpg b/blocks/task3/maps/level3/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c71184b00f1216106b47df652bc01046162b58c5 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5a300ac9ee3bd43911e2d228c53a61c378deb8fc49f3bfb3e5c491e89c980d +size 10639 diff --git a/blocks/task3/maps/level3/image_input/80.jpg b/blocks/task3/maps/level3/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9768851757869c252f765d0edbd0f23078b745c --- /dev/null +++ b/blocks/task3/maps/level3/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be853fdf1405a9d2f5c48daaf5cdd27ee7a111bafc683c44de8bb80228133464 +size 9685 diff --git a/blocks/task3/maps/level3/image_input/81.jpg b/blocks/task3/maps/level3/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3973f249c44762ded648fc25f6a02f89cf92806f --- /dev/null +++ b/blocks/task3/maps/level3/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6ed71808cbb546f42b4f62b6a91bf1fb355319c8ffc96cc28e51d912a9ca3c +size 9961 diff --git a/blocks/task3/maps/level3/image_input/82.jpg b/blocks/task3/maps/level3/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..409bf57464baaad1ca9122461caf7b7e932e4f58 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b694ca69445cd580f99573f75d3a97b6d8f7b220b6b35c5e346b37371053216 +size 8855 diff --git a/blocks/task3/maps/level3/image_input/83.jpg b/blocks/task3/maps/level3/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bc4359cc330ac0d3393b46f264780b3b21346af --- /dev/null +++ b/blocks/task3/maps/level3/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cc5bb5d76869ca8d9c1cc21e9871cae22ae0bc567774f7cc6e2f0f638361450 +size 8721 diff --git a/blocks/task3/maps/level3/image_input/84.jpg b/blocks/task3/maps/level3/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e01699396f44b1a7acdbf9355f0db052303eebed --- /dev/null +++ b/blocks/task3/maps/level3/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c2a8255dd60bf30003571fe232d0c28c6dc7235fcddbfd0cc59dda4e7358af +size 8885 diff --git a/blocks/task3/maps/level3/image_input/85.jpg b/blocks/task3/maps/level3/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a500c11a88c2fdc607a778fa6aa6a7e1b43eb5ac --- /dev/null +++ b/blocks/task3/maps/level3/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1acf156a3b217f45fc1f9c8d5733963cbfe56bcbca3cf1256bf46cf17f19577b +size 8801 diff --git a/blocks/task3/maps/level3/image_input/86.jpg b/blocks/task3/maps/level3/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e62f10a9e9a5f8e5b21e32bab2c9a53df8be9e2b --- /dev/null +++ b/blocks/task3/maps/level3/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2582ed19c3cc3fadc9f409f1ea69bfe70d22a81a1a78d1c898fae3171498e36 +size 9158 diff --git a/blocks/task3/maps/level3/image_input/87.jpg b/blocks/task3/maps/level3/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fe0a4dd494cf02a913b44676803c04770500520 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4655a0fdbabb087e241165dae4151c61a3da1b0350517ae33141286a878bb21b +size 7917 diff --git a/blocks/task3/maps/level3/image_input/88.jpg b/blocks/task3/maps/level3/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f02418eb36d2588c3185941ae04bf947342a13a --- /dev/null +++ b/blocks/task3/maps/level3/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a522ed4c8cde17ae8a6b0e6b1a085f9c792f6ec5339e2feac0843a613fd16c64 +size 9012 diff --git a/blocks/task3/maps/level3/image_input/89.jpg b/blocks/task3/maps/level3/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54058012838999f4c928d001eb7dfc9543642c13 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63e36725546b74762ab189f8e4c54d41451b9b8a768ccd1fa4a3b7c9116fab71 +size 9507 diff --git a/blocks/task3/maps/level3/image_input/9.jpg b/blocks/task3/maps/level3/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c58831e5665ab4fbdbcfa37aeffcc3038fb24e3 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03b56ca31b03950d0b8f2b9a4187777cbc0dffff2bbde5ca2d44fd8d1fa2b1e +size 8750 diff --git a/blocks/task3/maps/level3/image_input/90.jpg b/blocks/task3/maps/level3/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27b9bc5c49c6fdc0d1b4502632d3450c6aa6032 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5cf771654ce5c6305cb73a646e83d128e5552600cf5ffe640891e42602c4015 +size 10317 diff --git a/blocks/task3/maps/level3/image_input/91.jpg b/blocks/task3/maps/level3/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45d0c0831b9de1d60c323a381c0506b0981d848f --- /dev/null +++ b/blocks/task3/maps/level3/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4f5a66f862568dfde5232dc45050a1ad95dac1a68d94ea8337956ef649dba45 +size 8473 diff --git a/blocks/task3/maps/level3/image_input/92.jpg b/blocks/task3/maps/level3/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b5603f9c53b3da72672c9968aa417435fd84636 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b9b1b03ffb7440754699723b425d61b8f2dfcd51a51e4c2b7d10af12689170 +size 10069 diff --git a/blocks/task3/maps/level3/image_input/93.jpg b/blocks/task3/maps/level3/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7177360573ebceb434957ebe6aa32784c79621b5 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4746c4cea51439b406188ef48cdbb931cb89480ce7587249f0d3010d53c005 +size 10407 diff --git a/blocks/task3/maps/level3/image_input/94.jpg b/blocks/task3/maps/level3/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8de67fcbc7df7d82d6d06f5eb6b079603ddc38ff --- /dev/null +++ b/blocks/task3/maps/level3/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc98716b26ec459c1fdbeee3aec291e7a2365cd41e1aaac1df1bbcf5bbfd5797 +size 10952 diff --git a/blocks/task3/maps/level3/image_input/95.jpg b/blocks/task3/maps/level3/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9180610ee7a49626596da476ec15ec15b38c8b7a --- /dev/null +++ b/blocks/task3/maps/level3/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd3cd39dc67bc0ded480c7a654060031c20d577d253e7f7c90fc8cff7ac0ec6 +size 8546 diff --git a/blocks/task3/maps/level3/image_input/96.jpg b/blocks/task3/maps/level3/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1db9fb84ec82be39f54643aec16fb6a85f7d687 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ddf8790759059185fe0be7f3068631dbb6cfa6925ad9424db6d047210eab34 +size 9567 diff --git a/blocks/task3/maps/level3/image_input/97.jpg b/blocks/task3/maps/level3/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faffbd7cf36257598784151d85a22ead275ab2e1 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae4d94fca591589f7a64ed6c59b135088aaa7332c445ce89ceb436203500885 +size 10948 diff --git a/blocks/task3/maps/level3/image_input/98.jpg b/blocks/task3/maps/level3/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1ea2f89d11a79994ebaebd82303cabdb3f85319 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f099ebaeb5b203438e26ebfc6270c70a02e2be6e59510acb435bb5798f2cd1f +size 10092 diff --git a/blocks/task3/maps/level3/image_input/99.jpg b/blocks/task3/maps/level3/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..602dafc2523544d7d61c55c81d32cf4a31dc0947 --- /dev/null +++ b/blocks/task3/maps/level3/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e656fe4adebdab218d8b78c3e0e46e0bc19d34e44038a4a8e83c418223f3b621 +size 10027 diff --git a/blocks/task3/maps/level3/text_input/0.txt b/blocks/task3/maps/level3/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bbb062eff694b6a4ab1d41405099a6922684964 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/0.txt @@ -0,0 +1,16 @@ +(A) +- Stack with yellow block +- Stack with blue block +- Stack with red block + +(B) +- Stack with blue block +- Stack with red block, green block, purple block, orange block, from bottom to top + +(C) +- Stack with blue block, red block, yellow block, from bottom to top + +(D) +- Stack with green block, orange block, from bottom to top +- Stack with purple block, red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/1.txt b/blocks/task3/maps/level3/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8296f34316414d50a2ca86319a64b4eff5b64925 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/1.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with green block, red block, from bottom to top +- Stack with orange block, purple block, from bottom to top + +(B) +- Stack with green block +- Stack with orange block +- Stack with yellow block, purple block, from bottom to top + +(C) +- Stack with green block +- Stack with red block, orange block, from bottom to top + +(D) +- Stack with red block +- Stack with green block +- Stack with orange block + diff --git a/blocks/task3/maps/level3/text_input/10.txt b/blocks/task3/maps/level3/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e4b900cc23a3c4b75717d0d29c1d5705707d388 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/10.txt @@ -0,0 +1,17 @@ +(A) +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top +- Stack with red block, orange block, from bottom to top + +(B) +- Stack with red block +- Stack with orange block, blue block, from bottom to top + +(C) +- Stack with orange block +- Stack with red block, blue block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block, purple block, green block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/11.txt b/blocks/task3/maps/level3/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..59dba379c4ae286c3df53b2e8ffb3639ab22274a --- /dev/null +++ b/blocks/task3/maps/level3/text_input/11.txt @@ -0,0 +1,16 @@ +(A) +- Stack with blue block, yellow block, orange block, from bottom to top + +(B) +- Stack with green block +- Stack with yellow block, blue block, red block, purple block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block +- Stack with yellow block + +(D) +- Stack with orange block +- Stack with yellow block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/12.txt b/blocks/task3/maps/level3/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..f880f046165f4b03d5e01a8a96a0a4ca0eb4150d --- /dev/null +++ b/blocks/task3/maps/level3/text_input/12.txt @@ -0,0 +1,15 @@ +(A) +- Stack with purple block, red block, blue block, yellow block, orange block, from bottom to top + +(B) +- Stack with purple block +- Stack with blue block, green block, from bottom to top + +(C) +- Stack with yellow block, blue block, green block, red block, purple block, from bottom to top + +(D) +- Stack with green block +- Stack with purple block +- Stack with blue block + diff --git a/blocks/task3/maps/level3/text_input/13.txt b/blocks/task3/maps/level3/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..ade641843b26561d5afafd2a88984014897a1f3f --- /dev/null +++ b/blocks/task3/maps/level3/text_input/13.txt @@ -0,0 +1,20 @@ +(A) +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(B) +- Stack with red block, orange block, purple block, from bottom to top + +(C) +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top + +(D) +- Stack with purple block +- Stack with red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/14.txt b/blocks/task3/maps/level3/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed8d93de0d7562406589ba89924755c85bec11e3 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/14.txt @@ -0,0 +1,19 @@ +(A) +- Stack with purple block, red block, orange block, from bottom to top + +(B) +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with purple block + +(C) +- Stack with red block, purple block, orange block, from bottom to top + +(D) +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/15.txt b/blocks/task3/maps/level3/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..e96022efe2dbf7fa053c5f22eacc3e5841d43e93 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/15.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block +- Stack with yellow block, red block, from bottom to top + +(B) +- Stack with yellow block +- Stack with red block, purple block, from bottom to top + +(C) +- Stack with orange block +- Stack with purple block, blue block, from bottom to top + +(D) +- Stack with purple block +- Stack with green block, orange block, yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/16.txt b/blocks/task3/maps/level3/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..e041599307ae439b3b58d55a0058c71c134e126b --- /dev/null +++ b/blocks/task3/maps/level3/text_input/16.txt @@ -0,0 +1,19 @@ +(A) +- Stack with green block +- Stack with yellow block +- Stack with purple block + +(B) +- Stack with green block, purple block, yellow block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with blue block, purple block, from bottom to top + +(D) +- Stack with blue block +- Stack with green block +- Stack with orange block, purple block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/17.txt b/blocks/task3/maps/level3/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..04a79ae3c290161abc624e2beb622f4e188810b7 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/17.txt @@ -0,0 +1,16 @@ +(A) +- Stack with yellow block, red block, purple block, from bottom to top + +(B) +- Stack with green block, blue block, red block, from bottom to top + +(C) +- Stack with orange block +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with yellow block + +(D) +- Stack with purple block, yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/18.txt b/blocks/task3/maps/level3/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..8924658cd5bdd30ad68c99ce9adaed8e88446bdf --- /dev/null +++ b/blocks/task3/maps/level3/text_input/18.txt @@ -0,0 +1,16 @@ +(A) +- Stack with orange block, purple block, from bottom to top +- Stack with green block, red block, yellow block, from bottom to top + +(B) +- Stack with green block +- Stack with yellow block, orange block, blue block, red block, from bottom to top + +(C) +- Stack with red block, purple block, orange block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block +- Stack with purple block + diff --git a/blocks/task3/maps/level3/text_input/19.txt b/blocks/task3/maps/level3/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b8c6c594fae7b89baa21784b406ec4ccae5ed74 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/19.txt @@ -0,0 +1,16 @@ +(A) +- Stack with yellow block, orange block, from bottom to top +- Stack with purple block, green block, red block, from bottom to top + +(B) +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top + +(C) +- Stack with orange block, red block, green block, from bottom to top + +(D) +- Stack with green block, red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/2.txt b/blocks/task3/maps/level3/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9209b54940e3debe6e5d66713bfbbe472b24f2a6 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/2.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block, red block, blue block, from bottom to top + +(B) +- Stack with red block +- Stack with green block +- Stack with yellow block + +(C) +- Stack with red block, blue block, purple block, from bottom to top + +(D) +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/20.txt b/blocks/task3/maps/level3/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..81fb578e7627e82d55a4d733fbb8d17a21d79622 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/20.txt @@ -0,0 +1,17 @@ +(A) +- Stack with red block +- Stack with blue block +- Stack with purple block, green block, from bottom to top + +(B) +- Stack with red block, green block, yellow block, from bottom to top + +(C) +- Stack with orange block, red block, from bottom to top +- Stack with purple block, green block, blue block, from bottom to top + +(D) +- Stack with red block +- Stack with green block +- Stack with yellow block + diff --git a/blocks/task3/maps/level3/text_input/21.txt b/blocks/task3/maps/level3/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9ba3e5e1e1bb2b5438d4d469aadbaf20a6d759f --- /dev/null +++ b/blocks/task3/maps/level3/text_input/21.txt @@ -0,0 +1,18 @@ +(A) +- Stack with orange block +- Stack with yellow block, green block, from bottom to top + +(B) +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, purple block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with orange block +- Stack with green block + +(D) +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/22.txt b/blocks/task3/maps/level3/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0405d36aaa4548f570d8652855e32225653eec4 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/22.txt @@ -0,0 +1,20 @@ +(A) +- Stack with purple block +- Stack with red block +- Stack with orange block + +(B) +- Stack with purple block +- Stack with red block, orange block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with yellow block + +(D) +- Stack with green block +- Stack with red block, orange block, purple block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/23.txt b/blocks/task3/maps/level3/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fdd2c0fcc379dcb79bd5131247f77f4db2b8396 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/23.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block +- Stack with blue block +- Stack with orange block, purple block, from bottom to top + +(B) +- Stack with green block, red block, yellow block, from bottom to top + +(C) +- Stack with blue block +- Stack with orange block +- Stack with yellow block, purple block, from bottom to top + +(D) +- Stack with red block +- Stack with green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/24.txt b/blocks/task3/maps/level3/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..22ab661614b52950b5bd71b553f17acc6a35191b --- /dev/null +++ b/blocks/task3/maps/level3/text_input/24.txt @@ -0,0 +1,15 @@ +(A) +- Stack with purple block +- Stack with blue block, yellow block, green block, orange block, from bottom to top + +(B) +- Stack with blue block +- Stack with green block, orange block, from bottom to top + +(C) +- Stack with green block +- Stack with orange block, blue block, from bottom to top + +(D) +- Stack with orange block, blue block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/25.txt b/blocks/task3/maps/level3/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..57d75b215b723eae32c5192cd190a8ba5982ad5c --- /dev/null +++ b/blocks/task3/maps/level3/text_input/25.txt @@ -0,0 +1,16 @@ +(A) +- Stack with blue block +- Stack with orange block, red block, from bottom to top + +(B) +- Stack with yellow block +- Stack with blue block +- Stack with red block +- Stack with green block, purple block, from bottom to top + +(C) +- Stack with orange block, red block, blue block, from bottom to top + +(D) +- Stack with green block, purple block, blue block, red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/26.txt b/blocks/task3/maps/level3/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..1af5892d64f596762b017229410bad5adec27b8a --- /dev/null +++ b/blocks/task3/maps/level3/text_input/26.txt @@ -0,0 +1,17 @@ +(A) +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with yellow block +- Stack with green block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with orange block, green block, from bottom to top + +(D) +- Stack with green block, red block, blue block, purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/27.txt b/blocks/task3/maps/level3/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..5aa7beaafdeb15265a5f7b8415d44683faac44f6 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/27.txt @@ -0,0 +1,15 @@ +(A) +- Stack with red block, blue block, yellow block, from bottom to top + +(B) +- Stack with yellow block +- Stack with red block, blue block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block, purple block, orange block, red block, from bottom to top + +(D) +- Stack with yellow block, green block, from bottom to top +- Stack with red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/28.txt b/blocks/task3/maps/level3/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..34b71fe8367acf19d0e3e48930f81492b45fc795 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/28.txt @@ -0,0 +1,20 @@ +(A) +- Stack with green block +- Stack with purple block, blue block, from bottom to top + +(B) +- Stack with purple block +- Stack with blue block +- Stack with yellow block +- Stack with red block, green block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block +- Stack with purple block + +(D) +- Stack with yellow block +- Stack with green block, blue block, from bottom to top +- Stack with purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/29.txt b/blocks/task3/maps/level3/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..590b521a3dbc43b8ac0990405dc5e97d4796e5ab --- /dev/null +++ b/blocks/task3/maps/level3/text_input/29.txt @@ -0,0 +1,16 @@ +(A) +- Stack with orange block +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with purple block +- Stack with yellow block, red block, blue block, from bottom to top + +(C) +- Stack with purple block, orange block, red block, from bottom to top + +(D) +- Stack with orange block +- Stack with purple block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/3.txt b/blocks/task3/maps/level3/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..05db129528404f6c79fa20c3eb41852d1645d07b --- /dev/null +++ b/blocks/task3/maps/level3/text_input/3.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block +- Stack with orange block +- Stack with red block + +(B) +- Stack with purple block +- Stack with yellow block, red block, from bottom to top + +(C) +- Stack with red block, blue block, orange block, from bottom to top + +(D) +- Stack with red block +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with blue block + diff --git a/blocks/task3/maps/level3/text_input/30.txt b/blocks/task3/maps/level3/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..e92de2c32df25b86e39859c093fbd7fe26f5c2c9 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/30.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block +- Stack with red block, green block, from bottom to top + +(B) +- Stack with red block, orange block, green block, from bottom to top + +(C) +- Stack with red block +- Stack with orange block +- Stack with purple block +- Stack with green block, yellow block, from bottom to top + +(D) +- Stack with yellow block +- Stack with blue block, orange block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/31.txt b/blocks/task3/maps/level3/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..30318dc5c9f68ed282eee2a2a13bc6cc691df106 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/31.txt @@ -0,0 +1,20 @@ +(A) +- Stack with purple block +- Stack with green block, yellow block, blue block, from bottom to top + +(B) +- Stack with blue block +- Stack with red block +- Stack with purple block + +(C) +- Stack with yellow block +- Stack with purple block +- Stack with red block +- Stack with orange block +- Stack with blue block + +(D) +- Stack with red block +- Stack with blue block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/32.txt b/blocks/task3/maps/level3/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..014c90a319a9af437bd4eb3927bfa13c88f514c1 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/32.txt @@ -0,0 +1,14 @@ +(A) +- Stack with green block, red block, blue block, purple block, orange block, from bottom to top + +(B) +- Stack with purple block, yellow block, green block, from bottom to top + +(C) +- Stack with yellow block, green block, orange block, blue block, purple block, from bottom to top + +(D) +- Stack with yellow block +- Stack with purple block +- Stack with green block + diff --git a/blocks/task3/maps/level3/text_input/33.txt b/blocks/task3/maps/level3/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..70dccc40b906b9190f22d2eda48b79c4ab63a71b --- /dev/null +++ b/blocks/task3/maps/level3/text_input/33.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block +- Stack with green block, orange block, from bottom to top + +(B) +- Stack with purple block +- Stack with yellow block, red block, from bottom to top + +(C) +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, red block, from bottom to top + +(D) +- Stack with green block +- Stack with blue block +- Stack with orange block + diff --git a/blocks/task3/maps/level3/text_input/34.txt b/blocks/task3/maps/level3/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4a60447e10ccfd774de02d9d283ea910675d8dd --- /dev/null +++ b/blocks/task3/maps/level3/text_input/34.txt @@ -0,0 +1,17 @@ +(A) +- Stack with yellow block +- Stack with green block, orange block, from bottom to top + +(B) +- Stack with blue block, orange block, from bottom to top +- Stack with purple block, yellow block, red block, from bottom to top + +(C) +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top + +(D) +- Stack with orange block, green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/35.txt b/blocks/task3/maps/level3/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fda01070c295edf481572c7bda60303fb4f4732 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/35.txt @@ -0,0 +1,20 @@ +(A) +- Stack with red block +- Stack with blue block +- Stack with orange block +- Stack with yellow block, green block, from bottom to top + +(B) +- Stack with yellow block +- Stack with green block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with orange block, green block, from bottom to top +- Stack with yellow block, purple block, from bottom to top + +(D) +- Stack with green block +- Stack with yellow block +- Stack with red block + diff --git a/blocks/task3/maps/level3/text_input/36.txt b/blocks/task3/maps/level3/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..af17f4bc04f2754f201eaec6bacdcbd024b06622 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/36.txt @@ -0,0 +1,16 @@ +(A) +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top + +(B) +- Stack with orange block, blue block, purple block, green block, from bottom to top + +(C) +- Stack with yellow block, orange block, red block, from bottom to top + +(D) +- Stack with yellow block +- Stack with red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/37.txt b/blocks/task3/maps/level3/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e409e086f8e5f7a101d012a3e8c10efc2cfc694 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/37.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block +- Stack with red block, green block, from bottom to top + +(B) +- Stack with green block, red block, orange block, from bottom to top + +(C) +- Stack with blue block +- Stack with green block +- Stack with yellow block +- Stack with purple block, red block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/38.txt b/blocks/task3/maps/level3/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..e838e2bf4c381be17946ece572dd0fc38c5cfae7 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/38.txt @@ -0,0 +1,15 @@ +(A) +- Stack with purple block, blue block, orange block, from bottom to top + +(B) +- Stack with orange block +- Stack with blue block +- Stack with purple block + +(C) +- Stack with purple block +- Stack with green block, yellow block, blue block, from bottom to top + +(D) +- Stack with green block, red block, yellow block, purple block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/39.txt b/blocks/task3/maps/level3/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9c01b0eb76a36b9794bf97f64822efcd1c38a05 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/39.txt @@ -0,0 +1,20 @@ +(A) +- Stack with green block +- Stack with blue block +- Stack with yellow block + +(B) +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with green block, orange block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block +- Stack with orange block, purple block, from bottom to top + +(D) +- Stack with blue block +- Stack with green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/4.txt b/blocks/task3/maps/level3/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a81f9884756bcd396f247359c07acb203468815 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/4.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block +- Stack with orange block +- Stack with yellow block + +(B) +- Stack with blue block, yellow block, orange block, from bottom to top + +(C) +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top + +(D) +- Stack with orange block +- Stack with blue block +- Stack with green block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/40.txt b/blocks/task3/maps/level3/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..722084e542af48f1494fd2d4e51690233c62648c --- /dev/null +++ b/blocks/task3/maps/level3/text_input/40.txt @@ -0,0 +1,18 @@ +(A) +- Stack with green block +- Stack with orange block, purple block, blue block, yellow block, from bottom to top + +(B) +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with blue block +- Stack with orange block + +(D) +- Stack with orange block +- Stack with red block +- Stack with yellow block, purple block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/41.txt b/blocks/task3/maps/level3/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..07d87b3295b809ce83455912627960538975cacb --- /dev/null +++ b/blocks/task3/maps/level3/text_input/41.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block +- Stack with green block, yellow block, blue block, from bottom to top + +(B) +- Stack with green block, red block, yellow block, from bottom to top + +(C) +- Stack with yellow block +- Stack with red block +- Stack with green block + +(D) +- Stack with blue block +- Stack with orange block, green block, purple block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/42.txt b/blocks/task3/maps/level3/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec005af2a50dbbefc0be6b31fb16ba8bab01713a --- /dev/null +++ b/blocks/task3/maps/level3/text_input/42.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block +- Stack with orange block, purple block, from bottom to top + +(B) +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with red block, orange block, from bottom to top + +(D) +- Stack with purple block +- Stack with blue block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/43.txt b/blocks/task3/maps/level3/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..418451bba3467757b8805f1de63ad8a044e1a28a --- /dev/null +++ b/blocks/task3/maps/level3/text_input/43.txt @@ -0,0 +1,13 @@ +(A) +- Stack with yellow block, red block, blue block, orange block, from bottom to top + +(B) +- Stack with green block +- Stack with blue block, purple block, orange block, red block, from bottom to top + +(C) +- Stack with orange block, red block, blue block, from bottom to top + +(D) +- Stack with red block, orange block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/44.txt b/blocks/task3/maps/level3/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..84fea528ceaedc111374bdd664f48a64afacfaaa --- /dev/null +++ b/blocks/task3/maps/level3/text_input/44.txt @@ -0,0 +1,19 @@ +(A) +- Stack with purple block +- Stack with blue block +- Stack with orange block, yellow block, green block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block + +(C) +- Stack with green block +- Stack with blue block, red block, from bottom to top + +(D) +- Stack with green block +- Stack with red block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/45.txt b/blocks/task3/maps/level3/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f16a81d53d9dc1bee56c44dd0b66b8fdea5389b --- /dev/null +++ b/blocks/task3/maps/level3/text_input/45.txt @@ -0,0 +1,18 @@ +(A) +- Stack with red block +- Stack with orange block +- Stack with yellow block + +(B) +- Stack with red block, yellow block, orange block, from bottom to top + +(C) +- Stack with yellow block, green block, blue block, from bottom to top + +(D) +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with blue block + diff --git a/blocks/task3/maps/level3/text_input/46.txt b/blocks/task3/maps/level3/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4360001c769fab90de984a70c8ec95e2554c0d6 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/46.txt @@ -0,0 +1,17 @@ +(A) +- Stack with red block, yellow block, purple block, from bottom to top + +(B) +- Stack with red block +- Stack with green block, purple block, blue block, yellow block, from bottom to top + +(C) +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top + +(D) +- Stack with red block +- Stack with yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/47.txt b/blocks/task3/maps/level3/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..5bd4d6e8c6d893bac0566939eb16645909a31e31 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/47.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block +- Stack with purple block +- Stack with yellow block + +(B) +- Stack with purple block, yellow block, orange block, from bottom to top + +(C) +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, red block, orange block, from bottom to top + +(D) +- Stack with yellow block +- Stack with purple block +- Stack with orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/48.txt b/blocks/task3/maps/level3/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..d56515364c1b632865eb60e397e863e7a920d334 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/48.txt @@ -0,0 +1,19 @@ +(A) +- Stack with purple block, red block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block, purple block, from bottom to top + +(C) +- Stack with orange block +- Stack with yellow block +- Stack with blue block +- Stack with green block +- Stack with purple block + +(D) +- Stack with blue block +- Stack with red block +- Stack with green block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/49.txt b/blocks/task3/maps/level3/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..d56a324852c15c0885df3369a5cef4d16a003d20 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/49.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block +- Stack with orange block +- Stack with red block + +(B) +- Stack with purple block +- Stack with green block, orange block, yellow block, red block, from bottom to top + +(C) +- Stack with green block, orange block, from bottom to top +- Stack with purple block, red block, from bottom to top + +(D) +- Stack with orange block +- Stack with red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/5.txt b/blocks/task3/maps/level3/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..963cff969b5b2446d29a7dfac925d704d17f4492 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/5.txt @@ -0,0 +1,13 @@ +(A) +- Stack with orange block +- Stack with red block, blue block, from bottom to top + +(B) +- Stack with red block, orange block, blue block, from bottom to top + +(C) +- Stack with green block, blue block, red block, yellow block, purple block, from bottom to top + +(D) +- Stack with orange block, green block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/50.txt b/blocks/task3/maps/level3/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..97ebc36eece165f77a99d7339a7b37809bce3fa0 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/50.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block +- Stack with blue block, red block, from bottom to top + +(B) +- Stack with green block, purple block, from bottom to top +- Stack with red block, yellow block, blue block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block +- Stack with red block + +(D) +- Stack with orange block, blue block, from bottom to top +- Stack with green block, red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/51.txt b/blocks/task3/maps/level3/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c26a6a0f64975080906d9eee86ee17183c5bb60 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/51.txt @@ -0,0 +1,18 @@ +(A) +- Stack with yellow block +- Stack with green block, blue block, from bottom to top + +(B) +- Stack with green block +- Stack with blue block, yellow block, from bottom to top +- Stack with purple block, red block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block, purple block, from bottom to top +- Stack with blue block, orange block, from bottom to top + +(D) +- Stack with yellow block +- Stack with blue block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/52.txt b/blocks/task3/maps/level3/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..34c14a869ee58081535fcc93d469ff2be79349f4 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/52.txt @@ -0,0 +1,18 @@ +(A) +- Stack with purple block +- Stack with orange block, yellow block, from bottom to top + +(B) +- Stack with purple block +- Stack with yellow block, orange block, from bottom to top + +(C) +- Stack with purple block, blue block, orange block, green block, yellow block, from bottom to top + +(D) +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with blue block + diff --git a/blocks/task3/maps/level3/text_input/53.txt b/blocks/task3/maps/level3/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..53360080578a37b6c3bec239954a362a5da1dd24 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/53.txt @@ -0,0 +1,16 @@ +(A) +- Stack with red block +- Stack with green block, blue block, from bottom to top + +(B) +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top + +(C) +- Stack with blue block, purple block, yellow block, from bottom to top + +(D) +- Stack with purple block, yellow block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/54.txt b/blocks/task3/maps/level3/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3baf67b6481c082e2f1f9ca4a6d5d08416b41ca --- /dev/null +++ b/blocks/task3/maps/level3/text_input/54.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block +- Stack with red block, green block, orange block, blue block, from bottom to top + +(B) +- Stack with red block, blue block, yellow block, from bottom to top + +(C) +- Stack with yellow block +- Stack with blue block, red block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block +- Stack with blue block, purple block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/55.txt b/blocks/task3/maps/level3/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..c10c0eb1baf15483e154062e93b1220a7d3c3318 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/55.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block +- Stack with blue block, yellow block, from bottom to top +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block, purple block, from bottom to top + +(C) +- Stack with purple block +- Stack with yellow block, red block, from bottom to top + +(D) +- Stack with red block +- Stack with blue block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/56.txt b/blocks/task3/maps/level3/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..d013fbe155dfe07a08a9f814113f9aed68e83939 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/56.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top + +(B) +- Stack with blue block +- Stack with red block, green block, from bottom to top + +(C) +- Stack with red block +- Stack with green block, blue block, from bottom to top + +(D) +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/57.txt b/blocks/task3/maps/level3/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..306464283960c1615087fc6252e815898afb892a --- /dev/null +++ b/blocks/task3/maps/level3/text_input/57.txt @@ -0,0 +1,18 @@ +(A) +- Stack with green block, yellow block, from bottom to top +- Stack with blue block, purple block, orange block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(C) +- Stack with green block +- Stack with purple block +- Stack with yellow block + +(D) +- Stack with purple block +- Stack with yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/58.txt b/blocks/task3/maps/level3/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..84a39d8a830b9b6adcc9facd150ca4bae7a60e0b --- /dev/null +++ b/blocks/task3/maps/level3/text_input/58.txt @@ -0,0 +1,15 @@ +(A) +- Stack with blue block, yellow block, orange block, red block, from bottom to top + +(B) +- Stack with orange block +- Stack with red block, purple block, from bottom to top + +(C) +- Stack with green block, orange block, from bottom to top +- Stack with purple block, red block, yellow block, from bottom to top + +(D) +- Stack with red block +- Stack with purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/59.txt b/blocks/task3/maps/level3/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..489bf34a2af561a5ec42ff33ef75afe60eb632c9 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/59.txt @@ -0,0 +1,15 @@ +(A) +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +(B) +- Stack with green block, blue block, from bottom to top +- Stack with red block, purple block, orange block, from bottom to top + +(C) +- Stack with green block, red block, orange block, from bottom to top + +(D) +- Stack with red block, orange block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/6.txt b/blocks/task3/maps/level3/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a783c6d9910f28e7a3812f719d5c73a3dd7043c --- /dev/null +++ b/blocks/task3/maps/level3/text_input/6.txt @@ -0,0 +1,16 @@ +(A) +- Stack with yellow block, red block, green block, from bottom to top + +(B) +- Stack with purple block +- Stack with blue block +- Stack with yellow block, green block, orange block, from bottom to top + +(C) +- Stack with green block +- Stack with yellow block +- Stack with red block + +(D) +- Stack with purple block, yellow block, green block, red block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/60.txt b/blocks/task3/maps/level3/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..22f7f50860899040a405e7281e1bc706a5099e19 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/60.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block +- Stack with red block +- Stack with orange block, green block, yellow block, from bottom to top + +(B) +- Stack with orange block, purple block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with green block +- Stack with blue block, red block, yellow block, from bottom to top + +(D) +- Stack with purple block +- Stack with orange block +- Stack with red block + diff --git a/blocks/task3/maps/level3/text_input/61.txt b/blocks/task3/maps/level3/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..3fb7bf70739ea33491297066f7aad604e8094d20 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/61.txt @@ -0,0 +1,13 @@ +(A) +- Stack with red block, orange block, purple block, from bottom to top + +(B) +- Stack with orange block, green block, blue block, from bottom to top + +(C) +- Stack with orange block +- Stack with red block, purple block, from bottom to top + +(D) +- Stack with orange block, yellow block, red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/62.txt b/blocks/task3/maps/level3/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..93b1bf776a4f6bff7e4fc734338faeeee5d3b85d --- /dev/null +++ b/blocks/task3/maps/level3/text_input/62.txt @@ -0,0 +1,21 @@ +(A) +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with yellow block + +(B) +- Stack with green block +- Stack with yellow block +- Stack with blue block, orange block, purple block, from bottom to top + +(C) +- Stack with red block +- Stack with yellow block, green block, from bottom to top + +(D) +- Stack with yellow block +- Stack with red block +- Stack with green block + diff --git a/blocks/task3/maps/level3/text_input/63.txt b/blocks/task3/maps/level3/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2947db7624efe0d566845be7c467d45369b31ea3 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/63.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(B) +- Stack with yellow block +- Stack with red block, green block, from bottom to top + +(C) +- Stack with green block, red block, yellow block, from bottom to top + +(D) +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/64.txt b/blocks/task3/maps/level3/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..c55c799bcdfaeaec415669208b1c5d30db6ea971 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/64.txt @@ -0,0 +1,19 @@ +(A) +- Stack with purple block +- Stack with orange block +- Stack with blue block + +(B) +- Stack with green block +- Stack with blue block +- Stack with orange block, purple block, from bottom to top + +(C) +- Stack with purple block, orange block, blue block, from bottom to top + +(D) +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/65.txt b/blocks/task3/maps/level3/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..63f2b2a3c9dfb8663c1cea6c757cc7467eb61342 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/65.txt @@ -0,0 +1,16 @@ +(A) +- Stack with red block, orange block, purple block, from bottom to top + +(B) +- Stack with orange block +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, green block, from bottom to top + +(C) +- Stack with red block +- Stack with orange block, blue block, green block, from bottom to top + +(D) +- Stack with orange block +- Stack with purple block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/66.txt b/blocks/task3/maps/level3/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..32bf83cbb3d2c12e2424d10d8b96945b39f425d7 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/66.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block +- Stack with red block, orange block, from bottom to top + +(B) +- Stack with red block +- Stack with blue block, orange block, from bottom to top + +(C) +- Stack with blue block +- Stack with red block +- Stack with yellow block +- Stack with purple block + +(D) +- Stack with blue block +- Stack with red block + diff --git a/blocks/task3/maps/level3/text_input/67.txt b/blocks/task3/maps/level3/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b36c327f361128f7a44243fc90d5203078e2350 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/67.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block, green block, from bottom to top +- Stack with orange block, yellow block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(C) +- Stack with purple block +- Stack with orange block, red block, from bottom to top + +(D) +- Stack with blue block +- Stack with purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/68.txt b/blocks/task3/maps/level3/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..eded6dd7a3d488579971544a0b91c7dc2184ebb0 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/68.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with green block +- Stack with blue block +- Stack with red block +- Stack with orange block + +(B) +- Stack with yellow block, green block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with yellow block +- Stack with green block + +(D) +- Stack with purple block, red block, from bottom to top +- Stack with yellow block, orange block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/69.txt b/blocks/task3/maps/level3/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a5adfad6ce145869ba9b523e5a27f11665baa15 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/69.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with green block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with orange block, green block, from bottom to top + +(C) +- Stack with green block +- Stack with red block +- Stack with orange block + +(D) +- Stack with orange block +- Stack with blue block +- Stack with purple block, yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/7.txt b/blocks/task3/maps/level3/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3a9f5ba8ab2f5eb6e23d91e04beb35a4f6472a1 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/7.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block, green block, blue block, from bottom to top + +(B) +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with purple block, green block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block, purple block, from bottom to top + +(D) +- Stack with blue block, green block, from bottom to top +- Stack with orange block, purple block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/70.txt b/blocks/task3/maps/level3/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..128b0d741ad3a4427a3d51c7dca790d871a3ef89 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/70.txt @@ -0,0 +1,15 @@ +(A) +- Stack with green block, yellow block, red block, from bottom to top + +(B) +- Stack with green block +- Stack with purple block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with red block, green block, from bottom to top + +(D) +- Stack with blue block +- Stack with purple block, orange block, yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/71.txt b/blocks/task3/maps/level3/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed80a526e619d0b07e9482a3199865e63d93cffa --- /dev/null +++ b/blocks/task3/maps/level3/text_input/71.txt @@ -0,0 +1,16 @@ +(A) +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, red block, orange block, from bottom to top + +(B) +- Stack with orange block +- Stack with green block, yellow block, red block, purple block, from bottom to top + +(C) +- Stack with green block +- Stack with red block +- Stack with blue block + +(D) +- Stack with blue block, red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/72.txt b/blocks/task3/maps/level3/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..10117bb7c89896728807fe5fc929f1752680acb6 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/72.txt @@ -0,0 +1,15 @@ +(A) +- Stack with orange block, blue block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with purple block + +(C) +- Stack with red block +- Stack with orange block +- Stack with blue block + +(D) +- Stack with yellow block, green block, orange block, blue block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/73.txt b/blocks/task3/maps/level3/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..b794e16f76af2a20a84f59e737b96498504a3e41 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/73.txt @@ -0,0 +1,20 @@ +(A) +- Stack with green block +- Stack with blue block +- Stack with red block + +(B) +- Stack with blue block +- Stack with red block, green block, purple block, orange block, from bottom to top + +(C) +- Stack with blue block +- Stack with green block, red block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block + diff --git a/blocks/task3/maps/level3/text_input/74.txt b/blocks/task3/maps/level3/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..144a7b8aa4090f3ed20875eb7c9a6c9a5ec2bbd2 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/74.txt @@ -0,0 +1,15 @@ +(A) +- Stack with red block +- Stack with purple block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with green block, blue block, from bottom to top + +(C) +- Stack with yellow block, red block, purple block, from bottom to top + +(D) +- Stack with purple block +- Stack with yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/75.txt b/blocks/task3/maps/level3/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8772deaddda8234ff6e3378d63d10a9ce6a6f2e --- /dev/null +++ b/blocks/task3/maps/level3/text_input/75.txt @@ -0,0 +1,18 @@ +(A) +- Stack with yellow block +- Stack with green block +- Stack with blue block + +(B) +- Stack with yellow block +- Stack with orange block +- Stack with green block, red block, purple block, from bottom to top + +(C) +- Stack with green block +- Stack with yellow block, blue block, from bottom to top + +(D) +- Stack with orange block, purple block, from bottom to top +- Stack with green block, red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/76.txt b/blocks/task3/maps/level3/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..c071b1e9b07e9a33dca9a2b18b20627a98dff11e --- /dev/null +++ b/blocks/task3/maps/level3/text_input/76.txt @@ -0,0 +1,22 @@ +(A) +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with red block +- Stack with orange block + +(B) +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top + +(C) +- Stack with orange block +- Stack with yellow block +- Stack with purple block + +(D) +- Stack with purple block +- Stack with yellow block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/77.txt b/blocks/task3/maps/level3/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..b956b1178007421e3b1664b0cced05ce4eac2e1f --- /dev/null +++ b/blocks/task3/maps/level3/text_input/77.txt @@ -0,0 +1,18 @@ +(A) +- Stack with red block +- Stack with orange block +- Stack with blue block, purple block, green block, from bottom to top + +(B) +- Stack with orange block +- Stack with red block +- Stack with yellow block + +(C) +- Stack with red block, orange block, yellow block, from bottom to top + +(D) +- Stack with blue block +- Stack with yellow block, green block, from bottom to top +- Stack with red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/78.txt b/blocks/task3/maps/level3/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3d0bff810879ee6951ad998741e47f5317ad535 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/78.txt @@ -0,0 +1,15 @@ +(A) +- Stack with yellow block, orange block, blue block, from bottom to top + +(B) +- Stack with orange block +- Stack with blue block +- Stack with red block, yellow block, from bottom to top + +(C) +- Stack with blue block +- Stack with red block, purple block, green block, orange block, from bottom to top + +(D) +- Stack with blue block, yellow block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/79.txt b/blocks/task3/maps/level3/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..81041f9a5ba5dca47eaa01c3f850b8b1a5e09158 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/79.txt @@ -0,0 +1,15 @@ +(A) +- Stack with green block, blue block, from bottom to top +- Stack with orange block, purple block, yellow block, from bottom to top + +(B) +- Stack with blue block +- Stack with orange block, purple block, from bottom to top + +(C) +- Stack with purple block +- Stack with yellow block, blue block, green block, from bottom to top + +(D) +- Stack with blue block, purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/8.txt b/blocks/task3/maps/level3/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..57be93a386f3f851ac560550d4e7a3b9d9cc9bc2 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/8.txt @@ -0,0 +1,16 @@ +(A) +- Stack with orange block +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with green block +- Stack with yellow block + +(C) +- Stack with red block +- Stack with blue block, orange block, purple block, from bottom to top + +(D) +- Stack with red block, purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/80.txt b/blocks/task3/maps/level3/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f09ed2a6e23ab7722e47561de1a990cff5a6ccb5 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/80.txt @@ -0,0 +1,19 @@ +(A) +- Stack with orange block, yellow block, from bottom to top +- Stack with green block, red block, blue block, from bottom to top + +(B) +- Stack with yellow block, red block, blue block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block + +(D) +- Stack with blue block +- Stack with yellow block +- Stack with red block + diff --git a/blocks/task3/maps/level3/text_input/81.txt b/blocks/task3/maps/level3/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..22884e246ef24eef856ea2612590d2c022144b14 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/81.txt @@ -0,0 +1,20 @@ +(A) +- Stack with yellow block +- Stack with green block, blue block, from bottom to top + +(B) +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with blue block + +(C) +- Stack with blue block, green block, yellow block, from bottom to top + +(D) +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/82.txt b/blocks/task3/maps/level3/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b8d646fb7f464e754bc2003f2cb83d7fb95b2cb --- /dev/null +++ b/blocks/task3/maps/level3/text_input/82.txt @@ -0,0 +1,18 @@ +(A) +- Stack with yellow block, blue block, orange block, from bottom to top + +(B) +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top + +(C) +- Stack with orange block +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +(D) +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/83.txt b/blocks/task3/maps/level3/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..210ca7f53a3dc5c29cae9134e1e5901e2371e775 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/83.txt @@ -0,0 +1,19 @@ +(A) +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with orange block + +(B) +- Stack with red block +- Stack with purple block +- Stack with green block +- Stack with orange block + +(C) +- Stack with red block, purple block, green block, from bottom to top + +(D) +- Stack with purple block, red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/84.txt b/blocks/task3/maps/level3/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9eb73a802ad587ae6b1546383a6dd88d2533a6b --- /dev/null +++ b/blocks/task3/maps/level3/text_input/84.txt @@ -0,0 +1,13 @@ +(A) +- Stack with green block, yellow block, orange block, from bottom to top + +(B) +- Stack with orange block +- Stack with green block, yellow block, from bottom to top + +(C) +- Stack with purple block, blue block, yellow block, orange block, red block, from bottom to top + +(D) +- Stack with yellow block, purple block, orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/85.txt b/blocks/task3/maps/level3/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..47e0ae079da22bf6c2105ef27c66912beacd1680 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/85.txt @@ -0,0 +1,15 @@ +(A) +- Stack with orange block, purple block, green block, from bottom to top + +(B) +- Stack with green block, orange block, purple block, from bottom to top + +(C) +- Stack with blue block, green block, from bottom to top +- Stack with orange block, purple block, yellow block, from bottom to top + +(D) +- Stack with purple block +- Stack with red block, blue block, from bottom to top +- Stack with orange block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/86.txt b/blocks/task3/maps/level3/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..99148c0e70bf8db2aa9abb532e9387e549b63b06 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/86.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block +- Stack with purple block, yellow block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block, purple block, from bottom to top + +(C) +- Stack with orange block +- Stack with yellow block +- Stack with red block +- Stack with purple block + +(D) +- Stack with yellow block, purple block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/87.txt b/blocks/task3/maps/level3/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3e6dd3e0da1bc5263c14b63a148934d0ef22733 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/87.txt @@ -0,0 +1,14 @@ +(A) +- Stack with blue block, red block, green block, from bottom to top + +(B) +- Stack with red block +- Stack with blue block, green block, from bottom to top + +(C) +- Stack with purple block, yellow block, from bottom to top +- Stack with orange block, blue block, red block, from bottom to top + +(D) +- Stack with purple block, blue block, orange block, red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/88.txt b/blocks/task3/maps/level3/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..9465f3dc81514291ccf99fc1e95e61b30b9b7fd1 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/88.txt @@ -0,0 +1,15 @@ +(A) +- Stack with orange block, red block, purple block, from bottom to top + +(B) +- Stack with orange block, green block, yellow block, purple block, from bottom to top + +(C) +- Stack with red block +- Stack with orange block +- Stack with green block +- Stack with yellow block + +(D) +- Stack with orange block, purple block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/89.txt b/blocks/task3/maps/level3/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9e06e81aeb183e0aed6e657d652725729b1f885 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/89.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block, orange block, blue block, from bottom to top + +(B) +- Stack with green block +- Stack with yellow block +- Stack with purple block +- Stack with orange block + +(C) +- Stack with blue block +- Stack with orange block +- Stack with green block + +(D) +- Stack with orange block, blue block, yellow block, red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/9.txt b/blocks/task3/maps/level3/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e533b8c3fa28dd24b2bab1a77fccfcb913eaa19 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/9.txt @@ -0,0 +1,15 @@ +(A) +- Stack with purple block +- Stack with blue block, green block, from bottom to top +- Stack with red block, orange block, from bottom to top + +(B) +- Stack with green block, red block, orange block, from bottom to top + +(C) +- Stack with orange block, green block, red block, from bottom to top + +(D) +- Stack with purple block +- Stack with yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/90.txt b/blocks/task3/maps/level3/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..37edd419587cced85c7624374f68d720039b505f --- /dev/null +++ b/blocks/task3/maps/level3/text_input/90.txt @@ -0,0 +1,18 @@ +(A) +- Stack with red block, orange block, blue block, from bottom to top + +(B) +- Stack with red block +- Stack with orange block, blue block, green block, from bottom to top + +(C) +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block +- Stack with blue block + diff --git a/blocks/task3/maps/level3/text_input/91.txt b/blocks/task3/maps/level3/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb7af70f07514cef2cd658ab423855401b2f5050 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/91.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block + +(B) +- Stack with green block, blue block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with blue block, green block, from bottom to top + +(D) +- Stack with yellow block, orange block, blue block, green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/92.txt b/blocks/task3/maps/level3/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcd91bac2d569180858550cd0a0f31d4572a056d --- /dev/null +++ b/blocks/task3/maps/level3/text_input/92.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block +- Stack with green block +- Stack with purple block + +(B) +- Stack with green block +- Stack with orange block, purple block, from bottom to top + +(C) +- Stack with yellow block +- Stack with orange block +- Stack with purple block, blue block, from bottom to top + +(D) +- Stack with purple block, blue block, orange block, green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/93.txt b/blocks/task3/maps/level3/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..971e19bfedfa05d7b2eea380c362e2c8ec234ac5 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/93.txt @@ -0,0 +1,20 @@ +(A) +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with orange block +- Stack with blue block + +(B) +- Stack with orange block +- Stack with red block, blue block, from bottom to top + +(C) +- Stack with orange block +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/94.txt b/blocks/task3/maps/level3/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a6365ac0ac2eea0e172021e3698084bb460b903 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/94.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block +- Stack with green block, purple block, from bottom to top + +(B) +- Stack with orange block +- Stack with purple block, blue block, from bottom to top + +(C) +- Stack with green block, purple block, orange block, from bottom to top + +(D) +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with orange block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/95.txt b/blocks/task3/maps/level3/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d01fbce5a58db9655e9ac4bf626f8474064d041 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/95.txt @@ -0,0 +1,19 @@ +(A) +- Stack with green block, blue block, orange block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with red block +- Stack with yellow block + +(C) +- Stack with blue block, green block, orange block, from bottom to top + +(D) +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/96.txt b/blocks/task3/maps/level3/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab8a9e2702619b27498539c6aab8b4c1f55c88bb --- /dev/null +++ b/blocks/task3/maps/level3/text_input/96.txt @@ -0,0 +1,18 @@ +(A) +- Stack with red block +- Stack with blue block +- Stack with orange block +- Stack with yellow block, green block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block +- Stack with blue block, red block, yellow block, from bottom to top + +(C) +- Stack with red block, yellow block, purple block, from bottom to top + +(D) +- Stack with red block +- Stack with purple block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/97.txt b/blocks/task3/maps/level3/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..6218e464bcca77d5522e9832af83364f39105c96 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/97.txt @@ -0,0 +1,15 @@ +(A) +- Stack with red block +- Stack with blue block, orange block, from bottom to top + +(B) +- Stack with orange block, red block, blue block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block, red block, from bottom to top +- Stack with blue block, purple block, from bottom to top + +(D) +- Stack with blue block, green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/98.txt b/blocks/task3/maps/level3/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..f54f68308bcb093886c389dd3ec10f972d59539e --- /dev/null +++ b/blocks/task3/maps/level3/text_input/98.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block, orange block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block +- Stack with orange block + +(C) +- Stack with purple block +- Stack with yellow block +- Stack with green block, blue block, from bottom to top + +(D) +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level3/text_input/99.txt b/blocks/task3/maps/level3/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab66a316d6e4ebfc7e7f1bf37e698bae859671a9 --- /dev/null +++ b/blocks/task3/maps/level3/text_input/99.txt @@ -0,0 +1,17 @@ +(A) +- Stack with blue block +- Stack with orange block +- Stack with green block + +(B) +- Stack with purple block +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, orange block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block, orange block, from bottom to top + +(D) +- Stack with red block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/annotation.txt b/blocks/task3/maps/level4/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..09c4d3d695b448c51c89db8d08cce2539b469b02 --- /dev/null +++ b/blocks/task3/maps/level4/annotation.txt @@ -0,0 +1,100 @@ +3 +3 +0 +0 +3 +0 +2 +3 +0 +2 +3 +2 +0 +0 +0 +0 +1 +0 +3 +1 +0 +0 +3 +0 +1 +2 +1 +3 +2 +0 +1 +3 +3 +2 +3 +1 +3 +3 +1 +0 +3 +2 +1 +0 +1 +2 +1 +1 +0 +2 +1 +1 +1 +0 +0 +2 +2 +0 +2 +3 +3 +0 +3 +1 +3 +3 +1 +1 +3 +3 +3 +1 +0 +1 +1 +3 +1 +0 +1 +0 +3 +3 +0 +0 +0 +3 +0 +3 +2 +1 +0 +3 +0 +1 +3 +3 +0 +0 +1 +2 diff --git a/blocks/task3/maps/level4/image_input/0.jpg b/blocks/task3/maps/level4/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5146ddc432f75c9f256fa619033bdcfb84ba3fc --- /dev/null +++ b/blocks/task3/maps/level4/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdbb2c65013bf817002f75b403133dadcbfa0053a9bee136b9da8312f0ebc657 +size 9310 diff --git a/blocks/task3/maps/level4/image_input/1.jpg b/blocks/task3/maps/level4/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f2e1ffe9b1d62b9c2300ec6f4c1c224cdb8ac5c --- /dev/null +++ b/blocks/task3/maps/level4/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd45b43ed89deee3d9c2ab5714d44c661dfe6e68ad3a0f6d0f9698d440f30a8 +size 9799 diff --git a/blocks/task3/maps/level4/image_input/10.jpg b/blocks/task3/maps/level4/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..536e7a00d103f57223f3cfdce09b8cd103204200 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45be82904e04c411ce102294998a8a67aabd1c475dcd4be16e1ebedfedc6e0aa +size 9337 diff --git a/blocks/task3/maps/level4/image_input/11.jpg b/blocks/task3/maps/level4/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02d60120df04b781faa3316a4544b37843a2a7eb --- /dev/null +++ b/blocks/task3/maps/level4/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c5011cb74beea025dbfb6571de4036d69afc64fbc796eb11f62fe91e330e14 +size 9963 diff --git a/blocks/task3/maps/level4/image_input/12.jpg b/blocks/task3/maps/level4/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c2d41528dc3c95c521334a200e43ec5bda002e6 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a04f3f2daa8a08db389a98111ddbeaf4cffd02e36f4ebf4629ca07bfcff04f +size 9848 diff --git a/blocks/task3/maps/level4/image_input/13.jpg b/blocks/task3/maps/level4/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97dad9f1b24c9e4faa085cebd049d75dbe6bdebb --- /dev/null +++ b/blocks/task3/maps/level4/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffc0c13aa1d2ecfca9c477279eb58e738f9227870c3d2349454f139a94b71b1 +size 9570 diff --git a/blocks/task3/maps/level4/image_input/14.jpg b/blocks/task3/maps/level4/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..388b3e1c0c3e60ee4380dd28e1168abf7e4e4e05 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f753ec127d6414af848a8d19143e571a5b1266028d6c921de8da8509e6566acb +size 10308 diff --git a/blocks/task3/maps/level4/image_input/15.jpg b/blocks/task3/maps/level4/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa594a1101d9bab88409320ef6bef6e072413bf3 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9028514c93b00298fb99f10a110bc75488771209e61e97a4f7060bcc3638c2 +size 10261 diff --git a/blocks/task3/maps/level4/image_input/16.jpg b/blocks/task3/maps/level4/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6aefc7a8beac5f0b8a16e0fd6f823be501481dcf --- /dev/null +++ b/blocks/task3/maps/level4/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678327bbee74b9ca50cb6bcc5281955a9926acba3da4defb92c4b29a94bac6a2 +size 9229 diff --git a/blocks/task3/maps/level4/image_input/17.jpg b/blocks/task3/maps/level4/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17a6f173729f7fdd3e5c81ef925980e96cae3190 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef89b2c803fff22aed1992499b08bc3abbca1fb1e98fdc926e615bc09454db0 +size 9849 diff --git a/blocks/task3/maps/level4/image_input/18.jpg b/blocks/task3/maps/level4/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abb131bd91aa0f97fa99b2ef21a73bdf93b08f07 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1f01fcd53db9800f15c34117677148e90daede353e870984e8ccfcb89a6d4c +size 9599 diff --git a/blocks/task3/maps/level4/image_input/19.jpg b/blocks/task3/maps/level4/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6021c4a03d40ed871f78c23946b52ed8711253a --- /dev/null +++ b/blocks/task3/maps/level4/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be15a9eb80bbb41aeb9c558da91122caeec26b3425dfc1e84edd90218d25a07b +size 10256 diff --git a/blocks/task3/maps/level4/image_input/2.jpg b/blocks/task3/maps/level4/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..697867330a461163a8f8398c592c8b73a0223be9 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627ec3b2ee7c943970d517f15afb632811dcd9ad7349881d3ff7a862618226c +size 10138 diff --git a/blocks/task3/maps/level4/image_input/20.jpg b/blocks/task3/maps/level4/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e752a07137d22a5a2eff39c0c014c6eff95c683 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175b7047e71ca6e9822f23eba5cf50274878d849042e7ed254cb9c103f213eb9 +size 9315 diff --git a/blocks/task3/maps/level4/image_input/21.jpg b/blocks/task3/maps/level4/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b0a546dacfd4e30cbf4e1e3bbf5224bef927066 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e9abc9fb55f835df3248fa84b25152c01a1df967b9e0411313b71cd57d3d67 +size 10066 diff --git a/blocks/task3/maps/level4/image_input/22.jpg b/blocks/task3/maps/level4/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a52887893ba2854e4028fde265640a5fd4c4e0ed --- /dev/null +++ b/blocks/task3/maps/level4/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7938ab461790ba6d59a969bcfdd741044c1a9bb7e50b0b6cb57c695347709b4 +size 10525 diff --git a/blocks/task3/maps/level4/image_input/23.jpg b/blocks/task3/maps/level4/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..134bfe876088fef69926e09af13fa80c65aad769 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79bbb57193880d55e27cca0bdeaf96bc48de85b6441dd5950822e89803610bf +size 8858 diff --git a/blocks/task3/maps/level4/image_input/24.jpg b/blocks/task3/maps/level4/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87be1f92b71c685e8e60f6a1ad6d146096a8cfae --- /dev/null +++ b/blocks/task3/maps/level4/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba53f2e051a42eb946852e5ec3e2264090436a31b609c0b7a091e01e7129dbe8 +size 9339 diff --git a/blocks/task3/maps/level4/image_input/25.jpg b/blocks/task3/maps/level4/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5df4536b2904716c830f37eb6652e6f4094b55ac --- /dev/null +++ b/blocks/task3/maps/level4/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ab179389346a2f3cb035d97db315cb72ff4ef132e26cca6027259ab13d8d24 +size 9259 diff --git a/blocks/task3/maps/level4/image_input/26.jpg b/blocks/task3/maps/level4/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..916ab1df1576edfe06c9d4b6a550f5e0afb58aa3 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d259e3951a42ee1dc4c2fc502b06b7b527f7f784855a06bc732f60f6b6bf7b0 +size 10464 diff --git a/blocks/task3/maps/level4/image_input/27.jpg b/blocks/task3/maps/level4/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..289b8565244231e1b158af92481a5db5f2912de9 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e316589360b2b23aefd24860c22e6446d47c93f60987b7705910ecef83fcd89c +size 9737 diff --git a/blocks/task3/maps/level4/image_input/28.jpg b/blocks/task3/maps/level4/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a12ca349fee695320e9ed96e32537a1a5865b1b --- /dev/null +++ b/blocks/task3/maps/level4/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba50dd4d0e4290601e5634f78343a87e10c7972b0f0e478b3db6c4adc21505ec +size 9784 diff --git a/blocks/task3/maps/level4/image_input/29.jpg b/blocks/task3/maps/level4/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..279a62ce6120d905c47cf412aff42a8382a701cd --- /dev/null +++ b/blocks/task3/maps/level4/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa9bd440c658957e0e9928440ef81224ef781b1a07d1d996aa29b6ded51d340 +size 10238 diff --git a/blocks/task3/maps/level4/image_input/3.jpg b/blocks/task3/maps/level4/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8681a4ed78ec6a55c7d63a992bad09587f5f9e55 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5af445fcde0d81c4272b31e90234276c67326aeb2f8b7cb8a0455f3c988fd4 +size 10689 diff --git a/blocks/task3/maps/level4/image_input/30.jpg b/blocks/task3/maps/level4/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc447ac8887bf07ac0455553c3f44a438665fc17 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c51cbc9d454b4422b8a9cd15764a0dc31b106da2d77b0baf2cf5a29f48784d1 +size 10034 diff --git a/blocks/task3/maps/level4/image_input/31.jpg b/blocks/task3/maps/level4/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f7ffb70b4ca9d58854e5266f282ccf0d763c12c --- /dev/null +++ b/blocks/task3/maps/level4/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10de1cdfbde72fe3d23acb80eca3254ece26e7273984d201bf3b14f1d24c97a0 +size 9671 diff --git a/blocks/task3/maps/level4/image_input/32.jpg b/blocks/task3/maps/level4/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6db8cff87b73130a9132ac755a4a09d81d2c1589 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74c10e176c63087070e0c8aeb5ed2e1fc45fb4b33495c58244c6d3ce5fb486e +size 8769 diff --git a/blocks/task3/maps/level4/image_input/33.jpg b/blocks/task3/maps/level4/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ecdb25a3393eb8981ac802aefe1d6c0b97a1a0c7 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e75eb56cc80ed37a0e0f582083de321b59f6f809e5ce9b372077d55c494223 +size 10293 diff --git a/blocks/task3/maps/level4/image_input/34.jpg b/blocks/task3/maps/level4/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..525d3caddd68f935fae4a2b1a36bc74791910509 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745dc3524d109aa09922c0c84869733f5d0914d93ebca3fb3b1b0c36014252fd +size 10119 diff --git a/blocks/task3/maps/level4/image_input/35.jpg b/blocks/task3/maps/level4/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3e5958942fbc600375ad0e6492c096f7c47c144 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14193d7853bf3fcdb303d9ade37b45e5177e6711aa85796c7d7da6fe89056fd1 +size 10151 diff --git a/blocks/task3/maps/level4/image_input/36.jpg b/blocks/task3/maps/level4/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f790372eef4c833eafd3c1a86c0461dc71b1c95 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af87c72749cfea1d3fb9f901d5f69062514f03d69f599ba44acee174b9c9e7e +size 9972 diff --git a/blocks/task3/maps/level4/image_input/37.jpg b/blocks/task3/maps/level4/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11e003aacdcdf7ff13df45ebead3f8adb636ccf5 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d6319599b3d6242b880b3789a4269a173ab42da65bb3b1a3901cabc40dd464 +size 9922 diff --git a/blocks/task3/maps/level4/image_input/38.jpg b/blocks/task3/maps/level4/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2d66b38b7516b6a6d61d805f660d98c7ac44528 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a265fd94662f0d74093dd42569b9a26a1540e4127ef11123c746932a374e3a8 +size 9238 diff --git a/blocks/task3/maps/level4/image_input/39.jpg b/blocks/task3/maps/level4/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79518fc1cbe3db759f7236d5c6d6e043a9f3b16d --- /dev/null +++ b/blocks/task3/maps/level4/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd192188963538d0611a16bc5bebb040451467ffa32ad30b1b6e0baf06fbd8f +size 9762 diff --git a/blocks/task3/maps/level4/image_input/4.jpg b/blocks/task3/maps/level4/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..096ffdfd3aa4dbbcb3fd723ec79cb6112e5587e7 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432ea39f0a8a3734bc11e5f029099561f3861f6e4968160422c3d2ee226395d2 +size 9565 diff --git a/blocks/task3/maps/level4/image_input/40.jpg b/blocks/task3/maps/level4/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b39bc4c957f021a0e18e75f16fabe83810ba62dc --- /dev/null +++ b/blocks/task3/maps/level4/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8b9d94135390324914713b0427e2fb5e076df3e86682315ca814846b97109d +size 10543 diff --git a/blocks/task3/maps/level4/image_input/41.jpg b/blocks/task3/maps/level4/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcbb2114e3da78a670fdc4ad3fbce3dd393c84cd --- /dev/null +++ b/blocks/task3/maps/level4/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7723e58d15c2f31ee7bed81d83a0ed38318af5533778f958f43a95a8c6f2a3 +size 10069 diff --git a/blocks/task3/maps/level4/image_input/42.jpg b/blocks/task3/maps/level4/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a77ef22f9b604eaad494ec5f601b712f9127869 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bfeaecfb09a2f88e7d9ac97e089b4921206a003f6061f6363fe8884596bbc0 +size 9614 diff --git a/blocks/task3/maps/level4/image_input/43.jpg b/blocks/task3/maps/level4/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c8947b3a0f216e60391c1e9c8dc7fd1eec53cc5 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b954be343545e48b37e735fabf3e5672b57029aa4cb87c3cfb88c90d5883cd4e +size 10011 diff --git a/blocks/task3/maps/level4/image_input/44.jpg b/blocks/task3/maps/level4/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e4c676da64c306b714900ceba95e519e721c0ae --- /dev/null +++ b/blocks/task3/maps/level4/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb571763082f24bd3355024a6fd76c2e9de3aa1e51858e50563a0eada297771 +size 10405 diff --git a/blocks/task3/maps/level4/image_input/45.jpg b/blocks/task3/maps/level4/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcdb73ef77c64394c868e2f7005753e72a26d333 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0546561a7d158796d693fc2daf5f8603a41c63cd645b97102c30054ddad12224 +size 10111 diff --git a/blocks/task3/maps/level4/image_input/46.jpg b/blocks/task3/maps/level4/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2ccf0227ca3cf32880b9d539fb4935d29235966 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9010c74b27dfaa5311d9d8f783a05960592d4f27775207069f188ed611bda9ed +size 10164 diff --git a/blocks/task3/maps/level4/image_input/47.jpg b/blocks/task3/maps/level4/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebf24652175f1952173679cc20e09cfeee1457ad --- /dev/null +++ b/blocks/task3/maps/level4/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389536bad0d23d3fc7a1cd69f8914605b23b0f558d3723b5a9e3fd8084eff215 +size 9658 diff --git a/blocks/task3/maps/level4/image_input/48.jpg b/blocks/task3/maps/level4/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..340954a5762239e9e70f9de7917fcafcad27bc99 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f485c99a4da6ea362083a65dab8d1e58111a937bca130481c81e20a8307d932d +size 9299 diff --git a/blocks/task3/maps/level4/image_input/49.jpg b/blocks/task3/maps/level4/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d59b75cf7f7b24f3991789f59fe91cf8dcb48355 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1d100a803791da694e561294d4cd32471d8fb77024dc06c6458f8322754fd1 +size 10650 diff --git a/blocks/task3/maps/level4/image_input/5.jpg b/blocks/task3/maps/level4/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..732bece7ed1acda52a51bc22fc35feb5799d252c --- /dev/null +++ b/blocks/task3/maps/level4/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43d8f38b21b7345f50b99bafd8562b321c467c420539b4d1ebb08e4a6cf9e2b +size 10565 diff --git a/blocks/task3/maps/level4/image_input/50.jpg b/blocks/task3/maps/level4/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d509b866f4350460bb81e3227ee08a81d8244fae --- /dev/null +++ b/blocks/task3/maps/level4/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:739879a8b207174d5170f856e1d5099e1dce7eb513a0e3de83673a2a630d5445 +size 9386 diff --git a/blocks/task3/maps/level4/image_input/51.jpg b/blocks/task3/maps/level4/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..590390389d73e37cd55d7e956d6cb639bcfda530 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93d40cd2d227bccbda7d5625c6d6b541998d70587325865e2e48d79643266cb +size 9949 diff --git a/blocks/task3/maps/level4/image_input/52.jpg b/blocks/task3/maps/level4/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fb27138c9e13c86de08999957e537d83c19f866 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:715dfcb3378b45f19be2dad2649f964c2212821f42b8cd19f828d5f489a05aba +size 10559 diff --git a/blocks/task3/maps/level4/image_input/53.jpg b/blocks/task3/maps/level4/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0bbf54276cef3e6203bc5069894094a1cfe4c29 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6341e91032d04b8a9d371bf22d00bc3ad763047d98529a55be0171387368cfa2 +size 9795 diff --git a/blocks/task3/maps/level4/image_input/54.jpg b/blocks/task3/maps/level4/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61eccbcb0bd9b7dd0c1ee54ba06a9e9f3941dc91 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eaaff85ca5ef1ed85d3031ac9b1bea6850742b6ced86f685079aec9f6b3571d +size 10231 diff --git a/blocks/task3/maps/level4/image_input/55.jpg b/blocks/task3/maps/level4/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f59c6e4125f5ff60b63586e66851f2535ac3e4eb --- /dev/null +++ b/blocks/task3/maps/level4/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b6fcaa9dd364cf55c39e122ae7e06b24185a93e7b54d260ab153b3bceda599 +size 9920 diff --git a/blocks/task3/maps/level4/image_input/56.jpg b/blocks/task3/maps/level4/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ea5c0cbe02239c76f1f8e8fa7b30c459495af4c --- /dev/null +++ b/blocks/task3/maps/level4/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32674a78659378c77286eb3e107432f56058f8a737355ec66bed4a4d520f0aa7 +size 11355 diff --git a/blocks/task3/maps/level4/image_input/57.jpg b/blocks/task3/maps/level4/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c8947b3a0f216e60391c1e9c8dc7fd1eec53cc5 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b954be343545e48b37e735fabf3e5672b57029aa4cb87c3cfb88c90d5883cd4e +size 10011 diff --git a/blocks/task3/maps/level4/image_input/58.jpg b/blocks/task3/maps/level4/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2ef05f629f9fa070dfc749eb6f6f4aa160a5e5e --- /dev/null +++ b/blocks/task3/maps/level4/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3ffae04131ab9d991c67efaff70ac75ed5eaf72f814c2a0e9fd5aaab92486b +size 10248 diff --git a/blocks/task3/maps/level4/image_input/59.jpg b/blocks/task3/maps/level4/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72eba2a5c8dca4609dbf0d2e32ae6ac8ce923d78 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b21acfd90147e231e1a679da1384a21bfe861ab4c098982c0539f758856926 +size 9931 diff --git a/blocks/task3/maps/level4/image_input/6.jpg b/blocks/task3/maps/level4/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b03595ed02bd2333532bd42a4a5f51352d9cbdbd --- /dev/null +++ b/blocks/task3/maps/level4/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32dc19f381221a23ca6203b9df4f8157ca0f87947b1690c6cc5211051c5f6e8a +size 10615 diff --git a/blocks/task3/maps/level4/image_input/60.jpg b/blocks/task3/maps/level4/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..145ee78962a08cd6d133d520fc10f78022089ac9 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1cc21f3d7b4a45a37c955464cef521ad656fffd111aa482d8aa1e05740c6196 +size 10458 diff --git a/blocks/task3/maps/level4/image_input/61.jpg b/blocks/task3/maps/level4/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0de6fe578265952d72cb2869219c05bb26be0793 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2363f1a31796881a93a334162e2ae21ee171bbe57b05ed7bd6948bc218c80c92 +size 10081 diff --git a/blocks/task3/maps/level4/image_input/62.jpg b/blocks/task3/maps/level4/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12da3b565564b7c5249d413be11bb87f4a55bbf7 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc74642ddb882ac76a4eecdb797936198fcdba7d989982a9f94c4326df52801b +size 10602 diff --git a/blocks/task3/maps/level4/image_input/63.jpg b/blocks/task3/maps/level4/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dc08a17a7dab475193892dd292fdd18bb5144b1 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d356bf73cf9f64a2c202ded7cdd73a216023235533b23cb03a1963a82f9a53b +size 10262 diff --git a/blocks/task3/maps/level4/image_input/64.jpg b/blocks/task3/maps/level4/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..473d41cd4e200e182e78238cf6837e886ddbf22f --- /dev/null +++ b/blocks/task3/maps/level4/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26159837fdf020c0c974dbac522b72ab2cd901b7a93bd4562330c3febcee9731 +size 10232 diff --git a/blocks/task3/maps/level4/image_input/65.jpg b/blocks/task3/maps/level4/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d605140e6e21825b562046309fed95d30255017 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:badd388325b5a25352f80245a0bd259737665b9ebdffa5158eee99027435b8e1 +size 9126 diff --git a/blocks/task3/maps/level4/image_input/66.jpg b/blocks/task3/maps/level4/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ea64d7f8686134765499622d809a7a67e82acd8 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0e73dc8f12b297db6f1ba204382412fa52bffd5313bb60ac464cfbc7f335900 +size 8743 diff --git a/blocks/task3/maps/level4/image_input/67.jpg b/blocks/task3/maps/level4/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6f935ba2493087eb61257c36352522c88af989a --- /dev/null +++ b/blocks/task3/maps/level4/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c25b8f88392baf99d688c00e4c26077748ef907cfd64751d9cdd44d438b47bb +size 9880 diff --git a/blocks/task3/maps/level4/image_input/68.jpg b/blocks/task3/maps/level4/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17a6f173729f7fdd3e5c81ef925980e96cae3190 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef89b2c803fff22aed1992499b08bc3abbca1fb1e98fdc926e615bc09454db0 +size 9849 diff --git a/blocks/task3/maps/level4/image_input/69.jpg b/blocks/task3/maps/level4/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd45e002e90c9fcf1cfd6cfa1b1ebd63d535ed04 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7500ed0e877805853738b9d292a01754ca5e8a9dacd1562deefeedfc01a64a +size 10722 diff --git a/blocks/task3/maps/level4/image_input/7.jpg b/blocks/task3/maps/level4/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70b9b9fbe4dd9582fbddbee10bcb7623eba90bbd --- /dev/null +++ b/blocks/task3/maps/level4/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e689e41efd688de27539d894b67684dd8fa17accbb547022f117daa428fbec8 +size 10275 diff --git a/blocks/task3/maps/level4/image_input/70.jpg b/blocks/task3/maps/level4/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1eefd3600c659be45710e3abd206011034fca02e --- /dev/null +++ b/blocks/task3/maps/level4/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5afbc44e89aabc8ef56a113b8e3285bf21a2ae9f70ca6da8a7883bb27e426b +size 10143 diff --git a/blocks/task3/maps/level4/image_input/71.jpg b/blocks/task3/maps/level4/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6aefc7a8beac5f0b8a16e0fd6f823be501481dcf --- /dev/null +++ b/blocks/task3/maps/level4/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678327bbee74b9ca50cb6bcc5281955a9926acba3da4defb92c4b29a94bac6a2 +size 9229 diff --git a/blocks/task3/maps/level4/image_input/72.jpg b/blocks/task3/maps/level4/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c67fe598b71e6ff78ab5e7a8611f52aa48e387f2 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c16d543c1071c8d69cd50d4e262bb14aefcdd026a8e78078a7a70f3b11ec672e +size 10342 diff --git a/blocks/task3/maps/level4/image_input/73.jpg b/blocks/task3/maps/level4/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ccd572c22f9d9343ac21d54f04f3feef42b8745 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee1dc3fe11ec57f4ae8c8556489a64af22e7f45161d37e5f7124f56faa16e30 +size 10351 diff --git a/blocks/task3/maps/level4/image_input/74.jpg b/blocks/task3/maps/level4/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a60b83a8e63f8191e13db97378ad8fdc4fc77c1 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff7d606040d30f306f0c0cab9abbcc6681ddf4b36dda23829fb8aaf748bd6cdf +size 10071 diff --git a/blocks/task3/maps/level4/image_input/75.jpg b/blocks/task3/maps/level4/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44ed6526a860beae9dee31c6e9d75d95a530b4f8 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de4a7a6a981a3ffcc462c0a4d3ebccabbb5d1d44696e6cd88d28501a2fb09eb +size 8489 diff --git a/blocks/task3/maps/level4/image_input/76.jpg b/blocks/task3/maps/level4/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de3ebc8b1e36400e611d894a632949e3aee8250b --- /dev/null +++ b/blocks/task3/maps/level4/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb30c18e5403182eaae09ed701046671cc7f85469865ec0d1e0d0a907be5c191 +size 10818 diff --git a/blocks/task3/maps/level4/image_input/77.jpg b/blocks/task3/maps/level4/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8072c1dc3b99e4e126e00590a2a66c97acb31a5 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b831d306f30eff220592b08ceccc6f3a8502b199bb9c01391eaab8cfc9b1456 +size 8785 diff --git a/blocks/task3/maps/level4/image_input/78.jpg b/blocks/task3/maps/level4/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..730fb8bde09d5eb95137b34690250c8ec39a8b23 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8587eb536ecec36347545aae254400ee85d354b2b4cea605ce3cca1d0a5926fb +size 10527 diff --git a/blocks/task3/maps/level4/image_input/79.jpg b/blocks/task3/maps/level4/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..632700358fb91f2831b795859d8d23be366b1fc2 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93aad10bc35519305f2091670254f1d13956276f5ca4bbd4b5cf07bd42514fc4 +size 9447 diff --git a/blocks/task3/maps/level4/image_input/8.jpg b/blocks/task3/maps/level4/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e53e182cb0bd8352d08b873cf81842ac3774776 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d84db85244025163a447bc1508136892ee120d3e8695eccf55f0b89de0bbd70 +size 10089 diff --git a/blocks/task3/maps/level4/image_input/80.jpg b/blocks/task3/maps/level4/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b52ba8841ff9a98dcebec36d31e266d24cc0aeb2 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff4c042a4a7f06a368b9e5b3fe5d840307862bd52cf0c593a818dd9c51ae68c +size 10519 diff --git a/blocks/task3/maps/level4/image_input/81.jpg b/blocks/task3/maps/level4/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74ffb8db16366836adb8e3171f87612242b8e042 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c230c048ada2d29a5c64938d19f4ab657e2e7e9e9e5f0d3d5ff2e5ffec7a4f6 +size 10721 diff --git a/blocks/task3/maps/level4/image_input/82.jpg b/blocks/task3/maps/level4/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..632700358fb91f2831b795859d8d23be366b1fc2 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93aad10bc35519305f2091670254f1d13956276f5ca4bbd4b5cf07bd42514fc4 +size 9447 diff --git a/blocks/task3/maps/level4/image_input/83.jpg b/blocks/task3/maps/level4/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7256cc3b4f54f73e9f5f4ce3e38dffc47069f80 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e654a2357fcabdb7021b8a25811b33f550a14bcb80dcb251b08056f51d3102fc +size 9741 diff --git a/blocks/task3/maps/level4/image_input/84.jpg b/blocks/task3/maps/level4/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8eb7e160aac7741d81cbf531726c77ccd38e908d --- /dev/null +++ b/blocks/task3/maps/level4/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fabda733a2ffc1ceaefaee6bd8d5a96f04a1a3c81505091b12a3d46c15a86a1e +size 9026 diff --git a/blocks/task3/maps/level4/image_input/85.jpg b/blocks/task3/maps/level4/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23fb7a1ee61404db91450025947185f55fc4db03 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ffdd787b14276a699652eeea89b36e014d49192746ab992ab6bd1e144437add +size 9666 diff --git a/blocks/task3/maps/level4/image_input/86.jpg b/blocks/task3/maps/level4/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63b3929af9a0f70b000d0bfa2d9583679bf1e4cf --- /dev/null +++ b/blocks/task3/maps/level4/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac3333a8ae157d0e315260a0bd2c84c3f0672b330bea3e92f3861aaf59793f0f +size 9226 diff --git a/blocks/task3/maps/level4/image_input/87.jpg b/blocks/task3/maps/level4/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..906cef94f794e9c568abc0df71bc2db30fda749a --- /dev/null +++ b/blocks/task3/maps/level4/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7d9265e3c71bcf85ec8d5832822c18aa282b64007534a4b8a84de1955640ee +size 10404 diff --git a/blocks/task3/maps/level4/image_input/88.jpg b/blocks/task3/maps/level4/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..152ff757177186de0077741e12f4375839a2e3b5 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945da87e78909d179067b1c1cf8be6d571ac0d8bbd4a2e7dd90a7293d149b30f +size 10897 diff --git a/blocks/task3/maps/level4/image_input/89.jpg b/blocks/task3/maps/level4/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bbc4e492c4edbfb4359981fc24035ee095a5769 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a926407c2bf0c7b897bd261c6c0902a99b391881694c6baba1546ebf1931095 +size 9348 diff --git a/blocks/task3/maps/level4/image_input/9.jpg b/blocks/task3/maps/level4/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c7e4a620734860a5b8c5f07ca7c048addb33f89 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8bcb087aec96f63136853b265af79d07b75599bf6290a1eaef0727014c68e5 +size 10574 diff --git a/blocks/task3/maps/level4/image_input/90.jpg b/blocks/task3/maps/level4/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60a92f9f191c1eb0e3a78a7828dc7430ce8b9362 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0e3abd4f3e25278708c74865c12d69a110943debb7f8ab44ca99da6991fc57 +size 10180 diff --git a/blocks/task3/maps/level4/image_input/91.jpg b/blocks/task3/maps/level4/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26a9863c39ae0720b9148a69fce1644b3b46174e --- /dev/null +++ b/blocks/task3/maps/level4/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3a71d52c7a8562db7ab3e6822b53ed8414b005ae844408bbbd2ceef56699b1 +size 9900 diff --git a/blocks/task3/maps/level4/image_input/92.jpg b/blocks/task3/maps/level4/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98286d25c4cbd743be283f0b9d9e5a1c038c57b6 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d093672635f8cea74a0cc95f71fdcd9c91fde17442805cb4a9a7addd1b782ecb +size 10430 diff --git a/blocks/task3/maps/level4/image_input/93.jpg b/blocks/task3/maps/level4/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbf7a5a7930e1264403a2bc914652c5696564c19 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03fc14682caf21f7780c9e16e1bd11fe3150a625b4ffdc8f30ba4e2c575ec19 +size 9622 diff --git a/blocks/task3/maps/level4/image_input/94.jpg b/blocks/task3/maps/level4/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..123249f786a8812ce0db2ca0db96f18023298d06 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129a7c0b7855bd7b5fd73930e09c47ab5536e7f1263300bd3f5dd8adb83d70e6 +size 9572 diff --git a/blocks/task3/maps/level4/image_input/95.jpg b/blocks/task3/maps/level4/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c980975a9427dc4b3d4ff86cf1be6912ebf141b2 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7c714b90ada994235e6e43d60c5c7a19383e445dc2318103d72418a6d6b89b +size 10433 diff --git a/blocks/task3/maps/level4/image_input/96.jpg b/blocks/task3/maps/level4/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c6a8964d2c2789fb28e0d17d9184e04c7a55b39 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7efd6920d998cee95688ecca7338c1d38fee381dafaa8a65210035152aff70 +size 10041 diff --git a/blocks/task3/maps/level4/image_input/97.jpg b/blocks/task3/maps/level4/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bd5ed5d42de135f78eb49f7774ef71b7ae1ee58 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8ea71b358c0c429d075e1066a1966730a107967b29ef05ea55b8d900864417 +size 9727 diff --git a/blocks/task3/maps/level4/image_input/98.jpg b/blocks/task3/maps/level4/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddc72639e9e6d71b7f0aa3fd61cc64d817fd0823 --- /dev/null +++ b/blocks/task3/maps/level4/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79faaa06aaa24b41ac81b86ae1379eff19075d5fe02ca7f614f8e1ad92d699e +size 10061 diff --git a/blocks/task3/maps/level4/image_input/99.jpg b/blocks/task3/maps/level4/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0cb4265bb22914c53e1d079a55c395810d4157c --- /dev/null +++ b/blocks/task3/maps/level4/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca0b8e509bb5f8d6fdcfbae0ae5bae0db8769efa1ecd9acce54884f19c3d68b9 +size 9479 diff --git a/blocks/task3/maps/level4/text_input/0.txt b/blocks/task3/maps/level4/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc4dc6989ca9ebf23a773cdb6f8bb3bf08f5a693 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/0.txt @@ -0,0 +1,13 @@ +(A) +- Stack with purple block, yellow block, green block, red block, from bottom to top + +(B) +- Stack with green block +- Stack with purple block, yellow block, red block, from bottom to top + +(C) +- Stack with green block, red block, blue block, purple block, orange block, from bottom to top + +(D) +- Stack with green block, purple block, red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/1.txt b/blocks/task3/maps/level4/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..be659e38d269751d057682e91fdaccdff5405ca1 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/1.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block +- Stack with red block +- Stack with yellow block +- Stack with orange block, green block, from bottom to top + +(B) +- Stack with red block, yellow block, purple block, blue block, from bottom to top + +(C) +- Stack with blue block, orange block, from bottom to top +- Stack with red block, purple block, from bottom to top + +(D) +- Stack with orange block +- Stack with purple block +- Stack with red block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/10.txt b/blocks/task3/maps/level4/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca0497e04331a618c694d331b6cb645bcb4e804a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/10.txt @@ -0,0 +1,19 @@ +(A) +- Stack with green block +- Stack with orange block, blue block, yellow block, red block, from bottom to top + +(B) +- Stack with yellow block +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with green block + +(C) +- Stack with purple block +- Stack with yellow block +- Stack with red block, orange block, from bottom to top + +(D) +- Stack with orange block, purple block, red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/11.txt b/blocks/task3/maps/level4/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..a995a839f6d1f00f1f4098111cdbc261e8ee3db0 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/11.txt @@ -0,0 +1,18 @@ +(A) +- Stack with purple block +- Stack with orange block, red block, yellow block, from bottom to top + +(B) +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with red block +- Stack with yellow block, orange block, from bottom to top + +(D) +- Stack with green block +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/12.txt b/blocks/task3/maps/level4/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..bea35a525c8e4c60ed8fa49eeff6e68b4efc7098 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/12.txt @@ -0,0 +1,15 @@ +(A) +- Stack with orange block, green block, red block, blue block, from bottom to top + +(B) +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block, purple block, from bottom to top + +(C) +- Stack with green block, orange block, purple block, red block, blue block, from bottom to top + +(D) +- Stack with green block, orange block, blue block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/13.txt b/blocks/task3/maps/level4/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..18e2e895fb02a41c60d657339acc1b9f31c40d3f --- /dev/null +++ b/blocks/task3/maps/level4/text_input/13.txt @@ -0,0 +1,18 @@ +(A) +- Stack with yellow block +- Stack with purple block, red block, orange block, from bottom to top + +(B) +- Stack with red block +- Stack with orange block, yellow block, purple block, from bottom to top + +(C) +- Stack with red block +- Stack with blue block +- Stack with orange block +- Stack with yellow block, green block, from bottom to top + +(D) +- Stack with blue block +- Stack with yellow block, purple block, orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/14.txt b/blocks/task3/maps/level4/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab52c0e55b5ea6717507023ffe161385aad2aa27 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/14.txt @@ -0,0 +1,17 @@ +(A) +- Stack with red block +- Stack with blue block, orange block, green block, from bottom to top + +(B) +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with red block, green block, from bottom to top + +(C) +- Stack with blue block, orange block, red block, green block, from bottom to top + +(D) +- Stack with purple block +- Stack with blue block, red block, orange block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/15.txt b/blocks/task3/maps/level4/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..13fc4ab144a405bcdc5364c955935add80ff1af4 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/15.txt @@ -0,0 +1,19 @@ +(A) +- Stack with green block, yellow block, orange block, red block, from bottom to top + +(B) +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with yellow block + +(C) +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block, blue block, from bottom to top + +(D) +- Stack with green block +- Stack with orange block, blue block, yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/16.txt b/blocks/task3/maps/level4/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a1450289c2424947addb308598f6c30d22bdba6 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/16.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block, blue block, from bottom to top +- Stack with green block, purple block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top + +(C) +- Stack with purple block, red block, from bottom to top +- Stack with yellow block, blue block, from bottom to top + +(D) +- Stack with blue block +- Stack with green block +- Stack with orange block, purple block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/17.txt b/blocks/task3/maps/level4/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..36893f97a594154e9138c0f1deb1d92ee6a250eb --- /dev/null +++ b/blocks/task3/maps/level4/text_input/17.txt @@ -0,0 +1,15 @@ +(A) +- Stack with blue block +- Stack with orange block, yellow block, purple block, from bottom to top + +(B) +- Stack with purple block, blue block, orange block, yellow block, green block, from bottom to top + +(C) +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, red block, from bottom to top + +(D) +- Stack with purple block, yellow block, orange block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/18.txt b/blocks/task3/maps/level4/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..278e411d185a1bb9f3997b26da206b85f648d441 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/18.txt @@ -0,0 +1,17 @@ +(A) +- Stack with blue block +- Stack with purple block +- Stack with yellow block, red block, from bottom to top + +(B) +- Stack with orange block, blue block, yellow block, from bottom to top + +(C) +- Stack with green block +- Stack with yellow block +- Stack with blue block, orange block, purple block, from bottom to top + +(D) +- Stack with yellow block +- Stack with purple block, red block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/19.txt b/blocks/task3/maps/level4/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..549c62dd254b10e967a87b2a91f6ee24d67b36ed --- /dev/null +++ b/blocks/task3/maps/level4/text_input/19.txt @@ -0,0 +1,18 @@ +(A) +- Stack with orange block +- Stack with purple block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +(B) +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block + +(C) +- Stack with green block, purple block, blue block, red block, orange block, from bottom to top + +(D) +- Stack with green block, yellow block, from bottom to top +- Stack with purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/2.txt b/blocks/task3/maps/level4/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f53f6d85d8f28b97b4acd65939d1684cd39ce75 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/2.txt @@ -0,0 +1,18 @@ +(A) +- Stack with purple block +- Stack with red block, orange block, green block, from bottom to top + +(B) +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with green block, yellow block, from bottom to top + +(C) +- Stack with purple block, green block, orange block, red block, from bottom to top + +(D) +- Stack with purple block +- Stack with blue block +- Stack with red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/20.txt b/blocks/task3/maps/level4/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..8162da07c4bf318835768bbcb5e699479b42cfbe --- /dev/null +++ b/blocks/task3/maps/level4/text_input/20.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block, red block, purple block, yellow block, from bottom to top + +(B) +- Stack with blue block +- Stack with red block +- Stack with green block, yellow block, purple block, from bottom to top + +(C) +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +(D) +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/21.txt b/blocks/task3/maps/level4/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..afac9e724d35da43b2cfc3f59a78e80abbcae376 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/21.txt @@ -0,0 +1,22 @@ +(A) +- Stack with orange block +- Stack with blue block, purple block, yellow block, from bottom to top + +(B) +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with green block, red block, from bottom to top + +(D) +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with purple block + diff --git a/blocks/task3/maps/level4/text_input/22.txt b/blocks/task3/maps/level4/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..44c20dd37772a2cdbc36dd76fa4fe13e26632e12 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/22.txt @@ -0,0 +1,21 @@ +(A) +- Stack with purple block, red block, from bottom to top +- Stack with green block, yellow block, orange block, from bottom to top + +(B) +- Stack with blue block +- Stack with yellow block +- Stack with orange block +- Stack with green block + +(C) +- Stack with yellow block +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with green block + +(D) +- Stack with orange block +- Stack with blue block, yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/23.txt b/blocks/task3/maps/level4/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c42ac7c1dcc59a49b16f444568e96afd1b209c2 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/23.txt @@ -0,0 +1,16 @@ +(A) +- Stack with yellow block, orange block, green block, red block, from bottom to top + +(B) +- Stack with red block, yellow block, purple block, from bottom to top + +(C) +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with green block + +(D) +- Stack with green block, yellow block, from bottom to top +- Stack with orange block, purple block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/24.txt b/blocks/task3/maps/level4/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccafd2cf4e8d64e06283fb8db644e5b4dc5c4864 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/24.txt @@ -0,0 +1,17 @@ +(A) +- Stack with yellow block, orange block, blue block, green block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with green block +- Stack with purple block +- Stack with yellow block + +(C) +- Stack with yellow block +- Stack with green block, purple block, from bottom to top +- Stack with blue block, orange block, from bottom to top + +(D) +- Stack with yellow block, red block, purple block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/25.txt b/blocks/task3/maps/level4/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..9668a81490451e69593610cb1326d64261063be5 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/25.txt @@ -0,0 +1,14 @@ +(A) +- Stack with purple block, orange block, green block, blue block, yellow block, from bottom to top + +(B) +- Stack with purple block +- Stack with blue block, green block, yellow block, from bottom to top + +(C) +- Stack with purple block, yellow block, green block, blue block, from bottom to top + +(D) +- Stack with yellow block +- Stack with purple block + diff --git a/blocks/task3/maps/level4/text_input/26.txt b/blocks/task3/maps/level4/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e97a9fb1643a9d89132c744badae2db6b7fb562 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/26.txt @@ -0,0 +1,14 @@ +(A) +- Stack with blue block, green block, orange block, purple block, from bottom to top + +(B) +- Stack with purple block +- Stack with orange block, blue block, green block, from bottom to top + +(C) +- Stack with purple block, orange block, from bottom to top +- Stack with yellow block, green block, red block, from bottom to top + +(D) +- Stack with orange block, green block, yellow block, blue block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/27.txt b/blocks/task3/maps/level4/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dfcbf42fbc8c85b221f34ec5ee47ee893e463d8 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/27.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with green block, blue block, from bottom to top + +(B) +- Stack with orange block, blue block, from bottom to top + +(C) +- Stack with green block +- Stack with purple block, yellow block, blue block, from bottom to top + +(D) +- Stack with yellow block +- Stack with green block, blue block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/28.txt b/blocks/task3/maps/level4/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e6ef0bb59457265f5965608787d95664b847e62 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/28.txt @@ -0,0 +1,21 @@ +(A) +- Stack with red block +- Stack with purple block +- Stack with green block, blue block, yellow block, from bottom to top + +(B) +- Stack with green block, blue block, from bottom to top +- Stack with orange block, yellow block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top + +(D) +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block + diff --git a/blocks/task3/maps/level4/text_input/29.txt b/blocks/task3/maps/level4/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7be9a3cbe194fc6ba8bd122db169aad57549757 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/29.txt @@ -0,0 +1,20 @@ +(A) +- Stack with purple block +- Stack with green block, blue block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with blue block + +(C) +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with yellow block + +(D) +- Stack with yellow block, purple block, from bottom to top +- Stack with orange block, red block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/3.txt b/blocks/task3/maps/level4/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..345ce3c37951370a3bcc4442e6eec40f9e5be2b8 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/3.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block +- Stack with orange block, red block, blue block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with orange block, green block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block, purple block, orange block, red block, from bottom to top + +(D) +- Stack with red block, green block, orange block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/30.txt b/blocks/task3/maps/level4/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..20b414ed33066d3e05b8d8bdc39c9d5d569b4e04 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/30.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + +(B) +- Stack with blue block +- Stack with green block, red block, orange block, from bottom to top + +(C) +- Stack with blue block, orange block, green block, red block, from bottom to top + +(D) +- Stack with green block +- Stack with orange block +- Stack with blue block +- Stack with yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/31.txt b/blocks/task3/maps/level4/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..a87ff1e2932b87853f78ec7d68bea32ffafa3499 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/31.txt @@ -0,0 +1,19 @@ +(A) +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with purple block + +(B) +- Stack with purple block, red block, from bottom to top +- Stack with yellow block, orange block, blue block, from bottom to top + +(C) +- Stack with green block +- Stack with red block, yellow block, orange block, from bottom to top + +(D) +- Stack with red block +- Stack with green block, yellow block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/32.txt b/blocks/task3/maps/level4/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca651ba36c80bb7213f1a4fb556977846ce94e8a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/32.txt @@ -0,0 +1,15 @@ +(A) +- Stack with yellow block +- Stack with red block +- Stack with blue block, green block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block, orange block, yellow block, red block, from bottom to top + +(C) +- Stack with green block, blue block, red block, from bottom to top + +(D) +- Stack with red block, blue block, green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/33.txt b/blocks/task3/maps/level4/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..03330d653e9c5c357d1a11456c845ff2a331491c --- /dev/null +++ b/blocks/task3/maps/level4/text_input/33.txt @@ -0,0 +1,22 @@ +(A) +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with orange block, blue block, from bottom to top + +(B) +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with green block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block + +(D) +- Stack with purple block, red block, from bottom to top +- Stack with yellow block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/34.txt b/blocks/task3/maps/level4/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c52c4435fc16ee9ffdfabf249f7863a2c3f6dad --- /dev/null +++ b/blocks/task3/maps/level4/text_input/34.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block +- Stack with yellow block +- Stack with orange block, blue block, from bottom to top + +(B) +- Stack with orange block, green block, yellow block, blue block, red block, from bottom to top + +(C) +- Stack with blue block +- Stack with red block, purple block, green block, orange block, from bottom to top + +(D) +- Stack with yellow block +- Stack with blue block, orange block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/35.txt b/blocks/task3/maps/level4/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc172ed65224df9c07d19ca13712c6359d9f44f0 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/35.txt @@ -0,0 +1,23 @@ +(A) +- Stack with yellow block +- Stack with purple block +- Stack with red block +- Stack with orange block +- Stack with blue block + +(B) +- Stack with yellow block +- Stack with blue block +- Stack with green block, purple block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top + +(D) +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with yellow block + diff --git a/blocks/task3/maps/level4/text_input/36.txt b/blocks/task3/maps/level4/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f2e8deb52b26b93c56b871ff1195d57a1bb6f5b --- /dev/null +++ b/blocks/task3/maps/level4/text_input/36.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with red block, green block, from bottom to top + +(B) +- Stack with green block, yellow block, blue block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with red block, green block, from bottom to top + +(D) +- Stack with blue block +- Stack with orange block, yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/37.txt b/blocks/task3/maps/level4/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a31f3b51fd20c16d5d69e124dd92aab16049024 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/37.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block +- Stack with green block +- Stack with yellow block +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with purple block, blue block, yellow block, orange block, red block, from bottom to top + +(C) +- Stack with yellow block, orange block, purple block, blue block, from bottom to top + +(D) +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with purple block + diff --git a/blocks/task3/maps/level4/text_input/38.txt b/blocks/task3/maps/level4/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..79790c28ab2f75ddf81cd6b9fa47e1f3319a3848 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/38.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block +- Stack with red block +- Stack with purple block, yellow block, from bottom to top + +(B) +- Stack with blue block, red block, yellow block, purple block, from bottom to top + +(C) +- Stack with green block +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +(D) +- Stack with green block +- Stack with yellow block, purple block, from bottom to top +- Stack with orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/39.txt b/blocks/task3/maps/level4/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e08184ae4f92e0a4ee1c6ed66b96c33cb0b04474 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/39.txt @@ -0,0 +1,21 @@ +(A) +- Stack with purple block +- Stack with blue block, orange block, yellow block, from bottom to top + +(B) +- Stack with yellow block +- Stack with purple block +- Stack with blue block, orange block, from bottom to top + +(C) +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with blue block + +(D) +- Stack with green block +- Stack with yellow block +- Stack with purple block +- Stack with orange block + diff --git a/blocks/task3/maps/level4/text_input/4.txt b/blocks/task3/maps/level4/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..11b864c0aff5e555b5d761d95548748c8304d007 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/4.txt @@ -0,0 +1,15 @@ +(A) +- Stack with purple block +- Stack with blue block, orange block, from bottom to top +- Stack with red block, yellow block, from bottom to top + +(B) +- Stack with purple block, orange block, red block, blue block, yellow block, from bottom to top + +(C) +- Stack with yellow block, green block, orange block, red block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block, yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/40.txt b/blocks/task3/maps/level4/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..459fb47dd2c2b850a9078ae139034cb878e0d918 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/40.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block, blue block, orange block, green block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with green block +- Stack with orange block +- Stack with purple block + +(C) +- Stack with purple block, orange block, yellow block, blue block, red block, from bottom to top + +(D) +- Stack with orange block +- Stack with green block, red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/41.txt b/blocks/task3/maps/level4/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0665cca691e31894ae742a8eedf9b88836f7b1b --- /dev/null +++ b/blocks/task3/maps/level4/text_input/41.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with yellow block +- Stack with orange block + +(B) +- Stack with blue block, yellow block, red block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with red block +- Stack with orange block, blue block, from bottom to top + +(D) +- Stack with orange block +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/42.txt b/blocks/task3/maps/level4/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..96657cdddfe65e881992ee7b2d3c002ca0ee8f6f --- /dev/null +++ b/blocks/task3/maps/level4/text_input/42.txt @@ -0,0 +1,16 @@ +(A) +- Stack with blue block, yellow block, purple block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block, blue block, purple block, from bottom to top + +(C) +- Stack with red block +- Stack with purple block +- Stack with orange block, yellow block, blue block, from bottom to top + +(D) +- Stack with blue block, orange block, from bottom to top +- Stack with purple block, yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/43.txt b/blocks/task3/maps/level4/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..748b3f8ac03d1807a8ce41950492dd13d6674f71 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/43.txt @@ -0,0 +1,20 @@ +(A) +- Stack with green block +- Stack with orange block +- Stack with blue block, yellow block, from bottom to top + +(B) +- Stack with green block +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top + +(C) +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with yellow block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/44.txt b/blocks/task3/maps/level4/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a9f429260a55724a2e462f47a8e4e4d0c34a706 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/44.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with purple block + +(B) +- Stack with orange block +- Stack with red block, purple block, yellow block, from bottom to top + +(C) +- Stack with yellow block +- Stack with purple block, red block, orange block, from bottom to top + +(D) +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with yellow block + diff --git a/blocks/task3/maps/level4/text_input/45.txt b/blocks/task3/maps/level4/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8a4c47cbdeabb0fcf34ecc064fc956ab5079bca --- /dev/null +++ b/blocks/task3/maps/level4/text_input/45.txt @@ -0,0 +1,17 @@ +(A) +- Stack with yellow block, orange block, red block, green block, blue block, from bottom to top + +(B) +- Stack with yellow block, purple block, green block, red block, from bottom to top + +(C) +- Stack with green block +- Stack with red block +- Stack with yellow block, purple block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/46.txt b/blocks/task3/maps/level4/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f36c77222862c1b2b2db4b6e6bfa8c5fa84bf72 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/46.txt @@ -0,0 +1,16 @@ +(A) +- Stack with red block, orange block, purple block, green block, from bottom to top + +(B) +- Stack with green block, purple block, orange block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + +(D) +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with yellow block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/47.txt b/blocks/task3/maps/level4/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..377f89f8572a5ff8f3762557597212d76202a1b7 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/47.txt @@ -0,0 +1,18 @@ +(A) +- Stack with green block +- Stack with blue block +- Stack with yellow block + +(B) +- Stack with green block +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top + +(C) +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, red block, yellow block, from bottom to top + +(D) +- Stack with yellow block, green block, from bottom to top +- Stack with blue block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/48.txt b/blocks/task3/maps/level4/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9b1aac3dbbb3b80de52c65411be56c1adb481dd --- /dev/null +++ b/blocks/task3/maps/level4/text_input/48.txt @@ -0,0 +1,22 @@ +(A) +- Stack with red block +- Stack with yellow block, orange block, blue block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block +- Stack with orange block, yellow block, blue block, from bottom to top + +(C) +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with blue block + +(D) +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with orange block + diff --git a/blocks/task3/maps/level4/text_input/49.txt b/blocks/task3/maps/level4/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..d93c18501f54f31e25b91afe6fc423e5f6d67c04 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/49.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block, purple block, green block, red block, blue block, from bottom to top + +(B) +- Stack with orange block, yellow block, from bottom to top +- Stack with green block, red block, blue block, from bottom to top + +(C) +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block + +(D) +- Stack with green block, purple block, from bottom to top +- Stack with yellow block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/5.txt b/blocks/task3/maps/level4/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5f7c2783f05ec276c0a2628be121e4735255bad --- /dev/null +++ b/blocks/task3/maps/level4/text_input/5.txt @@ -0,0 +1,19 @@ +(A) +- Stack with purple block +- Stack with orange block +- Stack with red block +- Stack with blue block + +(B) +- Stack with green block +- Stack with orange block, blue block, yellow block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with yellow block, blue block, green block, from bottom to top + +(D) +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/50.txt b/blocks/task3/maps/level4/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..d04bb651f1f1e53dedbe7c50d86ea91d441c94b8 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/50.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block +- Stack with yellow block, purple block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with blue block +- Stack with yellow block +- Stack with purple block + +(C) +- Stack with yellow block +- Stack with orange block, green block, red block, blue block, from bottom to top + +(D) +- Stack with purple block +- Stack with green block +- Stack with orange block, red block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/51.txt b/blocks/task3/maps/level4/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..75af027a33e8bd68082027dbd8c7e9464a72c9a9 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/51.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with purple block +- Stack with orange block +- Stack with green block, red block, from bottom to top + +(B) +- Stack with yellow block +- Stack with blue block, purple block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with orange block +- Stack with blue block, purple block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block + diff --git a/blocks/task3/maps/level4/text_input/52.txt b/blocks/task3/maps/level4/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7c8367d3f2044b279fed7648d2625ec6a964e45 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/52.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block +- Stack with yellow block, blue block, green block, from bottom to top + +(B) +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(C) +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, purple block, orange block, from bottom to top + +(D) +- Stack with green block, blue block, orange block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/53.txt b/blocks/task3/maps/level4/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..abf19f5de70a5888b0ffc7d4feb6745a46cec44a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/53.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block, blue block, yellow block, purple block, from bottom to top + +(B) +- Stack with blue block, yellow block, orange block, red block, from bottom to top + +(C) +- Stack with green block +- Stack with yellow block +- Stack with purple block, blue block, from bottom to top + +(D) +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/54.txt b/blocks/task3/maps/level4/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..15cc575758fa03d765e64aac1ce24c7bd2c36b9c --- /dev/null +++ b/blocks/task3/maps/level4/text_input/54.txt @@ -0,0 +1,21 @@ +(A) +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block + +(B) +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top +- Stack with red block, orange block, from bottom to top + +(C) +- Stack with green block +- Stack with yellow block, purple block, red block, from bottom to top + +(D) +- Stack with purple block +- Stack with blue block +- Stack with yellow block +- Stack with red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/55.txt b/blocks/task3/maps/level4/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce95333b503bda416f3572fbb7f9f3805f960d0d --- /dev/null +++ b/blocks/task3/maps/level4/text_input/55.txt @@ -0,0 +1,19 @@ +(A) +- Stack with purple block +- Stack with red block, green block, yellow block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with green block, red block, from bottom to top + +(C) +- Stack with green block +- Stack with red block, purple block, yellow block, from bottom to top + +(D) +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/56.txt b/blocks/task3/maps/level4/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..26319e32bcc96098daf5035998db8a6317b495a6 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/56.txt @@ -0,0 +1,19 @@ +(A) +- Stack with red block, orange block, purple block, green block, from bottom to top + +(B) +- Stack with green block +- Stack with yellow block, orange block, red block, blue block, from bottom to top + +(C) +- Stack with purple block +- Stack with green block +- Stack with red block +- Stack with orange block + +(D) +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/57.txt b/blocks/task3/maps/level4/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..68c8840f7b8d7b1fb52da05832525993e5499655 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/57.txt @@ -0,0 +1,20 @@ +(A) +- Stack with green block +- Stack with orange block +- Stack with blue block, yellow block, from bottom to top + +(B) +- Stack with green block +- Stack with yellow block, orange block, red block, blue block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with blue block + +(D) +- Stack with purple block +- Stack with green block +- Stack with blue block, red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/58.txt b/blocks/task3/maps/level4/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..461bee6db66e0cbcce6be3258f3a48719ce7ad8a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/58.txt @@ -0,0 +1,16 @@ +(A) +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top +- Stack with red block, green block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block, purple block, green block, from bottom to top + +(C) +- Stack with green block +- Stack with purple block, red block, yellow block, from bottom to top + +(D) +- Stack with yellow block, blue block, green block, red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/59.txt b/blocks/task3/maps/level4/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..688d8d3ff04152d2fc540b46d2789afd4d71fb5a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/59.txt @@ -0,0 +1,20 @@ +(A) +- Stack with orange block, green block, blue block, red block, from bottom to top + +(B) +- Stack with blue block, purple block, from bottom to top +- Stack with green block, red block, orange block, from bottom to top + +(C) +- Stack with orange block +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with green block + +(D) +- Stack with green block +- Stack with blue block +- Stack with red block +- Stack with orange block + diff --git a/blocks/task3/maps/level4/text_input/6.txt b/blocks/task3/maps/level4/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd38db27292b2a3fe8af62607190fa6b2593c1d1 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/6.txt @@ -0,0 +1,18 @@ +(A) +- Stack with purple block +- Stack with yellow block, red block, blue block, from bottom to top + +(B) +- Stack with orange block +- Stack with purple block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with red block, blue block, green block, from bottom to top + +(D) +- Stack with green block +- Stack with blue block +- Stack with red block +- Stack with purple block + diff --git a/blocks/task3/maps/level4/text_input/60.txt b/blocks/task3/maps/level4/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..684f4ec343d38c3367d3af7f0b995c2ac1210d5a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/60.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block +- Stack with yellow block +- Stack with green block, blue block, from bottom to top + +(B) +- Stack with purple block +- Stack with red block +- Stack with orange block, blue block, from bottom to top + +(C) +- Stack with yellow block, green block, orange block, blue block, purple block, from bottom to top + +(D) +- Stack with purple block +- Stack with orange block, blue block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/61.txt b/blocks/task3/maps/level4/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..9df9c8e047c83f40847cad489a0ba962919a5524 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/61.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block +- Stack with purple block +- Stack with yellow block, blue block, from bottom to top + +(B) +- Stack with red block, green block, purple block, yellow block, from bottom to top + +(C) +- Stack with purple block +- Stack with yellow block +- Stack with green block +- Stack with blue block + +(D) +- Stack with blue block, green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/62.txt b/blocks/task3/maps/level4/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa4aa694ad2597ff490a89bf84f15dee607a07b7 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/62.txt @@ -0,0 +1,18 @@ +(A) +- Stack with orange block, purple block, red block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, orange block, from bottom to top + +(C) +- Stack with green block, red block, from bottom to top +- Stack with orange block, yellow block, from bottom to top + +(D) +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with red block + diff --git a/blocks/task3/maps/level4/text_input/63.txt b/blocks/task3/maps/level4/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..c41ee8acb1dacbe60db2325bff09a8d9342ed7f5 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/63.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block +- Stack with red block, blue block, from bottom to top +- Stack with orange block, yellow block, from bottom to top + +(B) +- Stack with green block +- Stack with purple block, yellow block, orange block, from bottom to top + +(C) +- Stack with purple block, orange block, yellow block, green block, from bottom to top + +(D) +- Stack with red block, purple block, from bottom to top +- Stack with yellow block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/64.txt b/blocks/task3/maps/level4/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0c9495d3c940e842596a496285a35af7454d00b --- /dev/null +++ b/blocks/task3/maps/level4/text_input/64.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block, yellow block, from bottom to top +- Stack with orange block, green block, from bottom to top + +(B) +- Stack with blue block, green block, from bottom to top +- Stack with purple block, yellow block, red block, from bottom to top + +(C) +- Stack with orange block +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with green block + +(D) +- Stack with orange block +- Stack with yellow block, blue block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/65.txt b/blocks/task3/maps/level4/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4dab64504d879491c650c6f91110588b15ac58e --- /dev/null +++ b/blocks/task3/maps/level4/text_input/65.txt @@ -0,0 +1,18 @@ +(A) +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with yellow block + +(B) +- Stack with green block +- Stack with purple block +- Stack with orange block, blue block, yellow block, from bottom to top + +(C) +- Stack with orange block, blue block, from bottom to top +- Stack with green block, red block, purple block, from bottom to top + +(D) +- Stack with purple block, yellow block, red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/66.txt b/blocks/task3/maps/level4/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..46a7020707190b215fc3cad32ac07dfb0e7535ab --- /dev/null +++ b/blocks/task3/maps/level4/text_input/66.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block +- Stack with red block +- Stack with blue block, yellow block, from bottom to top + +(B) +- Stack with yellow block, orange block, blue block, red block, from bottom to top + +(C) +- Stack with yellow block, red block, blue block, orange block, from bottom to top + +(D) +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with purple block + diff --git a/blocks/task3/maps/level4/text_input/67.txt b/blocks/task3/maps/level4/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3d1e8aabb238a8e3dcda0455f21691ff0f0d30e --- /dev/null +++ b/blocks/task3/maps/level4/text_input/67.txt @@ -0,0 +1,15 @@ +(A) +- Stack with purple block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top + +(B) +- Stack with green block, blue block, purple block, red block, from bottom to top + +(C) +- Stack with blue block, green block, red block, purple block, from bottom to top + +(D) +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/68.txt b/blocks/task3/maps/level4/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b7edbe1df5e0dee424f8fd62d7ee669a4a534af --- /dev/null +++ b/blocks/task3/maps/level4/text_input/68.txt @@ -0,0 +1,17 @@ +(A) +- Stack with blue block, purple block, yellow block, orange block, from bottom to top + +(B) +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with yellow block, blue block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block, green block, from bottom to top +- Stack with orange block, red block, from bottom to top + +(D) +- Stack with blue block +- Stack with orange block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/69.txt b/blocks/task3/maps/level4/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ec1da6ea6c8176fce546fd219b46c64db07e8d1 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/69.txt @@ -0,0 +1,19 @@ +(A) +- Stack with red block, orange block, from bottom to top +- Stack with green block, blue block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block + +(C) +- Stack with purple block, orange block, yellow block, blue block, red block, from bottom to top + +(D) +- Stack with green block +- Stack with orange block +- Stack with red block +- Stack with blue block + diff --git a/blocks/task3/maps/level4/text_input/7.txt b/blocks/task3/maps/level4/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f922bc90d6a4c3a5cd223a65ce64d385ed75c49b --- /dev/null +++ b/blocks/task3/maps/level4/text_input/7.txt @@ -0,0 +1,15 @@ +(A) +- Stack with blue block +- Stack with red block + +(B) +- Stack with green block +- Stack with red block, orange block, purple block, blue block, from bottom to top + +(C) +- Stack with purple block, yellow block, red block, blue block, from bottom to top + +(D) +- Stack with purple block +- Stack with yellow block, red block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/70.txt b/blocks/task3/maps/level4/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dad335a0d3eda82aa786938add178dea8227dd3 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/70.txt @@ -0,0 +1,21 @@ +(A) +- Stack with yellow block +- Stack with red block +- Stack with green block, blue block, from bottom to top + +(B) +- Stack with green block +- Stack with purple block +- Stack with blue block, yellow block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with purple block, green block, from bottom to top + +(D) +- Stack with red block +- Stack with green block +- Stack with yellow block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/71.txt b/blocks/task3/maps/level4/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..12af573f11dd8d62d5ca9cf55818e886b30cecb6 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/71.txt @@ -0,0 +1,16 @@ +(A) +- Stack with green block, orange block, from bottom to top +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with blue block, yellow block, purple block, from bottom to top + +(C) +- Stack with blue block, yellow block, red block, purple block, from bottom to top + +(D) +- Stack with red block +- Stack with purple block +- Stack with blue block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/72.txt b/blocks/task3/maps/level4/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..d899412641a9f5bcd8daa172e65fe526d97a0737 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/72.txt @@ -0,0 +1,15 @@ +(A) +- Stack with orange block +- Stack with green block, purple block, yellow block, from bottom to top + +(B) +- Stack with green block, yellow block, purple block, orange block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block +- Stack with purple block, yellow block, red block, from bottom to top + +(D) +- Stack with green block, purple block, blue block, red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/73.txt b/blocks/task3/maps/level4/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..82873393d835af6032c0b8dc416d67f699bc850e --- /dev/null +++ b/blocks/task3/maps/level4/text_input/73.txt @@ -0,0 +1,19 @@ +(A) +- Stack with red block, green block, purple block, orange block, yellow block, from bottom to top + +(B) +- Stack with green block +- Stack with yellow block +- Stack with purple block +- Stack with orange block + +(C) +- Stack with orange block +- Stack with blue block +- Stack with red block, yellow block, from bottom to top + +(D) +- Stack with purple block +- Stack with orange block +- Stack with green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/74.txt b/blocks/task3/maps/level4/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..55e8daa0d5f6866e11ffa1805022ac50be7356d3 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/74.txt @@ -0,0 +1,19 @@ +(A) +- Stack with purple block +- Stack with red block, blue block, from bottom to top +- Stack with orange block, yellow block, from bottom to top + +(B) +- Stack with green block +- Stack with orange block +- Stack with yellow block, purple block, from bottom to top + +(C) +- Stack with purple block +- Stack with blue block +- Stack with yellow block +- Stack with red block, green block, from bottom to top + +(D) +- Stack with yellow block, orange block, purple block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/75.txt b/blocks/task3/maps/level4/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..c217a730176bfc1aa88d67b770f1b4088d5b890b --- /dev/null +++ b/blocks/task3/maps/level4/text_input/75.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with green block +- Stack with red block, blue block, from bottom to top + +(B) +- Stack with green block +- Stack with red block +- Stack with blue block, orange block, yellow block, from bottom to top + +(C) +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, from bottom to top + +(D) +- Stack with red block, green block, blue block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/76.txt b/blocks/task3/maps/level4/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc1c6154413f8b7474f78405ab62eae24397315e --- /dev/null +++ b/blocks/task3/maps/level4/text_input/76.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with orange block +- Stack with red block +- Stack with yellow block +- Stack with blue block + +(C) +- Stack with orange block, blue block, from bottom to top +- Stack with yellow block, red block, from bottom to top + +(D) +- Stack with blue block +- Stack with purple block +- Stack with green block, red block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/77.txt b/blocks/task3/maps/level4/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2441005f0342d4e8482b4bd41464ab5699fe3ad --- /dev/null +++ b/blocks/task3/maps/level4/text_input/77.txt @@ -0,0 +1,18 @@ +(A) +- Stack with red block, blue block, yellow block, purple block, from bottom to top + +(B) +- Stack with red block +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top + +(C) +- Stack with purple block, orange block, from bottom to top +- Stack with red block, green block, yellow block, from bottom to top + +(D) +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with green block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/78.txt b/blocks/task3/maps/level4/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..03f56a34887b733320cab2f0e45c106ea08dd94a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/78.txt @@ -0,0 +1,18 @@ +(A) +- Stack with purple block, orange block, green block, blue block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with orange block +- Stack with blue block +- Stack with green block + +(C) +- Stack with red block +- Stack with blue block +- Stack with green block, orange block, from bottom to top + +(D) +- Stack with green block +- Stack with orange block, purple block, blue block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/79.txt b/blocks/task3/maps/level4/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..eba7c78020d6e016f81b386c770fb7e57885051f --- /dev/null +++ b/blocks/task3/maps/level4/text_input/79.txt @@ -0,0 +1,15 @@ +(A) +- Stack with red block +- Stack with yellow block, blue block, orange block, from bottom to top + +(B) +- Stack with red block, yellow block, orange block, blue block, from bottom to top + +(C) +- Stack with red block, green block, from bottom to top +- Stack with yellow block, blue block, orange block, from bottom to top + +(D) +- Stack with purple block, orange block, from bottom to top +- Stack with red block, blue block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/8.txt b/blocks/task3/maps/level4/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..702e8d2701300c4563421c7e664b9d9c2494a23a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/8.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with orange block, purple block, red block, from bottom to top + +(B) +- Stack with yellow block, blue block, from bottom to top +- Stack with purple block, green block, red block, from bottom to top + +(C) +- Stack with orange block +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with green block + +(D) +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/80.txt b/blocks/task3/maps/level4/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..daf21d8b210fc7037faf93df8b857ff2b6fd3131 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/80.txt @@ -0,0 +1,18 @@ +(A) +- Stack with green block, red block, purple block, yellow block, from bottom to top + +(B) +- Stack with blue block, red block, from bottom to top +- Stack with yellow block, green block, from bottom to top + +(C) +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with yellow block + +(D) +- Stack with purple block +- Stack with red block, green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/81.txt b/blocks/task3/maps/level4/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dfa9146bf7898215783976830a795358181af90 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/81.txt @@ -0,0 +1,21 @@ +(A) +- Stack with yellow block, blue block, from bottom to top +- Stack with purple block, green block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with green block + +(C) +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with orange block, green block, from bottom to top + +(D) +- Stack with purple block +- Stack with red block +- Stack with green block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/82.txt b/blocks/task3/maps/level4/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..f78475ec650869e18b475d14f69a76c29a3367f2 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/82.txt @@ -0,0 +1,16 @@ +(A) +- Stack with red block +- Stack with yellow block, blue block, orange block, from bottom to top + +(B) +- Stack with blue block, green block, from bottom to top +- Stack with purple block, yellow block, red block, from bottom to top + +(C) +- Stack with purple block, orange block, from bottom to top +- Stack with red block, blue block, green block, from bottom to top + +(D) +- Stack with red block, blue block, from bottom to top +- Stack with yellow block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/83.txt b/blocks/task3/maps/level4/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e96c76dbc9a5bec2f14e56ea34e9ea79b871473 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/83.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block, blue block, purple block, yellow block, from bottom to top + +(B) +- Stack with yellow block, blue block, from bottom to top +- Stack with purple block, green block, from bottom to top + +(C) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + +(D) +- Stack with purple block, yellow block, from bottom to top +- Stack with orange block, blue block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/84.txt b/blocks/task3/maps/level4/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..42b3cbb893def23167e5def06302af421374293a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/84.txt @@ -0,0 +1,17 @@ +(A) +- Stack with yellow block, blue block, red block, green block, from bottom to top + +(B) +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with purple block + +(C) +- Stack with green block +- Stack with blue block, yellow block, red block, from bottom to top + +(D) +- Stack with green block, red block, yellow block, purple block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/85.txt b/blocks/task3/maps/level4/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..316b298d16d698a8215d3df9dc90341fc8a7062a --- /dev/null +++ b/blocks/task3/maps/level4/text_input/85.txt @@ -0,0 +1,21 @@ +(A) +- Stack with orange block +- Stack with green block, yellow block, red block, purple block, from bottom to top + +(B) +- Stack with yellow block +- Stack with red block +- Stack with purple block +- Stack with blue block + +(C) +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with blue block + +(D) +- Stack with yellow block +- Stack with blue block, red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/86.txt b/blocks/task3/maps/level4/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ab50fb69952d380942c4a11719173ea8cc56dfb --- /dev/null +++ b/blocks/task3/maps/level4/text_input/86.txt @@ -0,0 +1,16 @@ +(A) +- Stack with blue block, red block, orange block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with green block, yellow block, orange block, purple block, from bottom to top + +(C) +- Stack with orange block +- Stack with yellow block, red block, blue block, from bottom to top + +(D) +- Stack with red block +- Stack with blue block +- Stack with purple block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/87.txt b/blocks/task3/maps/level4/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddc1f608e3b97c594fa63485ec618f7e7ab781a7 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/87.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block, orange block, from bottom to top +- Stack with purple block, green block, red block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block +- Stack with blue block, green block, orange block, from bottom to top + +(C) +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with purple block + +(D) +- Stack with orange block +- Stack with purple block, blue block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/88.txt b/blocks/task3/maps/level4/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..484811b70b9ec58b271bbd8f371b58617b7ef7a4 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/88.txt @@ -0,0 +1,22 @@ +(A) +- Stack with yellow block +- Stack with blue block +- Stack with purple block +- Stack with green block + +(B) +- Stack with purple block +- Stack with orange block, green block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with orange block + +(D) +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with blue block + diff --git a/blocks/task3/maps/level4/text_input/89.txt b/blocks/task3/maps/level4/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..5021ba975712d02f927fb2d99d7c0f8e1a4e8579 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/89.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block +- Stack with green block +- Stack with purple block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with purple block, blue block, yellow block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block, purple block, red block, from bottom to top + +(D) +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/9.txt b/blocks/task3/maps/level4/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..d54d4d247b9be587dd381d40b4648b5e1abc056d --- /dev/null +++ b/blocks/task3/maps/level4/text_input/9.txt @@ -0,0 +1,17 @@ +(A) +- Stack with red block, green block, from bottom to top +- Stack with orange block, yellow block, purple block, from bottom to top + +(B) +- Stack with green block +- Stack with blue block +- Stack with yellow block + +(C) +- Stack with blue block +- Stack with orange block +- Stack with green block, red block, from bottom to top + +(D) +- Stack with orange block, green block, blue block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/90.txt b/blocks/task3/maps/level4/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..430c01ef210292da3c714d5a98942349b157c19e --- /dev/null +++ b/blocks/task3/maps/level4/text_input/90.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with red block + +(B) +- Stack with blue block, red block, from bottom to top +- Stack with purple block, orange block, from bottom to top + +(C) +- Stack with blue block, orange block, from bottom to top +- Stack with purple block, green block, yellow block, from bottom to top + +(D) +- Stack with red block +- Stack with blue block, orange block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/91.txt b/blocks/task3/maps/level4/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..47839b417b1920b564f693178850d90131a8e09e --- /dev/null +++ b/blocks/task3/maps/level4/text_input/91.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block +- Stack with green block +- Stack with orange block, purple block, red block, from bottom to top + +(B) +- Stack with green block +- Stack with red block +- Stack with blue block, purple block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block, purple block, orange block, red block, from bottom to top + +(D) +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with green block + diff --git a/blocks/task3/maps/level4/text_input/92.txt b/blocks/task3/maps/level4/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c55fdb1827be4b3794d3873602f5a5d9a7f3d36 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/92.txt @@ -0,0 +1,19 @@ +(A) +- Stack with orange block +- Stack with red block +- Stack with blue block, green block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, green block, from bottom to top + +(C) +- Stack with orange block +- Stack with blue block, red block, green block, from bottom to top + +(D) +- Stack with red block +- Stack with yellow block +- Stack with blue block, green block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/93.txt b/blocks/task3/maps/level4/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..53f5dddeabc77f001a21d4bd67a838dea18d6a83 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/93.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block, blue block, orange block, red block, yellow block, from bottom to top + +(B) +- Stack with purple block, orange block, green block, yellow block, from bottom to top + +(C) +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block, purple block, from bottom to top + +(D) +- Stack with yellow block, green block, from bottom to top +- Stack with orange block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/94.txt b/blocks/task3/maps/level4/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ff442d7d7d5db2d9361220e4e53a6e1c050680d --- /dev/null +++ b/blocks/task3/maps/level4/text_input/94.txt @@ -0,0 +1,20 @@ +(A) +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with purple block, green block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block, red block, yellow block, from bottom to top + +(C) +- Stack with yellow block +- Stack with orange block +- Stack with purple block, blue block, from bottom to top + +(D) +- Stack with red block +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/95.txt b/blocks/task3/maps/level4/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..356fd2adc66e305260b16886166aeca05f1d1d66 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/95.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block +- Stack with yellow block, blue block, green block, from bottom to top + +(B) +- Stack with orange block +- Stack with purple block, red block, from bottom to top + +(C) +- Stack with yellow block, purple block, from bottom to top +- Stack with red block, orange block, from bottom to top + +(D) +- Stack with orange block +- Stack with purple block, yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/96.txt b/blocks/task3/maps/level4/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..044eb92dc1a1750d92ec0246597e8e1b567386ff --- /dev/null +++ b/blocks/task3/maps/level4/text_input/96.txt @@ -0,0 +1,19 @@ +(A) +- Stack with green block +- Stack with red block, yellow block, purple block, from bottom to top + +(B) +- Stack with green block +- Stack with purple block, yellow block, red block, from bottom to top + +(C) +- Stack with orange block +- Stack with yellow block +- Stack with blue block +- Stack with green block +- Stack with purple block + +(D) +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/97.txt b/blocks/task3/maps/level4/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e70e5c03985e3b33e2c02eeee1d8c6eeb6b3072 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/97.txt @@ -0,0 +1,17 @@ +(A) +- Stack with yellow block +- Stack with orange block +- Stack with blue block, purple block, from bottom to top + +(B) +- Stack with green block +- Stack with purple block, yellow block, from bottom to top +- Stack with blue block, orange block, from bottom to top + +(C) +- Stack with orange block, yellow block, purple block, blue block, from bottom to top + +(D) +- Stack with orange block, blue block, from bottom to top +- Stack with yellow block, red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/98.txt b/blocks/task3/maps/level4/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..6feb5d231df200bf5275f55e0fccc4f9b362c435 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/98.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with red block +- Stack with green block, orange block, from bottom to top + +(B) +- Stack with yellow block +- Stack with green block +- Stack with orange block, red block, from bottom to top + +(C) +- Stack with yellow block +- Stack with purple block +- Stack with orange block, red block, from bottom to top + +(D) +- Stack with green block, blue block, from bottom to top +- Stack with red block, purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level4/text_input/99.txt b/blocks/task3/maps/level4/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..2300f30f83a78a0c2629e8eaf1c35abf4a9dd4d7 --- /dev/null +++ b/blocks/task3/maps/level4/text_input/99.txt @@ -0,0 +1,20 @@ +(A) +- Stack with orange block +- Stack with purple block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(C) +- Stack with yellow block +- Stack with orange block, red block, purple block, from bottom to top + +(D) +- Stack with red block +- Stack with purple block +- Stack with yellow block +- Stack with orange block + diff --git a/blocks/task3/maps/level5/annotation.txt b/blocks/task3/maps/level5/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..a10802052d257a1d5a209903525fb30dc7e5b716 --- /dev/null +++ b/blocks/task3/maps/level5/annotation.txt @@ -0,0 +1,100 @@ +3 +1 +3 +3 +3 +2 +3 +2 +2 +2 +2 +1 +3 +3 +0 +2 +3 +2 +0 +3 +2 +2 +2 +0 +2 +3 +0 +0 +3 +0 +2 +1 +1 +1 +2 +2 +3 +2 +0 +0 +0 +2 +1 +3 +3 +2 +2 +3 +1 +3 +3 +2 +2 +3 +2 +1 +3 +0 +2 +3 +1 +3 +1 +3 +1 +2 +0 +3 +0 +3 +0 +3 +1 +0 +2 +2 +2 +0 +0 +1 +3 +1 +0 +2 +3 +1 +2 +0 +3 +2 +0 +2 +0 +3 +2 +3 +3 +0 +2 +0 diff --git a/blocks/task3/maps/level5/image_input/0.jpg b/blocks/task3/maps/level5/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea369feb742b073de34048c4823633aac0ed856d --- /dev/null +++ b/blocks/task3/maps/level5/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f8448167056a14b11c785c9a4ed8292789fc5f5880152f9206a5b650ddf059a +size 10411 diff --git a/blocks/task3/maps/level5/image_input/1.jpg b/blocks/task3/maps/level5/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..340cbee525a936e5efa242a1ba4b217127454ba4 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2970adb3823b9cc0ff937774217bd50e3ee2c42a9c717550a6ad489e556f0070 +size 11465 diff --git a/blocks/task3/maps/level5/image_input/10.jpg b/blocks/task3/maps/level5/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5245bb1bb2a01300f27101a78ef50bad3f616b5 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:103c3849ea13466c5d6ab196e38f25a8613472eabc824a0b2643f1d44ccd3ead +size 11323 diff --git a/blocks/task3/maps/level5/image_input/11.jpg b/blocks/task3/maps/level5/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc09ba39d083386e10ec876c565bba8863dc6730 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3cf195cf4bc5873a91237c8e0a5c1fd73258fca9861ec6852572eed76d2154d +size 10799 diff --git a/blocks/task3/maps/level5/image_input/12.jpg b/blocks/task3/maps/level5/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45b5c684cf360a482b52c2b6d0ebda37e03f3b08 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d730d3bb45e4133db2cd8b54076ccd4b47b62f1fa60528dba0a4057e3132c78 +size 10430 diff --git a/blocks/task3/maps/level5/image_input/13.jpg b/blocks/task3/maps/level5/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..345f8d774db2050c8bb4f9423ec1b13aa940458a --- /dev/null +++ b/blocks/task3/maps/level5/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:297fcdc78e2118293c004b69e01a5534492633153e0f4b5b717ed3b5da74814f +size 10995 diff --git a/blocks/task3/maps/level5/image_input/14.jpg b/blocks/task3/maps/level5/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cdfa3a7aa58779f4b6b137291e6801d9b94a083 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d76c790388ed82872bb383cd112a464ab144fb51dc494d7065a4fcf5b7cfac +size 10504 diff --git a/blocks/task3/maps/level5/image_input/15.jpg b/blocks/task3/maps/level5/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f092a7d46be6b522532f76edf7960e8b6667ee2 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691c2447b97d1bce6d55257ad4ebe97e8d94ec3e2f05ac0ecc2ae7cc858632dd +size 10910 diff --git a/blocks/task3/maps/level5/image_input/16.jpg b/blocks/task3/maps/level5/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ff27e7975c2766bf239644f55f932033900c232 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5744c45d5b082be97be577f3200acb5cff67a67c29a68e915662f39d37d57ab +size 10842 diff --git a/blocks/task3/maps/level5/image_input/17.jpg b/blocks/task3/maps/level5/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab68c60da6b434507852d60ecf3041ed9192b077 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75da10942dc6b92145a4d86f54c9b8e8ece3bb2c260dcdcacd2572af1d98078 +size 10432 diff --git a/blocks/task3/maps/level5/image_input/18.jpg b/blocks/task3/maps/level5/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63cfc3493444af0862edbea473378a00934440d1 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f6e0bc4b8c58188558adcdc9802f13e8263f759cd2c18f578d4359b6d212a90 +size 10544 diff --git a/blocks/task3/maps/level5/image_input/19.jpg b/blocks/task3/maps/level5/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46513f470ef24ab60e1b031d9868db08b34dd382 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0558934936ed4638247e83a635cc10bd565bd8a8f65b3a3ac6765d6a1466cec +size 12299 diff --git a/blocks/task3/maps/level5/image_input/2.jpg b/blocks/task3/maps/level5/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df9a5878fb8ccfabfda60a3027074869c6a38f4c --- /dev/null +++ b/blocks/task3/maps/level5/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9252daf31dab6f54cd52275265f89825f365966c01887aff5c3b504eee25368e +size 11637 diff --git a/blocks/task3/maps/level5/image_input/20.jpg b/blocks/task3/maps/level5/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7885d12fb4a2a37e92bc839fcb6158e3425e1ff4 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149b8fbb3deac43a9f5c73a788bcd8063e5472bf512953160e9f2d540dfb7312 +size 10266 diff --git a/blocks/task3/maps/level5/image_input/21.jpg b/blocks/task3/maps/level5/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c9022774fe3df5a56fe32eace72f6e4b29e38ab --- /dev/null +++ b/blocks/task3/maps/level5/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ea2d95ca3abdd420176a5570f89cc4e4239480a0c4ec4790685552c35058e0 +size 10620 diff --git a/blocks/task3/maps/level5/image_input/22.jpg b/blocks/task3/maps/level5/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd9526d7678dff069a82b0c0c5c54c021325bc50 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc8451ade3f561830f62a84bf1f760e3654a73026d433201e0bf870e3cbc815 +size 10702 diff --git a/blocks/task3/maps/level5/image_input/23.jpg b/blocks/task3/maps/level5/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..684d63e3f919ea6bce1b33eee57d872d53c5e272 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eeb6f9704ccb70d011795a77ac095e95e4f56f71c113584de3bb54e1b3b9a6c +size 11053 diff --git a/blocks/task3/maps/level5/image_input/24.jpg b/blocks/task3/maps/level5/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5f848f85af6fdd51c0aa384c1f70e8e104ce2d6 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f016f2f94a2e4bded42dfc00d9c5a95be0c9e4fa7b8e2849a4011bb019ddcd +size 11019 diff --git a/blocks/task3/maps/level5/image_input/25.jpg b/blocks/task3/maps/level5/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00fe439adb77843f951ecf8b39b60823b23ff27b --- /dev/null +++ b/blocks/task3/maps/level5/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2946130a3ce899a907a4613c863af54f9ce7917178398938682ffe15633f8c24 +size 11284 diff --git a/blocks/task3/maps/level5/image_input/26.jpg b/blocks/task3/maps/level5/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f1d6df542dba2aaa1ec90c1dd429e1efa226745 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc3444c0ad99460d9ed3044409288d8cd48b9abcc2729505ee98e3f9c492c07 +size 11053 diff --git a/blocks/task3/maps/level5/image_input/27.jpg b/blocks/task3/maps/level5/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b55fa535f8f36ccf3bc67f8e45194535e35461af --- /dev/null +++ b/blocks/task3/maps/level5/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3810e7a8d2e40db6b640a3140f03984bf17d106b7d67608d14a8d523fe4d68f +size 10091 diff --git a/blocks/task3/maps/level5/image_input/28.jpg b/blocks/task3/maps/level5/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c23ee08c840c90fe0b025f64607b6969b07591c3 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94ca75ec0d5eaf153f846e5a4b919b050e6788d73627644b9d12dfee99e76d38 +size 8944 diff --git a/blocks/task3/maps/level5/image_input/29.jpg b/blocks/task3/maps/level5/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38b7246ab38967650e792bc66c80e0562e73f2c3 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8a8e9ba8e1c58fa348bc572afb2dae6c78787bcc8ce510dbbf54b2b44469d8 +size 10151 diff --git a/blocks/task3/maps/level5/image_input/3.jpg b/blocks/task3/maps/level5/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..243f914366a5fbf5e345e7a6a483731107b5ed2f --- /dev/null +++ b/blocks/task3/maps/level5/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9493259d0ab3d754c07613130697f208864b8025d36b7eb9e96ec8dca616b8e +size 10161 diff --git a/blocks/task3/maps/level5/image_input/30.jpg b/blocks/task3/maps/level5/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8c0f7e446bf62074e7c5c8665a315082d5afef9 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da388f1840152ef6bdd32c93b14de1ccdbe4e84593f8f0422e2097acf6fedcd +size 10032 diff --git a/blocks/task3/maps/level5/image_input/31.jpg b/blocks/task3/maps/level5/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2324f7d07627f9fdf3f0203ea72e2afc49560930 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6c156d03ec48114ab2fd3946a21fd36aeeb26a5325c8ad41cf4f866ad6ae4c +size 10659 diff --git a/blocks/task3/maps/level5/image_input/32.jpg b/blocks/task3/maps/level5/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0708035d9e4dd690864abded8c81bfb347fd6d2 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f447b94aba1814059923ceeba8141e8b2082ced2a863d7a020b4a798d87aa31 +size 9904 diff --git a/blocks/task3/maps/level5/image_input/33.jpg b/blocks/task3/maps/level5/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..648701f410bd8abb32cbda80a54de09a56805676 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646f287d742517616e7a481e0ed3d52ebae162d5193aecaae67e4de1390884a2 +size 10485 diff --git a/blocks/task3/maps/level5/image_input/34.jpg b/blocks/task3/maps/level5/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61e7408e8b3b3e6e81658e4c89255dd3fb99464b --- /dev/null +++ b/blocks/task3/maps/level5/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fe6edbef7c0b4271b0d55091dc365956f9437a8d238c64e741eae6471a67d9 +size 10748 diff --git a/blocks/task3/maps/level5/image_input/35.jpg b/blocks/task3/maps/level5/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c02bddef0e23eec6b8fb6903bb5a54d8381c26a8 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:665ac08edacbc5b17fe782464f8c7503c98bcc7d93ca9f3c69b50f3e0c50c285 +size 10610 diff --git a/blocks/task3/maps/level5/image_input/36.jpg b/blocks/task3/maps/level5/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99dff8ed33787dc7502fc2d7fecd97d2ce8a3e3a --- /dev/null +++ b/blocks/task3/maps/level5/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd05cae5b2c753d687b11bf7cec4fd738b827f83cc22be056f360274ca3379c +size 10667 diff --git a/blocks/task3/maps/level5/image_input/37.jpg b/blocks/task3/maps/level5/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44a1b650a97235243e609fc32e7cffa7cf33c099 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8224b5ef3927cc78b65c9e5e92b03593581176baeeddba07a3cf6760c39d7236 +size 11023 diff --git a/blocks/task3/maps/level5/image_input/38.jpg b/blocks/task3/maps/level5/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cfa220652b7bc2e380c604b385aebfde7019631 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffbef46324d1b6bf63baf1861e53c6d969b09d7cc32fff5ec561c51613bbfc58 +size 11449 diff --git a/blocks/task3/maps/level5/image_input/39.jpg b/blocks/task3/maps/level5/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e5c4da1101128db101243f0debe27d540c178ec --- /dev/null +++ b/blocks/task3/maps/level5/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4a8413d28cc4929f56b31e7074c696583505281d535464b2e1eb9e759fdd41 +size 10159 diff --git a/blocks/task3/maps/level5/image_input/4.jpg b/blocks/task3/maps/level5/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09b69795261f0999c87d1b7d3c470ae3a0be7324 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788ebc5f22d1c704f97f990e587971165aad7d98c82a62e31798d7a42696bd70 +size 11914 diff --git a/blocks/task3/maps/level5/image_input/40.jpg b/blocks/task3/maps/level5/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..634dc4568f2d9fd50608a8ab94728618625d3820 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849e233044ccc94051670d9dc042e492ffa733fda16910b313b06bcfa963ab5d +size 10398 diff --git a/blocks/task3/maps/level5/image_input/41.jpg b/blocks/task3/maps/level5/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97cd79228b300c11b0cf08d40df392a69fedaaad --- /dev/null +++ b/blocks/task3/maps/level5/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c05e47ffbe26e10e616607064e04271d66bc657a57f7d4b5ffc0f263693d0e +size 10969 diff --git a/blocks/task3/maps/level5/image_input/42.jpg b/blocks/task3/maps/level5/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17f89a97c73c81ac4f2a26eafa67babe427fbcbf --- /dev/null +++ b/blocks/task3/maps/level5/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f5dd9b09c85d27bbc590914f8519ba58b8d54c22db2cf6f6e7170baa53ceb7 +size 11042 diff --git a/blocks/task3/maps/level5/image_input/43.jpg b/blocks/task3/maps/level5/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6413e1571e491ba215769a060ab5ceb58ae991c --- /dev/null +++ b/blocks/task3/maps/level5/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af23eaa3394c2cb9546823eabed5ddd335be6c9c4e1a9e8696cfc335f915624b +size 11067 diff --git a/blocks/task3/maps/level5/image_input/44.jpg b/blocks/task3/maps/level5/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..550e4ef7731b499926388e817aee50ccc7f3646d --- /dev/null +++ b/blocks/task3/maps/level5/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff444f7cb36e632a9a36d2eab39a95c210f682c91de42d0eb1747f068a3e4a74 +size 10920 diff --git a/blocks/task3/maps/level5/image_input/45.jpg b/blocks/task3/maps/level5/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b74bb4a8c6b09049bcf5004f4ddd7c8b60f06f80 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b331bf1ddbe8f796a44352a0d1abf8df18d0f09227c37e45a72fcda9d90d910a +size 10206 diff --git a/blocks/task3/maps/level5/image_input/46.jpg b/blocks/task3/maps/level5/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ef3ee8ecb04f3776282273a94f619a5860b5484 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eaa21d9ffcf20dfd953cf090bcc71812f039a20fa64ddd2cc23cb92295fc811 +size 10759 diff --git a/blocks/task3/maps/level5/image_input/47.jpg b/blocks/task3/maps/level5/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc0b83cad636baf754502905574bb3f3834167b8 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a64d256db9483fb35bb6dc85426d0f933a14398bc1f1ee7f20a9dcb7d3e2879e +size 10676 diff --git a/blocks/task3/maps/level5/image_input/48.jpg b/blocks/task3/maps/level5/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..866c1889121af537f238a3090f00f542217cad6f --- /dev/null +++ b/blocks/task3/maps/level5/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97cde142f96dd90ef1f4906936e2a63a112ff6a0f6e78eb85ddf8a0363eafdab +size 11920 diff --git a/blocks/task3/maps/level5/image_input/49.jpg b/blocks/task3/maps/level5/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1c2438fb55e828afd0172062e0f98db97d4800d --- /dev/null +++ b/blocks/task3/maps/level5/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdbae06aea4bab7f519a9acca989748219f3c4bd4ef6680ec5c90c5506b213ed +size 10389 diff --git a/blocks/task3/maps/level5/image_input/5.jpg b/blocks/task3/maps/level5/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..318bcc9dbd4cee5ec98c438faa2262a13ec4cad9 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f4acaf810e0bcfe8672d6c8e94766a9c3f88bd6c2a22636881dde5e8b2d4a1 +size 10962 diff --git a/blocks/task3/maps/level5/image_input/50.jpg b/blocks/task3/maps/level5/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30845a53914a31261ccf9c198e352ee0240ad237 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b91949e3f87cda612eba6faecacbe6d963c2ad8af0dd3bfa17c174b421cbcb5 +size 10155 diff --git a/blocks/task3/maps/level5/image_input/51.jpg b/blocks/task3/maps/level5/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a273567cad1580c3707c485abc642bad3969ccd --- /dev/null +++ b/blocks/task3/maps/level5/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d88353b5c03a32fc40e1a2ca1731959bd4ea887db8d3949a459a839d3b5e8b7 +size 11018 diff --git a/blocks/task3/maps/level5/image_input/52.jpg b/blocks/task3/maps/level5/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4abdce0b387b07c9b989cf405cca8b2ce8f8c456 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8da5c5933900551af4aae612ec45c1f4da90ad0327ed3ba9920f889341dd977 +size 11677 diff --git a/blocks/task3/maps/level5/image_input/53.jpg b/blocks/task3/maps/level5/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad3a655bd22caf6c81a63d0522becedf6b7670b3 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b43b73a0e0a1391b775941deb14f6ba568d85c83dcb42f61d84fdf61833ce4 +size 9844 diff --git a/blocks/task3/maps/level5/image_input/54.jpg b/blocks/task3/maps/level5/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bc6788b563d7d04283be4dd792502642dbd98e2 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169475ee8e82e44fc9d1eba10c88e3a3641456759ef9a4376f3a48d0574fc3a5 +size 10236 diff --git a/blocks/task3/maps/level5/image_input/55.jpg b/blocks/task3/maps/level5/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..873b20fa7c85b0f9e0058ea3ce3b44995ecef554 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b3b71344c9639abd0061ad333892ad95a80f886419853a83b52cddebe8f35d0 +size 10298 diff --git a/blocks/task3/maps/level5/image_input/56.jpg b/blocks/task3/maps/level5/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4effbf64977fd69703451ea56e09183ea72df60 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f51f57f49d4420ac73d2a483180cc140f41d6521836fe99ad9d2e70dd0e5a06d +size 10878 diff --git a/blocks/task3/maps/level5/image_input/57.jpg b/blocks/task3/maps/level5/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..148e2dd671e30435c8745e1fc3225694fc6ae540 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80b4073227773b6f4d63dcb458db25c3727eaede95965b0b918d6433aac3b23 +size 10405 diff --git a/blocks/task3/maps/level5/image_input/58.jpg b/blocks/task3/maps/level5/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06d7d1b258a0d25f8bea75b068626c82624e0d03 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9042c9207df52b9e6db8bdc09797b273706b0b8088f9389f09f31c64382647e9 +size 11671 diff --git a/blocks/task3/maps/level5/image_input/59.jpg b/blocks/task3/maps/level5/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc6e8fc2c069eb76540070db9ee5664082c1a259 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1127aaa3568b2dcca73e7247eee4d2dd140f44fa7313be02f15df937f77dc55e +size 10993 diff --git a/blocks/task3/maps/level5/image_input/6.jpg b/blocks/task3/maps/level5/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4c3ded2ec782fbbbaf28d52ad599afc9f6a460c --- /dev/null +++ b/blocks/task3/maps/level5/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f690d28d443fc75640734425f2387ae639d52a148c856bae798466c6490c957c +size 10801 diff --git a/blocks/task3/maps/level5/image_input/60.jpg b/blocks/task3/maps/level5/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57f4ef7dd1665ff51360f4de9be78403b85071b2 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d192b0dcf979a7c4dbeb87812df287402086a9d436016e9cb16aeff7cd741697 +size 10393 diff --git a/blocks/task3/maps/level5/image_input/61.jpg b/blocks/task3/maps/level5/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d26d2eaa7edf5354dc3488bca25a1bbe95118ae5 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49b729a780e772cfebbb166129af8f2aa657c3e3771f2ff6051a745be223271 +size 11602 diff --git a/blocks/task3/maps/level5/image_input/62.jpg b/blocks/task3/maps/level5/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e91da1feb4e35724a259ce3cae6c5796037eb001 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6ba06ed93af2950b3863f3f934afbb73a20739110f45156fb7c94a556c3b21 +size 10199 diff --git a/blocks/task3/maps/level5/image_input/63.jpg b/blocks/task3/maps/level5/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca2b773a65adf87a69b0fd2eb403babe044252da --- /dev/null +++ b/blocks/task3/maps/level5/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:770a9845c6249bc3ac356d532f8a68bbf0ca7c461b7b2fc78292aa55b79e7e49 +size 11024 diff --git a/blocks/task3/maps/level5/image_input/64.jpg b/blocks/task3/maps/level5/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f591ce99cc03c07f520b270beec03fbd49474782 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a350bf192e524d3e7efbc3434cac99161c118b9253e4804a9e0c50da0f076ca +size 10816 diff --git a/blocks/task3/maps/level5/image_input/65.jpg b/blocks/task3/maps/level5/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc40023af2c8066cfdc3169b72d515bbd17a4084 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce91f3c9fe8c701b079f9e70b72709e745beafd1c8d84629b79ab54684dabd3c +size 10428 diff --git a/blocks/task3/maps/level5/image_input/66.jpg b/blocks/task3/maps/level5/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c56f6aa6bfc3d666461284137ddb780e76b64f12 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6795ebba0504dd3b50a3c25dc6756c33403f75949a32cd45c761b469371c638 +size 11371 diff --git a/blocks/task3/maps/level5/image_input/67.jpg b/blocks/task3/maps/level5/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08fda8904dc54be41711fd928bbf40f9e9cfd326 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84d2d13eecf6b6ccf0162f7d626b7e17b04300c48a07f10d318eb9b4ca9e873 +size 10770 diff --git a/blocks/task3/maps/level5/image_input/68.jpg b/blocks/task3/maps/level5/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97a3b4c115655cea10aca6432a64badfbaa4a1fa --- /dev/null +++ b/blocks/task3/maps/level5/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dddccda13d810127c523444498b0091f45cdc2dd0d6ffecf07e7d7a7ca7c97dc +size 10838 diff --git a/blocks/task3/maps/level5/image_input/69.jpg b/blocks/task3/maps/level5/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a15fb2164914b02427e3ece1b90c8ebc2d3f20eb --- /dev/null +++ b/blocks/task3/maps/level5/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35034cfe2a87c8f8d6b51d908ee48beceee14b1bc807cc4a24c79ba106871dd6 +size 11226 diff --git a/blocks/task3/maps/level5/image_input/7.jpg b/blocks/task3/maps/level5/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8e85da81db03168f2573fff5ede372999c4d3ca --- /dev/null +++ b/blocks/task3/maps/level5/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960379b0c66c03582e26ad2313b58d4e130637901f78336b629b737d1f54de73 +size 10915 diff --git a/blocks/task3/maps/level5/image_input/70.jpg b/blocks/task3/maps/level5/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..603f2d35ae966669a1d38343b96f3e967fe426e2 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e0c17f0d06f9b277a5e5206ec163d839e4a05d2e034821293c0f26cbbd3e9e +size 11792 diff --git a/blocks/task3/maps/level5/image_input/71.jpg b/blocks/task3/maps/level5/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..440d7c984f980bacbc4817c8defb9e79e3f691ee --- /dev/null +++ b/blocks/task3/maps/level5/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2164c460bdd4a49a3e64cd50ae578f20ace71bf192ac7b100fb7a5e8fdbaca +size 10170 diff --git a/blocks/task3/maps/level5/image_input/72.jpg b/blocks/task3/maps/level5/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6d1f490161a3e1cba353d0bd1572291663db597 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5f9e86ba10c9fd7fa88e9385a2d1c1b9feb7740403d10adebb6a0b73447009 +size 10308 diff --git a/blocks/task3/maps/level5/image_input/73.jpg b/blocks/task3/maps/level5/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc6e8fc2c069eb76540070db9ee5664082c1a259 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1127aaa3568b2dcca73e7247eee4d2dd140f44fa7313be02f15df937f77dc55e +size 10993 diff --git a/blocks/task3/maps/level5/image_input/74.jpg b/blocks/task3/maps/level5/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a661302193e3e2b18ff179c244f8a829a7d9389e --- /dev/null +++ b/blocks/task3/maps/level5/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641fa43b6028b4f57b49fce8f39bdb5eac780671a2cc43a0e5056be1354b9093 +size 10966 diff --git a/blocks/task3/maps/level5/image_input/75.jpg b/blocks/task3/maps/level5/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..648701f410bd8abb32cbda80a54de09a56805676 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646f287d742517616e7a481e0ed3d52ebae162d5193aecaae67e4de1390884a2 +size 10485 diff --git a/blocks/task3/maps/level5/image_input/76.jpg b/blocks/task3/maps/level5/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc54adccbcf5e9986d4d495da2e36bd849d54fe9 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1233f3e544e69cb1f358037299ec534a2b65b49d2df0726de4e22948fe65e6da +size 10671 diff --git a/blocks/task3/maps/level5/image_input/77.jpg b/blocks/task3/maps/level5/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b2148190279fc07bc2da0f97f70b6d2347df6b3 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5869a741555fa77461d116e390d15053e12d45b9ecdcd8534d1dcee94f6c9bf5 +size 9792 diff --git a/blocks/task3/maps/level5/image_input/78.jpg b/blocks/task3/maps/level5/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d9cf5d7a009e181080ab12a72c3c04a02f6ce6f --- /dev/null +++ b/blocks/task3/maps/level5/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb945043284dd8f24f36e01d866c78d8b2fbbdc342f60d40277e9a1ec0bf7e3a +size 10760 diff --git a/blocks/task3/maps/level5/image_input/79.jpg b/blocks/task3/maps/level5/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21cd0510232c832ff132e150d4b4a1ffc0822277 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7952a94da8cf068d3be45b011cc247c6f3f99e056d3d58e6edf56a8d2ccae81a +size 10788 diff --git a/blocks/task3/maps/level5/image_input/8.jpg b/blocks/task3/maps/level5/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8ca5bd500cbdf6bf1ce692491c46d28e85679d6 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405e332a94ab686b47f5fd67dcb3fc44d40a1c8d13b62a7f4d0ed63ae5f1a9d1 +size 11517 diff --git a/blocks/task3/maps/level5/image_input/80.jpg b/blocks/task3/maps/level5/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47a61f976005712a03e8c50b7f13c4087deebacc --- /dev/null +++ b/blocks/task3/maps/level5/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35705d9b5caec79c9cfafafe462083aa3d14f374cff71e20e3aeed20b823838 +size 10063 diff --git a/blocks/task3/maps/level5/image_input/81.jpg b/blocks/task3/maps/level5/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3582dd0ff4a783abc204e1ed856e8621f9f7f5e5 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcbf98b4962162f2977389916d10c54ca2d25670d7c6affa37afcea9f375009 +size 9362 diff --git a/blocks/task3/maps/level5/image_input/82.jpg b/blocks/task3/maps/level5/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdb8e185f640f343cd491ffdf65908fab53f6a43 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8941397146c936f8aa46346821b3af4eca35cb14ce75b12ebafa2b4d09495de3 +size 9989 diff --git a/blocks/task3/maps/level5/image_input/83.jpg b/blocks/task3/maps/level5/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a723bd0e9c777564e5cf0aaf59db161117bfcf6b --- /dev/null +++ b/blocks/task3/maps/level5/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77112ae41107fa8a8caf1fd651196f6161137cf2b665099e4c1a7ebf69f9a2d +size 11830 diff --git a/blocks/task3/maps/level5/image_input/84.jpg b/blocks/task3/maps/level5/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..773155c3200805e162ad1d8806ffe332703081c4 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9060fc7b2e385e9760c116d580518c7425ef64c333e2e834f25dd74598907da8 +size 10517 diff --git a/blocks/task3/maps/level5/image_input/85.jpg b/blocks/task3/maps/level5/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e4e8df4a75d3aecd9ceb6e1263760f819d56036 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06293856a5fe62c7abaaf506a361ad7e4960cb0628afdd48f9268c6596f04143 +size 11295 diff --git a/blocks/task3/maps/level5/image_input/86.jpg b/blocks/task3/maps/level5/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee6461fd999f3dba5bc208d82c098ff23e0fdebd --- /dev/null +++ b/blocks/task3/maps/level5/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd1e49e3942f196524412a9e540e77b088a5034fa693e4b1b3c2768b05dd4ef +size 11413 diff --git a/blocks/task3/maps/level5/image_input/87.jpg b/blocks/task3/maps/level5/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37343ce1f70b2639bc3fb74b61ca4517811005bc --- /dev/null +++ b/blocks/task3/maps/level5/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8627b3ab82581b144898a0331539e356da8a65d8357a000a8fc15810ffb46b79 +size 10638 diff --git a/blocks/task3/maps/level5/image_input/88.jpg b/blocks/task3/maps/level5/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6799c08db3d27974aac94d059554e553a82840aa --- /dev/null +++ b/blocks/task3/maps/level5/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af2477c09054b286338f3d54b5cf23feafb8a48f20e3b3e4caaf15c922a5e7c +size 10793 diff --git a/blocks/task3/maps/level5/image_input/89.jpg b/blocks/task3/maps/level5/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..796578306507fedfc048e9bbd7a01d47c7125c0a --- /dev/null +++ b/blocks/task3/maps/level5/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bacdecc5dd45da255ba1d738358159a149f42956ed5c2fd103f3c0113d7d7e1 +size 11637 diff --git a/blocks/task3/maps/level5/image_input/9.jpg b/blocks/task3/maps/level5/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a256bc16ebe06c865ec7c8b23c2706ab8e1fd6c --- /dev/null +++ b/blocks/task3/maps/level5/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09434e8a97548b670a0bc3cea7d1224f912009810886800854f669a48739e3e +size 10188 diff --git a/blocks/task3/maps/level5/image_input/90.jpg b/blocks/task3/maps/level5/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b33497b4efc7a4c25dc1aba25fa5a9bd8947b26 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:602e8f25bfe23a7021ccc24b91f995e2e9a4aef822cab542f21396dac63387ea +size 9882 diff --git a/blocks/task3/maps/level5/image_input/91.jpg b/blocks/task3/maps/level5/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2754853efc7591d36c9fe190bde1cb0915f219f --- /dev/null +++ b/blocks/task3/maps/level5/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:158013e4846e60435205e7c07e4b5414a820d4ea0a8e460de56cbbc24fc613e3 +size 11317 diff --git a/blocks/task3/maps/level5/image_input/92.jpg b/blocks/task3/maps/level5/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..440d7c984f980bacbc4817c8defb9e79e3f691ee --- /dev/null +++ b/blocks/task3/maps/level5/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2164c460bdd4a49a3e64cd50ae578f20ace71bf192ac7b100fb7a5e8fdbaca +size 10170 diff --git a/blocks/task3/maps/level5/image_input/93.jpg b/blocks/task3/maps/level5/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c90879a99c6a0fb8d844c3fe720074bd64e031e --- /dev/null +++ b/blocks/task3/maps/level5/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c5ba252d644b0e1244e3b2487dce7279fe43b65519e4827f9d9003a20dbf1d +size 10282 diff --git a/blocks/task3/maps/level5/image_input/94.jpg b/blocks/task3/maps/level5/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb9f36a0abb45adf97bcbcf96a10fa6e0d79ba49 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f56ffcd95c998db88662fa48cb370947f2de55034c3f1839e16504adf2488ac6 +size 10952 diff --git a/blocks/task3/maps/level5/image_input/95.jpg b/blocks/task3/maps/level5/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..feffa5f330d701fc9e2622ff284aead4cba9a20d --- /dev/null +++ b/blocks/task3/maps/level5/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bc53e79c428d83debd6c0bb78a76edab3b9df0280b5ca013b3adafef737085 +size 10623 diff --git a/blocks/task3/maps/level5/image_input/96.jpg b/blocks/task3/maps/level5/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cfa220652b7bc2e380c604b385aebfde7019631 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffbef46324d1b6bf63baf1861e53c6d969b09d7cc32fff5ec561c51613bbfc58 +size 11449 diff --git a/blocks/task3/maps/level5/image_input/97.jpg b/blocks/task3/maps/level5/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f4ac3ffcb2a1c9348450e7eda55bdb26a9e5dff --- /dev/null +++ b/blocks/task3/maps/level5/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b45f34748e6fe176b40f5ba75a33f5792e9975e85f8fb253f19048a68c5b3a0 +size 10496 diff --git a/blocks/task3/maps/level5/image_input/98.jpg b/blocks/task3/maps/level5/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2059da566885b4fb18b9c4ad58c89f618670ff18 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92743231cd9f50a4cf41c950ec482bd6a9f5b900273ef6a8b2386a63f7c79328 +size 11678 diff --git a/blocks/task3/maps/level5/image_input/99.jpg b/blocks/task3/maps/level5/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9f45a6e36e690ccf7f2f8220a38fbed0ab81cd2 --- /dev/null +++ b/blocks/task3/maps/level5/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4ab6020af4dfa0d6e9f67ff329777aefe76c59853aa59035942a1775e50dc4 +size 10711 diff --git a/blocks/task3/maps/level5/text_input/0.txt b/blocks/task3/maps/level5/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a6648726af58404ee16ff883760cf9527a58e3f --- /dev/null +++ b/blocks/task3/maps/level5/text_input/0.txt @@ -0,0 +1,20 @@ +(A) +- Stack with yellow block +- Stack with green block +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with yellow block +- Stack with purple block, red block, from bottom to top +- Stack with blue block, green block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block, blue block, from bottom to top +- Stack with purple block, orange block, from bottom to top + +(D) +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top +- Stack with red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/1.txt b/blocks/task3/maps/level5/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3097f5d1177d4265187a2a7e938ef7e5838f2614 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/1.txt @@ -0,0 +1,15 @@ +(A) +- Stack with yellow block, purple block, orange block, red block, from bottom to top + +(B) +- Stack with blue block +- Stack with yellow block, orange block, purple block, green block, from bottom to top + +(C) +- Stack with green block +- Stack with red block, orange block, purple block, blue block, from bottom to top + +(D) +- Stack with orange block +- Stack with yellow block, blue block, green block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/10.txt b/blocks/task3/maps/level5/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa166087dc1384464ac5afd1648044cf1cfb7725 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/10.txt @@ -0,0 +1,22 @@ +(A) +- Stack with purple block +- Stack with blue block +- Stack with orange block, yellow block, green block, from bottom to top + +(B) +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with red block, orange block, from bottom to top + +(C) +- Stack with green block +- Stack with red block +- Stack with blue block +- Stack with orange block, purple block, from bottom to top + +(D) +- Stack with yellow block +- Stack with orange block +- Stack with green block + diff --git a/blocks/task3/maps/level5/text_input/11.txt b/blocks/task3/maps/level5/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..02e6359e885ca52a7c026b523ceb54552898edf1 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/11.txt @@ -0,0 +1,18 @@ +(A) +- Stack with yellow block, green block, red block, blue block, purple block, from bottom to top + +(B) +- Stack with blue block +- Stack with yellow block +- Stack with red block, purple block, green block, from bottom to top + +(C) +- Stack with orange block +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with yellow block + +(D) +- Stack with orange block, blue block, purple block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/12.txt b/blocks/task3/maps/level5/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..b63e8fde9adf962565ad9d7b6d285a039aa700ce --- /dev/null +++ b/blocks/task3/maps/level5/text_input/12.txt @@ -0,0 +1,21 @@ +(A) +- Stack with yellow block +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, from bottom to top + +(B) +- Stack with green block, blue block, red block, from bottom to top + +(C) +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with purple block +- Stack with blue block + +(D) +- Stack with green block +- Stack with yellow block, orange block, from bottom to top +- Stack with red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/13.txt b/blocks/task3/maps/level5/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fc0cb15ae31cc7c26c7eeac48117181bfb7301f --- /dev/null +++ b/blocks/task3/maps/level5/text_input/13.txt @@ -0,0 +1,15 @@ +(A) +- Stack with green block, purple block, from bottom to top +- Stack with yellow block, orange block, blue block, from bottom to top + +(B) +- Stack with orange block +- Stack with blue block +- Stack with green block, purple block, from bottom to top + +(C) +- Stack with blue block, orange block, red block, yellow block, purple block, from bottom to top + +(D) +- Stack with green block, orange block, purple block, yellow block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/14.txt b/blocks/task3/maps/level5/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8ee2aa4ed1fe0e80a4859becac51ada86acddc3 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/14.txt @@ -0,0 +1,19 @@ +(A) +- Stack with red block +- Stack with green block +- Stack with blue block +- Stack with yellow block, purple block, from bottom to top + +(B) +- Stack with purple block, red block, from bottom to top +- Stack with yellow block, blue block, green block, from bottom to top + +(C) +- Stack with blue block, yellow block, orange block, green block, purple block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/15.txt b/blocks/task3/maps/level5/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..423e7db6a56ae6d64b6717ef71da8f9c0809bab6 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/15.txt @@ -0,0 +1,15 @@ +(A) +- Stack with purple block, blue block, orange block, green block, yellow block, from bottom to top + +(B) +- Stack with green block, yellow block, red block, purple block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with red block +- Stack with orange block, green block, purple block, from bottom to top + +(D) +- Stack with purple block, orange block, from bottom to top +- Stack with blue block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/16.txt b/blocks/task3/maps/level5/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c739b966fd9b6bb4ee17c75502ccf2ffbb8e6d5 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/16.txt @@ -0,0 +1,15 @@ +(A) +- Stack with orange block, green block, from bottom to top +- Stack with blue block, purple block, yellow block, from bottom to top + +(B) +- Stack with green block +- Stack with orange block, blue block, from bottom to top + +(C) +- Stack with blue block + +(D) +- Stack with orange block, green block, from bottom to top +- Stack with blue block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/17.txt b/blocks/task3/maps/level5/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6ce462c77dee210c55c439f9fdfed5601b5f180 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/17.txt @@ -0,0 +1,22 @@ +(A) +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with yellow block + +(B) +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with red block +- Stack with orange block + +(C) +- Stack with green block, red block, orange block, yellow block, purple block, from bottom to top + +(D) +- Stack with red block +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/18.txt b/blocks/task3/maps/level5/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..278cef353d379f3c90ab73278a13b8db90ef4fc3 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/18.txt @@ -0,0 +1,14 @@ +(A) +- Stack with red block, orange block, purple block, green block, yellow block, from bottom to top + +(B) +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top + +(C) +- Stack with blue block, yellow block, orange block, green block, purple block, from bottom to top + +(D) +- Stack with yellow block, orange block, red block, green block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/19.txt b/blocks/task3/maps/level5/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbdf067c88fe04fd3fcd39f4c5e7d66dfef5f311 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/19.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with red block, green block, orange block, purple block, from bottom to top + +(B) +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with yellow block, red block, from bottom to top + +(D) +- Stack with red block +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with purple block + diff --git a/blocks/task3/maps/level5/text_input/2.txt b/blocks/task3/maps/level5/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c2eeac772a69323e5f6fd6bd00c0bc7441e11b3 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/2.txt @@ -0,0 +1,23 @@ +(A) +- Stack with red block +- Stack with orange block, blue block, green block, from bottom to top + +(B) +- Stack with orange block +- Stack with blue block, green block, from bottom to top +- Stack with purple block, red block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with purple block +- Stack with red block + +(D) +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block +- Stack with red block + diff --git a/blocks/task3/maps/level5/text_input/20.txt b/blocks/task3/maps/level5/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..72e9882cc2bc1ef00650eace9d5461204cf31743 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/20.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block, blue block, purple block, green block, red block, from bottom to top + +(B) +- Stack with green block +- Stack with red block +- Stack with purple block, yellow block, orange block, from bottom to top + +(C) +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, red block, from bottom to top + +(D) +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with blue block + diff --git a/blocks/task3/maps/level5/text_input/21.txt b/blocks/task3/maps/level5/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6651c4424391352eea84a0977e6e5e655778c6f --- /dev/null +++ b/blocks/task3/maps/level5/text_input/21.txt @@ -0,0 +1,18 @@ +(A) +- Stack with orange block, red block, from bottom to top +- Stack with yellow block, green block, from bottom to top + +(B) +- Stack with red block +- Stack with blue block +- Stack with purple block, green block, orange block, from bottom to top + +(C) +- Stack with orange block, green block, from bottom to top +- Stack with red block, purple block, blue block, from bottom to top + +(D) +- Stack with red block +- Stack with purple block, orange block, from bottom to top +- Stack with blue block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/22.txt b/blocks/task3/maps/level5/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1c4435299c6a4656cec8626ac7fc5d063c2ca22 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/22.txt @@ -0,0 +1,21 @@ +(A) +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block, orange block, from bottom to top + +(B) +- Stack with yellow block, orange block, blue block, green block, purple block, from bottom to top + +(C) +- Stack with yellow block +- Stack with purple block +- Stack with green block, orange block, blue block, from bottom to top + +(D) +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block + diff --git a/blocks/task3/maps/level5/text_input/23.txt b/blocks/task3/maps/level5/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f23364053a2f6b30049b6615e938d665e9342dd --- /dev/null +++ b/blocks/task3/maps/level5/text_input/23.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block, red block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top + +(B) +- Stack with orange block, green block, from bottom to top +- Stack with blue block, purple block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block, blue block, from bottom to top + +(D) +- Stack with orange block +- Stack with blue block, yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/24.txt b/blocks/task3/maps/level5/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5514f85c45efe59b565e4a0c0f90463fcdca142 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/24.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block +- Stack with orange block, red block, purple block, yellow block, from bottom to top + +(B) +- Stack with red block, green block, from bottom to top +- Stack with orange block, yellow block, purple block, from bottom to top + +(C) +- Stack with purple block +- Stack with green block +- Stack with yellow block, red block, orange block, from bottom to top + +(D) +- Stack with yellow block, green block, from bottom to top +- Stack with orange block, red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/25.txt b/blocks/task3/maps/level5/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8083342d6fb292a28134ecb40a4317ed223fd70 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/25.txt @@ -0,0 +1,16 @@ +(A) +- Stack with yellow block, red block, from bottom to top +- Stack with blue block, orange block, purple block, from bottom to top + +(B) +- Stack with orange block, blue block, from bottom to top +- Stack with yellow block, red block, green block, from bottom to top + +(C) +- Stack with yellow block, red block, purple block, blue block, green block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block +- Stack with purple block, orange block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/26.txt b/blocks/task3/maps/level5/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a0678a317ce9ac2c7784ade99dee47dc2cece57 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/26.txt @@ -0,0 +1,19 @@ +(A) +- Stack with orange block +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with green block + +(B) +- Stack with orange block, blue block, purple block, green block, from bottom to top + +(C) +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, orange block, red block, from bottom to top + +(D) +- Stack with orange block +- Stack with yellow block +- Stack with purple block, red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/27.txt b/blocks/task3/maps/level5/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..90ed785313122b8ea259879a39514aa8884b5bd5 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/27.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block, blue block, from bottom to top +- Stack with red block, green block, orange block, from bottom to top + +(B) +- Stack with orange block, yellow block, red block, purple block, from bottom to top + +(C) +- Stack with blue block +- Stack with green block +- Stack with purple block, orange block, red block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block +- Stack with green block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/28.txt b/blocks/task3/maps/level5/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..e73acf1628b906ace43ea68bdb0e8faf5794eb43 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/28.txt @@ -0,0 +1,20 @@ +(A) +- Stack with orange block +- Stack with yellow block +- Stack with blue block +- Stack with purple block, green block, from bottom to top + +(B) +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with yellow block + +(C) +- Stack with yellow block +- Stack with orange block, red block, purple block, blue block, from bottom to top + +(D) +- Stack with yellow block, purple block, blue block, green block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/29.txt b/blocks/task3/maps/level5/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ba21cd9bca7e9c228083f33f3a32fd2641738fd --- /dev/null +++ b/blocks/task3/maps/level5/text_input/29.txt @@ -0,0 +1,15 @@ +(A) +- Stack with purple block, red block, yellow block, green block, blue block, from bottom to top + +(B) +- Stack with blue block, purple block, green block, yellow block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with blue block +- Stack with orange block, yellow block, green block, from bottom to top + +(D) +- Stack with green block +- Stack with orange block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/3.txt b/blocks/task3/maps/level5/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4134137529da7ce1c393d60f5d1ab7803f0c96e --- /dev/null +++ b/blocks/task3/maps/level5/text_input/3.txt @@ -0,0 +1,14 @@ +(A) +- Stack with green block, blue block, purple block, red block, yellow block, from bottom to top + +(B) +- Stack with purple block +- Stack with red block, green block, orange block, blue block, from bottom to top + +(C) +- Stack with purple block +- Stack with blue block, yellow block, orange block, from bottom to top + +(D) +- Stack with green block, purple block, red block, yellow block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/30.txt b/blocks/task3/maps/level5/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..28fb1d41b61748a5a61c7987cc5b624b90864fbe --- /dev/null +++ b/blocks/task3/maps/level5/text_input/30.txt @@ -0,0 +1,20 @@ +(A) +- Stack with yellow block +- Stack with green block +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with yellow block +- Stack with green block, purple block, from bottom to top +- Stack with orange block, blue block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block +- Stack with blue block +- Stack with purple block, orange block, from bottom to top + +(D) +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/31.txt b/blocks/task3/maps/level5/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..701995d72cfcb2eca44ca7fb3f47f757bc9aff9c --- /dev/null +++ b/blocks/task3/maps/level5/text_input/31.txt @@ -0,0 +1,21 @@ +(A) +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with yellow block +- Stack with orange block + +(B) +- Stack with red block +- Stack with orange block +- Stack with purple block, yellow block, green block, from bottom to top + +(C) +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top + +(D) +- Stack with orange block, green block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/32.txt b/blocks/task3/maps/level5/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..5359c93ed46c123a8395908ec51309e347e370c7 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/32.txt @@ -0,0 +1,17 @@ +(A) +- Stack with yellow block, red block, purple block, orange block, blue block, from bottom to top + +(B) +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with yellow block +- Stack with orange block + +(C) +- Stack with orange block, red block, purple block, yellow block, blue block, from bottom to top + +(D) +- Stack with blue block, orange block, from bottom to top +- Stack with green block, yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/33.txt b/blocks/task3/maps/level5/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cc590402c3ee46bcd9c76b48face834bf98ff87 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/33.txt @@ -0,0 +1,22 @@ +(A) +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with red block, yellow block, from bottom to top + +(B) +- Stack with green block +- Stack with red block, yellow block, from bottom to top +- Stack with blue block, orange block, from bottom to top + +(C) +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, orange block, red block, from bottom to top + +(D) +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with orange block +- Stack with blue block + diff --git a/blocks/task3/maps/level5/text_input/34.txt b/blocks/task3/maps/level5/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..062e06511fc64300ebd5a3827c1a9c3daf861184 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/34.txt @@ -0,0 +1,18 @@ +(A) +- Stack with red block +- Stack with purple block, blue block, yellow block, green block, from bottom to top + +(B) +- Stack with red block, green block, from bottom to top +- Stack with yellow block, blue block, orange block, from bottom to top + +(C) +- Stack with purple block +- Stack with yellow block +- Stack with red block, blue block, green block, from bottom to top + +(D) +- Stack with yellow block +- Stack with green block, purple block, from bottom to top +- Stack with orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/35.txt b/blocks/task3/maps/level5/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..62f9a6890fcc6ab41365d1962d0433c1f8901649 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/35.txt @@ -0,0 +1,21 @@ +(A) +- Stack with blue block +- Stack with purple block +- Stack with green block, red block, orange block, from bottom to top + +(B) +- Stack with red block +- Stack with purple block +- Stack with orange block, yellow block, blue block, from bottom to top + +(C) +- Stack with yellow block +- Stack with blue block, red block, from bottom to top +- Stack with green block, orange block, from bottom to top + +(D) +- Stack with orange block +- Stack with red block +- Stack with blue block +- Stack with yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/36.txt b/blocks/task3/maps/level5/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..171c6bc4ce1a18fe73210da82824d189e6cf329d --- /dev/null +++ b/blocks/task3/maps/level5/text_input/36.txt @@ -0,0 +1,22 @@ +(A) +- Stack with purple block +- Stack with blue block, red block, from bottom to top +- Stack with orange block, green block, from bottom to top + +(B) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block +- Stack with yellow block + +(C) +- Stack with red block +- Stack with purple block, orange block, from bottom to top +- Stack with blue block, green block, from bottom to top + +(D) +- Stack with purple block +- Stack with blue block +- Stack with red block, yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/37.txt b/blocks/task3/maps/level5/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc0b2ccdb721ef1b6883005ad08086eaec2fb34f --- /dev/null +++ b/blocks/task3/maps/level5/text_input/37.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block, blue block, red block, from bottom to top + +(B) +- Stack with yellow block, orange block, from bottom to top +- Stack with purple block, green block, red block, from bottom to top + +(C) +- Stack with green block +- Stack with orange block +- Stack with yellow block, blue block, red block, from bottom to top + +(D) +- Stack with orange block +- Stack with yellow block, red block, from bottom to top +- Stack with green block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/38.txt b/blocks/task3/maps/level5/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5bdaa88fed0dda4cb4c3b2a9f68cf0cd3810b97 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/38.txt @@ -0,0 +1,21 @@ +(A) +- Stack with blue block +- Stack with red block +- Stack with green block, yellow block, purple block, from bottom to top + +(B) +- Stack with green block +- Stack with yellow block +- Stack with purple block, blue block, red block, from bottom to top + +(C) +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, green block, from bottom to top + +(D) +- Stack with red block +- Stack with yellow block +- Stack with blue block, green block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/39.txt b/blocks/task3/maps/level5/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..42b544b03f8b88698ea46a90aad557aa9bb36531 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/39.txt @@ -0,0 +1,22 @@ +(A) +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with red block, purple block, from bottom to top + +(B) +- Stack with green block +- Stack with yellow block +- Stack with blue block, orange block, purple block, from bottom to top + +(C) +- Stack with green block, orange block, from bottom to top +- Stack with purple block, red block, yellow block, from bottom to top + +(D) +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with yellow block +- Stack with red block + diff --git a/blocks/task3/maps/level5/text_input/4.txt b/blocks/task3/maps/level5/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..edbf14a7307cb7786f0427631174dc679143611e --- /dev/null +++ b/blocks/task3/maps/level5/text_input/4.txt @@ -0,0 +1,21 @@ +(A) +- Stack with red block, blue block, from bottom to top +- Stack with purple block, orange block, yellow block, from bottom to top + +(B) +- Stack with green block, blue block, yellow block, orange block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block + +(D) +- Stack with yellow block +- Stack with purple block +- Stack with red block +- Stack with orange block +- Stack with blue block + diff --git a/blocks/task3/maps/level5/text_input/40.txt b/blocks/task3/maps/level5/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..8667f55044203e9ca2dfd1846a0adfb6608cf3cb --- /dev/null +++ b/blocks/task3/maps/level5/text_input/40.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block, orange block, yellow block, red block, blue block, from bottom to top + +(B) +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with blue block + +(C) +- Stack with blue block, orange block, green block, yellow block, red block, from bottom to top + +(D) +- Stack with red block, green block, from bottom to top +- Stack with orange block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/41.txt b/blocks/task3/maps/level5/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..9356019e3ecbbbd1eebf8c8c1e2b610078841fba --- /dev/null +++ b/blocks/task3/maps/level5/text_input/41.txt @@ -0,0 +1,21 @@ +(A) +- Stack with yellow block +- Stack with blue block, red block, from bottom to top +- Stack with purple block, green block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block, blue block, from bottom to top + +(C) +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with blue block + +(D) +- Stack with blue block, green block, yellow block, orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/42.txt b/blocks/task3/maps/level5/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddc9944cb28e01ed58470bc69fd7e8257e1d86b2 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/42.txt @@ -0,0 +1,21 @@ +(A) +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top + +(B) +- Stack with purple block, blue block, orange block, yellow block, red block, from bottom to top + +(C) +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with orange block, blue block, from bottom to top + +(D) +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with yellow block +- Stack with red block + diff --git a/blocks/task3/maps/level5/text_input/43.txt b/blocks/task3/maps/level5/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..836e6d5ab573ca098ead3f5e4631d4f06c4121b8 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/43.txt @@ -0,0 +1,19 @@ +(A) +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with red block, yellow block, purple block, from bottom to top + +(C) +- Stack with red block, green block, purple block, orange block, yellow block, from bottom to top + +(D) +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block +- Stack with orange block + diff --git a/blocks/task3/maps/level5/text_input/44.txt b/blocks/task3/maps/level5/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..28f7421cb4e0ecb8da48115f444f633b0c0394a2 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/44.txt @@ -0,0 +1,18 @@ +(A) +- Stack with green block +- Stack with purple block +- Stack with red block +- Stack with blue block, orange block, from bottom to top + +(B) +- Stack with red block, purple block, yellow block, orange block, blue block, from bottom to top + +(C) +- Stack with purple block +- Stack with red block, green block, orange block, blue block, from bottom to top + +(D) +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/45.txt b/blocks/task3/maps/level5/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..c28c3fba35e5c8784cb25e41f57bf83c5c3e6a35 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/45.txt @@ -0,0 +1,19 @@ +(A) +- Stack with orange block +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with blue block + +(B) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + +(C) +- Stack with orange block, red block, yellow block, green block, blue block, from bottom to top + +(D) +- Stack with orange block, green block, yellow block, blue block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/46.txt b/blocks/task3/maps/level5/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..e54a76c89969a345fe130f72458b1c5850f75426 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/46.txt @@ -0,0 +1,24 @@ +(A) +- Stack with blue block +- Stack with green block +- Stack with red block +- Stack with purple block +- Stack with yellow block + +(B) +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with red block, orange block, from bottom to top + +(C) +- Stack with purple block +- Stack with blue block, orange block, from bottom to top +- Stack with red block, green block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block +- Stack with purple block +- Stack with green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/47.txt b/blocks/task3/maps/level5/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4a28b82ccfbf98b2a1ff0e1f3b8af6d6538a380 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/47.txt @@ -0,0 +1,21 @@ +(A) +- Stack with purple block +- Stack with green block +- Stack with orange block, red block, blue block, from bottom to top + +(B) +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with blue block, yellow block, from bottom to top + +(C) +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(D) +- Stack with yellow block +- Stack with blue block +- Stack with green block, orange block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/48.txt b/blocks/task3/maps/level5/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..05f9d6699ae0c3e654c0c42c93c628b472c84a80 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/48.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with orange block + +(B) +- Stack with orange block +- Stack with yellow block, green block, purple block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with yellow block +- Stack with green block, orange block, purple block, from bottom to top + +(D) +- Stack with red block, green block, from bottom to top +- Stack with yellow block, blue block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/49.txt b/blocks/task3/maps/level5/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..53f173daba495eceef041e3cf7fc1ef4ab939b28 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/49.txt @@ -0,0 +1,19 @@ +(A) +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with blue block + +(B) +- Stack with purple block, green block, from bottom to top +- Stack with red block, orange block, blue block, from bottom to top + +(C) +- Stack with green block, red block, blue block, orange block, from bottom to top + +(D) +- Stack with purple block +- Stack with orange block, blue block, from bottom to top +- Stack with red block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/5.txt b/blocks/task3/maps/level5/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e64dde83ff1155e90fb3100833e8d69c26f22a58 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/5.txt @@ -0,0 +1,20 @@ +(A) +- Stack with yellow block +- Stack with green block, red block, from bottom to top +- Stack with orange block, purple block, from bottom to top + +(B) +- Stack with yellow block +- Stack with green block +- Stack with purple block +- Stack with red block, orange block, from bottom to top + +(C) +- Stack with yellow block +- Stack with red block, green block, from bottom to top +- Stack with orange block, purple block, from bottom to top + +(D) +- Stack with purple block +- Stack with green block, orange block, yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/50.txt b/blocks/task3/maps/level5/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..38ea59e4e7de9adbeb14799a2f23b88bf3032ea0 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/50.txt @@ -0,0 +1,16 @@ +(A) +- Stack with green block +- Stack with orange block +- Stack with red block, yellow block, purple block, from bottom to top + +(B) +- Stack with purple block, red block, from bottom to top +- Stack with yellow block, orange block, blue block, from bottom to top + +(C) +- Stack with orange block, green block, yellow block, purple block, from bottom to top + +(D) +- Stack with purple block, green block, from bottom to top +- Stack with orange block, red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/51.txt b/blocks/task3/maps/level5/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..7de193458989f2d9500f19f7928892c72990082c --- /dev/null +++ b/blocks/task3/maps/level5/text_input/51.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(B) +- Stack with red block +- Stack with blue block, orange block, yellow block, purple block, from bottom to top + +(C) +- Stack with red block +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, orange block, from bottom to top + +(D) +- Stack with purple block +- Stack with blue block +- Stack with orange block, yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/52.txt b/blocks/task3/maps/level5/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..46828318e616c386c3172d3f71f16ef6a186dcd3 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/52.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block, red block, from bottom to top +- Stack with green block, purple block, orange block, from bottom to top + +(B) +- Stack with yellow block, purple block, from bottom to top +- Stack with orange block, red block, blue block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block, orange block, red block, purple block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/53.txt b/blocks/task3/maps/level5/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..57ad93e65fadd6e5b8e3b5425b86609aa775f281 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/53.txt @@ -0,0 +1,20 @@ +(A) +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with purple block + +(B) +- Stack with blue block +- Stack with yellow block, purple block, orange block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with yellow block +- Stack with blue block, green block, orange block, from bottom to top + +(D) +- Stack with yellow block, orange block, from bottom to top +- Stack with red block, green block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/54.txt b/blocks/task3/maps/level5/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab73cc86d354307bbc5403a52c95779f250cae2d --- /dev/null +++ b/blocks/task3/maps/level5/text_input/54.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block +- Stack with yellow block, blue block, green block, from bottom to top + +(B) +- Stack with green block +- Stack with orange block +- Stack with blue block +- Stack with yellow block, red block, from bottom to top + +(C) +- Stack with orange block, green block, from bottom to top +- Stack with yellow block, red block, purple block, from bottom to top + +(D) +- Stack with orange block, yellow block, red block, purple block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/55.txt b/blocks/task3/maps/level5/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..01036dbe6ac0232bd487c8cf0379d3779bc9d51a --- /dev/null +++ b/blocks/task3/maps/level5/text_input/55.txt @@ -0,0 +1,21 @@ +(A) +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with red block +- Stack with yellow block + +(B) +- Stack with blue block +- Stack with red block, yellow block, from bottom to top +- Stack with purple block, green block, from bottom to top + +(C) +- Stack with blue block +- Stack with orange block, green block, purple block, yellow block, from bottom to top + +(D) +- Stack with purple block +- Stack with red block +- Stack with yellow block, blue block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/56.txt b/blocks/task3/maps/level5/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..df3e66e09dfdfd258d282d060b324bdf02757ea2 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/56.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block, yellow block, orange block, green block, purple block, from bottom to top + +(B) +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, green block, from bottom to top + +(C) +- Stack with red block +- Stack with green block, orange block, blue block, purple block, from bottom to top + +(D) +- Stack with red block +- Stack with purple block +- Stack with blue block +- Stack with green block +- Stack with orange block + diff --git a/blocks/task3/maps/level5/text_input/57.txt b/blocks/task3/maps/level5/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..1019337b00502e517d0a8b09db82deff2768d5a2 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/57.txt @@ -0,0 +1,20 @@ +(A) +- Stack with yellow block +- Stack with green block +- Stack with blue block, purple block, orange block, from bottom to top + +(B) +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top + +(C) +- Stack with blue block +- Stack with red block, green block, purple block, orange block, from bottom to top + +(D) +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/58.txt b/blocks/task3/maps/level5/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..66d18a37ac8563b70749b36465adf739f884e454 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/58.txt @@ -0,0 +1,25 @@ +(A) +- Stack with green block +- Stack with yellow block +- Stack with blue block +- Stack with orange block, purple block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(C) +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with blue block + +(D) +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with orange block +- Stack with blue block + diff --git a/blocks/task3/maps/level5/text_input/59.txt b/blocks/task3/maps/level5/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..feba8e02efbe94f3b3af53c0d70dc8d5d26df996 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/59.txt @@ -0,0 +1,20 @@ +(A) +- Stack with purple block, orange block, red block, blue block, yellow block, from bottom to top + +(B) +- Stack with yellow block +- Stack with purple block +- Stack with orange block, red block, green block, from bottom to top + +(C) +- Stack with blue block +- Stack with green block +- Stack with yellow block +- Stack with purple block, red block, from bottom to top + +(D) +- Stack with purple block +- Stack with orange block +- Stack with green block +- Stack with red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/6.txt b/blocks/task3/maps/level5/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fbf45b7eb857ff89b76e866b78d53f4522bb21 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/6.txt @@ -0,0 +1,22 @@ +(A) +- Stack with blue block +- Stack with yellow block +- Stack with green block, red block, from bottom to top + +(B) +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with red block, green block, from bottom to top + +(C) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + +(D) +- Stack with purple block +- Stack with red block +- Stack with green block, orange block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/60.txt b/blocks/task3/maps/level5/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cd4ecb50719bcea82e0e18555b9e3cbbc3a0175 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/60.txt @@ -0,0 +1,22 @@ +(A) +- Stack with yellow block +- Stack with red block, purple block, blue block, orange block, from bottom to top + +(B) +- Stack with orange block +- Stack with yellow block +- Stack with blue block, red block, purple block, from bottom to top + +(C) +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with yellow block + +(D) +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with blue block + diff --git a/blocks/task3/maps/level5/text_input/61.txt b/blocks/task3/maps/level5/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..95a3e99a881b71f8a0470a3407033523acb7312b --- /dev/null +++ b/blocks/task3/maps/level5/text_input/61.txt @@ -0,0 +1,20 @@ +(A) +- Stack with yellow block +- Stack with red block +- Stack with blue block, green block, purple block, from bottom to top + +(B) +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with yellow block + +(C) +- Stack with orange block, blue block, from bottom to top +- Stack with yellow block, red block, green block, from bottom to top + +(D) +- Stack with green block +- Stack with blue block, red block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/62.txt b/blocks/task3/maps/level5/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..34b10f3dc81d36fbade6056572dd9ec4297ba182 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/62.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top +- Stack with purple block, red block, from bottom to top + +(B) +- Stack with blue block +- Stack with red block, orange block, from bottom to top +- Stack with green block, purple block, from bottom to top + +(C) +- Stack with blue block, orange block, green block, red block, yellow block, from bottom to top + +(D) +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/63.txt b/blocks/task3/maps/level5/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4a0a8f6956b09e1cd9be2c6c642d797313219d1 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/63.txt @@ -0,0 +1,18 @@ +(A) +- Stack with orange block +- Stack with red block +- Stack with purple block, blue block, yellow block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block, blue block, from bottom to top + +(C) +- Stack with red block, orange block, purple block, green block, from bottom to top + +(D) +- Stack with orange block +- Stack with red block, blue block, purple block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/64.txt b/blocks/task3/maps/level5/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..27328c70bb47494d1f15653f602734e7873f127c --- /dev/null +++ b/blocks/task3/maps/level5/text_input/64.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block, blue block, yellow block, red block, green block, from bottom to top + +(B) +- Stack with yellow block +- Stack with purple block, green block, from bottom to top +- Stack with orange block, blue block, from bottom to top + +(C) +- Stack with yellow block +- Stack with blue block +- Stack with green block +- Stack with purple block, orange block, from bottom to top + +(D) +- Stack with yellow block, orange block, blue block, green block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/65.txt b/blocks/task3/maps/level5/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b2eac8d04069b943dcb2f5a5c8e82fa19c17307 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/65.txt @@ -0,0 +1,14 @@ +(A) +- Stack with yellow block +- Stack with green block, red block, from bottom to top +- Stack with orange block, purple block, from bottom to top + +(B) +- Stack with green block, red block, orange block, purple block, blue block, from bottom to top + +(C) +- Stack with blue block, purple block, red block, orange block, green block, from bottom to top + +(D) +- Stack with orange block, green block, yellow block, blue block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/66.txt b/blocks/task3/maps/level5/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a8dc7405cded9ff328060faaef448c1261a0ab2 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/66.txt @@ -0,0 +1,24 @@ +(A) +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with blue block, yellow block, from bottom to top + +(B) +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, green block, from bottom to top + +(C) +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with orange block +- Stack with blue block + +(D) +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/67.txt b/blocks/task3/maps/level5/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..46a90c965703b005f1d3a29bd07d2c2a06d5aa24 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/67.txt @@ -0,0 +1,16 @@ +(A) +- Stack with green block +- Stack with orange block, blue block, yellow block, red block, from bottom to top + +(B) +- Stack with yellow block, green block, from bottom to top +- Stack with red block, orange block, from bottom to top + +(C) +- Stack with red block +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, purple block, from bottom to top + +(D) +- Stack with yellow block, green block, orange block, purple block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/68.txt b/blocks/task3/maps/level5/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..780724aedb56b45fd74481ffb95285d0ebc92d9c --- /dev/null +++ b/blocks/task3/maps/level5/text_input/68.txt @@ -0,0 +1,17 @@ +(A) +- Stack with green block +- Stack with red block, purple block, from bottom to top +- Stack with yellow block, blue block, from bottom to top + +(B) +- Stack with yellow block +- Stack with green block, purple block, from bottom to top +- Stack with blue block, orange block, from bottom to top + +(C) +- Stack with yellow block, green block, from bottom to top +- Stack with red block, orange block, from bottom to top + +(D) +- Stack with yellow block, purple block, green block, blue block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/69.txt b/blocks/task3/maps/level5/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c1ad4be4cb55ae9fa14f36b928ec41e82b47a67 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/69.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, green block, from bottom to top + +(B) +- Stack with orange block +- Stack with yellow block, green block, from bottom to top +- Stack with blue block, purple block, from bottom to top + +(C) +- Stack with yellow block +- Stack with green block, orange block, red block, from bottom to top + +(D) +- Stack with orange block +- Stack with green block, yellow block, blue block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/7.txt b/blocks/task3/maps/level5/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..277563c7b69435f5a4e579f725b79e542336cde0 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/7.txt @@ -0,0 +1,22 @@ +(A) +- Stack with red block +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, orange block, from bottom to top + +(B) +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top + +(C) +- Stack with purple block +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with blue block + +(D) +- Stack with orange block, blue block, from bottom to top +- Stack with yellow block, red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/70.txt b/blocks/task3/maps/level5/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..19220695f48f9e4bdfda1a1b3cbaa5ba47597479 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/70.txt @@ -0,0 +1,16 @@ +(A) +- Stack with purple block +- Stack with orange block, red block, green block, yellow block, from bottom to top + +(B) +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with purple block, yellow block, from bottom to top + +(C) +- Stack with blue block, green block, red block, from bottom to top + +(D) +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, purple block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/71.txt b/blocks/task3/maps/level5/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe84fa58f929b10529224a5f59e05af612fee433 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/71.txt @@ -0,0 +1,14 @@ +(A) +- Stack with green block, red block, blue block, orange block, from bottom to top + +(B) +- Stack with orange block, red block, yellow block, green block, purple block, from bottom to top + +(C) +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top +- Stack with green block, red block, from bottom to top + +(D) +- Stack with green block, orange block, yellow block, purple block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/72.txt b/blocks/task3/maps/level5/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2aa7a893f937caf38869c0434bf3b057831e4df --- /dev/null +++ b/blocks/task3/maps/level5/text_input/72.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block, yellow block, orange block, red block, from bottom to top + +(B) +- Stack with green block, purple block, from bottom to top +- Stack with red block, orange block, yellow block, from bottom to top + +(C) +- Stack with red block +- Stack with purple block +- Stack with green block +- Stack with orange block + +(D) +- Stack with green block +- Stack with orange block +- Stack with red block +- Stack with purple block +- Stack with yellow block + diff --git a/blocks/task3/maps/level5/text_input/73.txt b/blocks/task3/maps/level5/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..644dac39b1943e0de5337374635e3d6bebafe558 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/73.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block +- Stack with orange block +- Stack with green block +- Stack with red block, yellow block, from bottom to top + +(B) +- Stack with orange block, red block, purple block, yellow block, blue block, from bottom to top + +(C) +- Stack with purple block +- Stack with blue block, red block, orange block, yellow block, from bottom to top + +(D) +- Stack with green block, orange block, from bottom to top +- Stack with purple block, yellow block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/74.txt b/blocks/task3/maps/level5/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..7adca2cd8f6f2134f8ec5ad393c2765169bf5282 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/74.txt @@ -0,0 +1,17 @@ +(A) +- Stack with purple block +- Stack with blue block +- Stack with red block, yellow block, from bottom to top + +(B) +- Stack with blue block, green block, red block, yellow block, orange block, from bottom to top + +(C) +- Stack with green block +- Stack with orange block +- Stack with yellow block, red block, blue block, from bottom to top + +(D) +- Stack with blue block, red block, from bottom to top +- Stack with yellow block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/75.txt b/blocks/task3/maps/level5/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..16a7cdf837a3e0aa67ba65193cae9da09cff5fdb --- /dev/null +++ b/blocks/task3/maps/level5/text_input/75.txt @@ -0,0 +1,23 @@ +(A) +- Stack with yellow block +- Stack with green block, blue block, red block, orange block, from bottom to top + +(B) +- Stack with red block +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with orange block + +(C) +- Stack with green block +- Stack with red block, yellow block, from bottom to top +- Stack with blue block, orange block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block + diff --git a/blocks/task3/maps/level5/text_input/76.txt b/blocks/task3/maps/level5/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1ae85277651edc027b7938e30cdf65f1fc84fab --- /dev/null +++ b/blocks/task3/maps/level5/text_input/76.txt @@ -0,0 +1,19 @@ +(A) +- Stack with orange block, purple block, from bottom to top +- Stack with blue block, red block, yellow block, from bottom to top + +(B) +- Stack with red block, green block, from bottom to top +- Stack with yellow block, blue block, purple block, from bottom to top + +(C) +- Stack with yellow block +- Stack with blue block +- Stack with purple block, red block, orange block, from bottom to top + +(D) +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/77.txt b/blocks/task3/maps/level5/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb52d1197c1f4b878917336814b94f586211d7d1 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/77.txt @@ -0,0 +1,25 @@ +(A) +- Stack with purple block, yellow block, from bottom to top +- Stack with blue block, green block, red block, from bottom to top + +(B) +- Stack with yellow block +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with green block + +(C) +- Stack with red block +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with yellow block + +(D) +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with green block + diff --git a/blocks/task3/maps/level5/text_input/78.txt b/blocks/task3/maps/level5/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da05e8220f09d372262fc77d35cc7cfd6e4af9 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/78.txt @@ -0,0 +1,19 @@ +(A) +- Stack with blue block +- Stack with orange block +- Stack with yellow block +- Stack with green block, purple block, from bottom to top + +(B) +- Stack with yellow block +- Stack with purple block +- Stack with orange block, blue block, green block, from bottom to top + +(C) +- Stack with orange block, blue block, from bottom to top +- Stack with purple block, red block, green block, from bottom to top + +(D) +- Stack with red block +- Stack with orange block, blue block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/79.txt b/blocks/task3/maps/level5/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5eb1baf3fd6972595303e2b3606a7107f18f94b --- /dev/null +++ b/blocks/task3/maps/level5/text_input/79.txt @@ -0,0 +1,20 @@ +(A) +- Stack with red block +- Stack with blue block +- Stack with orange block +- Stack with green block, purple block, from bottom to top + +(B) +- Stack with red block +- Stack with orange block, green block, from bottom to top +- Stack with purple block, blue block, from bottom to top + +(C) +- Stack with green block +- Stack with yellow block, blue block, red block, purple block, from bottom to top + +(D) +- Stack with blue block +- Stack with orange block +- Stack with yellow block, red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/8.txt b/blocks/task3/maps/level5/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..f24aad0c507716c69fb05fc82dc79f3fd9b3f911 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/8.txt @@ -0,0 +1,18 @@ +(A) +- Stack with green block +- Stack with yellow block, purple block, from bottom to top +- Stack with orange block, red block, from bottom to top + +(B) +- Stack with purple block, red block, green block, blue block, yellow block, from bottom to top + +(C) +- Stack with purple block +- Stack with red block +- Stack with blue block +- Stack with yellow block, green block, from bottom to top + +(D) +- Stack with purple block +- Stack with yellow block, blue block, green block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/80.txt b/blocks/task3/maps/level5/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7670a846e00b836e66bc959269f375c13653c45 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/80.txt @@ -0,0 +1,17 @@ +(A) +- Stack with orange block, blue block, from bottom to top + +(B) +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with green block, yellow block, from bottom to top + +(C) +- Stack with green block, yellow block, from bottom to top +- Stack with orange block, purple block, blue block, from bottom to top + +(D) +- Stack with green block, blue block, from bottom to top +- Stack with yellow block, purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/81.txt b/blocks/task3/maps/level5/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..7979e494a5b65327e95cce8d52262f73fd6e5527 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/81.txt @@ -0,0 +1,16 @@ +(A) +- Stack with red block +- Stack with green block, blue block, yellow block, purple block, from bottom to top + +(B) +- Stack with yellow block, purple block, orange block, blue block, green block, from bottom to top + +(C) +- Stack with purple block, orange block, from bottom to top +- Stack with red block, blue block, green block, from bottom to top + +(D) +- Stack with yellow block +- Stack with purple block, green block, from bottom to top +- Stack with blue block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/82.txt b/blocks/task3/maps/level5/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce77264568f4fe8824dc666cdfc9673f86b277c6 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/82.txt @@ -0,0 +1,19 @@ +(A) +- Stack with red block +- Stack with orange block, purple block, green block, yellow block, from bottom to top + +(B) +- Stack with red block, yellow block, from bottom to top +- Stack with purple block, orange block, green block, from bottom to top + +(C) +- Stack with green block +- Stack with yellow block, purple block, from bottom to top +- Stack with orange block, red block, from bottom to top + +(D) +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/83.txt b/blocks/task3/maps/level5/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3937530d4f5690ae3af5d2169014cb12db2ab6d --- /dev/null +++ b/blocks/task3/maps/level5/text_input/83.txt @@ -0,0 +1,18 @@ +(A) +- Stack with yellow block, green block, blue block, from bottom to top + +(B) +- Stack with purple block +- Stack with blue block, yellow block, green block, orange block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with purple block +- Stack with red block + +(D) +- Stack with red block +- Stack with purple block, green block, yellow block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/84.txt b/blocks/task3/maps/level5/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa7225234ff575bd416a0419c1ea559412dc3d95 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/84.txt @@ -0,0 +1,18 @@ +(A) +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block, orange block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +(C) +- Stack with yellow block +- Stack with orange block +- Stack with green block, red block, purple block, from bottom to top + +(D) +- Stack with green block, yellow block, from bottom to top +- Stack with blue block, purple block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/85.txt b/blocks/task3/maps/level5/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..20c09859014cc8cf7c80a068649e931e558f3761 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/85.txt @@ -0,0 +1,17 @@ +(A) +- Stack with red block +- Stack with green block, yellow block, orange block, purple block, from bottom to top + +(B) +- Stack with orange block +- Stack with purple block +- Stack with yellow block +- Stack with red block, green block, from bottom to top + +(C) +- Stack with orange block, green block, yellow block, blue block, red block, from bottom to top + +(D) +- Stack with yellow block +- Stack with orange block, red block, green block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/86.txt b/blocks/task3/maps/level5/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8b76feaa44720869f2464516c17b94cfd662338 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/86.txt @@ -0,0 +1,15 @@ +(A) +- Stack with blue block + +(B) +- Stack with blue block, orange block, from bottom to top +- Stack with yellow block, purple block, green block, from bottom to top + +(C) +- Stack with blue block +- Stack with purple block +- Stack with green block, orange block, yellow block, from bottom to top + +(D) +- Stack with purple block, blue block, yellow block, orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/87.txt b/blocks/task3/maps/level5/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a803f72db6d0893d22f22d980d66b7e73eaa883 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/87.txt @@ -0,0 +1,21 @@ +(A) +- Stack with green block +- Stack with yellow block, red block, from bottom to top +- Stack with blue block, orange block, from bottom to top + +(B) +- Stack with orange block +- Stack with green block, purple block, blue block, from bottom to top + +(C) +- Stack with yellow block +- Stack with blue block +- Stack with red block +- Stack with orange block, green block, from bottom to top + +(D) +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with green block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/88.txt b/blocks/task3/maps/level5/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b9013508045b1eecdf501e7927fc40da7a3be30 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/88.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with purple block +- Stack with red block, blue block, green block, from bottom to top + +(B) +- Stack with yellow block, purple block, orange block, red block, from bottom to top + +(C) +- Stack with orange block, purple block, from bottom to top +- Stack with green block, red block, yellow block, from bottom to top + +(D) +- Stack with purple block +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with red block + diff --git a/blocks/task3/maps/level5/text_input/89.txt b/blocks/task3/maps/level5/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbe85e023ba1ad6bd042be9191aaa5aef50c9a9c --- /dev/null +++ b/blocks/task3/maps/level5/text_input/89.txt @@ -0,0 +1,19 @@ +(A) +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, orange block, blue block, from bottom to top + +(B) +- Stack with green block +- Stack with orange block, blue block, purple block, yellow block, from bottom to top + +(C) +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with green block +- Stack with orange block + +(D) +- Stack with red block, green block, from bottom to top +- Stack with orange block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/9.txt b/blocks/task3/maps/level5/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a7ce9e6132a1e71236e1e3e619672bc27a7fe97 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/9.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block, red block, from bottom to top +- Stack with yellow block, green block, from bottom to top + +(B) +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with green block + +(C) +- Stack with orange block +- Stack with green block +- Stack with yellow block, purple block, red block, from bottom to top + +(D) +- Stack with orange block, red block, from bottom to top +- Stack with blue block, green block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/90.txt b/blocks/task3/maps/level5/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9e9806d836df4156b903c8efc832445ab8b4599 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/90.txt @@ -0,0 +1,18 @@ +(A) +- Stack with blue block, red block, yellow block, orange block, green block, from bottom to top + +(B) +- Stack with yellow block +- Stack with orange block +- Stack with red block +- Stack with blue block, green block, from bottom to top + +(C) +- Stack with red block +- Stack with orange block +- Stack with green block +- Stack with yellow block + +(D) +- Stack with yellow block, green block, orange block, red block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/91.txt b/blocks/task3/maps/level5/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..97d9e41f91f969a922f7597146c61f6a0504739e --- /dev/null +++ b/blocks/task3/maps/level5/text_input/91.txt @@ -0,0 +1,18 @@ +(A) +- Stack with red block +- Stack with purple block, orange block, yellow block, blue block, from bottom to top + +(B) +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with red block + +(C) +- Stack with purple block +- Stack with yellow block, green block, blue block, red block, from bottom to top + +(D) +- Stack with purple block, blue block, orange block, red block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/92.txt b/blocks/task3/maps/level5/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae3a532dd4590bce0455c786c0c247002fee4686 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/92.txt @@ -0,0 +1,13 @@ +(A) +- Stack with green block, orange block, yellow block, purple block, red block, from bottom to top + +(B) +- Stack with green block, purple block, from bottom to top +- Stack with red block, yellow block, blue block, from bottom to top + +(C) +- Stack with purple block, yellow block, orange block, green block, red block, from bottom to top + +(D) +- Stack with purple block, blue block, yellow block, orange block, red block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/93.txt b/blocks/task3/maps/level5/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..5aa59de675327cdce96de764d46fb6095a8310e5 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/93.txt @@ -0,0 +1,21 @@ +(A) +- Stack with yellow block +- Stack with purple block + +(B) +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with red block, green block, from bottom to top + +(C) +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with red block + +(D) +- Stack with purple block, green block, from bottom to top +- Stack with red block, blue block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/94.txt b/blocks/task3/maps/level5/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..353d5be7e8a403383aae4eaed946b35a23ff7dac --- /dev/null +++ b/blocks/task3/maps/level5/text_input/94.txt @@ -0,0 +1,19 @@ +(A) +- Stack with red block +- Stack with blue block +- Stack with yellow block +- Stack with green block, purple block, from bottom to top + +(B) +- Stack with orange block, yellow block, from bottom to top +- Stack with red block, green block, purple block, from bottom to top + +(C) +- Stack with purple block +- Stack with red block +- Stack with blue block, green block, yellow block, from bottom to top + +(D) +- Stack with purple block +- Stack with yellow block, green block, blue block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/95.txt b/blocks/task3/maps/level5/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a859a6fea5d72fc0a88feaada398690214310b4 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/95.txt @@ -0,0 +1,20 @@ +(A) +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with green block, yellow block, from bottom to top + +(B) +- Stack with orange block, green block, from bottom to top +- Stack with purple block, yellow block, blue block, from bottom to top + +(C) +- Stack with red block +- Stack with blue block +- Stack with purple block, orange block, green block, from bottom to top + +(D) +- Stack with orange block +- Stack with green block +- Stack with blue block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/96.txt b/blocks/task3/maps/level5/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..94eb73caa76cb8e48916e41014231fc08ba481ae --- /dev/null +++ b/blocks/task3/maps/level5/text_input/96.txt @@ -0,0 +1,20 @@ +(A) +- Stack with blue block +- Stack with yellow block, green block, from bottom to top +- Stack with red block, purple block, from bottom to top + +(B) +- Stack with purple block +- Stack with yellow block +- Stack with green block +- Stack with red block, blue block, from bottom to top + +(C) +- Stack with red block +- Stack with purple block + +(D) +- Stack with blue block +- Stack with red block +- Stack with green block, yellow block, purple block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/97.txt b/blocks/task3/maps/level5/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bbd90e6639ea7075fac8e6ad7b5f47f0bd64238 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/97.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block, green block, red block, purple block, orange block, from bottom to top + +(B) +- Stack with blue block, orange block, from bottom to top +- Stack with green block, yellow block, red block, from bottom to top + +(C) +- Stack with red block +- Stack with green block +- Stack with orange block +- Stack with purple block +- Stack with yellow block + +(D) +- Stack with green block +- Stack with orange block +- Stack with blue block, purple block, yellow block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/98.txt b/blocks/task3/maps/level5/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b96523de3fd1a28da22095955d0a2a3170bffaf --- /dev/null +++ b/blocks/task3/maps/level5/text_input/98.txt @@ -0,0 +1,21 @@ +(A) +- Stack with green block +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +(B) +- Stack with purple block +- Stack with green block, yellow block, blue block, from bottom to top + +(C) +- Stack with blue block +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with red block + +(D) +- Stack with purple block +- Stack with yellow block +- Stack with red block, blue block, orange block, from bottom to top + diff --git a/blocks/task3/maps/level5/text_input/99.txt b/blocks/task3/maps/level5/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..32543671b3b62e40fef351d247a414667f4d0435 --- /dev/null +++ b/blocks/task3/maps/level5/text_input/99.txt @@ -0,0 +1,19 @@ +(A) +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with red block, purple block, from bottom to top + +(B) +- Stack with blue block, yellow block, orange block, green block, purple block, from bottom to top + +(C) +- Stack with red block +- Stack with orange block +- Stack with blue block, purple block, green block, from bottom to top + +(D) +- Stack with green block +- Stack with orange block, red block, from bottom to top +- Stack with yellow block, purple block, from bottom to top + diff --git a/blocks/task3/prompt-text/prompt-text.txt b/blocks/task3/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..24770ecb3174bf5ddef9556e534475206282796a --- /dev/null +++ b/blocks/task3/prompt-text/prompt-text.txt @@ -0,0 +1,56 @@ +In this task, you will analyze an image containing several stacks of blocks. Later, you will be presented with four choices, each offering a textual representation of a block configuration. You will need to choose the configuration that exactly reflects the contents of the given image. + +## Game Setup +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. + +This is an image input example: + + + +This example features four blocks arranged in three stacks: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block + +Here are examples of textual representations: + +(A) +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, purple block, green block, from bottom to top + +(B) +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, from bottom to top + +(C) +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with green block, yellow block, from bottom to top + +(D) +- Stack with green block +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, orange block, from bottom to top + +We can analyze which text representation exactly reflects the configurations in the image accordingly. In this example: +- The input image has 3 stacks, while Candidate A only has 2 stacks. Therefore, Candidate A is not the correct answer. +- Similarly, Candidate C has 4 stacks, which also cannot be correct. +- For Candidate B, the blocks in each stack match what's shown in the image. This is the correct answer. +- For Candidate D, the blocks in each stack do not match the image. For example, stack 1 in the image has a purple block, and there is no any purple block in Candidate D. So this is incorrect. +- Therefore, the final answer is B. + +## Procedure and Output +Your output should follow this format: +1. First, analyze the block configuration in the image and candidates as shown above; +2. Then, answer the question with the format , where is one of {A,B,C,D}. For example, " A". + +Now please choose the correct textual representation based on the given image below: + + + +Here are the textual candidates: + + diff --git a/blocks/task3/prompt-visual-images/example0.jpg b/blocks/task3/prompt-visual-images/example0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00441c1e743435ca733644c169ff6a8c55def2e6 --- /dev/null +++ b/blocks/task3/prompt-visual-images/example0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556d22008dc07ec6cc3025494315bceb6eab830c2f66ffe43ae21b1152e45769 +size 10171 diff --git a/blocks/task3/test.py b/blocks/task3/test.py new file mode 100644 index 0000000000000000000000000000000000000000..d5d7ed78707f2ef9851ff22e23711bdf45f30e6e --- /dev/null +++ b/blocks/task3/test.py @@ -0,0 +1,161 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +from IPython.display import display +from IPython.display import Markdown + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) + # torch.manual_seed(seed) + # torch.cuda.manual_seed(seed) + # torch.backends.cudnn.deterministic = True + # env.seed(seed) +seed_everything(1) + +levels = [3,4,5] +in_context_example_num = 0 # 0, 1, 2, 4, 8 + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +EXAMPLE_DICT = { + 3: [], + 4: [], + 5: [], +} +for level in levels: + for example_id in range(8): + curr_example_pack = {} + curr_example_pack["image_path"] = "example/level%d/image_input/%d.jpg"%(level, example_id) + with open("example/level%d/text_input/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["question"] = f.read() + with open("example/level%d/answer/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["answer"] = f.read() + EXAMPLE_DICT[level].append(curr_example_pack) + +example_img = PIL.Image.open('prompt-visual-images/example0.jpg') +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + input_img_path = "level%d/image_input/"%(level) + input_txt_path = "level%d/text_input/"%(level) + + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + prompt_input_1 = '''In this task, you will analyze an image containing several stacks of blocks. Later, you will be presented with four choices, each offering a textual representation of a block configuration. You will need to choose the configuration that exactly reflects the contents of the given image. + +## Game Setup +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. + +This is an image input example:\n +''' + + prompt_input_2 = ''' +This example features four blocks arranged in three stacks: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block + +Here are examples of textual representations: + +(A) +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, purple block, green block, from bottom to top + +(B) +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, from bottom to top + +(C) +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with green block, yellow block, from bottom to top + +(D) +- Stack with green block +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, orange block, from bottom to top + +We can analyze which text representation exactly reflects the configurations in the image accordingly. In this example: +- The input image has 3 stacks, while Candidate A only has 2 stacks. Therefore, Candidate A is not the correct answer. +- Similarly, Candidate C has 4 stacks, which also cannot be correct. +- For Candidate B, the blocks in each stack match what's shown in the image. This is the correct answer. +- For Candidate D, the blocks in each stack do not match the image. For example, stack 1 in the image has a purple block, and there is no any purple block in Candidate D. So this is incorrect. +- Therefore, the final answer is B. + +## Procedure and Output +Your output should follow this format: +1. First, analyze the block configuration in the image and candidates as shown above; +2. Then, answer the question with the format , where is one of {A,B,C,D}. For example, " A". +''' + + prompt_examples = [] + image_examples = [] + if in_context_example_num > 0: + prompt_examples.append("## Example:\n") + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + image_examples.append(PIL.Image.open(this_example["image_path"])) + prompt_examples.append(this_example["question"] + "\n" + this_example["answer"] + "\n") + prompt_input_3 = "\n\nNow please choose the correct textual representation based on the given image below:\n" + prompt_input_4 = "\nHere are the textual candidates:\n" + with open(input_txt_path + "%d.txt"%(curr_id), 'r') as f: + candidates = f.read() + input_img = PIL.Image.open(input_img_path + "%d.jpg"%(curr_id)) + model_input_seq = [prompt_input_1, example_img, prompt_input_2] + if in_context_example_num > 0: + assert len(prompt_examples) == len(image_examples) + 1 + assert len(prompt_examples) == in_context_example_num + 1 + model_input_seq.append(prompt_examples[0]) + for example_index in range(in_context_example_num): + model_input_seq.append(image_examples[example_index]) + model_input_seq.append(prompt_examples[example_index+1]) + model_input_seq += [prompt_input_3, input_img, prompt_input_4, candidates] + # , prompt_input_3, input_img, prompt_input_4, candidates] + response = model.generate_content(model_input_seq) + + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass + + diff --git a/blocks/task4/.DS_Store b/blocks/task4/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..bded1c04cd201fb725f9e7034975ea299d7a4035 Binary files /dev/null and b/blocks/task4/.DS_Store differ diff --git a/blocks/task4/eval.py b/blocks/task4/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..93b154782c084752e7ae695e718a67906c15991e --- /dev/null +++ b/blocks/task4/eval.py @@ -0,0 +1,36 @@ +import csv +import os + +count_corr = [0,0,0,0] +invalid = [0,0,0,0] + +for level in [1,3,5,7]: + with open("../level%d/annotation.txt"%(level), "r") as f: + gt_records = f.read().split('\n')[:-1] + for test_id in range(100): + try: + with open("output/output_img/level%d/%d.txt"%(level, test_id), "r") as f: + answer = f.read() + plan_answer_index = answer.find("") + answer = answer[plan_answer_index+len(""):] + answer = answer.replace('"', '') + answer = answer.replace("'", '') + answer = answer.replace("\n", '') + answer = answer.replace(".", '') + answer = answer.lstrip() + answer = answer.rstrip() + answer = answer.lower() + if answer == 'yes' and str(test_id) in gt_records: + count_corr[level//2] += 1 + # print(test_id) + elif answer == 'no' and str(test_id) not in gt_records: + count_corr[level//2] += 1 + # print(test_id) + # else: + # print(answer, test_id) + except: + invalid[level//2] += 1 +print(count_corr) +print(invalid) +# import ipdb; ipdb.set_trace() +# pass diff --git a/blocks/task4/example/level1/annotation.txt b/blocks/task4/example/level1/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..2eb0ff75bc3f1760ab17b5e83b42a6135093e3b6 --- /dev/null +++ b/blocks/task4/example/level1/annotation.txt @@ -0,0 +1,4 @@ +0 +1 +2 +5 diff --git a/blocks/task4/example/level1/answer/0.txt b/blocks/task4/example/level1/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb3c8572af42830408235d1cb17b14ef39d4b733 --- /dev/null +++ b/blocks/task4/example/level1/answer/0.txt @@ -0,0 +1,8 @@ + Now the current block configuration is: +- Stack with blue block +- Stack with green block +- Stack with red block +- Stack with orange block +- Stack with yellow block +The action "move(red,orange)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level1/answer/1.txt b/blocks/task4/example/level1/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb959afc2bd617f94187800fb8ca6b13e0511eef --- /dev/null +++ b/blocks/task4/example/level1/answer/1.txt @@ -0,0 +1,8 @@ + Now the current block configuration is: +- Stack with purple block +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with blue block +The action "move(red,purple)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level1/answer/2.txt b/blocks/task4/example/level1/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b4a2b8f4e4aac07c0a74175e323bf44656892db --- /dev/null +++ b/blocks/task4/example/level1/answer/2.txt @@ -0,0 +1,7 @@ + Now the current block configuration is: +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, red block, from bottom to top +The action "move(green,red)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level1/answer/3.txt b/blocks/task4/example/level1/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..914deedde2d2e8a8ee05e35c363f31f38e6bd532 --- /dev/null +++ b/blocks/task4/example/level1/answer/3.txt @@ -0,0 +1,8 @@ + Now the current block configuration is: +- Stack with blue block +- Stack with green block +- Stack with red block +- Stack with orange block +- Stack with yellow block +The action "move(blue,purple)" is invalid and cannot be executed, because there is no purple blocks. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level1/answer/4.txt b/blocks/task4/example/level1/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3223a43a6da70e0742fa6a68d7b385c7c113be35 --- /dev/null +++ b/blocks/task4/example/level1/answer/4.txt @@ -0,0 +1,8 @@ + Now the current block configuration is: +- Stack with purple block +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with blue block +The action "move(purple,orange)" is invalid and cannot be executed, because there is no orange blocks. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level1/answer/5.txt b/blocks/task4/example/level1/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f026d6af0c55902c7b7828cc8a12919d8d671587 --- /dev/null +++ b/blocks/task4/example/level1/answer/5.txt @@ -0,0 +1,8 @@ + Now the current block configuration is: +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with orange block +The action "move(orange,blue)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level1/answer/6.txt b/blocks/task4/example/level1/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef4d61644ca9bcdb38ade25f0e6a19608fa4b9a3 --- /dev/null +++ b/blocks/task4/example/level1/answer/6.txt @@ -0,0 +1,7 @@ + Now the current block configuration is: +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, red block, from bottom to top +The action "move(blue,purple)" is invalid and cannot be executed, because the blue block is below the red block and cannot be moved. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level1/answer/7.txt b/blocks/task4/example/level1/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..00629ff1628aa8a1a35b1044ffefa2329ffa1988 --- /dev/null +++ b/blocks/task4/example/level1/answer/7.txt @@ -0,0 +1,8 @@ + Now the current block configuration is: +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with orange block +The action "move(blue,green)" is invalid and cannot be executed, because there is no green blocks. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level1/image_input/0.jpg b/blocks/task4/example/level1/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..537ee635542735f28e1daafc5168d50b5df9271c --- /dev/null +++ b/blocks/task4/example/level1/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7060a1190574363220627bcce5deb13fec7b920298e13a5712f02a4a44f575 +size 11688 diff --git a/blocks/task4/example/level1/image_input/1.jpg b/blocks/task4/example/level1/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d1c33ceaf0b13e688b45e5788aa077748f38b6a --- /dev/null +++ b/blocks/task4/example/level1/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d1f29095de52b36b75e43031d1939108bfe275b6f5156b23983b65fc582b0c +size 11445 diff --git a/blocks/task4/example/level1/image_input/2.jpg b/blocks/task4/example/level1/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1528b88c331059d36bf4b0c6d7e43ba6b022d4d5 --- /dev/null +++ b/blocks/task4/example/level1/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9b21ad105146fbac751159833930f9202ee8503d252b48085ab66f6839b9a8 +size 11356 diff --git a/blocks/task4/example/level1/image_input/3.jpg b/blocks/task4/example/level1/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..537ee635542735f28e1daafc5168d50b5df9271c --- /dev/null +++ b/blocks/task4/example/level1/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7060a1190574363220627bcce5deb13fec7b920298e13a5712f02a4a44f575 +size 11688 diff --git a/blocks/task4/example/level1/image_input/4.jpg b/blocks/task4/example/level1/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d1c33ceaf0b13e688b45e5788aa077748f38b6a --- /dev/null +++ b/blocks/task4/example/level1/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d1f29095de52b36b75e43031d1939108bfe275b6f5156b23983b65fc582b0c +size 11445 diff --git a/blocks/task4/example/level1/image_input/5.jpg b/blocks/task4/example/level1/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e78f2d8f3c33619563e7d835648f5dc5b76e54a --- /dev/null +++ b/blocks/task4/example/level1/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1fc5df32bd372156ece0b7199a2daece87b7845554a5e818ab225013f13d55 +size 11258 diff --git a/blocks/task4/example/level1/image_input/6.jpg b/blocks/task4/example/level1/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1528b88c331059d36bf4b0c6d7e43ba6b022d4d5 --- /dev/null +++ b/blocks/task4/example/level1/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9b21ad105146fbac751159833930f9202ee8503d252b48085ab66f6839b9a8 +size 11356 diff --git a/blocks/task4/example/level1/image_input/7.jpg b/blocks/task4/example/level1/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e78f2d8f3c33619563e7d835648f5dc5b76e54a --- /dev/null +++ b/blocks/task4/example/level1/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1fc5df32bd372156ece0b7199a2daece87b7845554a5e818ab225013f13d55 +size 11258 diff --git a/blocks/task4/example/level1/pure_text_rep_input/0.txt b/blocks/task4/example/level1/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d5c30bab49a5195f3f1fd205fe43c65d9e0ad45 --- /dev/null +++ b/blocks/task4/example/level1/pure_text_rep_input/0.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with red block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/example/level1/pure_text_rep_input/1.txt b/blocks/task4/example/level1/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e25dadba8f5c477a4c316c1e95f06d4784acacdd --- /dev/null +++ b/blocks/task4/example/level1/pure_text_rep_input/1.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with blue block diff --git a/blocks/task4/example/level1/pure_text_rep_input/2.txt b/blocks/task4/example/level1/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f38d9e1264572ab120c73d100c34954d3ed8c91 --- /dev/null +++ b/blocks/task4/example/level1/pure_text_rep_input/2.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task4/example/level1/pure_text_rep_input/3.txt b/blocks/task4/example/level1/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d5c30bab49a5195f3f1fd205fe43c65d9e0ad45 --- /dev/null +++ b/blocks/task4/example/level1/pure_text_rep_input/3.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with red block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/example/level1/pure_text_rep_input/4.txt b/blocks/task4/example/level1/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e25dadba8f5c477a4c316c1e95f06d4784acacdd --- /dev/null +++ b/blocks/task4/example/level1/pure_text_rep_input/4.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with blue block diff --git a/blocks/task4/example/level1/pure_text_rep_input/5.txt b/blocks/task4/example/level1/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1c8d937eda4b0579b8454ed57c5b595c81c64d2 --- /dev/null +++ b/blocks/task4/example/level1/pure_text_rep_input/5.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with orange block diff --git a/blocks/task4/example/level1/pure_text_rep_input/6.txt b/blocks/task4/example/level1/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f38d9e1264572ab120c73d100c34954d3ed8c91 --- /dev/null +++ b/blocks/task4/example/level1/pure_text_rep_input/6.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task4/example/level1/pure_text_rep_input/7.txt b/blocks/task4/example/level1/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1c8d937eda4b0579b8454ed57c5b595c81c64d2 --- /dev/null +++ b/blocks/task4/example/level1/pure_text_rep_input/7.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with orange block diff --git a/blocks/task4/example/level1/text_input/0.txt b/blocks/task4/example/level1/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5a270ca73f853de9952a82db606928e3499da7d --- /dev/null +++ b/blocks/task4/example/level1/text_input/0.txt @@ -0,0 +1 @@ +1. move(red,orange) diff --git a/blocks/task4/example/level1/text_input/1.txt b/blocks/task4/example/level1/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0aabd25ae0b902650b5d3a71543472a654235f7 --- /dev/null +++ b/blocks/task4/example/level1/text_input/1.txt @@ -0,0 +1 @@ +1. move(red,purple) diff --git a/blocks/task4/example/level1/text_input/2.txt b/blocks/task4/example/level1/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..f340c8014eb9389e1611ae8b74832950ac21401f --- /dev/null +++ b/blocks/task4/example/level1/text_input/2.txt @@ -0,0 +1 @@ +1. move(green,red) diff --git a/blocks/task4/example/level1/text_input/3.txt b/blocks/task4/example/level1/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e12bacf4b4f6dfd9ae73beec10a837b9416341ad --- /dev/null +++ b/blocks/task4/example/level1/text_input/3.txt @@ -0,0 +1 @@ +1. move(blue,purple) diff --git a/blocks/task4/example/level1/text_input/4.txt b/blocks/task4/example/level1/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb7d4567f45e59ea8c52c3483d52736c0365bfb0 --- /dev/null +++ b/blocks/task4/example/level1/text_input/4.txt @@ -0,0 +1 @@ +1. move(purple,orange) diff --git a/blocks/task4/example/level1/text_input/5.txt b/blocks/task4/example/level1/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..21b3b1e9353708bad88d8e9d7ff3d1f770075029 --- /dev/null +++ b/blocks/task4/example/level1/text_input/5.txt @@ -0,0 +1 @@ +1. move(orange,blue) diff --git a/blocks/task4/example/level1/text_input/6.txt b/blocks/task4/example/level1/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..e12bacf4b4f6dfd9ae73beec10a837b9416341ad --- /dev/null +++ b/blocks/task4/example/level1/text_input/6.txt @@ -0,0 +1 @@ +1. move(blue,purple) diff --git a/blocks/task4/example/level1/text_input/7.txt b/blocks/task4/example/level1/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..97e8a3f49b4e4f96369d7eb2197ffed11cd9e293 --- /dev/null +++ b/blocks/task4/example/level1/text_input/7.txt @@ -0,0 +1 @@ +1. move(blue,green) diff --git a/blocks/task4/example/level3/annotation.txt b/blocks/task4/example/level3/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6d579b01993ff46c6cb4a1fce44542423466d5f --- /dev/null +++ b/blocks/task4/example/level3/annotation.txt @@ -0,0 +1,4 @@ +0 +1 +3 +6 diff --git a/blocks/task4/example/level3/answer/0.txt b/blocks/task4/example/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..761807f578e768aef2070c09ccdbd04d8e8ce9c8 --- /dev/null +++ b/blocks/task4/example/level3/answer/0.txt @@ -0,0 +1,16 @@ + Now the current block configuration is: +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top +The action "move(purple,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, from bottom to top +- Stack with purple block +The action "move(orange,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block, yellow block, from bottom to top +- Stack with green block +- Stack with purple block +- Stack with orange block +The action "move(green,yellow)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level3/answer/1.txt b/blocks/task4/example/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3000ec3b6043ffa896fc3ef827a904b25f337132 --- /dev/null +++ b/blocks/task4/example/level3/answer/1.txt @@ -0,0 +1,19 @@ + Now the current block configuration is: +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with red block +The action "move(red,orange)" is valid. We execute this action. +Now the current block configuration is: +- Stack with orange block, red block, from bottom to top +- Stack with blue block +- Stack with green block +- Stack with purple block +The action "move(purple,red)" is valid. We execute this action. +Now the current block configuration is: +- Stack with orange block, red block, purple block, from bottom to top +- Stack with blue block +- Stack with green block +The action "move(blue,green)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level3/answer/2.txt b/blocks/task4/example/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c88799667a267043823547636b7e9248e83aa93 --- /dev/null +++ b/blocks/task4/example/level3/answer/2.txt @@ -0,0 +1,10 @@ + Now the current block configuration is: +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top +The action "move(purple,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, from bottom to top +- Stack with purple block +The action "move(purple,green)" is invalid and cannot be executed, because the green block is below the orange block and is not a valid destination. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level3/answer/3.txt b/blocks/task4/example/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cbf31f74143d04c8a7a93d948dca169f8e5d9a8 --- /dev/null +++ b/blocks/task4/example/level3/answer/3.txt @@ -0,0 +1,14 @@ + Now the current block configuration is: +- Stack with green block +- Stack with yellow block, red block, blue block, purple block, from bottom to top +The action "move(purple,green)" is valid. We execute this action. +Now the current block configuration is: +- Stack with green block, purple block, from bottom to top +- Stack with yellow block, red block, blue block, from bottom to top +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with green block, purple block, from bottom to top +- Stack with yellow block, red block, from bottom to top +- Stack with blue block +The action "move(red,blue)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level3/answer/4.txt b/blocks/task4/example/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..6659c281773d169adda7df0f20a09124214e506c --- /dev/null +++ b/blocks/task4/example/level3/answer/4.txt @@ -0,0 +1,8 @@ + Now the current block configuration is: +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with red block +The action "move(green,yellow)" is invalid and cannot be executed, because there is no yellow blocks. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level3/answer/5.txt b/blocks/task4/example/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..19f7481333529ceececf887f63da8c787d2dbd22 --- /dev/null +++ b/blocks/task4/example/level3/answer/5.txt @@ -0,0 +1,9 @@ + Now the current block configuration is: +- Stack with green block +- Stack with yellow block, red block, blue block, purple block, from bottom to top +The action "move(purple,green)" is valid. We execute this action. +Now the current block configuration is: +- Stack with green block, purple block, from bottom to top +- Stack with yellow block, red block, blue block, from bottom to top +The action "move(purple,orange)" is invalid and cannot be executed, because there is no orange blocks. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level3/answer/6.txt b/blocks/task4/example/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..82c656141f84461e9c39ef6c045c5d7e54800af6 --- /dev/null +++ b/blocks/task4/example/level3/answer/6.txt @@ -0,0 +1,20 @@ + Now the current block configuration is: +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with red block, green block, from bottom to top +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with red block +- Stack with green block +The action "move(orange,green)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block +- Stack with purple block +- Stack with red block +- Stack with green block, orange block, from bottom to top +The action "move(red,purple)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level3/answer/7.txt b/blocks/task4/example/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7e9f32fd213911a50a433dd26aa028a318d1bbf --- /dev/null +++ b/blocks/task4/example/level3/answer/7.txt @@ -0,0 +1,20 @@ + Now the current block configuration is: +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with red block, green block, from bottom to top +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with red block +- Stack with green block +The action "move(red,purple)" is valid. We execute this action. +Now the current block configuration is: +- Stack with orange block +- Stack with blue block +- Stack with purple block, red block, from bottom to top +- Stack with green block +The action "move(purple,table)" is invalid and cannot be executed, becuase the purple block is below the red block and cannot be moved. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level3/image_input/0.jpg b/blocks/task4/example/level3/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c813530a83fb1c27c654b9909b213635ac7cf240 --- /dev/null +++ b/blocks/task4/example/level3/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a2f3cd5e33ee425ac72b9cb2d350200e4ac2aab1ad4fe1c96b815699fae474 +size 10261 diff --git a/blocks/task4/example/level3/image_input/1.jpg b/blocks/task4/example/level3/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..215db65970f040ea3b1cb301253d860d1a75f4fd --- /dev/null +++ b/blocks/task4/example/level3/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8943c51dcd97c6dbb3938c003902dcf6168c3e55c4a48e098863071c314fe0 +size 11171 diff --git a/blocks/task4/example/level3/image_input/2.jpg b/blocks/task4/example/level3/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c813530a83fb1c27c654b9909b213635ac7cf240 --- /dev/null +++ b/blocks/task4/example/level3/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a2f3cd5e33ee425ac72b9cb2d350200e4ac2aab1ad4fe1c96b815699fae474 +size 10261 diff --git a/blocks/task4/example/level3/image_input/3.jpg b/blocks/task4/example/level3/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b0d1069bea61a6a891d95df81c94085cbabf6e7 --- /dev/null +++ b/blocks/task4/example/level3/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b5a57f27fb5467ebdf4c8a6b22be1d5117540ca9f2e2f4577b1d0f20fd018d +size 10544 diff --git a/blocks/task4/example/level3/image_input/4.jpg b/blocks/task4/example/level3/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..215db65970f040ea3b1cb301253d860d1a75f4fd --- /dev/null +++ b/blocks/task4/example/level3/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8943c51dcd97c6dbb3938c003902dcf6168c3e55c4a48e098863071c314fe0 +size 11171 diff --git a/blocks/task4/example/level3/image_input/5.jpg b/blocks/task4/example/level3/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b0d1069bea61a6a891d95df81c94085cbabf6e7 --- /dev/null +++ b/blocks/task4/example/level3/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b5a57f27fb5467ebdf4c8a6b22be1d5117540ca9f2e2f4577b1d0f20fd018d +size 10544 diff --git a/blocks/task4/example/level3/image_input/6.jpg b/blocks/task4/example/level3/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d082716b3f490c4cccc5e142c5d12aede16b07a --- /dev/null +++ b/blocks/task4/example/level3/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f850a5ba539d132a7f85e51517d690b63ee2f9e7791d5f972027c49264f426 +size 12339 diff --git a/blocks/task4/example/level3/image_input/7.jpg b/blocks/task4/example/level3/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d082716b3f490c4cccc5e142c5d12aede16b07a --- /dev/null +++ b/blocks/task4/example/level3/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f850a5ba539d132a7f85e51517d690b63ee2f9e7791d5f972027c49264f426 +size 12339 diff --git a/blocks/task4/example/level3/pure_text_rep_input/0.txt b/blocks/task4/example/level3/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e1ad3db7861dec76e130e9f8a887ce75060c970 --- /dev/null +++ b/blocks/task4/example/level3/pure_text_rep_input/0.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task4/example/level3/pure_text_rep_input/1.txt b/blocks/task4/example/level3/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dbc7231e15a0af2852af44ece7c74e175540123 --- /dev/null +++ b/blocks/task4/example/level3/pure_text_rep_input/1.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with red block diff --git a/blocks/task4/example/level3/pure_text_rep_input/2.txt b/blocks/task4/example/level3/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e1ad3db7861dec76e130e9f8a887ce75060c970 --- /dev/null +++ b/blocks/task4/example/level3/pure_text_rep_input/2.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task4/example/level3/pure_text_rep_input/3.txt b/blocks/task4/example/level3/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3c1e185f63c8097f3b5456f379d6bd19aef0f8b --- /dev/null +++ b/blocks/task4/example/level3/pure_text_rep_input/3.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, red block, blue block, purple block, from bottom to top diff --git a/blocks/task4/example/level3/pure_text_rep_input/4.txt b/blocks/task4/example/level3/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dbc7231e15a0af2852af44ece7c74e175540123 --- /dev/null +++ b/blocks/task4/example/level3/pure_text_rep_input/4.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with red block diff --git a/blocks/task4/example/level3/pure_text_rep_input/5.txt b/blocks/task4/example/level3/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3c1e185f63c8097f3b5456f379d6bd19aef0f8b --- /dev/null +++ b/blocks/task4/example/level3/pure_text_rep_input/5.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, red block, blue block, purple block, from bottom to top diff --git a/blocks/task4/example/level3/pure_text_rep_input/6.txt b/blocks/task4/example/level3/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2360823dae9cc7ae8e2a66721626128025a834b --- /dev/null +++ b/blocks/task4/example/level3/pure_text_rep_input/6.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task4/example/level3/pure_text_rep_input/7.txt b/blocks/task4/example/level3/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2360823dae9cc7ae8e2a66721626128025a834b --- /dev/null +++ b/blocks/task4/example/level3/pure_text_rep_input/7.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task4/example/level3/text_input/0.txt b/blocks/task4/example/level3/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..16cd4f54cce70e0f802606aaff89453b99b0c83d --- /dev/null +++ b/blocks/task4/example/level3/text_input/0.txt @@ -0,0 +1,3 @@ +1. move(purple,table) +2. move(orange,table) +3. move(green,yellow) diff --git a/blocks/task4/example/level3/text_input/1.txt b/blocks/task4/example/level3/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c21aaf0f061cfffb7fb7533d3cb26a7f2320f91a --- /dev/null +++ b/blocks/task4/example/level3/text_input/1.txt @@ -0,0 +1,3 @@ +1. move(red,orange) +2. move(purple,red) +3. move(blue,green) diff --git a/blocks/task4/example/level3/text_input/2.txt b/blocks/task4/example/level3/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..04b74359e1747e1747e567103e004aa0c39c2085 --- /dev/null +++ b/blocks/task4/example/level3/text_input/2.txt @@ -0,0 +1,3 @@ +1. move(purple,table) +2. move(purple,green) +3. move(orange,table) diff --git a/blocks/task4/example/level3/text_input/3.txt b/blocks/task4/example/level3/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3343cf8f0b3a39bcd50e8fd8a77e3f79ea4a91f2 --- /dev/null +++ b/blocks/task4/example/level3/text_input/3.txt @@ -0,0 +1,3 @@ +1. move(purple,green) +2. move(blue,table) +3. move(red,blue) diff --git a/blocks/task4/example/level3/text_input/4.txt b/blocks/task4/example/level3/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..7204dcddf4f40717a845850a725a8b0ebeb8813e --- /dev/null +++ b/blocks/task4/example/level3/text_input/4.txt @@ -0,0 +1,3 @@ +1. move(green,yellow) +2. move(blue,green) +3. move(red,orange) diff --git a/blocks/task4/example/level3/text_input/5.txt b/blocks/task4/example/level3/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c74d28d99d3909695b0f3b76be059b6d57124b5 --- /dev/null +++ b/blocks/task4/example/level3/text_input/5.txt @@ -0,0 +1,3 @@ +1. move(purple,green) +2. move(purple,orange) +3. move(blue,table) diff --git a/blocks/task4/example/level3/text_input/6.txt b/blocks/task4/example/level3/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a45337ac0c87bdf21558648ee904bf9a3a28e9e6 --- /dev/null +++ b/blocks/task4/example/level3/text_input/6.txt @@ -0,0 +1,3 @@ +1. move(green,table) +2. move(orange,green) +3. move(red,purple) diff --git a/blocks/task4/example/level3/text_input/7.txt b/blocks/task4/example/level3/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d9572b6bd61250610408d4b8c16366ca3509c37 --- /dev/null +++ b/blocks/task4/example/level3/text_input/7.txt @@ -0,0 +1,3 @@ +1. move(green,table) +2. move(red,purple) +3. move(purple,table) diff --git a/blocks/task4/example/level5/annotation.txt b/blocks/task4/example/level5/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..76fda2f55ec03f871f8ce2d81066105091e34f52 --- /dev/null +++ b/blocks/task4/example/level5/annotation.txt @@ -0,0 +1,4 @@ +1 +2 +4 +6 diff --git a/blocks/task4/example/level5/answer/0.txt b/blocks/task4/example/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..af45c6dd02a841750ada42bb4a827096016afef9 --- /dev/null +++ b/blocks/task4/example/level5/answer/0.txt @@ -0,0 +1,12 @@ + Now the current block configuration is: +- Stack with yellow block, orange block, purple block, blue block, green block, from bottom to top +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with yellow block, orange block, purple block, blue block, from bottom to top +- Stack with green block +The action "move(blue,green)" is valid. We execute this action. +Now the current block configuration is: +- Stack with yellow block, orange block, purple block, from bottom to top +- Stack with green block, blue block, from bottom to top +The action "move(purple,red)" is invalid and cannot be executed, because there is no red blocks. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level5/answer/1.txt b/blocks/task4/example/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac00a369ac1a6909d4967cfbaf24b695d87422b7 --- /dev/null +++ b/blocks/task4/example/level5/answer/1.txt @@ -0,0 +1,25 @@ + Now the current block configuration is: +- Stack with yellow block, orange block, purple block, blue block, green block, from bottom to top +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with yellow block, orange block, purple block, blue block, from bottom to top +- Stack with green block +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with yellow block, orange block, purple block, from bottom to top +- Stack with green block +- Stack with blue block +The action "move(purple,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with yellow block, orange block, from bottom to top +- Stack with green block +- Stack with blue block +- Stack with purple block +The action "move(orange,purple)" is valid. We execute this action. +Now the current block configuration is: +- Stack with yellow block +- Stack with green block +- Stack with blue block +- Stack with purple block, orange block, from bottom to top +The action "move(blue,orange)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level5/answer/2.txt b/blocks/task4/example/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..3df6be60cd5ac1f99720b4485a150eb94d57e5da --- /dev/null +++ b/blocks/task4/example/level5/answer/2.txt @@ -0,0 +1,25 @@ + Now the current block configuration is: +- Stack with purple block +- Stack with yellow block, red block, green block, blue block, from bottom to top +The action "move(blue,purple)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, red block, green block, from bottom to top +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, red block, from bottom to top +- Stack with green block +The action "move(red,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block +- Stack with green block +- Stack with red block +The action "move(yellow,blue)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, yellow block, from bottom to top +- Stack with green block +- Stack with red block +The action "move(red,yellow)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level5/answer/3.txt b/blocks/task4/example/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..243c5b0bdcd73047d7209eb8f4b83af2f8c848d0 --- /dev/null +++ b/blocks/task4/example/level5/answer/3.txt @@ -0,0 +1,5 @@ + Now the current block configuration is: +- Stack with purple block +- Stack with yellow block, red block, green block, blue block, from bottom to top +The action "move(blue,orange)" is invalid and cannot be executed, because there is no orange blocks. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level5/answer/4.txt b/blocks/task4/example/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..5764b6d867a5fa4f069923bba8a0db654b4b0e10 --- /dev/null +++ b/blocks/task4/example/level5/answer/4.txt @@ -0,0 +1,26 @@ + Now the current block configuration is: +- Stack with blue block +- Stack with yellow block, green block, purple block, red block, from bottom to top +The action "move(red,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top +- Stack with red block +The action "move(purple,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block +- Stack with yellow block, green block, from bottom to top +- Stack with red block +- Stack with purple block +The action "move(blue,purple)" is valid. We execute this action. +Now the current block configuration is: +- Stack with yellow block, green block, from bottom to top +- Stack with red block +- Stack with purple block, blue block, from bottom to top +The action "move(green,blue)" is valid. We execute this action. +Now the current block configuration is: +- Stack with yellow block +- Stack with red block +- Stack with purple block, blue block, green block, from bottom to top +The action "move(red,yellow)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level5/answer/5.txt b/blocks/task4/example/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..700932141ed92ecb887ab12f5472143c0efc8ad6 --- /dev/null +++ b/blocks/task4/example/level5/answer/5.txt @@ -0,0 +1,5 @@ + Now the current block configuration is: +- Stack with blue block +- Stack with yellow block, green block, purple block, red block, from bottom to top +The action "move(yellow,table)" is invalid and cannot be executed, because the yellow block is below the green block and cannot be moved. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level5/answer/6.txt b/blocks/task4/example/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..60844b4e87672b67a157ef2dfd0f949558bd4e46 --- /dev/null +++ b/blocks/task4/example/level5/answer/6.txt @@ -0,0 +1,26 @@ + Now the current block configuration is: +- Stack with red block +- Stack with orange block, yellow block, green block, blue block, from bottom to top +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with orange block, yellow block, green block, from bottom to top +- Stack with blue block +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with orange block, yellow block, from bottom to top +- Stack with blue block +- Stack with green block +The action "move(red,green)" is valid. We execute this action. +Now the current block configuration is: +- Stack with orange block, yellow block, from bottom to top +- Stack with blue block +- Stack with green block, red block, from bottom to top +The action "move(yellow,red)" is valid. We execute this action. +Now the current block configuration is: +- Stack with orange block +- Stack with blue block +- Stack with green block, red block, yellow block, from bottom to top +The action "move(blue,yellow)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level5/answer/7.txt b/blocks/task4/example/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7281e5006f85109b59d209b97b45c5a47118ff64 --- /dev/null +++ b/blocks/task4/example/level5/answer/7.txt @@ -0,0 +1,16 @@ + Now the current block configuration is: +- Stack with red block +- Stack with orange block, yellow block, green block, blue block, from bottom to top +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with orange block, yellow block, green block, from bottom to top +- Stack with blue block +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with orange block, yellow block, from bottom to top +- Stack with blue block +- Stack with green block +The action "move(orange,blue)" is invalid and cannot be executed, because the orange block is below the yellow block and cannot be moved. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level5/image_input/0.jpg b/blocks/task4/example/level5/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..847b6707c21ed34874741e67958b47bfe5699170 --- /dev/null +++ b/blocks/task4/example/level5/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f0c25949fecd4ac710a52af87946aa0c8d3b8fea3dbb67fc1de0b7d1963646 +size 9995 diff --git a/blocks/task4/example/level5/image_input/1.jpg b/blocks/task4/example/level5/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..847b6707c21ed34874741e67958b47bfe5699170 --- /dev/null +++ b/blocks/task4/example/level5/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f0c25949fecd4ac710a52af87946aa0c8d3b8fea3dbb67fc1de0b7d1963646 +size 9995 diff --git a/blocks/task4/example/level5/image_input/2.jpg b/blocks/task4/example/level5/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..986fd054d14cb43b12c42069186dc1bf569a5643 --- /dev/null +++ b/blocks/task4/example/level5/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61259b984dc1a7e0ab165d693b596af7aa6aef6f332546faeb10ce184ddf8ff9 +size 11533 diff --git a/blocks/task4/example/level5/image_input/3.jpg b/blocks/task4/example/level5/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..986fd054d14cb43b12c42069186dc1bf569a5643 --- /dev/null +++ b/blocks/task4/example/level5/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61259b984dc1a7e0ab165d693b596af7aa6aef6f332546faeb10ce184ddf8ff9 +size 11533 diff --git a/blocks/task4/example/level5/image_input/4.jpg b/blocks/task4/example/level5/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b181e031e525f0f95a4f9eea47fe4020274a56d --- /dev/null +++ b/blocks/task4/example/level5/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f38e2b63b4b49c6c1d1660c39d1829f8e4d646e57b6c9c515c9d554f726845 +size 12001 diff --git a/blocks/task4/example/level5/image_input/5.jpg b/blocks/task4/example/level5/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b181e031e525f0f95a4f9eea47fe4020274a56d --- /dev/null +++ b/blocks/task4/example/level5/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f38e2b63b4b49c6c1d1660c39d1829f8e4d646e57b6c9c515c9d554f726845 +size 12001 diff --git a/blocks/task4/example/level5/image_input/6.jpg b/blocks/task4/example/level5/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09ed41e9b5fa736a0583604eca4f4b919c704127 --- /dev/null +++ b/blocks/task4/example/level5/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50630100b654de6ceb6eefb8e227d6bca4df659e3d39c47fb0d27a3359e7c703 +size 10186 diff --git a/blocks/task4/example/level5/image_input/7.jpg b/blocks/task4/example/level5/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09ed41e9b5fa736a0583604eca4f4b919c704127 --- /dev/null +++ b/blocks/task4/example/level5/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50630100b654de6ceb6eefb8e227d6bca4df659e3d39c47fb0d27a3359e7c703 +size 10186 diff --git a/blocks/task4/example/level5/pure_text_rep_input/0.txt b/blocks/task4/example/level5/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f906b8377693849d2e31dcf13283cbd0a6d9e56 --- /dev/null +++ b/blocks/task4/example/level5/pure_text_rep_input/0.txt @@ -0,0 +1 @@ +- Stack with yellow block, orange block, purple block, blue block, green block, from bottom to top diff --git a/blocks/task4/example/level5/pure_text_rep_input/1.txt b/blocks/task4/example/level5/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f906b8377693849d2e31dcf13283cbd0a6d9e56 --- /dev/null +++ b/blocks/task4/example/level5/pure_text_rep_input/1.txt @@ -0,0 +1 @@ +- Stack with yellow block, orange block, purple block, blue block, green block, from bottom to top diff --git a/blocks/task4/example/level5/pure_text_rep_input/2.txt b/blocks/task4/example/level5/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc9bea4182cb8728a977af0ab72800b00b881e5e --- /dev/null +++ b/blocks/task4/example/level5/pure_text_rep_input/2.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, red block, green block, blue block, from bottom to top diff --git a/blocks/task4/example/level5/pure_text_rep_input/3.txt b/blocks/task4/example/level5/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc9bea4182cb8728a977af0ab72800b00b881e5e --- /dev/null +++ b/blocks/task4/example/level5/pure_text_rep_input/3.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, red block, green block, blue block, from bottom to top diff --git a/blocks/task4/example/level5/pure_text_rep_input/4.txt b/blocks/task4/example/level5/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0849e991f21913b0f737bbadc4a4525e18846c0 --- /dev/null +++ b/blocks/task4/example/level5/pure_text_rep_input/4.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, green block, purple block, red block, from bottom to top diff --git a/blocks/task4/example/level5/pure_text_rep_input/5.txt b/blocks/task4/example/level5/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0849e991f21913b0f737bbadc4a4525e18846c0 --- /dev/null +++ b/blocks/task4/example/level5/pure_text_rep_input/5.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, green block, purple block, red block, from bottom to top diff --git a/blocks/task4/example/level5/pure_text_rep_input/6.txt b/blocks/task4/example/level5/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..80fe9697b4b2c4df979a24588ad5ec0e453f6129 --- /dev/null +++ b/blocks/task4/example/level5/pure_text_rep_input/6.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, yellow block, green block, blue block, from bottom to top diff --git a/blocks/task4/example/level5/pure_text_rep_input/7.txt b/blocks/task4/example/level5/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..80fe9697b4b2c4df979a24588ad5ec0e453f6129 --- /dev/null +++ b/blocks/task4/example/level5/pure_text_rep_input/7.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, yellow block, green block, blue block, from bottom to top diff --git a/blocks/task4/example/level5/text_input/0.txt b/blocks/task4/example/level5/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2eebb7332e8c86c0f536701e10b0b82eac99ed95 --- /dev/null +++ b/blocks/task4/example/level5/text_input/0.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(blue,green) +3. move(purple,red) +4. move(purple,table) +5. move(orange,purple) diff --git a/blocks/task4/example/level5/text_input/1.txt b/blocks/task4/example/level5/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..348ead34fb14f21aa1df806224959ae4ad3b0263 --- /dev/null +++ b/blocks/task4/example/level5/text_input/1.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(blue,table) +3. move(purple,table) +4. move(orange,purple) +5. move(blue,orange) diff --git a/blocks/task4/example/level5/text_input/2.txt b/blocks/task4/example/level5/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e757b17bc553849f8db6a30053101b577e5f329d --- /dev/null +++ b/blocks/task4/example/level5/text_input/2.txt @@ -0,0 +1,5 @@ +1. move(blue,purple) +2. move(green,table) +3. move(red,table) +4. move(yellow,blue) +5. move(red,yellow) diff --git a/blocks/task4/example/level5/text_input/3.txt b/blocks/task4/example/level5/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3c9e0d44ccf9a20a9038986bf88debfb03edaf3 --- /dev/null +++ b/blocks/task4/example/level5/text_input/3.txt @@ -0,0 +1,5 @@ +1. move(blue,orange) +2. move(blue,purple) +3. move(green,table) +4. move(red,green) +5. move(yellow,blue) diff --git a/blocks/task4/example/level5/text_input/4.txt b/blocks/task4/example/level5/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8a6e131d2c390bacdde88566d39c0dccadc3664 --- /dev/null +++ b/blocks/task4/example/level5/text_input/4.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(purple,table) +3. move(blue,purple) +4. move(green,blue) +5. move(red,yellow) diff --git a/blocks/task4/example/level5/text_input/5.txt b/blocks/task4/example/level5/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..efaa1a6b614c4f97d88e528aee851afc1858ad19 --- /dev/null +++ b/blocks/task4/example/level5/text_input/5.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(red,table) +3. move(purple,table) +4. move(blue,purple) +5. move(green,blue) diff --git a/blocks/task4/example/level5/text_input/6.txt b/blocks/task4/example/level5/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fc15a3c5b18eb15a5b44a6370e37ff04feaf77f --- /dev/null +++ b/blocks/task4/example/level5/text_input/6.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(green,table) +3. move(red,green) +4. move(yellow,red) +5. move(blue,yellow) diff --git a/blocks/task4/example/level5/text_input/7.txt b/blocks/task4/example/level5/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bc5459241152b7db162d4f42dfea3b68fbea470 --- /dev/null +++ b/blocks/task4/example/level5/text_input/7.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(green,table) +3. move(orange,blue) +4. move(red,green) +5. move(yellow,red) diff --git a/blocks/task4/example/level7/annotation.txt b/blocks/task4/example/level7/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..785c59f29af59033c69d952dfdfdf5a00ca75f86 --- /dev/null +++ b/blocks/task4/example/level7/annotation.txt @@ -0,0 +1,4 @@ +1 +2 +5 +6 diff --git a/blocks/task4/example/level7/answer/0.txt b/blocks/task4/example/level7/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f3b8a505cdda3922436bcb5e7ec4f2919eac321 --- /dev/null +++ b/blocks/task4/example/level7/answer/0.txt @@ -0,0 +1,29 @@ + Now the current block configuration is: +- Stack with purple block, blue block, yellow block, orange block, red block, from bottom to top +The action "move(red,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, yellow block, orange block, from bottom to top +- Stack with red block +The action "move(orange,red)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, yellow block, from bottom to top +- Stack with red block, orange block, from bottom to top +The action "move(yellow,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, from bottom to top +- Stack with red block, orange block, from bottom to top +- Stack with yellow block +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with red block, orange block, from bottom to top +- Stack with yellow block +- Stack with blue block +The action "move(orange,blue)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with red block +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top +The action "move(green,table)" is invalid and cannot be executed, because there is no green blocks. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level7/answer/1.txt b/blocks/task4/example/level7/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b09ef938c7784ba486dcb2470ec99ef1c4806f4 --- /dev/null +++ b/blocks/task4/example/level7/answer/1.txt @@ -0,0 +1,37 @@ + Now the current block configuration is: +- Stack with purple block, blue block, yellow block, orange block, red block, from bottom to top +The action "move(red,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, yellow block, orange block, from bottom to top +- Stack with red block +The action "move(orange,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, yellow block, from bottom to top +- Stack with red block +- Stack with orange block +The action "move(yellow,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, blue block, from bottom to top +- Stack with red block +- Stack with orange block +- Stack with yellow block +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with blue block +The action "move(orange,blue)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with red block +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top +The action "move(red,orange)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with yellow block +- Stack with blue block, orange block, red block, from bottom to top +The action "move(purple,yellow)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level7/answer/2.txt b/blocks/task4/example/level7/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..853a103112ca0ba598665e7670a67ea1b7d05efc --- /dev/null +++ b/blocks/task4/example/level7/answer/2.txt @@ -0,0 +1,37 @@ + Now the current block configuration is: +- Stack with red block, purple block, green block, blue block, yellow block, from bottom to top +The action "move(yellow,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block, purple block, green block, blue block, from bottom to top +- Stack with yellow block +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block, purple block, green block, from bottom to top +- Stack with yellow block +- Stack with blue block +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block, purple block, from bottom to top +- Stack with yellow block +- Stack with blue block +- Stack with green block +The action "move(purple,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with yellow block +- Stack with blue block +- Stack with green block +- Stack with purple block +The action "move(blue,green)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with yellow block +- Stack with green block, blue block, from bottom to top +- Stack with purple block +The action "move(red,blue)" is valid. We execute this action. +Now the current block configuration is: +- Stack with yellow block +- Stack with green block, blue block, red block, from bottom to top +- Stack with purple block +The action "move(yellow,purple)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level7/answer/3.txt b/blocks/task4/example/level7/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fc3e74028eb9938b93392123846902d57fb71f3 --- /dev/null +++ b/blocks/task4/example/level7/answer/3.txt @@ -0,0 +1,32 @@ + Now the current block configuration is: +- Stack with red block, purple block, green block, blue block, yellow block, from bottom to top +The action "move(yellow,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block, purple block, green block, blue block, from bottom to top +- Stack with yellow block +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block, purple block, green block, from bottom to top +- Stack with yellow block +- Stack with blue block +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block, purple block, from bottom to top +- Stack with yellow block +- Stack with blue block +- Stack with green block +The action "move(purple,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with yellow block +- Stack with blue block +- Stack with green block +- Stack with purple block +The action "move(yellow,purple)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with blue block +- Stack with green block +- Stack with purple block, yellow block, from bottom to top +The action "move(purple,blue)" is invalid and cannot be executed, because the purple block is below the yellow block and cannot be moved. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level7/answer/4.txt b/blocks/task4/example/level7/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e8ea05a4a10e18bb951c20c25546c7b4db6aec9 --- /dev/null +++ b/blocks/task4/example/level7/answer/4.txt @@ -0,0 +1,21 @@ + Now the current block configuration is: +- Stack with purple block, green block, from bottom to top +- Stack with red block, yellow block, blue block, from bottom to top +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, green block, from bottom to top +- Stack with red block, yellow block, from bottom to top +- Stack with blue block +The action "move(green,blue)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with red block, yellow block, from bottom to top +- Stack with blue block, green block, from bottom to top +The action "move(yellow,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with red block +- Stack with blue block, green block, from bottom to top +- Stack with yellow block +The action "move(blue,red)" is invalid and cannot be executed, because the blue block is below the green block and cannot be moved. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level7/answer/5.txt b/blocks/task4/example/level7/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ea0e44fcfab0b024548f85992d30285d8e4aab5 --- /dev/null +++ b/blocks/task4/example/level7/answer/5.txt @@ -0,0 +1,38 @@ + Now the current block configuration is: +- Stack with purple block, green block, from bottom to top +- Stack with red block, yellow block, blue block, from bottom to top +The action "move(blue,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, green block, from bottom to top +- Stack with red block, yellow block, from bottom to top +- Stack with blue block +The action "move(yellow,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, green block, from bottom to top +- Stack with red block +- Stack with blue block +- Stack with yellow block +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with red block +- Stack with blue block +- Stack with yellow block +- Stack with green block +The action "move(purple,yellow)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with blue block +- Stack with yellow block, purple block, from bottom to top +- Stack with green block +The action "move(green,purple)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with blue block +- Stack with yellow block, purple block, green block, from bottom to top +The action "move(blue,green)" is valid. We execute this action. +Now the current block configuration is: +- Stack with red block +- Stack with yellow block, purple block, green block, blue block, from bottom to top +The action "move(red,blue)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level7/answer/6.txt b/blocks/task4/example/level7/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..553d77c08f8db0329b56905f4d3672979c659160 --- /dev/null +++ b/blocks/task4/example/level7/answer/6.txt @@ -0,0 +1,38 @@ + Now the current block configuration is: +- Stack with purple block, red block, from bottom to top +- Stack with blue block, green block, orange block, from bottom to top +The action "move(red,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with blue block, green block, orange block, from bottom to top +- Stack with red block +The action "move(orange,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with blue block, green block, from bottom to top +- Stack with red block +- Stack with orange block +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with green block +The action "move(purple,blue)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block, purple block, from bottom to top +- Stack with red block +- Stack with orange block +- Stack with green block +The action "move(orange,purple)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block, purple block, orange block, from bottom to top +- Stack with red block +- Stack with green block +The action "move(red,orange)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block, purple block, orange block, red block, from bottom to top +- Stack with green block +The action "move(green,red)" is valid. We execute this action. + Yes \ No newline at end of file diff --git a/blocks/task4/example/level7/answer/7.txt b/blocks/task4/example/level7/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..91be3c16818cf24a8d09e7f5d84792c4d9e3c721 --- /dev/null +++ b/blocks/task4/example/level7/answer/7.txt @@ -0,0 +1,31 @@ + Now the current block configuration is: +- Stack with purple block, red block, from bottom to top +- Stack with blue block, green block, orange block, from bottom to top +The action "move(orange,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, red block, from bottom to top +- Stack with blue block, green block, from bottom to top +- Stack with orange block +The action "move(green,table)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block, red block, from bottom to top +- Stack with blue block +- Stack with orange block +- Stack with green block +The action "move(red,green)" is valid. We execute this action. +Now the current block configuration is: +- Stack with purple block +- Stack with blue block +- Stack with orange block +- Stack with green block, red block, from bottom to top +The action "move(purple,blue)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block, purple block, from bottom to top +- Stack with orange block +- Stack with green block, red block, from bottom to top +The action "move(orange,purple)" is valid. We execute this action. +Now the current block configuration is: +- Stack with blue block, purple block, orange block, from bottom to top +- Stack with green block, red block, from bottom to top +The action "move(orange,green)" is invalid and cannot be executed, because the green block is below the red block and is not a valid destination. The action sequence is therefore invalid, so we stop analyzing here. + No \ No newline at end of file diff --git a/blocks/task4/example/level7/image_input/0.jpg b/blocks/task4/example/level7/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68913fb3197e5c0167b4216718c7047114b69282 --- /dev/null +++ b/blocks/task4/example/level7/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e93d34c0208afe17a220059908ca1dfb72d488f5783971d1c73dd1a9787d612 +size 10603 diff --git a/blocks/task4/example/level7/image_input/1.jpg b/blocks/task4/example/level7/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68913fb3197e5c0167b4216718c7047114b69282 --- /dev/null +++ b/blocks/task4/example/level7/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e93d34c0208afe17a220059908ca1dfb72d488f5783971d1c73dd1a9787d612 +size 10603 diff --git a/blocks/task4/example/level7/image_input/2.jpg b/blocks/task4/example/level7/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b12c901cfa39c74f3ae0fe3729a38214e0e602a0 --- /dev/null +++ b/blocks/task4/example/level7/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5548d14beb477f43400afca7671deb602a131ee032f8d1f110cb69339dd4715a +size 10751 diff --git a/blocks/task4/example/level7/image_input/3.jpg b/blocks/task4/example/level7/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b12c901cfa39c74f3ae0fe3729a38214e0e602a0 --- /dev/null +++ b/blocks/task4/example/level7/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5548d14beb477f43400afca7671deb602a131ee032f8d1f110cb69339dd4715a +size 10751 diff --git a/blocks/task4/example/level7/image_input/4.jpg b/blocks/task4/example/level7/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff57049393f44b3f7ef51cf9b8e68b617cb6384d --- /dev/null +++ b/blocks/task4/example/level7/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7962f8cd52659eb9c395d97a9b825bd1d83db3e0851e0b8df801f274ba36268 +size 10348 diff --git a/blocks/task4/example/level7/image_input/5.jpg b/blocks/task4/example/level7/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff57049393f44b3f7ef51cf9b8e68b617cb6384d --- /dev/null +++ b/blocks/task4/example/level7/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7962f8cd52659eb9c395d97a9b825bd1d83db3e0851e0b8df801f274ba36268 +size 10348 diff --git a/blocks/task4/example/level7/image_input/6.jpg b/blocks/task4/example/level7/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c0159b14c0f264d465cdaa6ce843dcc29e261b1 --- /dev/null +++ b/blocks/task4/example/level7/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67837851ece940f8bbb4c621fe66a306a1702b017a53ffeb6f08a7e5e8ba08d2 +size 10074 diff --git a/blocks/task4/example/level7/image_input/7.jpg b/blocks/task4/example/level7/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c0159b14c0f264d465cdaa6ce843dcc29e261b1 --- /dev/null +++ b/blocks/task4/example/level7/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67837851ece940f8bbb4c621fe66a306a1702b017a53ffeb6f08a7e5e8ba08d2 +size 10074 diff --git a/blocks/task4/example/level7/pure_text_rep_input/0.txt b/blocks/task4/example/level7/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddde497d244717a722e5c6748b1014d356091124 --- /dev/null +++ b/blocks/task4/example/level7/pure_text_rep_input/0.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, yellow block, orange block, red block, from bottom to top diff --git a/blocks/task4/example/level7/pure_text_rep_input/1.txt b/blocks/task4/example/level7/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddde497d244717a722e5c6748b1014d356091124 --- /dev/null +++ b/blocks/task4/example/level7/pure_text_rep_input/1.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, yellow block, orange block, red block, from bottom to top diff --git a/blocks/task4/example/level7/pure_text_rep_input/2.txt b/blocks/task4/example/level7/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9a383990af89b6ea97ee27624f30dc67583e96d --- /dev/null +++ b/blocks/task4/example/level7/pure_text_rep_input/2.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, green block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/example/level7/pure_text_rep_input/3.txt b/blocks/task4/example/level7/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9a383990af89b6ea97ee27624f30dc67583e96d --- /dev/null +++ b/blocks/task4/example/level7/pure_text_rep_input/3.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, green block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/example/level7/pure_text_rep_input/4.txt b/blocks/task4/example/level7/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbe665e40a74a04863ebd6c028e1c13e176314cf --- /dev/null +++ b/blocks/task4/example/level7/pure_text_rep_input/4.txt @@ -0,0 +1,2 @@ +- Stack with purple block, green block, from bottom to top +- Stack with red block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/example/level7/pure_text_rep_input/5.txt b/blocks/task4/example/level7/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbe665e40a74a04863ebd6c028e1c13e176314cf --- /dev/null +++ b/blocks/task4/example/level7/pure_text_rep_input/5.txt @@ -0,0 +1,2 @@ +- Stack with purple block, green block, from bottom to top +- Stack with red block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/example/level7/pure_text_rep_input/6.txt b/blocks/task4/example/level7/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..123fa5ca7a0d9e3465d0bf9248fa5a02378eeb8d --- /dev/null +++ b/blocks/task4/example/level7/pure_text_rep_input/6.txt @@ -0,0 +1,2 @@ +- Stack with purple block, red block, from bottom to top +- Stack with blue block, green block, orange block, from bottom to top diff --git a/blocks/task4/example/level7/pure_text_rep_input/7.txt b/blocks/task4/example/level7/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..123fa5ca7a0d9e3465d0bf9248fa5a02378eeb8d --- /dev/null +++ b/blocks/task4/example/level7/pure_text_rep_input/7.txt @@ -0,0 +1,2 @@ +- Stack with purple block, red block, from bottom to top +- Stack with blue block, green block, orange block, from bottom to top diff --git a/blocks/task4/example/level7/text_input/0.txt b/blocks/task4/example/level7/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..024c503a033c836bcc3ed5ece5e52bacb69e963c --- /dev/null +++ b/blocks/task4/example/level7/text_input/0.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(orange,red) +3. move(yellow,table) +4. move(blue,table) +5. move(orange,blue) +6. move(green,table) +7. move(purple,yellow) diff --git a/blocks/task4/example/level7/text_input/1.txt b/blocks/task4/example/level7/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c9d3e1965abbb9e5c7c5299bc2f37cb03ac9cf3 --- /dev/null +++ b/blocks/task4/example/level7/text_input/1.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(orange,table) +3. move(yellow,table) +4. move(blue,table) +5. move(orange,blue) +6. move(red,orange) +7. move(purple,yellow) diff --git a/blocks/task4/example/level7/text_input/2.txt b/blocks/task4/example/level7/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..644d68d71b7175a1c82bf5bdf69440223d7ea2c0 --- /dev/null +++ b/blocks/task4/example/level7/text_input/2.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(blue,table) +3. move(green,table) +4. move(purple,table) +5. move(blue,green) +6. move(red,blue) +7. move(yellow,purple) diff --git a/blocks/task4/example/level7/text_input/3.txt b/blocks/task4/example/level7/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fa03df9237cdc17f65db2763f448c934d4312ae --- /dev/null +++ b/blocks/task4/example/level7/text_input/3.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(blue,table) +3. move(green,table) +4. move(purple,table) +5. move(yellow,purple) +6. move(purple,blue) +7. move(blue,green) diff --git a/blocks/task4/example/level7/text_input/4.txt b/blocks/task4/example/level7/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdf9d0f84f7aca1e633faca0fa30dc535f824aae --- /dev/null +++ b/blocks/task4/example/level7/text_input/4.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(green,blue) +3. move(yellow,table) +4. move(blue,red) +5. move(purple,yellow) +6. move(green,purple) +7. move(blue,green) diff --git a/blocks/task4/example/level7/text_input/5.txt b/blocks/task4/example/level7/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d27cc89b7bae0ba7b50fdee71dc185ebc0237985 --- /dev/null +++ b/blocks/task4/example/level7/text_input/5.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(yellow,table) +3. move(green,table) +4. move(purple,yellow) +5. move(green,purple) +6. move(blue,green) +7. move(red,blue) diff --git a/blocks/task4/example/level7/text_input/6.txt b/blocks/task4/example/level7/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..37a3cd392766575e93da36a3192900420f5f50ec --- /dev/null +++ b/blocks/task4/example/level7/text_input/6.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(orange,table) +3. move(green,table) +4. move(purple,blue) +5. move(orange,purple) +6. move(red,orange) +7. move(green,red) diff --git a/blocks/task4/example/level7/text_input/7.txt b/blocks/task4/example/level7/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..733df1e4043d60b2a8436b037769ab0cd1e416f5 --- /dev/null +++ b/blocks/task4/example/level7/text_input/7.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(green,table) +3. move(red,green) +4. move(purple,blue) +5. move(orange,purple) +6. move(orange,green) +7. move(red,orange) diff --git a/blocks/task4/maps/.DS_Store b/blocks/task4/maps/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..f097a3db4c0f5ba977c3b3dcbbff59789ffcbe3e Binary files /dev/null and b/blocks/task4/maps/.DS_Store differ diff --git a/blocks/task4/maps/level1/annotation.txt b/blocks/task4/maps/level1/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1ae256c4f3207880a00702b7cb7a37543d3a577 --- /dev/null +++ b/blocks/task4/maps/level1/annotation.txt @@ -0,0 +1,50 @@ +0 +2 +3 +4 +5 +6 +11 +13 +14 +16 +17 +19 +20 +22 +24 +25 +27 +28 +29 +31 +35 +38 +43 +46 +51 +53 +54 +57 +58 +62 +64 +67 +68 +69 +71 +75 +77 +79 +81 +82 +84 +86 +88 +89 +90 +93 +94 +95 +97 +99 diff --git a/blocks/task4/maps/level1/image_input/0.jpg b/blocks/task4/maps/level1/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04c98d7019c0c372a6d6641db4fea3e51dfb83c7 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca097e7856a76816d6d4de5ac50c14c765bc171859b09ea68faf4012e93e2bc +size 11682 diff --git a/blocks/task4/maps/level1/image_input/1.jpg b/blocks/task4/maps/level1/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04c98d7019c0c372a6d6641db4fea3e51dfb83c7 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca097e7856a76816d6d4de5ac50c14c765bc171859b09ea68faf4012e93e2bc +size 11682 diff --git a/blocks/task4/maps/level1/image_input/10.jpg b/blocks/task4/maps/level1/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8db5ff46e46c040065528e69c69a0c60ddc3571 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90d60266d37c89e0fada43b412f1af6504063a449c36ec24f4ad201a27884df +size 11321 diff --git a/blocks/task4/maps/level1/image_input/11.jpg b/blocks/task4/maps/level1/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6a61d66cde521cbcc50706be53c0a6333274901 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea92efc500d89a30169436e30c3ae528035cefbe3e0ca289facd46ecf7ff3721 +size 10710 diff --git a/blocks/task4/maps/level1/image_input/12.jpg b/blocks/task4/maps/level1/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd8736312b7e6e69190b1a0d1870dd9d96f39470 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c25787314d647a3fea9faafe6dcd6bfaf21630f9cf424e114e2f3f21c13226 +size 10352 diff --git a/blocks/task4/maps/level1/image_input/13.jpg b/blocks/task4/maps/level1/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43653184b0ae6a4be066f503d74fb3f27cf8be55 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b2e887d8bb67f9f51e6ecfc5d79a693e8e4e749dd6e1a970c2a921266b5701 +size 11093 diff --git a/blocks/task4/maps/level1/image_input/14.jpg b/blocks/task4/maps/level1/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0db0ccf639b1ec1d6266fe52e2c9cb243b56e93d --- /dev/null +++ b/blocks/task4/maps/level1/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc530491629604b87190bae559482a33689885b87c94c69cdd27610c85c6cbf +size 11091 diff --git a/blocks/task4/maps/level1/image_input/15.jpg b/blocks/task4/maps/level1/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6a61d66cde521cbcc50706be53c0a6333274901 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea92efc500d89a30169436e30c3ae528035cefbe3e0ca289facd46ecf7ff3721 +size 10710 diff --git a/blocks/task4/maps/level1/image_input/16.jpg b/blocks/task4/maps/level1/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75c7a6fd4b4b8959c1e797271d038a1e90f40e5c --- /dev/null +++ b/blocks/task4/maps/level1/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e8898da6fa611b0233ff9227bffbe8872d124bc55f4a6a810306ea7f74cb403 +size 10684 diff --git a/blocks/task4/maps/level1/image_input/17.jpg b/blocks/task4/maps/level1/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1eefd3600c659be45710e3abd206011034fca02e --- /dev/null +++ b/blocks/task4/maps/level1/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5afbc44e89aabc8ef56a113b8e3285bf21a2ae9f70ca6da8a7883bb27e426b +size 10143 diff --git a/blocks/task4/maps/level1/image_input/18.jpg b/blocks/task4/maps/level1/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43653184b0ae6a4be066f503d74fb3f27cf8be55 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b2e887d8bb67f9f51e6ecfc5d79a693e8e4e749dd6e1a970c2a921266b5701 +size 11093 diff --git a/blocks/task4/maps/level1/image_input/19.jpg b/blocks/task4/maps/level1/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bb54f2343a07f9b47e6f29cdec9a951eb9186b2 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c499f499bc37408651812ef9ebb2334cff8b45929e4159005ede0552053d3ac5 +size 10979 diff --git a/blocks/task4/maps/level1/image_input/2.jpg b/blocks/task4/maps/level1/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61f27c79c5edc7f3212bec45e70036cb7d1d183e --- /dev/null +++ b/blocks/task4/maps/level1/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ab038263d8a505453b4163d3e1c1d7e60ac0887314e8c61692cc71312cb25c +size 10706 diff --git a/blocks/task4/maps/level1/image_input/20.jpg b/blocks/task4/maps/level1/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..840a6936f70064c3e9dee42bf517978b4c0db68f --- /dev/null +++ b/blocks/task4/maps/level1/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621727245a0039711bd211194900b58f88240e671c853e4772b3f415a854fab2 +size 12103 diff --git a/blocks/task4/maps/level1/image_input/21.jpg b/blocks/task4/maps/level1/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0db0ccf639b1ec1d6266fe52e2c9cb243b56e93d --- /dev/null +++ b/blocks/task4/maps/level1/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc530491629604b87190bae559482a33689885b87c94c69cdd27610c85c6cbf +size 11091 diff --git a/blocks/task4/maps/level1/image_input/22.jpg b/blocks/task4/maps/level1/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..135e015c942b02d83b9929dc83265b6377d50836 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1747272a4409cfe503d45de111894dab68548dba4b8001deada23d0523f30c +size 11823 diff --git a/blocks/task4/maps/level1/image_input/23.jpg b/blocks/task4/maps/level1/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75c7a6fd4b4b8959c1e797271d038a1e90f40e5c --- /dev/null +++ b/blocks/task4/maps/level1/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e8898da6fa611b0233ff9227bffbe8872d124bc55f4a6a810306ea7f74cb403 +size 10684 diff --git a/blocks/task4/maps/level1/image_input/24.jpg b/blocks/task4/maps/level1/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3979d58de2bb6f528aa10e901ddfc0306fe2773 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bd31b72d6de1b5b3fa6282b8e30fe75dd42b3ad90d849849e15a8dfbb53348d +size 11112 diff --git a/blocks/task4/maps/level1/image_input/25.jpg b/blocks/task4/maps/level1/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ccd572c22f9d9343ac21d54f04f3feef42b8745 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee1dc3fe11ec57f4ae8c8556489a64af22e7f45161d37e5f7124f56faa16e30 +size 10351 diff --git a/blocks/task4/maps/level1/image_input/26.jpg b/blocks/task4/maps/level1/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1eefd3600c659be45710e3abd206011034fca02e --- /dev/null +++ b/blocks/task4/maps/level1/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5afbc44e89aabc8ef56a113b8e3285bf21a2ae9f70ca6da8a7883bb27e426b +size 10143 diff --git a/blocks/task4/maps/level1/image_input/27.jpg b/blocks/task4/maps/level1/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63d3e34fd77fe5a6878da58fa15014306bca3e46 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d60bd8971143926bc3cb25cc3c7e96262539f950e66a5a8f9bd313ef33b3de +size 11717 diff --git a/blocks/task4/maps/level1/image_input/28.jpg b/blocks/task4/maps/level1/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de747aef503371612b0a2ab20523dcd795e067a6 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94dedd9d6d817ac03e537618421d74e57909a48e1c2d000c46ae5f5d6c3b977 +size 11315 diff --git a/blocks/task4/maps/level1/image_input/29.jpg b/blocks/task4/maps/level1/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d63f5fcc3cb7ee914f675c71af3a9571d15c94a --- /dev/null +++ b/blocks/task4/maps/level1/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b816dc5547673a8d284048e25d6bac9535b91d350c3290a40bb837091ec371 +size 11774 diff --git a/blocks/task4/maps/level1/image_input/3.jpg b/blocks/task4/maps/level1/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2efa21fa5f71ef0f2d213c833ccf52fdd203351b --- /dev/null +++ b/blocks/task4/maps/level1/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42470cf4bb74d8aa031edb958b092a44c072ff96a7f5cd533fff769f9f1ec13e +size 11634 diff --git a/blocks/task4/maps/level1/image_input/30.jpg b/blocks/task4/maps/level1/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bb54f2343a07f9b47e6f29cdec9a951eb9186b2 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c499f499bc37408651812ef9ebb2334cff8b45929e4159005ede0552053d3ac5 +size 10979 diff --git a/blocks/task4/maps/level1/image_input/31.jpg b/blocks/task4/maps/level1/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45dea4969e3ada218eafe6bb25cdf4a59cc5e0e9 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:133f34eff4199b99eb2e0580e14974841b0327a1cbcf8832a5c21e75433f782c +size 10860 diff --git a/blocks/task4/maps/level1/image_input/32.jpg b/blocks/task4/maps/level1/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..840a6936f70064c3e9dee42bf517978b4c0db68f --- /dev/null +++ b/blocks/task4/maps/level1/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621727245a0039711bd211194900b58f88240e671c853e4772b3f415a854fab2 +size 12103 diff --git a/blocks/task4/maps/level1/image_input/33.jpg b/blocks/task4/maps/level1/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..135e015c942b02d83b9929dc83265b6377d50836 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1747272a4409cfe503d45de111894dab68548dba4b8001deada23d0523f30c +size 11823 diff --git a/blocks/task4/maps/level1/image_input/34.jpg b/blocks/task4/maps/level1/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3979d58de2bb6f528aa10e901ddfc0306fe2773 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bd31b72d6de1b5b3fa6282b8e30fe75dd42b3ad90d849849e15a8dfbb53348d +size 11112 diff --git a/blocks/task4/maps/level1/image_input/35.jpg b/blocks/task4/maps/level1/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f244145040c5948851d05e176ec1c059769d7b3b --- /dev/null +++ b/blocks/task4/maps/level1/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d9cbedd221eca43f8ba90298dcf3e0abb27a0167fc275d9245b82df54f7535 +size 10714 diff --git a/blocks/task4/maps/level1/image_input/36.jpg b/blocks/task4/maps/level1/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ccd572c22f9d9343ac21d54f04f3feef42b8745 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee1dc3fe11ec57f4ae8c8556489a64af22e7f45161d37e5f7124f56faa16e30 +size 10351 diff --git a/blocks/task4/maps/level1/image_input/37.jpg b/blocks/task4/maps/level1/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63d3e34fd77fe5a6878da58fa15014306bca3e46 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d60bd8971143926bc3cb25cc3c7e96262539f950e66a5a8f9bd313ef33b3de +size 11717 diff --git a/blocks/task4/maps/level1/image_input/38.jpg b/blocks/task4/maps/level1/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6dafbd29d526a82fba9ba2b3a7457e34eadfba52 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4661dc211a4a996e126c8d497b9e576f7d238a0101a7bb6866494475c79c2d +size 11062 diff --git a/blocks/task4/maps/level1/image_input/39.jpg b/blocks/task4/maps/level1/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de747aef503371612b0a2ab20523dcd795e067a6 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94dedd9d6d817ac03e537618421d74e57909a48e1c2d000c46ae5f5d6c3b977 +size 11315 diff --git a/blocks/task4/maps/level1/image_input/4.jpg b/blocks/task4/maps/level1/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..991d84a0f68726d3b4accd57628982a35e37e167 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5890d60ba28aea43f3da9b8a865970bbb4401c9fb608f5f429228efd0df425 +size 10881 diff --git a/blocks/task4/maps/level1/image_input/40.jpg b/blocks/task4/maps/level1/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d63f5fcc3cb7ee914f675c71af3a9571d15c94a --- /dev/null +++ b/blocks/task4/maps/level1/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b816dc5547673a8d284048e25d6bac9535b91d350c3290a40bb837091ec371 +size 11774 diff --git a/blocks/task4/maps/level1/image_input/41.jpg b/blocks/task4/maps/level1/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45dea4969e3ada218eafe6bb25cdf4a59cc5e0e9 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:133f34eff4199b99eb2e0580e14974841b0327a1cbcf8832a5c21e75433f782c +size 10860 diff --git a/blocks/task4/maps/level1/image_input/42.jpg b/blocks/task4/maps/level1/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f244145040c5948851d05e176ec1c059769d7b3b --- /dev/null +++ b/blocks/task4/maps/level1/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d9cbedd221eca43f8ba90298dcf3e0abb27a0167fc275d9245b82df54f7535 +size 10714 diff --git a/blocks/task4/maps/level1/image_input/43.jpg b/blocks/task4/maps/level1/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..730fb8bde09d5eb95137b34690250c8ec39a8b23 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8587eb536ecec36347545aae254400ee85d354b2b4cea605ce3cca1d0a5926fb +size 10527 diff --git a/blocks/task4/maps/level1/image_input/44.jpg b/blocks/task4/maps/level1/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6dafbd29d526a82fba9ba2b3a7457e34eadfba52 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4661dc211a4a996e126c8d497b9e576f7d238a0101a7bb6866494475c79c2d +size 11062 diff --git a/blocks/task4/maps/level1/image_input/45.jpg b/blocks/task4/maps/level1/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..730fb8bde09d5eb95137b34690250c8ec39a8b23 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8587eb536ecec36347545aae254400ee85d354b2b4cea605ce3cca1d0a5926fb +size 10527 diff --git a/blocks/task4/maps/level1/image_input/46.jpg b/blocks/task4/maps/level1/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62434e37fd3826f4e437afa0adcd8db6add7f360 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040f72659c811d5ab36e4cc7725253e5f8c9461bcbe6a3dbc5c7b6776d107fc3 +size 11582 diff --git a/blocks/task4/maps/level1/image_input/47.jpg b/blocks/task4/maps/level1/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62434e37fd3826f4e437afa0adcd8db6add7f360 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040f72659c811d5ab36e4cc7725253e5f8c9461bcbe6a3dbc5c7b6776d107fc3 +size 11582 diff --git a/blocks/task4/maps/level1/image_input/48.jpg b/blocks/task4/maps/level1/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fe9646d22d340f5320174f4440f633939f538c5 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31aad09e512f04f275f8f7899c04739dd2fc44e022450f33f0ecc9e3509a21de +size 10489 diff --git a/blocks/task4/maps/level1/image_input/49.jpg b/blocks/task4/maps/level1/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da43901bb0b5c0203c88ccdb53e93ac7c2135e04 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1b1af93d7a2baa0bab2f32f8632d30ab5a4ecceaffdb9aa5bfe4a024445503 +size 10872 diff --git a/blocks/task4/maps/level1/image_input/5.jpg b/blocks/task4/maps/level1/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8db5ff46e46c040065528e69c69a0c60ddc3571 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90d60266d37c89e0fada43b412f1af6504063a449c36ec24f4ad201a27884df +size 11321 diff --git a/blocks/task4/maps/level1/image_input/50.jpg b/blocks/task4/maps/level1/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5178388d4339eff11595b7740e519ba9079962c8 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:559c7f16cc1a78323871507e0446cf4d63eab4e48f5ed58e08540f77662b0db6 +size 10579 diff --git a/blocks/task4/maps/level1/image_input/51.jpg b/blocks/task4/maps/level1/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fe9646d22d340f5320174f4440f633939f538c5 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31aad09e512f04f275f8f7899c04739dd2fc44e022450f33f0ecc9e3509a21de +size 10489 diff --git a/blocks/task4/maps/level1/image_input/52.jpg b/blocks/task4/maps/level1/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c8819a850fdb3df7e787612d33caa31427d1205 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4065644649ed6fb33f08bb86fcde63f155f898ebf8fd0633ab3f4b2536f95520 +size 10229 diff --git a/blocks/task4/maps/level1/image_input/53.jpg b/blocks/task4/maps/level1/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da43901bb0b5c0203c88ccdb53e93ac7c2135e04 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1b1af93d7a2baa0bab2f32f8632d30ab5a4ecceaffdb9aa5bfe4a024445503 +size 10872 diff --git a/blocks/task4/maps/level1/image_input/54.jpg b/blocks/task4/maps/level1/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5178388d4339eff11595b7740e519ba9079962c8 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:559c7f16cc1a78323871507e0446cf4d63eab4e48f5ed58e08540f77662b0db6 +size 10579 diff --git a/blocks/task4/maps/level1/image_input/55.jpg b/blocks/task4/maps/level1/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74ffb8db16366836adb8e3171f87612242b8e042 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c230c048ada2d29a5c64938d19f4ab657e2e7e9e9e5f0d3d5ff2e5ffec7a4f6 +size 10721 diff --git a/blocks/task4/maps/level1/image_input/56.jpg b/blocks/task4/maps/level1/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67746c3a5b1378e890b120ac6ac07f09cf46e4ae --- /dev/null +++ b/blocks/task4/maps/level1/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e51a2b29118ead00fa6feb810d43415d8f9d145c0f9686fde75d31b187690c +size 10904 diff --git a/blocks/task4/maps/level1/image_input/57.jpg b/blocks/task4/maps/level1/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c8819a850fdb3df7e787612d33caa31427d1205 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4065644649ed6fb33f08bb86fcde63f155f898ebf8fd0633ab3f4b2536f95520 +size 10229 diff --git a/blocks/task4/maps/level1/image_input/58.jpg b/blocks/task4/maps/level1/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74ffb8db16366836adb8e3171f87612242b8e042 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c230c048ada2d29a5c64938d19f4ab657e2e7e9e9e5f0d3d5ff2e5ffec7a4f6 +size 10721 diff --git a/blocks/task4/maps/level1/image_input/59.jpg b/blocks/task4/maps/level1/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7ae85e3ad2c4e588368433462e3e0c1927e3d28 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b0e37fc1edb4dd4194cd58b77a260939c41da7e64d9b9e213a245b53c90761 +size 10932 diff --git a/blocks/task4/maps/level1/image_input/6.jpg b/blocks/task4/maps/level1/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd8736312b7e6e69190b1a0d1870dd9d96f39470 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c25787314d647a3fea9faafe6dcd6bfaf21630f9cf424e114e2f3f21c13226 +size 10352 diff --git a/blocks/task4/maps/level1/image_input/60.jpg b/blocks/task4/maps/level1/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d1cc63f91503f760afc4ea0213be23f3abe9feb --- /dev/null +++ b/blocks/task4/maps/level1/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0a1cdfa1d73e478bcc409e0341eb8954d8cb37f732b5b0036636ca17c4cc86 +size 12388 diff --git a/blocks/task4/maps/level1/image_input/61.jpg b/blocks/task4/maps/level1/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..949d3d678824835308215853d8923a9fc538cb19 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f671724de6543ee6d806962d4cc6e0588af66cfb5b5e6a82d2bfa9eb3e69c65 +size 10893 diff --git a/blocks/task4/maps/level1/image_input/62.jpg b/blocks/task4/maps/level1/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67746c3a5b1378e890b120ac6ac07f09cf46e4ae --- /dev/null +++ b/blocks/task4/maps/level1/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e51a2b29118ead00fa6feb810d43415d8f9d145c0f9686fde75d31b187690c +size 10904 diff --git a/blocks/task4/maps/level1/image_input/63.jpg b/blocks/task4/maps/level1/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83219ce6e8e0f57ff001ec7067a59e186369edb3 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d83ca4cfd53b4927add1605998fc1f2575e3fa6605259c201da5e8156a2549a +size 11714 diff --git a/blocks/task4/maps/level1/image_input/64.jpg b/blocks/task4/maps/level1/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7ae85e3ad2c4e588368433462e3e0c1927e3d28 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b0e37fc1edb4dd4194cd58b77a260939c41da7e64d9b9e213a245b53c90761 +size 10932 diff --git a/blocks/task4/maps/level1/image_input/65.jpg b/blocks/task4/maps/level1/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a72c4758efae1ec67a015e1391bb274016881075 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7bd45583abf70d7579dddb06fe6b2399d79daa32b2fb5cf2455e9aa62954dd2 +size 11222 diff --git a/blocks/task4/maps/level1/image_input/66.jpg b/blocks/task4/maps/level1/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dff7bb36d0705ac4ee743dcf7dcb8fb3db0852f --- /dev/null +++ b/blocks/task4/maps/level1/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d412d8d0b5724cb9357766018d39d89be187c1c9815e4572793c5aaa3919e6f +size 10171 diff --git a/blocks/task4/maps/level1/image_input/67.jpg b/blocks/task4/maps/level1/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d1cc63f91503f760afc4ea0213be23f3abe9feb --- /dev/null +++ b/blocks/task4/maps/level1/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0a1cdfa1d73e478bcc409e0341eb8954d8cb37f732b5b0036636ca17c4cc86 +size 12388 diff --git a/blocks/task4/maps/level1/image_input/68.jpg b/blocks/task4/maps/level1/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..949d3d678824835308215853d8923a9fc538cb19 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f671724de6543ee6d806962d4cc6e0588af66cfb5b5e6a82d2bfa9eb3e69c65 +size 10893 diff --git a/blocks/task4/maps/level1/image_input/69.jpg b/blocks/task4/maps/level1/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83219ce6e8e0f57ff001ec7067a59e186369edb3 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d83ca4cfd53b4927add1605998fc1f2575e3fa6605259c201da5e8156a2549a +size 11714 diff --git a/blocks/task4/maps/level1/image_input/7.jpg b/blocks/task4/maps/level1/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61f27c79c5edc7f3212bec45e70036cb7d1d183e --- /dev/null +++ b/blocks/task4/maps/level1/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ab038263d8a505453b4163d3e1c1d7e60ac0887314e8c61692cc71312cb25c +size 10706 diff --git a/blocks/task4/maps/level1/image_input/70.jpg b/blocks/task4/maps/level1/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d2faf21de09d04d71079197d68edbfc61816d05 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38b1260973d3c8ddec6949cb5b5d38bb5f2b9d8b5aa032c8bc2faf07942f74d +size 11360 diff --git a/blocks/task4/maps/level1/image_input/71.jpg b/blocks/task4/maps/level1/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a72c4758efae1ec67a015e1391bb274016881075 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7bd45583abf70d7579dddb06fe6b2399d79daa32b2fb5cf2455e9aa62954dd2 +size 11222 diff --git a/blocks/task4/maps/level1/image_input/72.jpg b/blocks/task4/maps/level1/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26a9863c39ae0720b9148a69fce1644b3b46174e --- /dev/null +++ b/blocks/task4/maps/level1/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3a71d52c7a8562db7ab3e6822b53ed8414b005ae844408bbbd2ceef56699b1 +size 9900 diff --git a/blocks/task4/maps/level1/image_input/73.jpg b/blocks/task4/maps/level1/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c8cb321c8bc345851fc755afb06e717efb68306 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12fd54359e2b1d7be0a5ac133731e26c56b7063afc5dcf6de675e3a93d89a792 +size 11395 diff --git a/blocks/task4/maps/level1/image_input/74.jpg b/blocks/task4/maps/level1/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9eab56f371df845c6cc4483409e7fc12c22e698 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca74456b26ebb20f258180cd6489086dde6dcb85c3872179a332c7a5665b8963 +size 10794 diff --git a/blocks/task4/maps/level1/image_input/75.jpg b/blocks/task4/maps/level1/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dff7bb36d0705ac4ee743dcf7dcb8fb3db0852f --- /dev/null +++ b/blocks/task4/maps/level1/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d412d8d0b5724cb9357766018d39d89be187c1c9815e4572793c5aaa3919e6f +size 10171 diff --git a/blocks/task4/maps/level1/image_input/76.jpg b/blocks/task4/maps/level1/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..648701f410bd8abb32cbda80a54de09a56805676 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646f287d742517616e7a481e0ed3d52ebae162d5193aecaae67e4de1390884a2 +size 10485 diff --git a/blocks/task4/maps/level1/image_input/77.jpg b/blocks/task4/maps/level1/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d2faf21de09d04d71079197d68edbfc61816d05 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38b1260973d3c8ddec6949cb5b5d38bb5f2b9d8b5aa032c8bc2faf07942f74d +size 11360 diff --git a/blocks/task4/maps/level1/image_input/78.jpg b/blocks/task4/maps/level1/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76b5e767ee49767a087756a56da7f3b75c69c926 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed0ec0f30bc14ddadd9372397de7ec8f4a116866fcc0d63b61132797d86c318 +size 11015 diff --git a/blocks/task4/maps/level1/image_input/79.jpg b/blocks/task4/maps/level1/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26a9863c39ae0720b9148a69fce1644b3b46174e --- /dev/null +++ b/blocks/task4/maps/level1/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3a71d52c7a8562db7ab3e6822b53ed8414b005ae844408bbbd2ceef56699b1 +size 9900 diff --git a/blocks/task4/maps/level1/image_input/8.jpg b/blocks/task4/maps/level1/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2efa21fa5f71ef0f2d213c833ccf52fdd203351b --- /dev/null +++ b/blocks/task4/maps/level1/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42470cf4bb74d8aa031edb958b092a44c072ff96a7f5cd533fff769f9f1ec13e +size 11634 diff --git a/blocks/task4/maps/level1/image_input/80.jpg b/blocks/task4/maps/level1/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46c1c7a3451b30ce4bbbe75f1f72212a9bdd9385 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82cda29503dc633a2ebc5a95ebd513b39f0285c3e711f37f3600f8feabbf407 +size 9924 diff --git a/blocks/task4/maps/level1/image_input/81.jpg b/blocks/task4/maps/level1/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c8cb321c8bc345851fc755afb06e717efb68306 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12fd54359e2b1d7be0a5ac133731e26c56b7063afc5dcf6de675e3a93d89a792 +size 11395 diff --git a/blocks/task4/maps/level1/image_input/82.jpg b/blocks/task4/maps/level1/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9eab56f371df845c6cc4483409e7fc12c22e698 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca74456b26ebb20f258180cd6489086dde6dcb85c3872179a332c7a5665b8963 +size 10794 diff --git a/blocks/task4/maps/level1/image_input/83.jpg b/blocks/task4/maps/level1/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7ec952c1d42c6026f3d08ac305ca1dc9ff97e0b --- /dev/null +++ b/blocks/task4/maps/level1/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9915e8dc6833850ee083b2c8d436f4a205c9b905b516fa7349337dd93fe858a +size 10528 diff --git a/blocks/task4/maps/level1/image_input/84.jpg b/blocks/task4/maps/level1/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..648701f410bd8abb32cbda80a54de09a56805676 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646f287d742517616e7a481e0ed3d52ebae162d5193aecaae67e4de1390884a2 +size 10485 diff --git a/blocks/task4/maps/level1/image_input/85.jpg b/blocks/task4/maps/level1/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..955d37c1d4fe18aabc5240dc98b52c4940f33959 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185f66ea696a438cc1a14973e174ac489f04ee59d491aa077eed4e0276476335 +size 10877 diff --git a/blocks/task4/maps/level1/image_input/86.jpg b/blocks/task4/maps/level1/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76b5e767ee49767a087756a56da7f3b75c69c926 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed0ec0f30bc14ddadd9372397de7ec8f4a116866fcc0d63b61132797d86c318 +size 11015 diff --git a/blocks/task4/maps/level1/image_input/87.jpg b/blocks/task4/maps/level1/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4d657d56c7855c29699540bbe01a6a207ea9656 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df0410c3ded149310ecfca646ce64412ce0f96767e061ba714f12d68002bb05 +size 11201 diff --git a/blocks/task4/maps/level1/image_input/88.jpg b/blocks/task4/maps/level1/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46c1c7a3451b30ce4bbbe75f1f72212a9bdd9385 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82cda29503dc633a2ebc5a95ebd513b39f0285c3e711f37f3600f8feabbf407 +size 9924 diff --git a/blocks/task4/maps/level1/image_input/89.jpg b/blocks/task4/maps/level1/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7ec952c1d42c6026f3d08ac305ca1dc9ff97e0b --- /dev/null +++ b/blocks/task4/maps/level1/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9915e8dc6833850ee083b2c8d436f4a205c9b905b516fa7349337dd93fe858a +size 10528 diff --git a/blocks/task4/maps/level1/image_input/9.jpg b/blocks/task4/maps/level1/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..991d84a0f68726d3b4accd57628982a35e37e167 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5890d60ba28aea43f3da9b8a865970bbb4401c9fb608f5f429228efd0df425 +size 10881 diff --git a/blocks/task4/maps/level1/image_input/90.jpg b/blocks/task4/maps/level1/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..955d37c1d4fe18aabc5240dc98b52c4940f33959 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185f66ea696a438cc1a14973e174ac489f04ee59d491aa077eed4e0276476335 +size 10877 diff --git a/blocks/task4/maps/level1/image_input/91.jpg b/blocks/task4/maps/level1/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..489489141ef0ebff99630d3f27c3ab22971ffa8a --- /dev/null +++ b/blocks/task4/maps/level1/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855d56c4d39de43c8408aa8c273806e47ca18f4d5537e31213726d6a8e1a646e +size 10891 diff --git a/blocks/task4/maps/level1/image_input/92.jpg b/blocks/task4/maps/level1/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..570afc5aa3490ebbbcd591271097fa44457e0073 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7109649008c490768a54e97ac78435f6018e218ea11ac3c91141bd5957378552 +size 10880 diff --git a/blocks/task4/maps/level1/image_input/93.jpg b/blocks/task4/maps/level1/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4d657d56c7855c29699540bbe01a6a207ea9656 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df0410c3ded149310ecfca646ce64412ce0f96767e061ba714f12d68002bb05 +size 11201 diff --git a/blocks/task4/maps/level1/image_input/94.jpg b/blocks/task4/maps/level1/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..489489141ef0ebff99630d3f27c3ab22971ffa8a --- /dev/null +++ b/blocks/task4/maps/level1/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855d56c4d39de43c8408aa8c273806e47ca18f4d5537e31213726d6a8e1a646e +size 10891 diff --git a/blocks/task4/maps/level1/image_input/95.jpg b/blocks/task4/maps/level1/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..570afc5aa3490ebbbcd591271097fa44457e0073 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7109649008c490768a54e97ac78435f6018e218ea11ac3c91141bd5957378552 +size 10880 diff --git a/blocks/task4/maps/level1/image_input/96.jpg b/blocks/task4/maps/level1/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49142714e4810b277e5cf2925a69a6707932c41d --- /dev/null +++ b/blocks/task4/maps/level1/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aea5c58d6786e859958c8770734e4aae0a4eff14c8c5c0fc8fcf004d906fc3e +size 10923 diff --git a/blocks/task4/maps/level1/image_input/97.jpg b/blocks/task4/maps/level1/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49142714e4810b277e5cf2925a69a6707932c41d --- /dev/null +++ b/blocks/task4/maps/level1/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aea5c58d6786e859958c8770734e4aae0a4eff14c8c5c0fc8fcf004d906fc3e +size 10923 diff --git a/blocks/task4/maps/level1/image_input/98.jpg b/blocks/task4/maps/level1/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a9831e8ede56311d2a267c45ad02699d043b399 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b33bdca4845ab01b46346a56d1fa00be718e6aeca125ac495095a0b75635d83 +size 11691 diff --git a/blocks/task4/maps/level1/image_input/99.jpg b/blocks/task4/maps/level1/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a9831e8ede56311d2a267c45ad02699d043b399 --- /dev/null +++ b/blocks/task4/maps/level1/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b33bdca4845ab01b46346a56d1fa00be718e6aeca125ac495095a0b75635d83 +size 11691 diff --git a/blocks/task4/maps/level1/pure_text_rep_input/0.txt b/blocks/task4/maps/level1/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..31656b26dff3dccd49b460afa3a2005714993e5f --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/0.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/1.txt b/blocks/task4/maps/level1/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..31656b26dff3dccd49b460afa3a2005714993e5f --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/1.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/10.txt b/blocks/task4/maps/level1/pure_text_rep_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1a42482bfe661564b76e7093ff5fd16de43c442 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/10.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/11.txt b/blocks/task4/maps/level1/pure_text_rep_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc796a8fec09b0077143a82cc040cd754f5368f9 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/11.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/12.txt b/blocks/task4/maps/level1/pure_text_rep_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9f07dfd4930288535bb18ddfaf019de292c995c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/12.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block, red block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/13.txt b/blocks/task4/maps/level1/pure_text_rep_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ad3c0037634883187b4bb0456d46747b51fe7b --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/13.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/14.txt b/blocks/task4/maps/level1/pure_text_rep_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..a87350d4339def1eba32bd319b58ca96e7f297c6 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/14.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/15.txt b/blocks/task4/maps/level1/pure_text_rep_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc796a8fec09b0077143a82cc040cd754f5368f9 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/15.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/16.txt b/blocks/task4/maps/level1/pure_text_rep_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..09a1e82728c33723f444d3a5552050945e379d62 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/16.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block, yellow block, from bottom to top +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/17.txt b/blocks/task4/maps/level1/pure_text_rep_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..aff12b9dfa8b9a76e89b5b41666291adacc1b8c5 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/17.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/18.txt b/blocks/task4/maps/level1/pure_text_rep_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ad3c0037634883187b4bb0456d46747b51fe7b --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/18.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/19.txt b/blocks/task4/maps/level1/pure_text_rep_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e3557b086cfd88778ee42fdf28a8b36009e577c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/19.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/2.txt b/blocks/task4/maps/level1/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e40c13b09b33e5b5dd6a777a14190b9666450879 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/2.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/20.txt b/blocks/task4/maps/level1/pure_text_rep_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eba43c631823f1aa6daefee0dfd29a95bb1bd6e --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/20.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with orange block +- Stack with green block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/21.txt b/blocks/task4/maps/level1/pure_text_rep_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..a87350d4339def1eba32bd319b58ca96e7f297c6 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/21.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/22.txt b/blocks/task4/maps/level1/pure_text_rep_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..91f3b8b0f2c809307188793085631e7ce673ba9f --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/22.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/23.txt b/blocks/task4/maps/level1/pure_text_rep_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..09a1e82728c33723f444d3a5552050945e379d62 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/23.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block, yellow block, from bottom to top +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/24.txt b/blocks/task4/maps/level1/pure_text_rep_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bdc55a82027b66b37aaf27876173d703de1bdcd --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/24.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/25.txt b/blocks/task4/maps/level1/pure_text_rep_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..83e2d9db676f16dd6e3052db4e3b12edcacd58a6 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/25.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with purple block +- Stack with orange block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/26.txt b/blocks/task4/maps/level1/pure_text_rep_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..aff12b9dfa8b9a76e89b5b41666291adacc1b8c5 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/26.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/27.txt b/blocks/task4/maps/level1/pure_text_rep_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff9c10cd011cc9c8ff3c13a6b7cc334079883016 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/27.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with red block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/28.txt b/blocks/task4/maps/level1/pure_text_rep_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc412b7b8af07a59339fe182586fe055c726ff5b --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/28.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/29.txt b/blocks/task4/maps/level1/pure_text_rep_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f2a29d1f1b5085dfbb183ab45119b700396860f --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/29.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with red block +- Stack with yellow block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/3.txt b/blocks/task4/maps/level1/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4380163fe4bc032164067039f2db33b797f1c1de --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/3.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with red block +- Stack with green block +- Stack with orange block +- Stack with purple block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/30.txt b/blocks/task4/maps/level1/pure_text_rep_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e3557b086cfd88778ee42fdf28a8b36009e577c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/30.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/31.txt b/blocks/task4/maps/level1/pure_text_rep_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f53ead3fba3bd2dbe733933d8147edb972250acc --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/31.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block, yellow block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/32.txt b/blocks/task4/maps/level1/pure_text_rep_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eba43c631823f1aa6daefee0dfd29a95bb1bd6e --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/32.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with orange block +- Stack with green block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/33.txt b/blocks/task4/maps/level1/pure_text_rep_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..91f3b8b0f2c809307188793085631e7ce673ba9f --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/33.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/34.txt b/blocks/task4/maps/level1/pure_text_rep_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bdc55a82027b66b37aaf27876173d703de1bdcd --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/34.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/35.txt b/blocks/task4/maps/level1/pure_text_rep_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ae825ab8d4158d1b9f7c55d434246c968c86e31 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/35.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block +- Stack with green block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/36.txt b/blocks/task4/maps/level1/pure_text_rep_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..83e2d9db676f16dd6e3052db4e3b12edcacd58a6 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/36.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with purple block +- Stack with orange block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/37.txt b/blocks/task4/maps/level1/pure_text_rep_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff9c10cd011cc9c8ff3c13a6b7cc334079883016 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/37.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with red block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/38.txt b/blocks/task4/maps/level1/pure_text_rep_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bc78a78ad8fcbc2a13193c123093b94e3b62b93 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/38.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with purple block +- Stack with orange block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/39.txt b/blocks/task4/maps/level1/pure_text_rep_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc412b7b8af07a59339fe182586fe055c726ff5b --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/39.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/4.txt b/blocks/task4/maps/level1/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a99b97a7579f0c0679e9a08829b6bd223eb8217a --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/4.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/40.txt b/blocks/task4/maps/level1/pure_text_rep_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f2a29d1f1b5085dfbb183ab45119b700396860f --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/40.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with red block +- Stack with yellow block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/41.txt b/blocks/task4/maps/level1/pure_text_rep_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..f53ead3fba3bd2dbe733933d8147edb972250acc --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/41.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block, yellow block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/42.txt b/blocks/task4/maps/level1/pure_text_rep_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ae825ab8d4158d1b9f7c55d434246c968c86e31 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/42.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block +- Stack with green block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/43.txt b/blocks/task4/maps/level1/pure_text_rep_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..667078c13852d4bad4860425676fb05c58ca4eee --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/43.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with orange block +- Stack with blue block +- Stack with green block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/44.txt b/blocks/task4/maps/level1/pure_text_rep_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bc78a78ad8fcbc2a13193c123093b94e3b62b93 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/44.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with purple block +- Stack with orange block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/45.txt b/blocks/task4/maps/level1/pure_text_rep_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..667078c13852d4bad4860425676fb05c58ca4eee --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/45.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with orange block +- Stack with blue block +- Stack with green block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/46.txt b/blocks/task4/maps/level1/pure_text_rep_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dc6e3e95845e6db9afe72537f5e597394ad1b5c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/46.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/47.txt b/blocks/task4/maps/level1/pure_text_rep_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dc6e3e95845e6db9afe72537f5e597394ad1b5c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/47.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/48.txt b/blocks/task4/maps/level1/pure_text_rep_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..3acb3163ba87b07fbb52c563a9db821bbd83df35 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/48.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/49.txt b/blocks/task4/maps/level1/pure_text_rep_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a43ebaaba54658d2107a3ed3386aeec0faf0eaa --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/49.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block +- Stack with blue block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/5.txt b/blocks/task4/maps/level1/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1a42482bfe661564b76e7093ff5fd16de43c442 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/5.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/50.txt b/blocks/task4/maps/level1/pure_text_rep_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd7fb6add859c9222c0175c52ac4e750a9782889 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/50.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/51.txt b/blocks/task4/maps/level1/pure_text_rep_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..3acb3163ba87b07fbb52c563a9db821bbd83df35 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/51.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/52.txt b/blocks/task4/maps/level1/pure_text_rep_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7e3fe33b7f4ced453d5630c68efde596e005452 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/52.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block, red block, from bottom to top +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/53.txt b/blocks/task4/maps/level1/pure_text_rep_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a43ebaaba54658d2107a3ed3386aeec0faf0eaa --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/53.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block +- Stack with blue block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/54.txt b/blocks/task4/maps/level1/pure_text_rep_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd7fb6add859c9222c0175c52ac4e750a9782889 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/54.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/55.txt b/blocks/task4/maps/level1/pure_text_rep_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..04f776f5522ce4cbf27dbd7bee29a8091e04f5ed --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/55.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/56.txt b/blocks/task4/maps/level1/pure_text_rep_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4e70b7022bb8a3439c2b8384e7f94851d3a4d34 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/56.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/57.txt b/blocks/task4/maps/level1/pure_text_rep_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7e3fe33b7f4ced453d5630c68efde596e005452 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/57.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block, red block, from bottom to top +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/58.txt b/blocks/task4/maps/level1/pure_text_rep_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..04f776f5522ce4cbf27dbd7bee29a8091e04f5ed --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/58.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/59.txt b/blocks/task4/maps/level1/pure_text_rep_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fc4fe278f7569ab2424b64223b7b1c9bc765db5 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/59.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with orange block +- Stack with red block +- Stack with green block +- Stack with purple block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/6.txt b/blocks/task4/maps/level1/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9f07dfd4930288535bb18ddfaf019de292c995c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/6.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block, red block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/60.txt b/blocks/task4/maps/level1/pure_text_rep_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec882f127fa472eccd91637751cfa74c3cc4e5f8 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/60.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with orange block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/61.txt b/blocks/task4/maps/level1/pure_text_rep_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..e360ed2bf0888599cabf9c5a7af453bf487515c8 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/61.txt @@ -0,0 +1,2 @@ +- Stack with red block, blue block, from bottom to top +- Stack with yellow block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/62.txt b/blocks/task4/maps/level1/pure_text_rep_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4e70b7022bb8a3439c2b8384e7f94851d3a4d34 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/62.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with blue block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/63.txt b/blocks/task4/maps/level1/pure_text_rep_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d09a28a1abc506f41918d514f9261051f3ebaca --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/63.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block +- Stack with yellow block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/64.txt b/blocks/task4/maps/level1/pure_text_rep_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fc4fe278f7569ab2424b64223b7b1c9bc765db5 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/64.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with orange block +- Stack with red block +- Stack with green block +- Stack with purple block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/65.txt b/blocks/task4/maps/level1/pure_text_rep_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..017212cd7d7e9573a0076e24031e2918840b6b89 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/65.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/66.txt b/blocks/task4/maps/level1/pure_text_rep_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3e3d31ab701c8cee88d43ba36ba9d35a41683cb --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/66.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/67.txt b/blocks/task4/maps/level1/pure_text_rep_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec882f127fa472eccd91637751cfa74c3cc4e5f8 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/67.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with orange block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/68.txt b/blocks/task4/maps/level1/pure_text_rep_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..e360ed2bf0888599cabf9c5a7af453bf487515c8 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/68.txt @@ -0,0 +1,2 @@ +- Stack with red block, blue block, from bottom to top +- Stack with yellow block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/69.txt b/blocks/task4/maps/level1/pure_text_rep_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d09a28a1abc506f41918d514f9261051f3ebaca --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/69.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block +- Stack with yellow block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/7.txt b/blocks/task4/maps/level1/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..e40c13b09b33e5b5dd6a777a14190b9666450879 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/7.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/70.txt b/blocks/task4/maps/level1/pure_text_rep_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad38c8e7f525bda5b80ff40b2fd4e893e0e2010f --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/70.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with green block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/71.txt b/blocks/task4/maps/level1/pure_text_rep_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..017212cd7d7e9573a0076e24031e2918840b6b89 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/71.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/72.txt b/blocks/task4/maps/level1/pure_text_rep_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5a472e523d35a070865ad2ba884d9e6a8c9df9a --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/72.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with green block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/73.txt b/blocks/task4/maps/level1/pure_text_rep_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..5934d0c8561835de4cfe81694371007809b1aab7 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/73.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with orange block +- Stack with blue block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/74.txt b/blocks/task4/maps/level1/pure_text_rep_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..653c19263a8d78fd500c1664e17022ca02770208 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/74.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/75.txt b/blocks/task4/maps/level1/pure_text_rep_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3e3d31ab701c8cee88d43ba36ba9d35a41683cb --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/75.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/76.txt b/blocks/task4/maps/level1/pure_text_rep_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2204410da926c7e511437c5078d86de6825d84b --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/76.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, yellow block, from bottom to top +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/77.txt b/blocks/task4/maps/level1/pure_text_rep_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad38c8e7f525bda5b80ff40b2fd4e893e0e2010f --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/77.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with green block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/78.txt b/blocks/task4/maps/level1/pure_text_rep_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e10480ae619e9014f338cc9a943fa9f786b6211c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/78.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/79.txt b/blocks/task4/maps/level1/pure_text_rep_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5a472e523d35a070865ad2ba884d9e6a8c9df9a --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/79.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with green block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/8.txt b/blocks/task4/maps/level1/pure_text_rep_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..4380163fe4bc032164067039f2db33b797f1c1de --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/8.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with red block +- Stack with green block +- Stack with orange block +- Stack with purple block diff --git a/blocks/task4/maps/level1/pure_text_rep_input/80.txt b/blocks/task4/maps/level1/pure_text_rep_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c68d41639807ac4d28f0d3681ffc03a99758f3b6 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/80.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/81.txt b/blocks/task4/maps/level1/pure_text_rep_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..5934d0c8561835de4cfe81694371007809b1aab7 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/81.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with orange block +- Stack with blue block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/82.txt b/blocks/task4/maps/level1/pure_text_rep_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..653c19263a8d78fd500c1664e17022ca02770208 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/82.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/83.txt b/blocks/task4/maps/level1/pure_text_rep_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fb65aea41624990d6d25d8ea539f0b7557a5e88 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/83.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with yellow block +- Stack with orange block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/84.txt b/blocks/task4/maps/level1/pure_text_rep_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2204410da926c7e511437c5078d86de6825d84b --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/84.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, yellow block, from bottom to top +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/85.txt b/blocks/task4/maps/level1/pure_text_rep_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a237b5405a0876813aec0e5d81c3757c6a26314 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/85.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/86.txt b/blocks/task4/maps/level1/pure_text_rep_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..e10480ae619e9014f338cc9a943fa9f786b6211c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/86.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/87.txt b/blocks/task4/maps/level1/pure_text_rep_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..8915183ad9fdb6e764fe9a47fe9c83dba1cb443d --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/87.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/88.txt b/blocks/task4/maps/level1/pure_text_rep_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..c68d41639807ac4d28f0d3681ffc03a99758f3b6 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/88.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/89.txt b/blocks/task4/maps/level1/pure_text_rep_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fb65aea41624990d6d25d8ea539f0b7557a5e88 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/89.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with yellow block +- Stack with orange block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/9.txt b/blocks/task4/maps/level1/pure_text_rep_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a99b97a7579f0c0679e9a08829b6bd223eb8217a --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/9.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/90.txt b/blocks/task4/maps/level1/pure_text_rep_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a237b5405a0876813aec0e5d81c3757c6a26314 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/90.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/91.txt b/blocks/task4/maps/level1/pure_text_rep_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..71b657612b027d451f3cbf350b4bf803b4207593 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/91.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/92.txt b/blocks/task4/maps/level1/pure_text_rep_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ed04cfefe65af415416c0cfda5c9f7ebf64b0d9 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/92.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block, purple block, from bottom to top +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/93.txt b/blocks/task4/maps/level1/pure_text_rep_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..8915183ad9fdb6e764fe9a47fe9c83dba1cb443d --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/93.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/94.txt b/blocks/task4/maps/level1/pure_text_rep_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..71b657612b027d451f3cbf350b4bf803b4207593 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/94.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/95.txt b/blocks/task4/maps/level1/pure_text_rep_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ed04cfefe65af415416c0cfda5c9f7ebf64b0d9 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/95.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block, purple block, from bottom to top +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/96.txt b/blocks/task4/maps/level1/pure_text_rep_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..14253f431c70ea4882b545fcd532ad37585c3f02 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/96.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with red block +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/97.txt b/blocks/task4/maps/level1/pure_text_rep_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..14253f431c70ea4882b545fcd532ad37585c3f02 --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/97.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with red block +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/98.txt b/blocks/task4/maps/level1/pure_text_rep_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d68a23e00936ab5eb450f92159e0625aea1805c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/98.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/pure_text_rep_input/99.txt b/blocks/task4/maps/level1/pure_text_rep_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d68a23e00936ab5eb450f92159e0625aea1805c --- /dev/null +++ b/blocks/task4/maps/level1/pure_text_rep_input/99.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level1/table_rep_input/0.txt b/blocks/task4/maps/level1/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..27b5009f79ce904c0efc5651df6b81a7d9a4b023 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/0.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | purple | green | yellow | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/1.txt b/blocks/task4/maps/level1/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..27b5009f79ce904c0efc5651df6b81a7d9a4b023 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/1.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | purple | green | yellow | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/10.txt b/blocks/task4/maps/level1/table_rep_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..717eaa204050cae85601a3a2eed79ddfb0671cf8 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/10.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | purple | blue | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/11.txt b/blocks/task4/maps/level1/table_rep_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..64b20c2def659197f9b2a55fbb529f3b73a506b4 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/11.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | green | orange | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/12.txt b/blocks/task4/maps/level1/table_rep_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e2ea42d3ef64b24f48b11bb2f2b2266b014be37 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/12.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | orange | +Level 1 | blue | yellow | green | diff --git a/blocks/task4/maps/level1/table_rep_input/13.txt b/blocks/task4/maps/level1/table_rep_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..78992ab0f822d5b31b391c8f65ed60d32952cde2 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/13.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | green | orange | yellow | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/14.txt b/blocks/task4/maps/level1/table_rep_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f8809c7b057068655a7b70d2441ab87cd31908d --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/14.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | orange | +Level 1 | green | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/15.txt b/blocks/task4/maps/level1/table_rep_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..64b20c2def659197f9b2a55fbb529f3b73a506b4 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/15.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | green | orange | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/16.txt b/blocks/task4/maps/level1/table_rep_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..52891be505239da3d30908c89d6490ff4db733e3 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/16.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | red | +Level 1 | purple | green | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/17.txt b/blocks/task4/maps/level1/table_rep_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed5a7016efb52af1471d0376786913e0d1a61a99 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/17.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | red | green | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/18.txt b/blocks/task4/maps/level1/table_rep_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..78992ab0f822d5b31b391c8f65ed60d32952cde2 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/18.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | green | orange | yellow | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/19.txt b/blocks/task4/maps/level1/table_rep_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8b7fec884d0f6b510229a7ee542eb165f66115c --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/19.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | green | purple | yellow | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/2.txt b/blocks/task4/maps/level1/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..386be6cde43fee8955982c8d792cf465327217e9 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/2.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | green | blue | purple | red | diff --git a/blocks/task4/maps/level1/table_rep_input/20.txt b/blocks/task4/maps/level1/table_rep_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..34df0e3d41da2054063d9b9ed95451ecd8e6e5fe --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/20.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | purple | yellow | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/21.txt b/blocks/task4/maps/level1/table_rep_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f8809c7b057068655a7b70d2441ab87cd31908d --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/21.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | orange | +Level 1 | green | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/22.txt b/blocks/task4/maps/level1/table_rep_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5004007cd02364c10c7f64c6450e10e0f8e8e09 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/22.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | blue | green | red | diff --git a/blocks/task4/maps/level1/table_rep_input/23.txt b/blocks/task4/maps/level1/table_rep_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..52891be505239da3d30908c89d6490ff4db733e3 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/23.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | red | +Level 1 | purple | green | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/24.txt b/blocks/task4/maps/level1/table_rep_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce0fae97082319e6f4e09f70281fcfbdec2a43cf --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/24.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | blue | purple | orange | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/25.txt b/blocks/task4/maps/level1/table_rep_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..bff1410625b25b8062cda27e750d9f3595bb2d47 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/25.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | green | yellow | purple | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/26.txt b/blocks/task4/maps/level1/table_rep_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed5a7016efb52af1471d0376786913e0d1a61a99 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/26.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | red | green | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/27.txt b/blocks/task4/maps/level1/table_rep_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..693cc64b120e836e4f953b9c3e4da2e749b7e824 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/27.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | orange | yellow | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/28.txt b/blocks/task4/maps/level1/table_rep_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..221fc684281228fb9d7185ea3b06b392448b9bc3 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/28.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | orange | blue | green | diff --git a/blocks/task4/maps/level1/table_rep_input/29.txt b/blocks/task4/maps/level1/table_rep_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce813552ccd9bbafc0eff48a2551db44b29bac2c --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/29.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | purple | red | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/3.txt b/blocks/task4/maps/level1/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..c23af453a293325a4b49f6bf0c333627caab51c7 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/3.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | red | green | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/30.txt b/blocks/task4/maps/level1/table_rep_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8b7fec884d0f6b510229a7ee542eb165f66115c --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/30.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | green | purple | yellow | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/31.txt b/blocks/task4/maps/level1/table_rep_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7a5eee570b5e19586e22194fc0eb7a46fc6fc22 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/31.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | yellow | +Level 1 | red | purple | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/32.txt b/blocks/task4/maps/level1/table_rep_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..34df0e3d41da2054063d9b9ed95451ecd8e6e5fe --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/32.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | purple | yellow | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/33.txt b/blocks/task4/maps/level1/table_rep_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5004007cd02364c10c7f64c6450e10e0f8e8e09 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/33.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | blue | green | red | diff --git a/blocks/task4/maps/level1/table_rep_input/34.txt b/blocks/task4/maps/level1/table_rep_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce0fae97082319e6f4e09f70281fcfbdec2a43cf --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/34.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | blue | purple | orange | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/35.txt b/blocks/task4/maps/level1/table_rep_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..c820ae3a5777af46f5a1300af908a2d8e215c8ee --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/35.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | blue | +Level 1 | purple | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/36.txt b/blocks/task4/maps/level1/table_rep_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..bff1410625b25b8062cda27e750d9f3595bb2d47 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/36.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | green | yellow | purple | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/37.txt b/blocks/task4/maps/level1/table_rep_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..693cc64b120e836e4f953b9c3e4da2e749b7e824 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/37.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | orange | yellow | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/38.txt b/blocks/task4/maps/level1/table_rep_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c72c3e87e283116eebfb8aa205016cdeb75097d --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/38.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | red | purple | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/39.txt b/blocks/task4/maps/level1/table_rep_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..221fc684281228fb9d7185ea3b06b392448b9bc3 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/39.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | orange | blue | green | diff --git a/blocks/task4/maps/level1/table_rep_input/4.txt b/blocks/task4/maps/level1/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed013e46d4ebd690e15cc76e2f1b2bd197396650 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/4.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | blue | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/40.txt b/blocks/task4/maps/level1/table_rep_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce813552ccd9bbafc0eff48a2551db44b29bac2c --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/40.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | purple | red | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/41.txt b/blocks/task4/maps/level1/table_rep_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7a5eee570b5e19586e22194fc0eb7a46fc6fc22 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/41.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | yellow | +Level 1 | red | purple | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/42.txt b/blocks/task4/maps/level1/table_rep_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..c820ae3a5777af46f5a1300af908a2d8e215c8ee --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/42.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | blue | +Level 1 | purple | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/43.txt b/blocks/task4/maps/level1/table_rep_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..06cd7ed763c56292214441288c261a363bd4ae86 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/43.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | red | orange | blue | green | diff --git a/blocks/task4/maps/level1/table_rep_input/44.txt b/blocks/task4/maps/level1/table_rep_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c72c3e87e283116eebfb8aa205016cdeb75097d --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/44.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | red | purple | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/45.txt b/blocks/task4/maps/level1/table_rep_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..06cd7ed763c56292214441288c261a363bd4ae86 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/45.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | red | orange | blue | green | diff --git a/blocks/task4/maps/level1/table_rep_input/46.txt b/blocks/task4/maps/level1/table_rep_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..b898251f1af31fca14a3308a58863f61814a3bf4 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/46.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | orange | yellow | red | diff --git a/blocks/task4/maps/level1/table_rep_input/47.txt b/blocks/task4/maps/level1/table_rep_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..b898251f1af31fca14a3308a58863f61814a3bf4 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/47.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | orange | yellow | red | diff --git a/blocks/task4/maps/level1/table_rep_input/48.txt b/blocks/task4/maps/level1/table_rep_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d05a47d4177b221004ac643840498f5fbfd4757 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/48.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | red | +Level 1 | blue | yellow | green | diff --git a/blocks/task4/maps/level1/table_rep_input/49.txt b/blocks/task4/maps/level1/table_rep_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..ded62149249f34b2cb9e008df1c2105bf5d279fb --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/49.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | green | +Level 1 | purple | orange | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/5.txt b/blocks/task4/maps/level1/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..717eaa204050cae85601a3a2eed79ddfb0671cf8 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/5.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | purple | blue | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/50.txt b/blocks/task4/maps/level1/table_rep_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..b36df3122dd1a49a778a59a15a65fa05aebcb5e1 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/50.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | blue | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/51.txt b/blocks/task4/maps/level1/table_rep_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d05a47d4177b221004ac643840498f5fbfd4757 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/51.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | red | +Level 1 | blue | yellow | green | diff --git a/blocks/task4/maps/level1/table_rep_input/52.txt b/blocks/task4/maps/level1/table_rep_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f747add0ef57612b2ca83bae893ec2332f1d12b --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/52.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | green | +Level 1 | blue | yellow | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/53.txt b/blocks/task4/maps/level1/table_rep_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ded62149249f34b2cb9e008df1c2105bf5d279fb --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/53.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | green | +Level 1 | purple | orange | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/54.txt b/blocks/task4/maps/level1/table_rep_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..b36df3122dd1a49a778a59a15a65fa05aebcb5e1 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/54.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | blue | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/55.txt b/blocks/task4/maps/level1/table_rep_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..d54f7ec8687ab6b535ed52125502b62a173ccc80 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/55.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | purple | red | green | diff --git a/blocks/task4/maps/level1/table_rep_input/56.txt b/blocks/task4/maps/level1/table_rep_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b4b44075ec0f1428c88d67a64ff8cf63074cc92 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/56.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | purple | yellow | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/57.txt b/blocks/task4/maps/level1/table_rep_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f747add0ef57612b2ca83bae893ec2332f1d12b --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/57.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | green | +Level 1 | blue | yellow | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/58.txt b/blocks/task4/maps/level1/table_rep_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..d54f7ec8687ab6b535ed52125502b62a173ccc80 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/58.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | purple | red | green | diff --git a/blocks/task4/maps/level1/table_rep_input/59.txt b/blocks/task4/maps/level1/table_rep_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebd0351e45225af1f90a82821abdc1c167a97b70 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/59.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | orange | red | green | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/6.txt b/blocks/task4/maps/level1/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e2ea42d3ef64b24f48b11bb2f2b2266b014be37 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/6.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | orange | +Level 1 | blue | yellow | green | diff --git a/blocks/task4/maps/level1/table_rep_input/60.txt b/blocks/task4/maps/level1/table_rep_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..db30bb4b187846032c8113144a95a90ade017faa --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/60.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | yellow | green | red | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/61.txt b/blocks/task4/maps/level1/table_rep_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..eab82451b901f65f2bf46cf5d7844fa286a656b9 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/61.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | purple | +Level 1 | red | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/62.txt b/blocks/task4/maps/level1/table_rep_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b4b44075ec0f1428c88d67a64ff8cf63074cc92 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/62.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | purple | yellow | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/63.txt b/blocks/task4/maps/level1/table_rep_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d4d66b6f034cd6554828328e9fad2e72744ffb4 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/63.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | red | purple | green | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/64.txt b/blocks/task4/maps/level1/table_rep_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebd0351e45225af1f90a82821abdc1c167a97b70 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/64.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | orange | red | green | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/65.txt b/blocks/task4/maps/level1/table_rep_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2c845c2a78e17007ad3b398ae3e768b66c1f30d --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/65.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | red | yellow | purple | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/66.txt b/blocks/task4/maps/level1/table_rep_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..958615a71ead2673d5fcef55eeacf3b4703f9d9e --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/66.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | green | purple | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/67.txt b/blocks/task4/maps/level1/table_rep_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..db30bb4b187846032c8113144a95a90ade017faa --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/67.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | yellow | green | red | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/68.txt b/blocks/task4/maps/level1/table_rep_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..eab82451b901f65f2bf46cf5d7844fa286a656b9 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/68.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | purple | +Level 1 | red | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/69.txt b/blocks/task4/maps/level1/table_rep_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d4d66b6f034cd6554828328e9fad2e72744ffb4 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/69.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | red | purple | green | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/7.txt b/blocks/task4/maps/level1/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..386be6cde43fee8955982c8d792cf465327217e9 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/7.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | green | blue | purple | red | diff --git a/blocks/task4/maps/level1/table_rep_input/70.txt b/blocks/task4/maps/level1/table_rep_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..03734f71025b4f54f6d164fcb84fef0e8772f5c2 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/70.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | blue | red | green | diff --git a/blocks/task4/maps/level1/table_rep_input/71.txt b/blocks/task4/maps/level1/table_rep_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2c845c2a78e17007ad3b398ae3e768b66c1f30d --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/71.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | red | yellow | purple | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/72.txt b/blocks/task4/maps/level1/table_rep_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..307260f0b775da253640326adae6ee0665af070f --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/72.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | red | blue | purple | green | diff --git a/blocks/task4/maps/level1/table_rep_input/73.txt b/blocks/task4/maps/level1/table_rep_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..feab4306f3cbb6b79a3e0776c688bbac07a2e3e4 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/73.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | orange | blue | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/74.txt b/blocks/task4/maps/level1/table_rep_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2978d1eb253b554417bc9c120601527b4c2b1c5 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/74.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | yellow | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/75.txt b/blocks/task4/maps/level1/table_rep_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..958615a71ead2673d5fcef55eeacf3b4703f9d9e --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/75.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | green | purple | orange | diff --git a/blocks/task4/maps/level1/table_rep_input/76.txt b/blocks/task4/maps/level1/table_rep_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c559ce3d1943b01ba9c65e831dfe20b3e47dc7f --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/76.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | orange | +Level 1 | green | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/77.txt b/blocks/task4/maps/level1/table_rep_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..03734f71025b4f54f6d164fcb84fef0e8772f5c2 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/77.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | blue | red | green | diff --git a/blocks/task4/maps/level1/table_rep_input/78.txt b/blocks/task4/maps/level1/table_rep_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..964ca44af90af6a953a59cfd5eecf83122bfda16 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/78.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | purple | yellow | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/79.txt b/blocks/task4/maps/level1/table_rep_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..307260f0b775da253640326adae6ee0665af070f --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/79.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | red | blue | purple | green | diff --git a/blocks/task4/maps/level1/table_rep_input/8.txt b/blocks/task4/maps/level1/table_rep_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..c23af453a293325a4b49f6bf0c333627caab51c7 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/8.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | red | green | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/80.txt b/blocks/task4/maps/level1/table_rep_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..276846b203208c7375f67591b6b69606f6814992 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/80.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | yellow | green | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/81.txt b/blocks/task4/maps/level1/table_rep_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..feab4306f3cbb6b79a3e0776c688bbac07a2e3e4 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/81.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | orange | blue | yellow | diff --git a/blocks/task4/maps/level1/table_rep_input/82.txt b/blocks/task4/maps/level1/table_rep_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2978d1eb253b554417bc9c120601527b4c2b1c5 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/82.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | yellow | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/83.txt b/blocks/task4/maps/level1/table_rep_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..5312309088860192ff535c1d6c36c3ce68aa7c6b --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/83.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | yellow | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/84.txt b/blocks/task4/maps/level1/table_rep_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c559ce3d1943b01ba9c65e831dfe20b3e47dc7f --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/84.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | orange | +Level 1 | green | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/85.txt b/blocks/task4/maps/level1/table_rep_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..9966d58aa838fb853ac704e0e5520f9c00368db2 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/85.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | green | purple | blue | red | diff --git a/blocks/task4/maps/level1/table_rep_input/86.txt b/blocks/task4/maps/level1/table_rep_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..964ca44af90af6a953a59cfd5eecf83122bfda16 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/86.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | purple | yellow | red | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/87.txt b/blocks/task4/maps/level1/table_rep_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..9318753f0c0a64597399d95e7e223e71e17eb24f --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/87.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | orange | yellow | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/88.txt b/blocks/task4/maps/level1/table_rep_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..276846b203208c7375f67591b6b69606f6814992 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/88.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | yellow | green | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/89.txt b/blocks/task4/maps/level1/table_rep_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..5312309088860192ff535c1d6c36c3ce68aa7c6b --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/89.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | yellow | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/9.txt b/blocks/task4/maps/level1/table_rep_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed013e46d4ebd690e15cc76e2f1b2bd197396650 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/9.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | blue | orange | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/90.txt b/blocks/task4/maps/level1/table_rep_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..9966d58aa838fb853ac704e0e5520f9c00368db2 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/90.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | green | purple | blue | red | diff --git a/blocks/task4/maps/level1/table_rep_input/91.txt b/blocks/task4/maps/level1/table_rep_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..45879c6a885a2408f8cc40599453962868bd50b1 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/91.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | yellow | orange | green | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/92.txt b/blocks/task4/maps/level1/table_rep_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..97fda7aadbcc65605404978cf7ed7e8a044f655c --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/92.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | yellow | +Level 1 | red | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/93.txt b/blocks/task4/maps/level1/table_rep_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..9318753f0c0a64597399d95e7e223e71e17eb24f --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/93.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | orange | yellow | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/94.txt b/blocks/task4/maps/level1/table_rep_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..45879c6a885a2408f8cc40599453962868bd50b1 --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/94.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | yellow | orange | green | blue | diff --git a/blocks/task4/maps/level1/table_rep_input/95.txt b/blocks/task4/maps/level1/table_rep_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..97fda7aadbcc65605404978cf7ed7e8a044f655c --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/95.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | yellow | +Level 1 | red | orange | green | diff --git a/blocks/task4/maps/level1/table_rep_input/96.txt b/blocks/task4/maps/level1/table_rep_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..d31750a8ad24dcafd49d8726f3c47e813cb3cbdb --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/96.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | green | red | blue | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/97.txt b/blocks/task4/maps/level1/table_rep_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..d31750a8ad24dcafd49d8726f3c47e813cb3cbdb --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/97.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | green | red | blue | purple | diff --git a/blocks/task4/maps/level1/table_rep_input/98.txt b/blocks/task4/maps/level1/table_rep_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..641943c1cf4d8a6dbcc3c5734c1a240faec9e30b --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/98.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | blue | purple | green | diff --git a/blocks/task4/maps/level1/table_rep_input/99.txt b/blocks/task4/maps/level1/table_rep_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..641943c1cf4d8a6dbcc3c5734c1a240faec9e30b --- /dev/null +++ b/blocks/task4/maps/level1/table_rep_input/99.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | blue | purple | green | diff --git a/blocks/task4/maps/level1/text_input/0.txt b/blocks/task4/maps/level1/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..23b334af461e2c6779449ca3e5a4b39bb9bec56f --- /dev/null +++ b/blocks/task4/maps/level1/text_input/0.txt @@ -0,0 +1 @@ +1. move(yellow,purple) diff --git a/blocks/task4/maps/level1/text_input/1.txt b/blocks/task4/maps/level1/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f340c8014eb9389e1611ae8b74832950ac21401f --- /dev/null +++ b/blocks/task4/maps/level1/text_input/1.txt @@ -0,0 +1 @@ +1. move(green,red) diff --git a/blocks/task4/maps/level1/text_input/10.txt b/blocks/task4/maps/level1/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6fe4696c17afb78f1166876dd71d30bdd6f1382 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/10.txt @@ -0,0 +1 @@ +1. move(orange,purple) diff --git a/blocks/task4/maps/level1/text_input/11.txt b/blocks/task4/maps/level1/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/11.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/12.txt b/blocks/task4/maps/level1/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..97e8a3f49b4e4f96369d7eb2197ffed11cd9e293 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/12.txt @@ -0,0 +1 @@ +1. move(blue,green) diff --git a/blocks/task4/maps/level1/text_input/13.txt b/blocks/task4/maps/level1/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..0789f0b2e2ae4b4f8f0975580272f5e9c3e2a224 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/13.txt @@ -0,0 +1 @@ +1. move(orange,yellow) diff --git a/blocks/task4/maps/level1/text_input/14.txt b/blocks/task4/maps/level1/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f52ad5575ea60caf916e7c1d34f7b18e32fd7a4 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/14.txt @@ -0,0 +1 @@ +1. move(purple,table) diff --git a/blocks/task4/maps/level1/text_input/15.txt b/blocks/task4/maps/level1/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..97e8a3f49b4e4f96369d7eb2197ffed11cd9e293 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/15.txt @@ -0,0 +1 @@ +1. move(blue,green) diff --git a/blocks/task4/maps/level1/text_input/16.txt b/blocks/task4/maps/level1/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c0fdbc8124d39df012e53606eb9862cbf327af0 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/16.txt @@ -0,0 +1 @@ +1. move(yellow,red) diff --git a/blocks/task4/maps/level1/text_input/17.txt b/blocks/task4/maps/level1/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..97e8a3f49b4e4f96369d7eb2197ffed11cd9e293 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/17.txt @@ -0,0 +1 @@ +1. move(blue,green) diff --git a/blocks/task4/maps/level1/text_input/18.txt b/blocks/task4/maps/level1/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..8758359916bd21ae4cbaed905fd23e819a99a4cb --- /dev/null +++ b/blocks/task4/maps/level1/text_input/18.txt @@ -0,0 +1 @@ +1. move(blue,red) diff --git a/blocks/task4/maps/level1/text_input/19.txt b/blocks/task4/maps/level1/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..11b6470a36d898fbb12c4c2e21cddb41d3ba6101 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/19.txt @@ -0,0 +1 @@ +1. move(purple,green) diff --git a/blocks/task4/maps/level1/text_input/2.txt b/blocks/task4/maps/level1/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d856c5cbf1c7fa697354440e80404fa1ff9763a8 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/2.txt @@ -0,0 +1 @@ +1. move(yellow,table) diff --git a/blocks/task4/maps/level1/text_input/20.txt b/blocks/task4/maps/level1/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..059e2e6828998149de88225028aa37a344d9cb53 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/20.txt @@ -0,0 +1 @@ +1. move(yellow,blue) diff --git a/blocks/task4/maps/level1/text_input/21.txt b/blocks/task4/maps/level1/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b3da7aa5098efa47e3e4d38b5a15f193bacee7c --- /dev/null +++ b/blocks/task4/maps/level1/text_input/21.txt @@ -0,0 +1 @@ +1. move(green,yellow) diff --git a/blocks/task4/maps/level1/text_input/22.txt b/blocks/task4/maps/level1/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..d856c5cbf1c7fa697354440e80404fa1ff9763a8 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/22.txt @@ -0,0 +1 @@ +1. move(yellow,table) diff --git a/blocks/task4/maps/level1/text_input/23.txt b/blocks/task4/maps/level1/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0789f0b2e2ae4b4f8f0975580272f5e9c3e2a224 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/23.txt @@ -0,0 +1 @@ +1. move(orange,yellow) diff --git a/blocks/task4/maps/level1/text_input/24.txt b/blocks/task4/maps/level1/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a1aebf534f5fe8b8ce2c370822d1023d6d55516 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/24.txt @@ -0,0 +1 @@ +1. move(purple,blue) diff --git a/blocks/task4/maps/level1/text_input/25.txt b/blocks/task4/maps/level1/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..a80334b76a2f68b41b8e8f0315d9c346c7dee23d --- /dev/null +++ b/blocks/task4/maps/level1/text_input/25.txt @@ -0,0 +1 @@ +1. move(yellow,green) diff --git a/blocks/task4/maps/level1/text_input/26.txt b/blocks/task4/maps/level1/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c0fdbc8124d39df012e53606eb9862cbf327af0 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/26.txt @@ -0,0 +1 @@ +1. move(yellow,red) diff --git a/blocks/task4/maps/level1/text_input/27.txt b/blocks/task4/maps/level1/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..f06b994b26c106ed2109daa4fe5c47e16239b24f --- /dev/null +++ b/blocks/task4/maps/level1/text_input/27.txt @@ -0,0 +1 @@ +1. move(red,yellow) diff --git a/blocks/task4/maps/level1/text_input/28.txt b/blocks/task4/maps/level1/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/28.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/29.txt b/blocks/task4/maps/level1/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a1aebf534f5fe8b8ce2c370822d1023d6d55516 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/29.txt @@ -0,0 +1 @@ +1. move(purple,blue) diff --git a/blocks/task4/maps/level1/text_input/3.txt b/blocks/task4/maps/level1/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e12bacf4b4f6dfd9ae73beec10a837b9416341ad --- /dev/null +++ b/blocks/task4/maps/level1/text_input/3.txt @@ -0,0 +1 @@ +1. move(blue,purple) diff --git a/blocks/task4/maps/level1/text_input/30.txt b/blocks/task4/maps/level1/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/30.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/31.txt b/blocks/task4/maps/level1/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6fe4696c17afb78f1166876dd71d30bdd6f1382 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/31.txt @@ -0,0 +1 @@ +1. move(orange,purple) diff --git a/blocks/task4/maps/level1/text_input/32.txt b/blocks/task4/maps/level1/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..19c94945f7701628ca7445bd817f5c4951855e8d --- /dev/null +++ b/blocks/task4/maps/level1/text_input/32.txt @@ -0,0 +1 @@ +1. move(purple,red) diff --git a/blocks/task4/maps/level1/text_input/33.txt b/blocks/task4/maps/level1/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f52ad5575ea60caf916e7c1d34f7b18e32fd7a4 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/33.txt @@ -0,0 +1 @@ +1. move(purple,table) diff --git a/blocks/task4/maps/level1/text_input/34.txt b/blocks/task4/maps/level1/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..97e8a3f49b4e4f96369d7eb2197ffed11cd9e293 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/34.txt @@ -0,0 +1 @@ +1. move(blue,green) diff --git a/blocks/task4/maps/level1/text_input/35.txt b/blocks/task4/maps/level1/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb7d4567f45e59ea8c52c3483d52736c0365bfb0 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/35.txt @@ -0,0 +1 @@ +1. move(purple,orange) diff --git a/blocks/task4/maps/level1/text_input/36.txt b/blocks/task4/maps/level1/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..97e8a3f49b4e4f96369d7eb2197ffed11cd9e293 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/36.txt @@ -0,0 +1 @@ +1. move(blue,green) diff --git a/blocks/task4/maps/level1/text_input/37.txt b/blocks/task4/maps/level1/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..19c94945f7701628ca7445bd817f5c4951855e8d --- /dev/null +++ b/blocks/task4/maps/level1/text_input/37.txt @@ -0,0 +1 @@ +1. move(purple,red) diff --git a/blocks/task4/maps/level1/text_input/38.txt b/blocks/task4/maps/level1/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..72fe0f295b97390c445cd76023c694ed9e46155a --- /dev/null +++ b/blocks/task4/maps/level1/text_input/38.txt @@ -0,0 +1 @@ +1. move(blue,table) diff --git a/blocks/task4/maps/level1/text_input/39.txt b/blocks/task4/maps/level1/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d239779af928513790f3441b2d253deff5ae27e --- /dev/null +++ b/blocks/task4/maps/level1/text_input/39.txt @@ -0,0 +1 @@ +1. move(green,table) diff --git a/blocks/task4/maps/level1/text_input/4.txt b/blocks/task4/maps/level1/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5a270ca73f853de9952a82db606928e3499da7d --- /dev/null +++ b/blocks/task4/maps/level1/text_input/4.txt @@ -0,0 +1 @@ +1. move(red,orange) diff --git a/blocks/task4/maps/level1/text_input/40.txt b/blocks/task4/maps/level1/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..21b3b1e9353708bad88d8e9d7ff3d1f770075029 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/40.txt @@ -0,0 +1 @@ +1. move(orange,blue) diff --git a/blocks/task4/maps/level1/text_input/41.txt b/blocks/task4/maps/level1/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..11b6470a36d898fbb12c4c2e21cddb41d3ba6101 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/41.txt @@ -0,0 +1 @@ +1. move(purple,green) diff --git a/blocks/task4/maps/level1/text_input/42.txt b/blocks/task4/maps/level1/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..e12bacf4b4f6dfd9ae73beec10a837b9416341ad --- /dev/null +++ b/blocks/task4/maps/level1/text_input/42.txt @@ -0,0 +1 @@ +1. move(blue,purple) diff --git a/blocks/task4/maps/level1/text_input/43.txt b/blocks/task4/maps/level1/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..8265c1aa15d70562e32a72106c3da2e3ac6a9f37 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/43.txt @@ -0,0 +1 @@ +1. move(orange,green) diff --git a/blocks/task4/maps/level1/text_input/44.txt b/blocks/task4/maps/level1/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..d856c5cbf1c7fa697354440e80404fa1ff9763a8 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/44.txt @@ -0,0 +1 @@ +1. move(yellow,table) diff --git a/blocks/task4/maps/level1/text_input/45.txt b/blocks/task4/maps/level1/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..d856c5cbf1c7fa697354440e80404fa1ff9763a8 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/45.txt @@ -0,0 +1 @@ +1. move(yellow,table) diff --git a/blocks/task4/maps/level1/text_input/46.txt b/blocks/task4/maps/level1/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..1043c5cb94562822ea20ad8ed8e4f80c8973f800 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/46.txt @@ -0,0 +1 @@ +1. move(green,blue) diff --git a/blocks/task4/maps/level1/text_input/47.txt b/blocks/task4/maps/level1/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5a270ca73f853de9952a82db606928e3499da7d --- /dev/null +++ b/blocks/task4/maps/level1/text_input/47.txt @@ -0,0 +1 @@ +1. move(red,orange) diff --git a/blocks/task4/maps/level1/text_input/48.txt b/blocks/task4/maps/level1/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d07b21ded4a620f8f922437b8ae8b40720ebe6b --- /dev/null +++ b/blocks/task4/maps/level1/text_input/48.txt @@ -0,0 +1 @@ +1. move(blue,orange) diff --git a/blocks/task4/maps/level1/text_input/49.txt b/blocks/task4/maps/level1/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..77fc5aede6b56d029f0a68bca7e0ab200bf601f8 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/49.txt @@ -0,0 +1 @@ +1. move(green,purple) diff --git a/blocks/task4/maps/level1/text_input/5.txt b/blocks/task4/maps/level1/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/5.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/50.txt b/blocks/task4/maps/level1/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..73223095c8f909d988db3a20d705ec511db22b39 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/50.txt @@ -0,0 +1 @@ +1. move(purple,yellow) diff --git a/blocks/task4/maps/level1/text_input/51.txt b/blocks/task4/maps/level1/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a1aebf534f5fe8b8ce2c370822d1023d6d55516 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/51.txt @@ -0,0 +1 @@ +1. move(purple,blue) diff --git a/blocks/task4/maps/level1/text_input/52.txt b/blocks/task4/maps/level1/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f52ad5575ea60caf916e7c1d34f7b18e32fd7a4 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/52.txt @@ -0,0 +1 @@ +1. move(purple,table) diff --git a/blocks/task4/maps/level1/text_input/53.txt b/blocks/task4/maps/level1/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0aabd25ae0b902650b5d3a71543472a654235f7 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/53.txt @@ -0,0 +1 @@ +1. move(red,purple) diff --git a/blocks/task4/maps/level1/text_input/54.txt b/blocks/task4/maps/level1/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/54.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/55.txt b/blocks/task4/maps/level1/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..76c29e06a2b05fbd52996d44e89891427c9709de --- /dev/null +++ b/blocks/task4/maps/level1/text_input/55.txt @@ -0,0 +1 @@ +1. move(blue,yellow) diff --git a/blocks/task4/maps/level1/text_input/56.txt b/blocks/task4/maps/level1/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d239779af928513790f3441b2d253deff5ae27e --- /dev/null +++ b/blocks/task4/maps/level1/text_input/56.txt @@ -0,0 +1 @@ +1. move(green,table) diff --git a/blocks/task4/maps/level1/text_input/57.txt b/blocks/task4/maps/level1/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/57.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/58.txt b/blocks/task4/maps/level1/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..72fe0f295b97390c445cd76023c694ed9e46155a --- /dev/null +++ b/blocks/task4/maps/level1/text_input/58.txt @@ -0,0 +1 @@ +1. move(blue,table) diff --git a/blocks/task4/maps/level1/text_input/59.txt b/blocks/task4/maps/level1/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4942bb3b37f149aea79e6ba8f31c06a94fdba2f --- /dev/null +++ b/blocks/task4/maps/level1/text_input/59.txt @@ -0,0 +1 @@ +1. move(red,blue) diff --git a/blocks/task4/maps/level1/text_input/6.txt b/blocks/task4/maps/level1/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/6.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/60.txt b/blocks/task4/maps/level1/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..23b334af461e2c6779449ca3e5a4b39bb9bec56f --- /dev/null +++ b/blocks/task4/maps/level1/text_input/60.txt @@ -0,0 +1 @@ +1. move(yellow,purple) diff --git a/blocks/task4/maps/level1/text_input/61.txt b/blocks/task4/maps/level1/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..76c29e06a2b05fbd52996d44e89891427c9709de --- /dev/null +++ b/blocks/task4/maps/level1/text_input/61.txt @@ -0,0 +1 @@ +1. move(blue,yellow) diff --git a/blocks/task4/maps/level1/text_input/62.txt b/blocks/task4/maps/level1/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..76c29e06a2b05fbd52996d44e89891427c9709de --- /dev/null +++ b/blocks/task4/maps/level1/text_input/62.txt @@ -0,0 +1 @@ +1. move(blue,yellow) diff --git a/blocks/task4/maps/level1/text_input/63.txt b/blocks/task4/maps/level1/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..21b3b1e9353708bad88d8e9d7ff3d1f770075029 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/63.txt @@ -0,0 +1 @@ +1. move(orange,blue) diff --git a/blocks/task4/maps/level1/text_input/64.txt b/blocks/task4/maps/level1/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..19c94945f7701628ca7445bd817f5c4951855e8d --- /dev/null +++ b/blocks/task4/maps/level1/text_input/64.txt @@ -0,0 +1 @@ +1. move(purple,red) diff --git a/blocks/task4/maps/level1/text_input/65.txt b/blocks/task4/maps/level1/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6fe4696c17afb78f1166876dd71d30bdd6f1382 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/65.txt @@ -0,0 +1 @@ +1. move(orange,purple) diff --git a/blocks/task4/maps/level1/text_input/66.txt b/blocks/task4/maps/level1/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..f06b994b26c106ed2109daa4fe5c47e16239b24f --- /dev/null +++ b/blocks/task4/maps/level1/text_input/66.txt @@ -0,0 +1 @@ +1. move(red,yellow) diff --git a/blocks/task4/maps/level1/text_input/67.txt b/blocks/task4/maps/level1/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..21b3b1e9353708bad88d8e9d7ff3d1f770075029 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/67.txt @@ -0,0 +1 @@ +1. move(orange,blue) diff --git a/blocks/task4/maps/level1/text_input/68.txt b/blocks/task4/maps/level1/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..61107116f691e55131e7288cf9ce03d391ed6c15 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/68.txt @@ -0,0 +1 @@ +1. move(orange,table) diff --git a/blocks/task4/maps/level1/text_input/69.txt b/blocks/task4/maps/level1/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a1aebf534f5fe8b8ce2c370822d1023d6d55516 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/69.txt @@ -0,0 +1 @@ +1. move(purple,blue) diff --git a/blocks/task4/maps/level1/text_input/7.txt b/blocks/task4/maps/level1/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed9151ebf27a3c8f37d6bd6727e1ef8a7b6344c4 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/7.txt @@ -0,0 +1 @@ +1. move(green,orange) diff --git a/blocks/task4/maps/level1/text_input/70.txt b/blocks/task4/maps/level1/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..8265c1aa15d70562e32a72106c3da2e3ac6a9f37 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/70.txt @@ -0,0 +1 @@ +1. move(orange,green) diff --git a/blocks/task4/maps/level1/text_input/71.txt b/blocks/task4/maps/level1/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..72fe0f295b97390c445cd76023c694ed9e46155a --- /dev/null +++ b/blocks/task4/maps/level1/text_input/71.txt @@ -0,0 +1 @@ +1. move(blue,table) diff --git a/blocks/task4/maps/level1/text_input/72.txt b/blocks/task4/maps/level1/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..a80334b76a2f68b41b8e8f0315d9c346c7dee23d --- /dev/null +++ b/blocks/task4/maps/level1/text_input/72.txt @@ -0,0 +1 @@ +1. move(yellow,green) diff --git a/blocks/task4/maps/level1/text_input/73.txt b/blocks/task4/maps/level1/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..d856c5cbf1c7fa697354440e80404fa1ff9763a8 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/73.txt @@ -0,0 +1 @@ +1. move(yellow,table) diff --git a/blocks/task4/maps/level1/text_input/74.txt b/blocks/task4/maps/level1/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f52ad5575ea60caf916e7c1d34f7b18e32fd7a4 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/74.txt @@ -0,0 +1 @@ +1. move(purple,table) diff --git a/blocks/task4/maps/level1/text_input/75.txt b/blocks/task4/maps/level1/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/75.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/76.txt b/blocks/task4/maps/level1/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..11b6470a36d898fbb12c4c2e21cddb41d3ba6101 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/76.txt @@ -0,0 +1 @@ +1. move(purple,green) diff --git a/blocks/task4/maps/level1/text_input/77.txt b/blocks/task4/maps/level1/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a1aebf534f5fe8b8ce2c370822d1023d6d55516 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/77.txt @@ -0,0 +1 @@ +1. move(purple,blue) diff --git a/blocks/task4/maps/level1/text_input/78.txt b/blocks/task4/maps/level1/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e12bacf4b4f6dfd9ae73beec10a837b9416341ad --- /dev/null +++ b/blocks/task4/maps/level1/text_input/78.txt @@ -0,0 +1 @@ +1. move(blue,purple) diff --git a/blocks/task4/maps/level1/text_input/79.txt b/blocks/task4/maps/level1/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a1aebf534f5fe8b8ce2c370822d1023d6d55516 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/79.txt @@ -0,0 +1 @@ +1. move(purple,blue) diff --git a/blocks/task4/maps/level1/text_input/8.txt b/blocks/task4/maps/level1/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..059e2e6828998149de88225028aa37a344d9cb53 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/8.txt @@ -0,0 +1 @@ +1. move(yellow,blue) diff --git a/blocks/task4/maps/level1/text_input/80.txt b/blocks/task4/maps/level1/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f52ad5575ea60caf916e7c1d34f7b18e32fd7a4 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/80.txt @@ -0,0 +1 @@ +1. move(purple,table) diff --git a/blocks/task4/maps/level1/text_input/81.txt b/blocks/task4/maps/level1/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/81.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/82.txt b/blocks/task4/maps/level1/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5a270ca73f853de9952a82db606928e3499da7d --- /dev/null +++ b/blocks/task4/maps/level1/text_input/82.txt @@ -0,0 +1 @@ +1. move(red,orange) diff --git a/blocks/task4/maps/level1/text_input/83.txt b/blocks/task4/maps/level1/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed9151ebf27a3c8f37d6bd6727e1ef8a7b6344c4 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/83.txt @@ -0,0 +1 @@ +1. move(green,orange) diff --git a/blocks/task4/maps/level1/text_input/84.txt b/blocks/task4/maps/level1/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cceadea283c75322263215f77e38c06f1ccd88a --- /dev/null +++ b/blocks/task4/maps/level1/text_input/84.txt @@ -0,0 +1 @@ +1. move(yellow,orange) diff --git a/blocks/task4/maps/level1/text_input/85.txt b/blocks/task4/maps/level1/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/85.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task4/maps/level1/text_input/86.txt b/blocks/task4/maps/level1/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0aabd25ae0b902650b5d3a71543472a654235f7 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/86.txt @@ -0,0 +1 @@ +1. move(red,purple) diff --git a/blocks/task4/maps/level1/text_input/87.txt b/blocks/task4/maps/level1/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..11b6470a36d898fbb12c4c2e21cddb41d3ba6101 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/87.txt @@ -0,0 +1 @@ +1. move(purple,green) diff --git a/blocks/task4/maps/level1/text_input/88.txt b/blocks/task4/maps/level1/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..72fe0f295b97390c445cd76023c694ed9e46155a --- /dev/null +++ b/blocks/task4/maps/level1/text_input/88.txt @@ -0,0 +1 @@ +1. move(blue,table) diff --git a/blocks/task4/maps/level1/text_input/89.txt b/blocks/task4/maps/level1/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4942bb3b37f149aea79e6ba8f31c06a94fdba2f --- /dev/null +++ b/blocks/task4/maps/level1/text_input/89.txt @@ -0,0 +1 @@ +1. move(red,blue) diff --git a/blocks/task4/maps/level1/text_input/9.txt b/blocks/task4/maps/level1/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb7d4567f45e59ea8c52c3483d52736c0365bfb0 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/9.txt @@ -0,0 +1 @@ +1. move(purple,orange) diff --git a/blocks/task4/maps/level1/text_input/90.txt b/blocks/task4/maps/level1/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..a80334b76a2f68b41b8e8f0315d9c346c7dee23d --- /dev/null +++ b/blocks/task4/maps/level1/text_input/90.txt @@ -0,0 +1 @@ +1. move(yellow,green) diff --git a/blocks/task4/maps/level1/text_input/91.txt b/blocks/task4/maps/level1/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..72fe0f295b97390c445cd76023c694ed9e46155a --- /dev/null +++ b/blocks/task4/maps/level1/text_input/91.txt @@ -0,0 +1 @@ +1. move(blue,table) diff --git a/blocks/task4/maps/level1/text_input/92.txt b/blocks/task4/maps/level1/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..f340c8014eb9389e1611ae8b74832950ac21401f --- /dev/null +++ b/blocks/task4/maps/level1/text_input/92.txt @@ -0,0 +1 @@ +1. move(green,red) diff --git a/blocks/task4/maps/level1/text_input/93.txt b/blocks/task4/maps/level1/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..72fe0f295b97390c445cd76023c694ed9e46155a --- /dev/null +++ b/blocks/task4/maps/level1/text_input/93.txt @@ -0,0 +1 @@ +1. move(blue,table) diff --git a/blocks/task4/maps/level1/text_input/94.txt b/blocks/task4/maps/level1/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f52ad5575ea60caf916e7c1d34f7b18e32fd7a4 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/94.txt @@ -0,0 +1 @@ +1. move(purple,table) diff --git a/blocks/task4/maps/level1/text_input/95.txt b/blocks/task4/maps/level1/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..d856c5cbf1c7fa697354440e80404fa1ff9763a8 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/95.txt @@ -0,0 +1 @@ +1. move(yellow,table) diff --git a/blocks/task4/maps/level1/text_input/96.txt b/blocks/task4/maps/level1/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a1aebf534f5fe8b8ce2c370822d1023d6d55516 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/96.txt @@ -0,0 +1 @@ +1. move(purple,blue) diff --git a/blocks/task4/maps/level1/text_input/97.txt b/blocks/task4/maps/level1/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..d856c5cbf1c7fa697354440e80404fa1ff9763a8 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/97.txt @@ -0,0 +1 @@ +1. move(yellow,table) diff --git a/blocks/task4/maps/level1/text_input/98.txt b/blocks/task4/maps/level1/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d239779af928513790f3441b2d253deff5ae27e --- /dev/null +++ b/blocks/task4/maps/level1/text_input/98.txt @@ -0,0 +1 @@ +1. move(green,table) diff --git a/blocks/task4/maps/level1/text_input/99.txt b/blocks/task4/maps/level1/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..d856c5cbf1c7fa697354440e80404fa1ff9763a8 --- /dev/null +++ b/blocks/task4/maps/level1/text_input/99.txt @@ -0,0 +1 @@ +1. move(yellow,table) diff --git a/blocks/task4/maps/level3/annotation.txt b/blocks/task4/maps/level3/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0868cf4b6239f5f70eb858094d449a7c12bd4d9 --- /dev/null +++ b/blocks/task4/maps/level3/annotation.txt @@ -0,0 +1,50 @@ +0 +4 +5 +6 +7 +8 +10 +15 +16 +19 +20 +23 +24 +25 +26 +27 +29 +30 +31 +33 +37 +39 +40 +41 +42 +48 +51 +53 +56 +61 +64 +65 +66 +67 +69 +72 +74 +76 +77 +78 +79 +81 +84 +85 +90 +91 +92 +94 +95 +99 diff --git a/blocks/task4/maps/level3/image_input/0.jpg b/blocks/task4/maps/level3/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3205dc059aa9bd7b58b0dbe190fb057f51eeff9c --- /dev/null +++ b/blocks/task4/maps/level3/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b46910374389cbec5be78866b1b9009ec57860d057788abfb133be408847b0 +size 10905 diff --git a/blocks/task4/maps/level3/image_input/1.jpg b/blocks/task4/maps/level3/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3205dc059aa9bd7b58b0dbe190fb057f51eeff9c --- /dev/null +++ b/blocks/task4/maps/level3/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b46910374389cbec5be78866b1b9009ec57860d057788abfb133be408847b0 +size 10905 diff --git a/blocks/task4/maps/level3/image_input/10.jpg b/blocks/task4/maps/level3/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d829fb5aea23f599737a5db41e6e816e3949299f --- /dev/null +++ b/blocks/task4/maps/level3/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbbfa3627fa637385ef1c9c3967bc3534b4b7890092a762936c6d54a9885d68c +size 10758 diff --git a/blocks/task4/maps/level3/image_input/11.jpg b/blocks/task4/maps/level3/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..697867330a461163a8f8398c592c8b73a0223be9 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627ec3b2ee7c943970d517f15afb632811dcd9ad7349881d3ff7a862618226c +size 10138 diff --git a/blocks/task4/maps/level3/image_input/12.jpg b/blocks/task4/maps/level3/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c813530a83fb1c27c654b9909b213635ac7cf240 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a2f3cd5e33ee425ac72b9cb2d350200e4ac2aab1ad4fe1c96b815699fae474 +size 10261 diff --git a/blocks/task4/maps/level3/image_input/13.jpg b/blocks/task4/maps/level3/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d829fb5aea23f599737a5db41e6e816e3949299f --- /dev/null +++ b/blocks/task4/maps/level3/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbbfa3627fa637385ef1c9c3967bc3534b4b7890092a762936c6d54a9885d68c +size 10758 diff --git a/blocks/task4/maps/level3/image_input/14.jpg b/blocks/task4/maps/level3/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0417a237de3a02362d8dbc75bbde6ffc925e4dcf --- /dev/null +++ b/blocks/task4/maps/level3/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8f35ff1b5d85beae9702c936a262afa999fef73dc8961630afc0e33d8d46b68 +size 11133 diff --git a/blocks/task4/maps/level3/image_input/15.jpg b/blocks/task4/maps/level3/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0417a237de3a02362d8dbc75bbde6ffc925e4dcf --- /dev/null +++ b/blocks/task4/maps/level3/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8f35ff1b5d85beae9702c936a262afa999fef73dc8961630afc0e33d8d46b68 +size 11133 diff --git a/blocks/task4/maps/level3/image_input/16.jpg b/blocks/task4/maps/level3/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d10905aaeef2d99c0f66beb2cb126d872b593b03 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe362ed649f41d4b042e61076c02c488bee15a0cb233c6789020931d974251bd +size 9779 diff --git a/blocks/task4/maps/level3/image_input/17.jpg b/blocks/task4/maps/level3/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d10905aaeef2d99c0f66beb2cb126d872b593b03 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe362ed649f41d4b042e61076c02c488bee15a0cb233c6789020931d974251bd +size 9779 diff --git a/blocks/task4/maps/level3/image_input/18.jpg b/blocks/task4/maps/level3/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..556865fe75042cadc4003cde11f2eaa0ad193714 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f247715d61f6e9baf6ce0969bcd1d9e3b1dd420d0e66ab080d9a3f29f87f5d1a +size 10945 diff --git a/blocks/task4/maps/level3/image_input/19.jpg b/blocks/task4/maps/level3/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..556865fe75042cadc4003cde11f2eaa0ad193714 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f247715d61f6e9baf6ce0969bcd1d9e3b1dd420d0e66ab080d9a3f29f87f5d1a +size 10945 diff --git a/blocks/task4/maps/level3/image_input/2.jpg b/blocks/task4/maps/level3/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77697423bd57d5108b96868f650c6cd2f12b4efa --- /dev/null +++ b/blocks/task4/maps/level3/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:586247da5a44264fe747c80d2a535f55d5a10d387e42cfa7788168f70e77c068 +size 11845 diff --git a/blocks/task4/maps/level3/image_input/20.jpg b/blocks/task4/maps/level3/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e192c264cc0126cb4939ec6a42e71243ea55a47d --- /dev/null +++ b/blocks/task4/maps/level3/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde9206b2108c50184d9ee2dcef20930c28d1e6b7366b392f7a809bdf118ccec +size 10944 diff --git a/blocks/task4/maps/level3/image_input/21.jpg b/blocks/task4/maps/level3/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e192c264cc0126cb4939ec6a42e71243ea55a47d --- /dev/null +++ b/blocks/task4/maps/level3/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde9206b2108c50184d9ee2dcef20930c28d1e6b7366b392f7a809bdf118ccec +size 10944 diff --git a/blocks/task4/maps/level3/image_input/22.jpg b/blocks/task4/maps/level3/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17ec746223c9d5d73778c493b6308baad7775d08 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df797b2aa67f20234589a5d14184caedc987175b292ed095b51dde5b8c7f3ce6 +size 10560 diff --git a/blocks/task4/maps/level3/image_input/23.jpg b/blocks/task4/maps/level3/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17ec746223c9d5d73778c493b6308baad7775d08 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df797b2aa67f20234589a5d14184caedc987175b292ed095b51dde5b8c7f3ce6 +size 10560 diff --git a/blocks/task4/maps/level3/image_input/24.jpg b/blocks/task4/maps/level3/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ca904a426f7c0f1927c5fdee9c046f3c9d8d420 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b125d9f06051a8ff534d5bcbef9bfb9607818f60c102ae509dd69a3bbe7ec81 +size 11555 diff --git a/blocks/task4/maps/level3/image_input/25.jpg b/blocks/task4/maps/level3/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14bb87b17c6947aae6ddd5c306ea0914bdcface7 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1aa9b1fff01b59bac4d10799d6958fb2c76ac6274712c9a091c3e7d80b9522 +size 10684 diff --git a/blocks/task4/maps/level3/image_input/26.jpg b/blocks/task4/maps/level3/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3987d5d82fb7a4f257efbdf49dae046cbc04fac7 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a887a372a35450783da4b4330b9501f0159fc4ceffa1ed633233b88f3540ba0 +size 11883 diff --git a/blocks/task4/maps/level3/image_input/27.jpg b/blocks/task4/maps/level3/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07add98d86e343b21db31961de5f0e15c443e736 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6f03e44b78a941b05f8369cbe7280c34dc388f78c181e0e66c850060fe4a6d +size 10178 diff --git a/blocks/task4/maps/level3/image_input/28.jpg b/blocks/task4/maps/level3/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ca904a426f7c0f1927c5fdee9c046f3c9d8d420 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b125d9f06051a8ff534d5bcbef9bfb9607818f60c102ae509dd69a3bbe7ec81 +size 11555 diff --git a/blocks/task4/maps/level3/image_input/29.jpg b/blocks/task4/maps/level3/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eeb2b6afbec3fadb142b37197f17fe059a63b168 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce4f54d45ddd4772a4df2ef93db3ab8da7100a26bde1c533556b3162cfc17558 +size 11057 diff --git a/blocks/task4/maps/level3/image_input/3.jpg b/blocks/task4/maps/level3/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8384ee4d334524c30ebae088949b8a06c60a5247 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4d03005dce66f51d2e9f0f0c2c235cd220bbd057315a2fae3b30b2b68dbc17 +size 11289 diff --git a/blocks/task4/maps/level3/image_input/30.jpg b/blocks/task4/maps/level3/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37854a873d4eb5ebc254e41b3d17a8667fc8a0f1 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6363ad829eea862a37728408f68c7cbcbc3d441c4da02591878264044d070e +size 11197 diff --git a/blocks/task4/maps/level3/image_input/31.jpg b/blocks/task4/maps/level3/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02d60120df04b781faa3316a4544b37843a2a7eb --- /dev/null +++ b/blocks/task4/maps/level3/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c5011cb74beea025dbfb6571de4036d69afc64fbc796eb11f62fe91e330e14 +size 9963 diff --git a/blocks/task4/maps/level3/image_input/32.jpg b/blocks/task4/maps/level3/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14bb87b17c6947aae6ddd5c306ea0914bdcface7 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1aa9b1fff01b59bac4d10799d6958fb2c76ac6274712c9a091c3e7d80b9522 +size 10684 diff --git a/blocks/task4/maps/level3/image_input/33.jpg b/blocks/task4/maps/level3/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5def92ef6ed9389ac8eaa8b5e999db5111a0d2f6 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a880ed361dea4b991b3f9d08881d41e01af618741046a61c2b2df2879d964555 +size 10745 diff --git a/blocks/task4/maps/level3/image_input/34.jpg b/blocks/task4/maps/level3/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3987d5d82fb7a4f257efbdf49dae046cbc04fac7 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a887a372a35450783da4b4330b9501f0159fc4ceffa1ed633233b88f3540ba0 +size 11883 diff --git a/blocks/task4/maps/level3/image_input/35.jpg b/blocks/task4/maps/level3/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07add98d86e343b21db31961de5f0e15c443e736 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6f03e44b78a941b05f8369cbe7280c34dc388f78c181e0e66c850060fe4a6d +size 10178 diff --git a/blocks/task4/maps/level3/image_input/36.jpg b/blocks/task4/maps/level3/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eeb2b6afbec3fadb142b37197f17fe059a63b168 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce4f54d45ddd4772a4df2ef93db3ab8da7100a26bde1c533556b3162cfc17558 +size 11057 diff --git a/blocks/task4/maps/level3/image_input/37.jpg b/blocks/task4/maps/level3/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f2815fc7df1c6816d64ee06b10997f837c674d6 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35bb0ac45764bb3be06e86ec56f44cce579cb6967752969aeabaa602d66989d3 +size 11743 diff --git a/blocks/task4/maps/level3/image_input/38.jpg b/blocks/task4/maps/level3/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37854a873d4eb5ebc254e41b3d17a8667fc8a0f1 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6363ad829eea862a37728408f68c7cbcbc3d441c4da02591878264044d070e +size 11197 diff --git a/blocks/task4/maps/level3/image_input/39.jpg b/blocks/task4/maps/level3/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce4e2e0803e264ee3afaa316cc94d831a1e05b6c --- /dev/null +++ b/blocks/task4/maps/level3/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b50f86af5624042619ee40c4d79ba0754fdd1cdca26a553212e7df291dac30 +size 10780 diff --git a/blocks/task4/maps/level3/image_input/4.jpg b/blocks/task4/maps/level3/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77697423bd57d5108b96868f650c6cd2f12b4efa --- /dev/null +++ b/blocks/task4/maps/level3/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:586247da5a44264fe747c80d2a535f55d5a10d387e42cfa7788168f70e77c068 +size 11845 diff --git a/blocks/task4/maps/level3/image_input/40.jpg b/blocks/task4/maps/level3/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0f4a1bc9d8865e1fc0dea85ead88de65bff7257 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8d361d7e58c17bd5661fe5e3d90bf00d77e2fdc59ff98a2ccfb3741276d0ae +size 9994 diff --git a/blocks/task4/maps/level3/image_input/41.jpg b/blocks/task4/maps/level3/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dbaa65e8ddf4e6b5f98f630ad64736345ac28fc --- /dev/null +++ b/blocks/task4/maps/level3/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08668a9a45f6ee28a97f268e9d24a1ee4e5e07314c740f378cdf881ca4beb3ec +size 12071 diff --git a/blocks/task4/maps/level3/image_input/42.jpg b/blocks/task4/maps/level3/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3aff4af2714a6ac9e61c6340911fc61d5b5fd24 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93a454775b6b94a85f474bbfcff394ef39e502854973eb81eefbca55b34ba73 +size 11359 diff --git a/blocks/task4/maps/level3/image_input/43.jpg b/blocks/task4/maps/level3/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02d60120df04b781faa3316a4544b37843a2a7eb --- /dev/null +++ b/blocks/task4/maps/level3/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c5011cb74beea025dbfb6571de4036d69afc64fbc796eb11f62fe91e330e14 +size 9963 diff --git a/blocks/task4/maps/level3/image_input/44.jpg b/blocks/task4/maps/level3/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5def92ef6ed9389ac8eaa8b5e999db5111a0d2f6 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a880ed361dea4b991b3f9d08881d41e01af618741046a61c2b2df2879d964555 +size 10745 diff --git a/blocks/task4/maps/level3/image_input/45.jpg b/blocks/task4/maps/level3/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f2815fc7df1c6816d64ee06b10997f837c674d6 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35bb0ac45764bb3be06e86ec56f44cce579cb6967752969aeabaa602d66989d3 +size 11743 diff --git a/blocks/task4/maps/level3/image_input/46.jpg b/blocks/task4/maps/level3/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce4e2e0803e264ee3afaa316cc94d831a1e05b6c --- /dev/null +++ b/blocks/task4/maps/level3/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b50f86af5624042619ee40c4d79ba0754fdd1cdca26a553212e7df291dac30 +size 10780 diff --git a/blocks/task4/maps/level3/image_input/47.jpg b/blocks/task4/maps/level3/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0f4a1bc9d8865e1fc0dea85ead88de65bff7257 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8d361d7e58c17bd5661fe5e3d90bf00d77e2fdc59ff98a2ccfb3741276d0ae +size 9994 diff --git a/blocks/task4/maps/level3/image_input/48.jpg b/blocks/task4/maps/level3/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e4fe4565747bb181721278d06f7ab31cbb5e491 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b450bdc8d177f5a4c59b98e44bf37f73f1c178337b7a10cc89c0443cacc3aa +size 11479 diff --git a/blocks/task4/maps/level3/image_input/49.jpg b/blocks/task4/maps/level3/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dbaa65e8ddf4e6b5f98f630ad64736345ac28fc --- /dev/null +++ b/blocks/task4/maps/level3/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08668a9a45f6ee28a97f268e9d24a1ee4e5e07314c740f378cdf881ca4beb3ec +size 12071 diff --git a/blocks/task4/maps/level3/image_input/5.jpg b/blocks/task4/maps/level3/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8384ee4d334524c30ebae088949b8a06c60a5247 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4d03005dce66f51d2e9f0f0c2c235cd220bbd057315a2fae3b30b2b68dbc17 +size 11289 diff --git a/blocks/task4/maps/level3/image_input/50.jpg b/blocks/task4/maps/level3/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3aff4af2714a6ac9e61c6340911fc61d5b5fd24 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93a454775b6b94a85f474bbfcff394ef39e502854973eb81eefbca55b34ba73 +size 11359 diff --git a/blocks/task4/maps/level3/image_input/51.jpg b/blocks/task4/maps/level3/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a6267ebd82916c4bb9d2d84a3a651cf2a69b25f --- /dev/null +++ b/blocks/task4/maps/level3/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a9a145eca2b4c7d53eb1c89bc056dc5b8af1537d3da2baf61988366432a128b +size 12400 diff --git a/blocks/task4/maps/level3/image_input/52.jpg b/blocks/task4/maps/level3/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e4fe4565747bb181721278d06f7ab31cbb5e491 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b450bdc8d177f5a4c59b98e44bf37f73f1c178337b7a10cc89c0443cacc3aa +size 11479 diff --git a/blocks/task4/maps/level3/image_input/53.jpg b/blocks/task4/maps/level3/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c727944bc3962bc610da96e8d10958a9cdeb00f --- /dev/null +++ b/blocks/task4/maps/level3/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beaadf1eac4dde8bf15dc064113622dedaf9814568616663291990461932b7ca +size 10871 diff --git a/blocks/task4/maps/level3/image_input/54.jpg b/blocks/task4/maps/level3/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a6267ebd82916c4bb9d2d84a3a651cf2a69b25f --- /dev/null +++ b/blocks/task4/maps/level3/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a9a145eca2b4c7d53eb1c89bc056dc5b8af1537d3da2baf61988366432a128b +size 12400 diff --git a/blocks/task4/maps/level3/image_input/55.jpg b/blocks/task4/maps/level3/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c727944bc3962bc610da96e8d10958a9cdeb00f --- /dev/null +++ b/blocks/task4/maps/level3/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beaadf1eac4dde8bf15dc064113622dedaf9814568616663291990461932b7ca +size 10871 diff --git a/blocks/task4/maps/level3/image_input/56.jpg b/blocks/task4/maps/level3/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b74b2f073bd98b90ed6b85c5df69bb94c98f90f3 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04db31851b522e59ddbbabd56a0c958f7f72ae997d4845b2538f84edb2cc0568 +size 9871 diff --git a/blocks/task4/maps/level3/image_input/57.jpg b/blocks/task4/maps/level3/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b74b2f073bd98b90ed6b85c5df69bb94c98f90f3 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04db31851b522e59ddbbabd56a0c958f7f72ae997d4845b2538f84edb2cc0568 +size 9871 diff --git a/blocks/task4/maps/level3/image_input/58.jpg b/blocks/task4/maps/level3/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d731b96def1cc3e79dbbdc3553f78ed508cb89cd --- /dev/null +++ b/blocks/task4/maps/level3/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f468ed66c66baca8ad1991d7ebf967e1d36b947e4cd0d7c229580c0bfcf22c78 +size 11634 diff --git a/blocks/task4/maps/level3/image_input/59.jpg b/blocks/task4/maps/level3/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0e831491e3290cbd8d8ec123321745f8b4f5227 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e649bff0addbacb34109342a73c7f390923868dcbbe0307b75b5b8c8a83545de +size 12125 diff --git a/blocks/task4/maps/level3/image_input/6.jpg b/blocks/task4/maps/level3/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..789e7b6499fef7fc311f71a752b695cbb9e5e757 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbd0f7a84851325dbe51b947df97690064a8794b8bed52f530cd33a67645a4f +size 11675 diff --git a/blocks/task4/maps/level3/image_input/60.jpg b/blocks/task4/maps/level3/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33b9abba144a43ed72b8a58f2dd7b0fffb8eaaf7 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d017dbd2192b9a836d4f8f9f9c31c3a443f8d2af98c43bd52b5e7db7552dcb +size 11143 diff --git a/blocks/task4/maps/level3/image_input/61.jpg b/blocks/task4/maps/level3/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d731b96def1cc3e79dbbdc3553f78ed508cb89cd --- /dev/null +++ b/blocks/task4/maps/level3/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f468ed66c66baca8ad1991d7ebf967e1d36b947e4cd0d7c229580c0bfcf22c78 +size 11634 diff --git a/blocks/task4/maps/level3/image_input/62.jpg b/blocks/task4/maps/level3/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03f6cdb726711cb4b67fcba90a7c92819fe41d2e --- /dev/null +++ b/blocks/task4/maps/level3/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9b2ce957224bfdcdd0753a7fc7e7d63157bc296ce3cab71c42a018be25a7a9 +size 10892 diff --git a/blocks/task4/maps/level3/image_input/63.jpg b/blocks/task4/maps/level3/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d79ca9c638c2da57832c815c2fb2b325676f4d76 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c836932ae1b7b555cbcd21c50cb279146abb7a921c282ffbe623718d2a1798 +size 9786 diff --git a/blocks/task4/maps/level3/image_input/64.jpg b/blocks/task4/maps/level3/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0e831491e3290cbd8d8ec123321745f8b4f5227 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e649bff0addbacb34109342a73c7f390923868dcbbe0307b75b5b8c8a83545de +size 12125 diff --git a/blocks/task4/maps/level3/image_input/65.jpg b/blocks/task4/maps/level3/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33b9abba144a43ed72b8a58f2dd7b0fffb8eaaf7 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d017dbd2192b9a836d4f8f9f9c31c3a443f8d2af98c43bd52b5e7db7552dcb +size 11143 diff --git a/blocks/task4/maps/level3/image_input/66.jpg b/blocks/task4/maps/level3/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03f6cdb726711cb4b67fcba90a7c92819fe41d2e --- /dev/null +++ b/blocks/task4/maps/level3/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9b2ce957224bfdcdd0753a7fc7e7d63157bc296ce3cab71c42a018be25a7a9 +size 10892 diff --git a/blocks/task4/maps/level3/image_input/67.jpg b/blocks/task4/maps/level3/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d79ca9c638c2da57832c815c2fb2b325676f4d76 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c836932ae1b7b555cbcd21c50cb279146abb7a921c282ffbe623718d2a1798 +size 9786 diff --git a/blocks/task4/maps/level3/image_input/68.jpg b/blocks/task4/maps/level3/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d09b1d821a8aeea75bcd2ecd7a44f761f9d25c7 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2b6c36400616c02425ebdec1c3610058f1f8393bfa19e406b5e60adcbbd5f1 +size 10737 diff --git a/blocks/task4/maps/level3/image_input/69.jpg b/blocks/task4/maps/level3/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d09b1d821a8aeea75bcd2ecd7a44f761f9d25c7 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2b6c36400616c02425ebdec1c3610058f1f8393bfa19e406b5e60adcbbd5f1 +size 10737 diff --git a/blocks/task4/maps/level3/image_input/7.jpg b/blocks/task4/maps/level3/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..697867330a461163a8f8398c592c8b73a0223be9 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627ec3b2ee7c943970d517f15afb632811dcd9ad7349881d3ff7a862618226c +size 10138 diff --git a/blocks/task4/maps/level3/image_input/70.jpg b/blocks/task4/maps/level3/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..388b3e1c0c3e60ee4380dd28e1168abf7e4e4e05 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f753ec127d6414af848a8d19143e571a5b1266028d6c921de8da8509e6566acb +size 10308 diff --git a/blocks/task4/maps/level3/image_input/71.jpg b/blocks/task4/maps/level3/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ef160de905f5deccaca6f67975e4cb645ece536 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e93083d94a262929526ba18acefb733ee904230b00730c4710a50373ccf4caa +size 10641 diff --git a/blocks/task4/maps/level3/image_input/72.jpg b/blocks/task4/maps/level3/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..388b3e1c0c3e60ee4380dd28e1168abf7e4e4e05 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f753ec127d6414af848a8d19143e571a5b1266028d6c921de8da8509e6566acb +size 10308 diff --git a/blocks/task4/maps/level3/image_input/73.jpg b/blocks/task4/maps/level3/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ae1a9691811d5bb5f0a0b1d99ea721cc82ceb4e --- /dev/null +++ b/blocks/task4/maps/level3/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a28deca7f77a3cc6f975e6ef4d156a4f14fe2ab8145b590ee84cd20523130e +size 11316 diff --git a/blocks/task4/maps/level3/image_input/74.jpg b/blocks/task4/maps/level3/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ef160de905f5deccaca6f67975e4cb645ece536 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e93083d94a262929526ba18acefb733ee904230b00730c4710a50373ccf4caa +size 10641 diff --git a/blocks/task4/maps/level3/image_input/75.jpg b/blocks/task4/maps/level3/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61453b9c8aa01f888330f44219b0324c2b631ce2 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7fc0fe5ee392239a35a3d7a74f3643175a9a0e283922a2baa329a6127b34cc +size 10721 diff --git a/blocks/task4/maps/level3/image_input/76.jpg b/blocks/task4/maps/level3/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ae1a9691811d5bb5f0a0b1d99ea721cc82ceb4e --- /dev/null +++ b/blocks/task4/maps/level3/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a28deca7f77a3cc6f975e6ef4d156a4f14fe2ab8145b590ee84cd20523130e +size 11316 diff --git a/blocks/task4/maps/level3/image_input/77.jpg b/blocks/task4/maps/level3/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61453b9c8aa01f888330f44219b0324c2b631ce2 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7fc0fe5ee392239a35a3d7a74f3643175a9a0e283922a2baa329a6127b34cc +size 10721 diff --git a/blocks/task4/maps/level3/image_input/78.jpg b/blocks/task4/maps/level3/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa594a1101d9bab88409320ef6bef6e072413bf3 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9028514c93b00298fb99f10a110bc75488771209e61e97a4f7060bcc3638c2 +size 10261 diff --git a/blocks/task4/maps/level3/image_input/79.jpg b/blocks/task4/maps/level3/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59775f8ca9c6bc22932a7341bc5a1fa174b132f2 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3af611621067ce292daceb183c881996a457bb594dc9a0baada679812c3311f +size 11330 diff --git a/blocks/task4/maps/level3/image_input/8.jpg b/blocks/task4/maps/level3/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c813530a83fb1c27c654b9909b213635ac7cf240 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a2f3cd5e33ee425ac72b9cb2d350200e4ac2aab1ad4fe1c96b815699fae474 +size 10261 diff --git a/blocks/task4/maps/level3/image_input/80.jpg b/blocks/task4/maps/level3/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa594a1101d9bab88409320ef6bef6e072413bf3 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9028514c93b00298fb99f10a110bc75488771209e61e97a4f7060bcc3638c2 +size 10261 diff --git a/blocks/task4/maps/level3/image_input/81.jpg b/blocks/task4/maps/level3/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..deb421aa06393b64779058656cd7cf94cb24568a --- /dev/null +++ b/blocks/task4/maps/level3/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63632648861b7131dcbaa7159dc6cc1bc155573a932a381d9d129bd57c66ff0b +size 10939 diff --git a/blocks/task4/maps/level3/image_input/82.jpg b/blocks/task4/maps/level3/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59775f8ca9c6bc22932a7341bc5a1fa174b132f2 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3af611621067ce292daceb183c881996a457bb594dc9a0baada679812c3311f +size 11330 diff --git a/blocks/task4/maps/level3/image_input/83.jpg b/blocks/task4/maps/level3/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..deb421aa06393b64779058656cd7cf94cb24568a --- /dev/null +++ b/blocks/task4/maps/level3/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63632648861b7131dcbaa7159dc6cc1bc155573a932a381d9d129bd57c66ff0b +size 10939 diff --git a/blocks/task4/maps/level3/image_input/84.jpg b/blocks/task4/maps/level3/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47a61f976005712a03e8c50b7f13c4087deebacc --- /dev/null +++ b/blocks/task4/maps/level3/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35705d9b5caec79c9cfafafe462083aa3d14f374cff71e20e3aeed20b823838 +size 10063 diff --git a/blocks/task4/maps/level3/image_input/85.jpg b/blocks/task4/maps/level3/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92a569291b30f9f0af7a579fd724ddac78d79c24 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcad652e54bcadb50176cc1da2accd989d2bd2605e5a006455dc6c3aef59b00e +size 11236 diff --git a/blocks/task4/maps/level3/image_input/86.jpg b/blocks/task4/maps/level3/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47a61f976005712a03e8c50b7f13c4087deebacc --- /dev/null +++ b/blocks/task4/maps/level3/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35705d9b5caec79c9cfafafe462083aa3d14f374cff71e20e3aeed20b823838 +size 10063 diff --git a/blocks/task4/maps/level3/image_input/87.jpg b/blocks/task4/maps/level3/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92a569291b30f9f0af7a579fd724ddac78d79c24 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcad652e54bcadb50176cc1da2accd989d2bd2605e5a006455dc6c3aef59b00e +size 11236 diff --git a/blocks/task4/maps/level3/image_input/88.jpg b/blocks/task4/maps/level3/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3f481b09d724dc7322fc49bce27e4eac3829db6 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1102a84280d823ab1df680c22ff134ec3aa87398b469566ebe9717642b1d0af +size 11068 diff --git a/blocks/task4/maps/level3/image_input/89.jpg b/blocks/task4/maps/level3/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86705b1209f0214c7814a1b526923b005581ecba --- /dev/null +++ b/blocks/task4/maps/level3/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa8ff352e58e24fc1724e3d51b890f28bb177add3118eaee02a16c6139c38d1b +size 10506 diff --git a/blocks/task4/maps/level3/image_input/9.jpg b/blocks/task4/maps/level3/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..789e7b6499fef7fc311f71a752b695cbb9e5e757 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbd0f7a84851325dbe51b947df97690064a8794b8bed52f530cd33a67645a4f +size 11675 diff --git a/blocks/task4/maps/level3/image_input/90.jpg b/blocks/task4/maps/level3/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3f481b09d724dc7322fc49bce27e4eac3829db6 --- /dev/null +++ b/blocks/task4/maps/level3/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1102a84280d823ab1df680c22ff134ec3aa87398b469566ebe9717642b1d0af +size 11068 diff --git a/blocks/task4/maps/level3/image_input/91.jpg b/blocks/task4/maps/level3/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86705b1209f0214c7814a1b526923b005581ecba --- /dev/null +++ b/blocks/task4/maps/level3/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa8ff352e58e24fc1724e3d51b890f28bb177add3118eaee02a16c6139c38d1b +size 10506 diff --git a/blocks/task4/maps/level3/image_input/92.jpg b/blocks/task4/maps/level3/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abf5c10c0e95e94a573571b86507a4dda36cdd3d --- /dev/null +++ b/blocks/task4/maps/level3/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5e2a5bbba6283a565503a09c692959b8808c6a92e90f2ae0d06340596436f8 +size 10670 diff --git a/blocks/task4/maps/level3/image_input/93.jpg b/blocks/task4/maps/level3/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abf5c10c0e95e94a573571b86507a4dda36cdd3d --- /dev/null +++ b/blocks/task4/maps/level3/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5e2a5bbba6283a565503a09c692959b8808c6a92e90f2ae0d06340596436f8 +size 10670 diff --git a/blocks/task4/maps/level3/image_input/94.jpg b/blocks/task4/maps/level3/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1359090139b1a7e6f64cc80a483f21e4946975d --- /dev/null +++ b/blocks/task4/maps/level3/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df8064ef1e484ac8e2e2b26e38c2542dbf9f144eedf32980d2a38c176de148d +size 11667 diff --git a/blocks/task4/maps/level3/image_input/95.jpg b/blocks/task4/maps/level3/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8801d4d0d806c9a871aa82730ee45000a39a5ff --- /dev/null +++ b/blocks/task4/maps/level3/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58db4c95e862113540a897d84ac804375f1ea59458c6bd219f7ac05bdafd5f92 +size 11378 diff --git a/blocks/task4/maps/level3/image_input/96.jpg b/blocks/task4/maps/level3/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1359090139b1a7e6f64cc80a483f21e4946975d --- /dev/null +++ b/blocks/task4/maps/level3/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df8064ef1e484ac8e2e2b26e38c2542dbf9f144eedf32980d2a38c176de148d +size 11667 diff --git a/blocks/task4/maps/level3/image_input/97.jpg b/blocks/task4/maps/level3/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8801d4d0d806c9a871aa82730ee45000a39a5ff --- /dev/null +++ b/blocks/task4/maps/level3/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58db4c95e862113540a897d84ac804375f1ea59458c6bd219f7ac05bdafd5f92 +size 11378 diff --git a/blocks/task4/maps/level3/image_input/98.jpg b/blocks/task4/maps/level3/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..866c1889121af537f238a3090f00f542217cad6f --- /dev/null +++ b/blocks/task4/maps/level3/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97cde142f96dd90ef1f4906936e2a63a112ff6a0f6e78eb85ddf8a0363eafdab +size 11920 diff --git a/blocks/task4/maps/level3/image_input/99.jpg b/blocks/task4/maps/level3/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..866c1889121af537f238a3090f00f542217cad6f --- /dev/null +++ b/blocks/task4/maps/level3/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97cde142f96dd90ef1f4906936e2a63a112ff6a0f6e78eb85ddf8a0363eafdab +size 11920 diff --git a/blocks/task4/maps/level3/pure_text_rep_input/0.txt b/blocks/task4/maps/level3/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cf202bcc7b5763471c32fdee1c86a202b10cdc4 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/0.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block, purple block, from bottom to top +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/1.txt b/blocks/task4/maps/level3/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cf202bcc7b5763471c32fdee1c86a202b10cdc4 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/1.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block, purple block, from bottom to top +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/10.txt b/blocks/task4/maps/level3/pure_text_rep_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ccf014e8caadd392c21e8d88237cc67e2aba50b --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/10.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/11.txt b/blocks/task4/maps/level3/pure_text_rep_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba3890c2c116a2489da015ca88c725ea79aece72 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/11.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/12.txt b/blocks/task4/maps/level3/pure_text_rep_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e1ad3db7861dec76e130e9f8a887ce75060c970 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/12.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/13.txt b/blocks/task4/maps/level3/pure_text_rep_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ccf014e8caadd392c21e8d88237cc67e2aba50b --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/13.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/14.txt b/blocks/task4/maps/level3/pure_text_rep_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..075651a8d1110c01313accb893e9864f3de66b5b --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/14.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with yellow block +- Stack with blue block +- Stack with purple block +- Stack with green block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/15.txt b/blocks/task4/maps/level3/pure_text_rep_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..075651a8d1110c01313accb893e9864f3de66b5b --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/15.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with yellow block +- Stack with blue block +- Stack with purple block +- Stack with green block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/16.txt b/blocks/task4/maps/level3/pure_text_rep_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..83ca75465755e255b488cf235d61b53c46f1d13f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/16.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/17.txt b/blocks/task4/maps/level3/pure_text_rep_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..83ca75465755e255b488cf235d61b53c46f1d13f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/17.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/18.txt b/blocks/task4/maps/level3/pure_text_rep_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..440d0a89fc5dc3ede180feaeafe109181533958f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/18.txt @@ -0,0 +1,2 @@ +- Stack with blue block, red block, from bottom to top +- Stack with purple block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/19.txt b/blocks/task4/maps/level3/pure_text_rep_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..440d0a89fc5dc3ede180feaeafe109181533958f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/19.txt @@ -0,0 +1,2 @@ +- Stack with blue block, red block, from bottom to top +- Stack with purple block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/2.txt b/blocks/task4/maps/level3/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec3e774b11feed82c97142eed7e61c884db1c007 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/2.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with green block +- Stack with purple block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/20.txt b/blocks/task4/maps/level3/pure_text_rep_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a582de60ffa169b41264efff4541dbc302ecc17 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/20.txt @@ -0,0 +1,2 @@ +- Stack with blue block, red block, from bottom to top +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/21.txt b/blocks/task4/maps/level3/pure_text_rep_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a582de60ffa169b41264efff4541dbc302ecc17 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/21.txt @@ -0,0 +1,2 @@ +- Stack with blue block, red block, from bottom to top +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/22.txt b/blocks/task4/maps/level3/pure_text_rep_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..f394b4129bba0f818da03f4d40d8f061b65d871a --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/22.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with orange block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/23.txt b/blocks/task4/maps/level3/pure_text_rep_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..f394b4129bba0f818da03f4d40d8f061b65d871a --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/23.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with orange block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/24.txt b/blocks/task4/maps/level3/pure_text_rep_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7fba14737557fe06ade4b6934e3a8b3d8f44cbf --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/24.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/25.txt b/blocks/task4/maps/level3/pure_text_rep_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c63b3c2d903a74dfb8f5678e32432e6d925a5041 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/25.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with green block +- Stack with yellow block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/26.txt b/blocks/task4/maps/level3/pure_text_rep_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..22e7674bf1df5a2a0e9fe2ee865098bfc897d441 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/26.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with purple block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/27.txt b/blocks/task4/maps/level3/pure_text_rep_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b12afc4b5ea6856bc0a4644a2c6f203332dbf042 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/27.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/28.txt b/blocks/task4/maps/level3/pure_text_rep_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7fba14737557fe06ade4b6934e3a8b3d8f44cbf --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/28.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/29.txt b/blocks/task4/maps/level3/pure_text_rep_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2edd132837c71b8de9395c21077666a1a35e401 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/29.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with red block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/3.txt b/blocks/task4/maps/level3/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4150b68cc5dc7860c3738ee8167d2f1ac3bdab44 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/3.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/30.txt b/blocks/task4/maps/level3/pure_text_rep_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba6da65f7961112f6a6eb4b369cf0f06792de60b --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/30.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/31.txt b/blocks/task4/maps/level3/pure_text_rep_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..19f811e3ac7cc158f059ab002464c04e5d710b0c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/31.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/32.txt b/blocks/task4/maps/level3/pure_text_rep_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..c63b3c2d903a74dfb8f5678e32432e6d925a5041 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/32.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with green block +- Stack with yellow block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/33.txt b/blocks/task4/maps/level3/pure_text_rep_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..6995e62a08b4c7d1bd0b4485706e7f3d4f4b879f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/33.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/34.txt b/blocks/task4/maps/level3/pure_text_rep_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..22e7674bf1df5a2a0e9fe2ee865098bfc897d441 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/34.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with purple block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/35.txt b/blocks/task4/maps/level3/pure_text_rep_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..b12afc4b5ea6856bc0a4644a2c6f203332dbf042 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/35.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/36.txt b/blocks/task4/maps/level3/pure_text_rep_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2edd132837c71b8de9395c21077666a1a35e401 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/36.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with red block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/37.txt b/blocks/task4/maps/level3/pure_text_rep_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..08bea9cfc08313bcb1250348153e9f2626da9879 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/37.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, red block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/38.txt b/blocks/task4/maps/level3/pure_text_rep_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba6da65f7961112f6a6eb4b369cf0f06792de60b --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/38.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/39.txt b/blocks/task4/maps/level3/pure_text_rep_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea5d5643325110c79a661ee08a77a754c041b4d1 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/39.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/4.txt b/blocks/task4/maps/level3/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec3e774b11feed82c97142eed7e61c884db1c007 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/4.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with green block +- Stack with purple block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/40.txt b/blocks/task4/maps/level3/pure_text_rep_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..d86e8b421ee489a89505ba95c13d54f2ef55a5b1 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/40.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/41.txt b/blocks/task4/maps/level3/pure_text_rep_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..4289a1e3aca7ae65e4792aa3fb0b07ff42fada4b --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/41.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/42.txt b/blocks/task4/maps/level3/pure_text_rep_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..f38b4739fabd3562c94e3f5cda36bd488463b906 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/42.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with red block +- Stack with yellow block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/43.txt b/blocks/task4/maps/level3/pure_text_rep_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..19f811e3ac7cc158f059ab002464c04e5d710b0c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/43.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/44.txt b/blocks/task4/maps/level3/pure_text_rep_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..6995e62a08b4c7d1bd0b4485706e7f3d4f4b879f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/44.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/45.txt b/blocks/task4/maps/level3/pure_text_rep_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..08bea9cfc08313bcb1250348153e9f2626da9879 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/45.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, red block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/46.txt b/blocks/task4/maps/level3/pure_text_rep_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea5d5643325110c79a661ee08a77a754c041b4d1 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/46.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/47.txt b/blocks/task4/maps/level3/pure_text_rep_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..d86e8b421ee489a89505ba95c13d54f2ef55a5b1 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/47.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/48.txt b/blocks/task4/maps/level3/pure_text_rep_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4a5accb5407dae4f866786716f8204542724c45 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/48.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with orange block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/49.txt b/blocks/task4/maps/level3/pure_text_rep_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..4289a1e3aca7ae65e4792aa3fb0b07ff42fada4b --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/49.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/5.txt b/blocks/task4/maps/level3/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4150b68cc5dc7860c3738ee8167d2f1ac3bdab44 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/5.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/50.txt b/blocks/task4/maps/level3/pure_text_rep_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..f38b4739fabd3562c94e3f5cda36bd488463b906 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/50.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with red block +- Stack with yellow block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/51.txt b/blocks/task4/maps/level3/pure_text_rep_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d9ac1d52945ba8605849d1110bdd35fba85e112 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/51.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/52.txt b/blocks/task4/maps/level3/pure_text_rep_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4a5accb5407dae4f866786716f8204542724c45 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/52.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with orange block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/53.txt b/blocks/task4/maps/level3/pure_text_rep_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..4413a0a3d47ae6c9d6c1384f4248ce214d9bc92a --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/53.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block, red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/54.txt b/blocks/task4/maps/level3/pure_text_rep_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d9ac1d52945ba8605849d1110bdd35fba85e112 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/54.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/55.txt b/blocks/task4/maps/level3/pure_text_rep_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..4413a0a3d47ae6c9d6c1384f4248ce214d9bc92a --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/55.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block, red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/56.txt b/blocks/task4/maps/level3/pure_text_rep_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..5bd91743d05beb79a980ae913723a2dd0e4efd3a --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/56.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with orange block, blue block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/57.txt b/blocks/task4/maps/level3/pure_text_rep_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..5bd91743d05beb79a980ae913723a2dd0e4efd3a --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/57.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with orange block, blue block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/58.txt b/blocks/task4/maps/level3/pure_text_rep_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b0827530346bd5f697bca3bfe3df144ef2beb5a --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/58.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with purple block +- Stack with red block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/59.txt b/blocks/task4/maps/level3/pure_text_rep_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2308200a71c6fd95a6f1c6604363b90ee7c2892f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/59.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, green block, red block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/6.txt b/blocks/task4/maps/level3/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ce925a537c3382ca9986d994e3e68baf221bb42 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/6.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/60.txt b/blocks/task4/maps/level3/pure_text_rep_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..913b7ad780ee5895dce89b1b832c74b05b50c48c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/60.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with blue block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/61.txt b/blocks/task4/maps/level3/pure_text_rep_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b0827530346bd5f697bca3bfe3df144ef2beb5a --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/61.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with purple block +- Stack with red block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/62.txt b/blocks/task4/maps/level3/pure_text_rep_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..45e7e0dde4a08a477b0d83cb2e7f448b5859c153 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/62.txt @@ -0,0 +1,2 @@ +- Stack with blue block, orange block, from bottom to top +- Stack with purple block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/63.txt b/blocks/task4/maps/level3/pure_text_rep_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..24036b2fd63909994fccbdd1f25d8799c0ca8007 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/63.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/64.txt b/blocks/task4/maps/level3/pure_text_rep_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..2308200a71c6fd95a6f1c6604363b90ee7c2892f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/64.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, green block, red block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/65.txt b/blocks/task4/maps/level3/pure_text_rep_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..913b7ad780ee5895dce89b1b832c74b05b50c48c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/65.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with blue block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/66.txt b/blocks/task4/maps/level3/pure_text_rep_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..45e7e0dde4a08a477b0d83cb2e7f448b5859c153 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/66.txt @@ -0,0 +1,2 @@ +- Stack with blue block, orange block, from bottom to top +- Stack with purple block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/67.txt b/blocks/task4/maps/level3/pure_text_rep_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..24036b2fd63909994fccbdd1f25d8799c0ca8007 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/67.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/68.txt b/blocks/task4/maps/level3/pure_text_rep_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..82f8aea094c40a2cb13cc5d90ddb3548fedb421c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/68.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block, blue block, from bottom to top +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/69.txt b/blocks/task4/maps/level3/pure_text_rep_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..82f8aea094c40a2cb13cc5d90ddb3548fedb421c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/69.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block, blue block, from bottom to top +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/7.txt b/blocks/task4/maps/level3/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba3890c2c116a2489da015ca88c725ea79aece72 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/7.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/70.txt b/blocks/task4/maps/level3/pure_text_rep_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..220558c4f0b6998e65ee635259128d7fa2ab3907 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/70.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/71.txt b/blocks/task4/maps/level3/pure_text_rep_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..13fd389154e95d0f8e3a35b514ba2a7c0216a983 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/71.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/72.txt b/blocks/task4/maps/level3/pure_text_rep_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..220558c4f0b6998e65ee635259128d7fa2ab3907 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/72.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/73.txt b/blocks/task4/maps/level3/pure_text_rep_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfa4b51c442dd384681f97d190348786150453fe --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/73.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, blue block, orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/74.txt b/blocks/task4/maps/level3/pure_text_rep_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..13fd389154e95d0f8e3a35b514ba2a7c0216a983 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/74.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/75.txt b/blocks/task4/maps/level3/pure_text_rep_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..84f5686ad849d70a1c1bf56974feb9eaa9b4f0bc --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/75.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/76.txt b/blocks/task4/maps/level3/pure_text_rep_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfa4b51c442dd384681f97d190348786150453fe --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/76.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, blue block, orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/77.txt b/blocks/task4/maps/level3/pure_text_rep_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..84f5686ad849d70a1c1bf56974feb9eaa9b4f0bc --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/77.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/78.txt b/blocks/task4/maps/level3/pure_text_rep_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..7881e35e160a2c9b41e63f5b58ed0fa2b7270df6 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/78.txt @@ -0,0 +1 @@ +- Stack with green block, yellow block, orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/79.txt b/blocks/task4/maps/level3/pure_text_rep_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff0798a7d7f88173afa7943712900946bab9b344 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/79.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/8.txt b/blocks/task4/maps/level3/pure_text_rep_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e1ad3db7861dec76e130e9f8a887ce75060c970 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/8.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/80.txt b/blocks/task4/maps/level3/pure_text_rep_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..7881e35e160a2c9b41e63f5b58ed0fa2b7270df6 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/80.txt @@ -0,0 +1 @@ +- Stack with green block, yellow block, orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/81.txt b/blocks/task4/maps/level3/pure_text_rep_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..a28346833e771774d1b3b561e4347b9e0fbf29f3 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/81.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/82.txt b/blocks/task4/maps/level3/pure_text_rep_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff0798a7d7f88173afa7943712900946bab9b344 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/82.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/83.txt b/blocks/task4/maps/level3/pure_text_rep_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..a28346833e771774d1b3b561e4347b9e0fbf29f3 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/83.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/84.txt b/blocks/task4/maps/level3/pure_text_rep_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc8151511ef073e03a1c1047f903cc6590b519d9 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/84.txt @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with yellow block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/85.txt b/blocks/task4/maps/level3/pure_text_rep_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..d83200b79ac71e2145aa3a805479e264adcc7840 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/85.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, orange block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/86.txt b/blocks/task4/maps/level3/pure_text_rep_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc8151511ef073e03a1c1047f903cc6590b519d9 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/86.txt @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with yellow block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/87.txt b/blocks/task4/maps/level3/pure_text_rep_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..d83200b79ac71e2145aa3a805479e264adcc7840 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/87.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, orange block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/88.txt b/blocks/task4/maps/level3/pure_text_rep_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..35353b0c9c42876081b38bc71d978680b9f9257f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/88.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/89.txt b/blocks/task4/maps/level3/pure_text_rep_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..44982466581b68da092815e3f524ecec610c8153 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/89.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with orange block +- Stack with green block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/9.txt b/blocks/task4/maps/level3/pure_text_rep_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ce925a537c3382ca9986d994e3e68baf221bb42 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/9.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/90.txt b/blocks/task4/maps/level3/pure_text_rep_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..35353b0c9c42876081b38bc71d978680b9f9257f --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/90.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/91.txt b/blocks/task4/maps/level3/pure_text_rep_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..44982466581b68da092815e3f524ecec610c8153 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/91.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with orange block +- Stack with green block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/92.txt b/blocks/task4/maps/level3/pure_text_rep_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3b9e517b94793c2354d2ea907a2137d171f0099 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/92.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with yellow block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/93.txt b/blocks/task4/maps/level3/pure_text_rep_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3b9e517b94793c2354d2ea907a2137d171f0099 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/93.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with yellow block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/94.txt b/blocks/task4/maps/level3/pure_text_rep_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..58b4c3542d9355b88675990223d75d86e6a11e4c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/94.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/95.txt b/blocks/task4/maps/level3/pure_text_rep_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee55c6938a765c65c3e72c9b421491c0f4da511c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/95.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/96.txt b/blocks/task4/maps/level3/pure_text_rep_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..58b4c3542d9355b88675990223d75d86e6a11e4c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/96.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task4/maps/level3/pure_text_rep_input/97.txt b/blocks/task4/maps/level3/pure_text_rep_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee55c6938a765c65c3e72c9b421491c0f4da511c --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/97.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/98.txt b/blocks/task4/maps/level3/pure_text_rep_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..4be7fa8d203fc7c59f49bab7520bec70ea06bf27 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/98.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, green block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/pure_text_rep_input/99.txt b/blocks/task4/maps/level3/pure_text_rep_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..4be7fa8d203fc7c59f49bab7520bec70ea06bf27 --- /dev/null +++ b/blocks/task4/maps/level3/pure_text_rep_input/99.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, green block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level3/table_rep_input/0.txt b/blocks/task4/maps/level3/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b3bc58e039dddf4c517487455075eb723da7eb5 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/0.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | blue | +Level 1 | yellow | red | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/1.txt b/blocks/task4/maps/level3/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b3bc58e039dddf4c517487455075eb723da7eb5 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/1.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | blue | +Level 1 | yellow | red | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/10.txt b/blocks/task4/maps/level3/table_rep_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..e61aaef417045383b1c6b75bb58e98a60e5c828a --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/10.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | blue | +Level 1 | purple | red | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/11.txt b/blocks/task4/maps/level3/table_rep_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..aed11afc613cd6d9e94893df0edf81f44474e118 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/11.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | purple | red | diff --git a/blocks/task4/maps/level3/table_rep_input/12.txt b/blocks/task4/maps/level3/table_rep_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c73e4c97947c9c056f498dd9c5ad5b8396b7418 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/12.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | orange | +Level 1 | blue | green | diff --git a/blocks/task4/maps/level3/table_rep_input/13.txt b/blocks/task4/maps/level3/table_rep_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..e61aaef417045383b1c6b75bb58e98a60e5c828a --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/13.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | blue | +Level 1 | purple | red | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/14.txt b/blocks/task4/maps/level3/table_rep_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2a27a6bd6cde3435670e2e4da2c6631eabf34eb --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/14.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | yellow | blue | purple | green | diff --git a/blocks/task4/maps/level3/table_rep_input/15.txt b/blocks/task4/maps/level3/table_rep_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2a27a6bd6cde3435670e2e4da2c6631eabf34eb --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/15.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | yellow | blue | purple | green | diff --git a/blocks/task4/maps/level3/table_rep_input/16.txt b/blocks/task4/maps/level3/table_rep_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea09e0cbe6f98f655cf97090c2fef3c78b9addcc --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/16.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | red | purple | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/17.txt b/blocks/task4/maps/level3/table_rep_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea09e0cbe6f98f655cf97090c2fef3c78b9addcc --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/17.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | red | purple | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/18.txt b/blocks/task4/maps/level3/table_rep_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e538adbda8a572ca635cc6c148f1567336bb1d0 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/18.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | red | green | +Level 1 | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/19.txt b/blocks/task4/maps/level3/table_rep_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e538adbda8a572ca635cc6c148f1567336bb1d0 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/19.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | red | green | +Level 1 | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/2.txt b/blocks/task4/maps/level3/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bf1a5587174e67d30237a2b249a218a7517ac56 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/2.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | red | orange | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/20.txt b/blocks/task4/maps/level3/table_rep_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..52b729393c93637820159bfb2f64d30db2ccf2f3 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/20.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | orange | +Level 1 | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/21.txt b/blocks/task4/maps/level3/table_rep_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..52b729393c93637820159bfb2f64d30db2ccf2f3 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/21.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | orange | +Level 1 | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/22.txt b/blocks/task4/maps/level3/table_rep_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..39577af1c6e0ac5aeeee42580d121848cabd5b28 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/22.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | red | +Level 1 | blue | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/23.txt b/blocks/task4/maps/level3/table_rep_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..39577af1c6e0ac5aeeee42580d121848cabd5b28 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/23.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | red | +Level 1 | blue | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/24.txt b/blocks/task4/maps/level3/table_rep_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..56c78cb14ffafa9a5dbafcb988e438ac1f9386c4 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/24.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | green | blue | orange | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/25.txt b/blocks/task4/maps/level3/table_rep_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..89ab0c7f5dc2377bf5e05672197d9a2d5c80bd23 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/25.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | red | green | yellow | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/26.txt b/blocks/task4/maps/level3/table_rep_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef71350b1b49f2cd6f1ecfee5d4357ff0f867d6b --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/26.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | orange | yellow | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/27.txt b/blocks/task4/maps/level3/table_rep_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffd54c9a9a3eb54320507d32531f2ac353383e4a --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/27.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | orange | +Level 3 | yellow | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level3/table_rep_input/28.txt b/blocks/task4/maps/level3/table_rep_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..56c78cb14ffafa9a5dbafcb988e438ac1f9386c4 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/28.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | green | blue | orange | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/29.txt b/blocks/task4/maps/level3/table_rep_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cd934a952ba7b8d468afc0b6a2da8d71c5a9dff --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/29.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | green | purple | blue | red | diff --git a/blocks/task4/maps/level3/table_rep_input/3.txt b/blocks/task4/maps/level3/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..dece99fe7c833c541db6ffcaa4082e3831e1d647 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/3.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | green | red | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/30.txt b/blocks/task4/maps/level3/table_rep_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..24ee8eb67ed750bc6ca1b1d4c6c1f2fb39b142ba --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/30.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | yellow | +Level 1 | red | green | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/31.txt b/blocks/task4/maps/level3/table_rep_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..0530707ac531cc419718ceb33e51578c0b369ff0 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/31.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | purple | red | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/32.txt b/blocks/task4/maps/level3/table_rep_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..89ab0c7f5dc2377bf5e05672197d9a2d5c80bd23 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/32.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | red | green | yellow | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/33.txt b/blocks/task4/maps/level3/table_rep_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..25b4258c8976e9f44733c304d9d3f3cca638a8ae --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/33.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | yellow | +Level 1 | purple | orange | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/34.txt b/blocks/task4/maps/level3/table_rep_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef71350b1b49f2cd6f1ecfee5d4357ff0f867d6b --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/34.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | orange | yellow | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/35.txt b/blocks/task4/maps/level3/table_rep_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffd54c9a9a3eb54320507d32531f2ac353383e4a --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/35.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | orange | +Level 3 | yellow | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level3/table_rep_input/36.txt b/blocks/task4/maps/level3/table_rep_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cd934a952ba7b8d468afc0b6a2da8d71c5a9dff --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/36.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | green | purple | blue | red | diff --git a/blocks/task4/maps/level3/table_rep_input/37.txt b/blocks/task4/maps/level3/table_rep_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..84a8ed687e86afd7d524b9912473b6b4a8571cae --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/37.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level3/table_rep_input/38.txt b/blocks/task4/maps/level3/table_rep_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..24ee8eb67ed750bc6ca1b1d4c6c1f2fb39b142ba --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/38.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | yellow | +Level 1 | red | green | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/39.txt b/blocks/task4/maps/level3/table_rep_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed6092383a8dd177b81581de21dfe6b823fbc98 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/39.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | red | +Level 1 | green | purple | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/4.txt b/blocks/task4/maps/level3/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bf1a5587174e67d30237a2b249a218a7517ac56 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/4.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | red | orange | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/40.txt b/blocks/task4/maps/level3/table_rep_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..c31d89976acf26e0cc1343fe985c9dbd2a75caf8 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/40.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | orange | +Level 1 | purple | red | diff --git a/blocks/task4/maps/level3/table_rep_input/41.txt b/blocks/task4/maps/level3/table_rep_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f2ebe854afbd95b5b361e2078c2fc5a36f17436 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/41.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | green | orange | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/42.txt b/blocks/task4/maps/level3/table_rep_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bcaf3fb4786b990db06f467a3b49f0efa331c24 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/42.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | orange | red | yellow | green | diff --git a/blocks/task4/maps/level3/table_rep_input/43.txt b/blocks/task4/maps/level3/table_rep_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..0530707ac531cc419718ceb33e51578c0b369ff0 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/43.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | purple | red | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/44.txt b/blocks/task4/maps/level3/table_rep_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..25b4258c8976e9f44733c304d9d3f3cca638a8ae --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/44.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | yellow | +Level 1 | purple | orange | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/45.txt b/blocks/task4/maps/level3/table_rep_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..84a8ed687e86afd7d524b9912473b6b4a8571cae --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/45.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level3/table_rep_input/46.txt b/blocks/task4/maps/level3/table_rep_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed6092383a8dd177b81581de21dfe6b823fbc98 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/46.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | red | +Level 1 | green | purple | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/47.txt b/blocks/task4/maps/level3/table_rep_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..c31d89976acf26e0cc1343fe985c9dbd2a75caf8 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/47.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | orange | +Level 1 | purple | red | diff --git a/blocks/task4/maps/level3/table_rep_input/48.txt b/blocks/task4/maps/level3/table_rep_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..7783870df4146839a642b5ffb207679b1b0edb33 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/48.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | green | blue | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/49.txt b/blocks/task4/maps/level3/table_rep_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f2ebe854afbd95b5b361e2078c2fc5a36f17436 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/49.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | green | orange | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/5.txt b/blocks/task4/maps/level3/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..dece99fe7c833c541db6ffcaa4082e3831e1d647 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/5.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | green | red | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/50.txt b/blocks/task4/maps/level3/table_rep_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bcaf3fb4786b990db06f467a3b49f0efa331c24 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/50.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | orange | red | yellow | green | diff --git a/blocks/task4/maps/level3/table_rep_input/51.txt b/blocks/task4/maps/level3/table_rep_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..4416812c7f6c584b605cbf2ecfeaa781d38e3184 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/51.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | red | green | yellow | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/52.txt b/blocks/task4/maps/level3/table_rep_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..7783870df4146839a642b5ffb207679b1b0edb33 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/52.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | green | blue | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/53.txt b/blocks/task4/maps/level3/table_rep_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..de4699ddc71649d2260402ac8a8ee184a28ed045 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/53.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | yellow | orange | green | diff --git a/blocks/task4/maps/level3/table_rep_input/54.txt b/blocks/task4/maps/level3/table_rep_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..4416812c7f6c584b605cbf2ecfeaa781d38e3184 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/54.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | red | green | yellow | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/55.txt b/blocks/task4/maps/level3/table_rep_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..de4699ddc71649d2260402ac8a8ee184a28ed045 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/55.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | yellow | orange | green | diff --git a/blocks/task4/maps/level3/table_rep_input/56.txt b/blocks/task4/maps/level3/table_rep_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..a473cff2970ff46db257b2099672722c09f25979 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/56.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | blue | +Level 1 | yellow | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/57.txt b/blocks/task4/maps/level3/table_rep_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..a473cff2970ff46db257b2099672722c09f25979 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/57.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | blue | +Level 1 | yellow | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/58.txt b/blocks/task4/maps/level3/table_rep_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..d58c58bb8df6bb0cb1d21c4024dc55c6634e473d --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/58.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | purple | red | orange | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/59.txt b/blocks/task4/maps/level3/table_rep_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..b511233fbc615f7190f96145ac10f41bfb75ff13 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/59.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | red | +Level 2 | | green | +Level 1 | blue | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/6.txt b/blocks/task4/maps/level3/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..364192527b87b69815be7779a9303a0b5b6d8b70 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/6.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | purple | orange | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/60.txt b/blocks/task4/maps/level3/table_rep_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..d377071d0ae78cdf1966e7777dc2fd267444cdfd --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/60.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | yellow | green | red | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/61.txt b/blocks/task4/maps/level3/table_rep_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..d58c58bb8df6bb0cb1d21c4024dc55c6634e473d --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/61.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | purple | red | orange | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/62.txt b/blocks/task4/maps/level3/table_rep_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..815d913918bdc3f0560bf2e5cc9b6a0ae78d72d5 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/62.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | green | +Level 1 | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/63.txt b/blocks/task4/maps/level3/table_rep_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d8606405d405dc81d7cd6f3b7455595932c2ecf --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/63.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | green | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/64.txt b/blocks/task4/maps/level3/table_rep_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..b511233fbc615f7190f96145ac10f41bfb75ff13 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/64.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | red | +Level 2 | | green | +Level 1 | blue | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/65.txt b/blocks/task4/maps/level3/table_rep_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..d377071d0ae78cdf1966e7777dc2fd267444cdfd --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/65.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | yellow | green | red | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/66.txt b/blocks/task4/maps/level3/table_rep_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..815d913918bdc3f0560bf2e5cc9b6a0ae78d72d5 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/66.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | green | +Level 1 | blue | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/67.txt b/blocks/task4/maps/level3/table_rep_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d8606405d405dc81d7cd6f3b7455595932c2ecf --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/67.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | green | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/68.txt b/blocks/task4/maps/level3/table_rep_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f18559f4aafcdfac5e22a6ed2c6af51164b11ad --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/68.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | red | +Level 1 | yellow | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/69.txt b/blocks/task4/maps/level3/table_rep_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f18559f4aafcdfac5e22a6ed2c6af51164b11ad --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/69.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | red | +Level 1 | yellow | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/7.txt b/blocks/task4/maps/level3/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..aed11afc613cd6d9e94893df0edf81f44474e118 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/7.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | purple | red | diff --git a/blocks/task4/maps/level3/table_rep_input/70.txt b/blocks/task4/maps/level3/table_rep_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..89b0d04850135baabbc58dd02da3e75ba6cefb88 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/70.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/71.txt b/blocks/task4/maps/level3/table_rep_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..73b3b3f8a92e2d1e6c66f2b51bb8895138ccd418 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/71.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | orange | yellow | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/72.txt b/blocks/task4/maps/level3/table_rep_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..89b0d04850135baabbc58dd02da3e75ba6cefb88 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/72.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/73.txt b/blocks/task4/maps/level3/table_rep_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..30366b2c6da37374c6df33a6197dce4acb1827ca --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/73.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/74.txt b/blocks/task4/maps/level3/table_rep_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..73b3b3f8a92e2d1e6c66f2b51bb8895138ccd418 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/74.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | orange | yellow | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/75.txt b/blocks/task4/maps/level3/table_rep_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..7506f3ed58a51de0aa0128c5ed9c8893448c00d7 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/75.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | purple | +Level 1 | orange | blue | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/76.txt b/blocks/task4/maps/level3/table_rep_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..30366b2c6da37374c6df33a6197dce4acb1827ca --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/76.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/77.txt b/blocks/task4/maps/level3/table_rep_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..7506f3ed58a51de0aa0128c5ed9c8893448c00d7 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/77.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | purple | +Level 1 | orange | blue | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/78.txt b/blocks/task4/maps/level3/table_rep_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e441d0b03afa73b7422574100c16d44cfaddaa2 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/78.txt @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | orange | +Level 2 | yellow | +Level 1 | green | diff --git a/blocks/task4/maps/level3/table_rep_input/79.txt b/blocks/task4/maps/level3/table_rep_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..95d035cff2c351064012b9a383d01216c21b45c3 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/79.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | purple | yellow | blue | green | diff --git a/blocks/task4/maps/level3/table_rep_input/8.txt b/blocks/task4/maps/level3/table_rep_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c73e4c97947c9c056f498dd9c5ad5b8396b7418 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/8.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | orange | +Level 1 | blue | green | diff --git a/blocks/task4/maps/level3/table_rep_input/80.txt b/blocks/task4/maps/level3/table_rep_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e441d0b03afa73b7422574100c16d44cfaddaa2 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/80.txt @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | orange | +Level 2 | yellow | +Level 1 | green | diff --git a/blocks/task4/maps/level3/table_rep_input/81.txt b/blocks/task4/maps/level3/table_rep_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f6bb64fefc5681847965f340c4b29427e0eb81a --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/81.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | yellow | red | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/82.txt b/blocks/task4/maps/level3/table_rep_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..95d035cff2c351064012b9a383d01216c21b45c3 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/82.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | purple | yellow | blue | green | diff --git a/blocks/task4/maps/level3/table_rep_input/83.txt b/blocks/task4/maps/level3/table_rep_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f6bb64fefc5681847965f340c4b29427e0eb81a --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/83.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | yellow | red | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/84.txt b/blocks/task4/maps/level3/table_rep_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5184688edd40a71f1b954c7ff88cbdfe69eb276 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/84.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | purple | +Level 1 | green | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/85.txt b/blocks/task4/maps/level3/table_rep_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c072505d374cd66227d1096cbbff6d0a88c05ee --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/85.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/86.txt b/blocks/task4/maps/level3/table_rep_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5184688edd40a71f1b954c7ff88cbdfe69eb276 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/86.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | purple | +Level 1 | green | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/87.txt b/blocks/task4/maps/level3/table_rep_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c072505d374cd66227d1096cbbff6d0a88c05ee --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/87.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/88.txt b/blocks/task4/maps/level3/table_rep_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e22ededf5da0f5addfae4957d089ac3aac53b93 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/88.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | purple | red | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/89.txt b/blocks/task4/maps/level3/table_rep_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..71d9523c88968b5e0538e14e11459a67da5d2702 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/89.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | red | orange | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/9.txt b/blocks/task4/maps/level3/table_rep_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..364192527b87b69815be7779a9303a0b5b6d8b70 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/9.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | purple | orange | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/90.txt b/blocks/task4/maps/level3/table_rep_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e22ededf5da0f5addfae4957d089ac3aac53b93 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/90.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | purple | red | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/91.txt b/blocks/task4/maps/level3/table_rep_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..71d9523c88968b5e0538e14e11459a67da5d2702 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/91.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | red | orange | green | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/92.txt b/blocks/task4/maps/level3/table_rep_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2739b69326f94e02b536ddb2b7d3147aa374460 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/92.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | blue | yellow | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/93.txt b/blocks/task4/maps/level3/table_rep_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2739b69326f94e02b536ddb2b7d3147aa374460 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/93.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | blue | yellow | purple | diff --git a/blocks/task4/maps/level3/table_rep_input/94.txt b/blocks/task4/maps/level3/table_rep_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ef87d78161be32a739a33e32111cbbf0ef33179 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/94.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | yellow | red | orange | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/95.txt b/blocks/task4/maps/level3/table_rep_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea34cce1381cf152a39cd83db4acfbb960fced56 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/95.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | purple | +Level 1 | blue | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/96.txt b/blocks/task4/maps/level3/table_rep_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ef87d78161be32a739a33e32111cbbf0ef33179 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/96.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | yellow | red | orange | blue | diff --git a/blocks/task4/maps/level3/table_rep_input/97.txt b/blocks/task4/maps/level3/table_rep_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea34cce1381cf152a39cd83db4acfbb960fced56 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/97.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | purple | +Level 1 | blue | orange | diff --git a/blocks/task4/maps/level3/table_rep_input/98.txt b/blocks/task4/maps/level3/table_rep_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bbf92a50f586f36a6371f7f332b206e964d1874 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/98.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | purple | +Level 2 | | green | +Level 1 | orange | yellow | diff --git a/blocks/task4/maps/level3/table_rep_input/99.txt b/blocks/task4/maps/level3/table_rep_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bbf92a50f586f36a6371f7f332b206e964d1874 --- /dev/null +++ b/blocks/task4/maps/level3/table_rep_input/99.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | purple | +Level 2 | | green | +Level 1 | orange | yellow | diff --git a/blocks/task4/maps/level3/text_input/0.txt b/blocks/task4/maps/level3/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..70bc22a005a74f58cc79caae56d2e37727997944 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/0.txt @@ -0,0 +1,3 @@ +1. move(purple,table) +2. move(red,purple) +3. move(yellow,red) diff --git a/blocks/task4/maps/level3/text_input/1.txt b/blocks/task4/maps/level3/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0141d1db4a7d92da0e46e74f82d6f683789e591 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/1.txt @@ -0,0 +1,3 @@ +1. move(purple,table) +2. move(red,purple) +3. move(purple,table) diff --git a/blocks/task4/maps/level3/text_input/10.txt b/blocks/task4/maps/level3/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd8d0d52101bb6383ebf6583bd4489fd5513dde9 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/10.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(red,blue) +3. move(yellow,red) diff --git a/blocks/task4/maps/level3/text_input/11.txt b/blocks/task4/maps/level3/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bcf2bd14b47d274ef2df878b4040f5c2bad5dbd --- /dev/null +++ b/blocks/task4/maps/level3/text_input/11.txt @@ -0,0 +1,3 @@ +1. move(green,purple) +2. move(orange,green) +3. move(green,red) diff --git a/blocks/task4/maps/level3/text_input/12.txt b/blocks/task4/maps/level3/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2597673627330d6508899c63659f0edf1a865d78 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/12.txt @@ -0,0 +1,3 @@ +1. move(yellow,green) +2. move(yellow,table) +3. move(purple,table) diff --git a/blocks/task4/maps/level3/text_input/13.txt b/blocks/task4/maps/level3/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..681dd741b8698574c388303c278ebc214b591fe4 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/13.txt @@ -0,0 +1,3 @@ +1. move(yellow,purple) +2. move(yellow,orange) +3. move(red,blue) diff --git a/blocks/task4/maps/level3/text_input/14.txt b/blocks/task4/maps/level3/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..c60051be583c9995640d14ed3eb469f87133ee39 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/14.txt @@ -0,0 +1,3 @@ +1. move(yellow,green) +2. move(purple,yellow) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/15.txt b/blocks/task4/maps/level3/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e97e345ae8ee6d55e29b7f4625ee88ef6278e72 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/15.txt @@ -0,0 +1,3 @@ +1. move(red,blue) +2. move(yellow,green) +3. move(purple,yellow) diff --git a/blocks/task4/maps/level3/text_input/16.txt b/blocks/task4/maps/level3/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fcc5d13892613e4a096a640ac7798a319926a46 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/16.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(purple,table) +3. move(red,table) diff --git a/blocks/task4/maps/level3/text_input/17.txt b/blocks/task4/maps/level3/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..3acf1a636060bcef4ae1583b6e49ee541a4319f9 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/17.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(blue,table) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/18.txt b/blocks/task4/maps/level3/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f29c038f360ef91a9ee40ba65011f8a00ee99ea --- /dev/null +++ b/blocks/task4/maps/level3/text_input/18.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(purple,blue) +3. move(orange,red) diff --git a/blocks/task4/maps/level3/text_input/19.txt b/blocks/task4/maps/level3/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c2edd8e90f3663da3e09db14a38da05c6afbba8 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/19.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(orange,red) +3. move(blue,green) diff --git a/blocks/task4/maps/level3/text_input/2.txt b/blocks/task4/maps/level3/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..15be87ecd7ed1ab059db360c8e9ef7750ba50cfc --- /dev/null +++ b/blocks/task4/maps/level3/text_input/2.txt @@ -0,0 +1,3 @@ +1. move(green,blue) +2. move(blue,red) +3. move(red,green) diff --git a/blocks/task4/maps/level3/text_input/20.txt b/blocks/task4/maps/level3/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..660002e5635a0bdd82c7043ca9ed76a2de50a23f --- /dev/null +++ b/blocks/task4/maps/level3/text_input/20.txt @@ -0,0 +1,3 @@ +1. move(green,table) +2. move(red,table) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/21.txt b/blocks/task4/maps/level3/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..dffd0f5d8e13eefd2df6d924d34eb27ab2db8cde --- /dev/null +++ b/blocks/task4/maps/level3/text_input/21.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(orange,blue) +3. move(green,table) diff --git a/blocks/task4/maps/level3/text_input/22.txt b/blocks/task4/maps/level3/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a2a3e6c71907e12a3a8dbb09c5b10a3c79bf976 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/22.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(purple,yellow) +3. move(blue,yellow) diff --git a/blocks/task4/maps/level3/text_input/23.txt b/blocks/task4/maps/level3/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..b16b14c15321a9f499b613c99c9e54f39e229d16 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/23.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(purple,yellow) +3. move(red,blue) diff --git a/blocks/task4/maps/level3/text_input/24.txt b/blocks/task4/maps/level3/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..44a1adc7997de87fb7efb3b1445c1797438b80a1 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/24.txt @@ -0,0 +1,3 @@ +1. move(orange,green) +2. move(yellow,blue) +3. move(red,orange) diff --git a/blocks/task4/maps/level3/text_input/25.txt b/blocks/task4/maps/level3/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..086d3da22f4316dee28b1cf76aeb7029d48516b3 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/25.txt @@ -0,0 +1,3 @@ +1. move(purple,green) +2. move(red,purple) +3. move(yellow,red) diff --git a/blocks/task4/maps/level3/text_input/26.txt b/blocks/task4/maps/level3/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..0afe098eee9c8109dcf4d536578a9593c5f00967 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/26.txt @@ -0,0 +1,3 @@ +1. move(yellow,green) +2. move(orange,yellow) +3. move(purple,orange) diff --git a/blocks/task4/maps/level3/text_input/27.txt b/blocks/task4/maps/level3/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..6067800a47e9e9581101739f061275b6da9e2e27 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/27.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(orange,table) +3. move(yellow,table) diff --git a/blocks/task4/maps/level3/text_input/28.txt b/blocks/task4/maps/level3/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..e37ce73e2e92e0ae9af3779c0349aee91001261f --- /dev/null +++ b/blocks/task4/maps/level3/text_input/28.txt @@ -0,0 +1,3 @@ +1. move(purple,blue) +2. move(orange,green) +3. move(red,orange) diff --git a/blocks/task4/maps/level3/text_input/29.txt b/blocks/task4/maps/level3/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e11e98579a509ab5e5a63c45b1f290de0c51d12 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/29.txt @@ -0,0 +1,3 @@ +1. move(orange,red) +2. move(blue,purple) +3. move(green,blue) diff --git a/blocks/task4/maps/level3/text_input/3.txt b/blocks/task4/maps/level3/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..749e4c1f9021502b4e7f421a2f591db666df6933 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/3.txt @@ -0,0 +1,3 @@ +1. move(blue,yellow) +2. move(red,orange) +3. move(blue,red) diff --git a/blocks/task4/maps/level3/text_input/30.txt b/blocks/task4/maps/level3/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a1d9b7361dadc1f9a1c0d007b102303f1240172 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/30.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(yellow,table) +3. move(red,yellow) diff --git a/blocks/task4/maps/level3/text_input/31.txt b/blocks/task4/maps/level3/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebfc05952f4a22748ad8c3abebf8d5740fc8c92b --- /dev/null +++ b/blocks/task4/maps/level3/text_input/31.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(red,orange) +3. move(yellow,red) diff --git a/blocks/task4/maps/level3/text_input/32.txt b/blocks/task4/maps/level3/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e3da65cb8e08c18349b87217ee9992f4e9111e3 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/32.txt @@ -0,0 +1,3 @@ +1. move(purple,green) +2. move(red,purple) +3. move(red,blue) diff --git a/blocks/task4/maps/level3/text_input/33.txt b/blocks/task4/maps/level3/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..95e03feb81aa85d8cc08ac63ebe37a14d88815b1 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/33.txt @@ -0,0 +1,3 @@ +1. move(green,table) +2. move(yellow,table) +3. move(orange,green) diff --git a/blocks/task4/maps/level3/text_input/34.txt b/blocks/task4/maps/level3/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cb43b20988009bb897e590adb327fb51c663a34 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/34.txt @@ -0,0 +1,3 @@ +1. move(blue,red) +2. move(yellow,green) +3. move(orange,yellow) diff --git a/blocks/task4/maps/level3/text_input/35.txt b/blocks/task4/maps/level3/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ecff8b27ceff0d352bfc3bd6feddc89098552a2 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/35.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(yellow,blue) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/36.txt b/blocks/task4/maps/level3/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..82c5e6a5bd447df03b629e24e6940bcb793f2d2f --- /dev/null +++ b/blocks/task4/maps/level3/text_input/36.txt @@ -0,0 +1,3 @@ +1. move(blue,purple) +2. move(green,blue) +3. move(blue,table) diff --git a/blocks/task4/maps/level3/text_input/37.txt b/blocks/task4/maps/level3/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1fc68401833afa7cb025a12fa5a145b20cae907 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/37.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(yellow,table) +3. move(red,table) diff --git a/blocks/task4/maps/level3/text_input/38.txt b/blocks/task4/maps/level3/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..30de38738527f4839bdc51c3ccdfdfd7d1942c2c --- /dev/null +++ b/blocks/task4/maps/level3/text_input/38.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(purple,orange) +3. move(red,yellow) diff --git a/blocks/task4/maps/level3/text_input/39.txt b/blocks/task4/maps/level3/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..44c73b7aae2e6af36e2c15c1ddd6d12ad788637e --- /dev/null +++ b/blocks/task4/maps/level3/text_input/39.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(red,table) +3. move(purple,yellow) diff --git a/blocks/task4/maps/level3/text_input/4.txt b/blocks/task4/maps/level3/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d76da6d1da4802420ee141bc681332da6bd4724c --- /dev/null +++ b/blocks/task4/maps/level3/text_input/4.txt @@ -0,0 +1,3 @@ +1. move(purple,orange) +2. move(green,blue) +3. move(red,green) diff --git a/blocks/task4/maps/level3/text_input/40.txt b/blocks/task4/maps/level3/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..21f234cc4c2d0c566c6251ddb04a526b5d232d1a --- /dev/null +++ b/blocks/task4/maps/level3/text_input/40.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(blue,table) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/41.txt b/blocks/task4/maps/level3/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..472f13ba39f95314eabbee70cef6f4f2eaf44ab8 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/41.txt @@ -0,0 +1,3 @@ +1. move(yellow,orange) +2. move(blue,yellow) +3. move(green,purple) diff --git a/blocks/task4/maps/level3/text_input/42.txt b/blocks/task4/maps/level3/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..7242ba5b866d52bf20491a62fb5373e3285ecf1a --- /dev/null +++ b/blocks/task4/maps/level3/text_input/42.txt @@ -0,0 +1,3 @@ +1. move(purple,table) +2. move(orange,yellow) +3. move(green,red) diff --git a/blocks/task4/maps/level3/text_input/43.txt b/blocks/task4/maps/level3/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e22ea27bad1a1b58a2cf676a6c1ae2456e1578a --- /dev/null +++ b/blocks/task4/maps/level3/text_input/43.txt @@ -0,0 +1,3 @@ +1. move(yellow,purple) +2. move(orange,table) +3. move(red,orange) diff --git a/blocks/task4/maps/level3/text_input/44.txt b/blocks/task4/maps/level3/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..d53afcfe3516f57d16fc2f76743cc00407792472 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/44.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(green,table) +3. move(orange,green) diff --git a/blocks/task4/maps/level3/text_input/45.txt b/blocks/task4/maps/level3/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..43c470e5fae115d521fd23a09dd7c1d014971e52 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/45.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(yellow,table) +3. move(orange,blue) diff --git a/blocks/task4/maps/level3/text_input/46.txt b/blocks/task4/maps/level3/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..83228c6701b62e8cb75fde41316c6ed449d7a747 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/46.txt @@ -0,0 +1,3 @@ +1. move(green,blue) +2. move(yellow,table) +3. move(purple,yellow) diff --git a/blocks/task4/maps/level3/text_input/47.txt b/blocks/task4/maps/level3/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..32b669cb0fc3fa59214a5ff04c94f8f0e1d07083 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/47.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(red,blue) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/48.txt b/blocks/task4/maps/level3/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..472f13ba39f95314eabbee70cef6f4f2eaf44ab8 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/48.txt @@ -0,0 +1,3 @@ +1. move(yellow,orange) +2. move(blue,yellow) +3. move(green,purple) diff --git a/blocks/task4/maps/level3/text_input/49.txt b/blocks/task4/maps/level3/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba437b73a06d2f39972472448923e45ae669f4af --- /dev/null +++ b/blocks/task4/maps/level3/text_input/49.txt @@ -0,0 +1,3 @@ +1. move(green,purple) +2. move(purple,yellow) +3. move(yellow,orange) diff --git a/blocks/task4/maps/level3/text_input/5.txt b/blocks/task4/maps/level3/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..805f6c0b3354c5cc9ed3b6122cc43955cae17097 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/5.txt @@ -0,0 +1,3 @@ +1. move(purple,green) +2. move(red,orange) +3. move(blue,red) diff --git a/blocks/task4/maps/level3/text_input/50.txt b/blocks/task4/maps/level3/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..37278feef8a2dc2d0875febca7609280f4990a4d --- /dev/null +++ b/blocks/task4/maps/level3/text_input/50.txt @@ -0,0 +1,3 @@ +1. move(purple,table) +2. move(green,red) +3. move(red,purple) diff --git a/blocks/task4/maps/level3/text_input/51.txt b/blocks/task4/maps/level3/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb9d9530423b30bf22777f64bf6e65653e245da2 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/51.txt @@ -0,0 +1,3 @@ +1. move(red,purple) +2. move(blue,red) +3. move(green,blue) diff --git a/blocks/task4/maps/level3/text_input/52.txt b/blocks/task4/maps/level3/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bc85679ae39fd22c8caa30e99b121392cb1717d --- /dev/null +++ b/blocks/task4/maps/level3/text_input/52.txt @@ -0,0 +1,3 @@ +1. move(green,purple) +2. move(purple,orange) +3. move(yellow,orange) diff --git a/blocks/task4/maps/level3/text_input/53.txt b/blocks/task4/maps/level3/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a06b37313397b37a2f5e6bf28f4d921ef347c1 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/53.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(red,yellow) +3. move(orange,red) diff --git a/blocks/task4/maps/level3/text_input/54.txt b/blocks/task4/maps/level3/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..55a7c2ddd8189c58d251613175b228112bd94dfa --- /dev/null +++ b/blocks/task4/maps/level3/text_input/54.txt @@ -0,0 +1,3 @@ +1. move(red,purple) +2. move(blue,red) +3. move(yellow,orange) diff --git a/blocks/task4/maps/level3/text_input/55.txt b/blocks/task4/maps/level3/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..259cf58ffdfed7bf8fadf5b47aefd31954a1f43d --- /dev/null +++ b/blocks/task4/maps/level3/text_input/55.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(green,blue) +3. move(red,yellow) diff --git a/blocks/task4/maps/level3/text_input/56.txt b/blocks/task4/maps/level3/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..76fe1f4d4c6d5bcd3bd5db25f339df53b28852a1 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/56.txt @@ -0,0 +1,3 @@ +1. move(green,table) +2. move(blue,table) +3. move(orange,green) diff --git a/blocks/task4/maps/level3/text_input/57.txt b/blocks/task4/maps/level3/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..209642c35f4bebd2649dabb2d7f15df276bdb4ab --- /dev/null +++ b/blocks/task4/maps/level3/text_input/57.txt @@ -0,0 +1,3 @@ +1. move(purple,green) +2. move(green,table) +3. move(blue,table) diff --git a/blocks/task4/maps/level3/text_input/58.txt b/blocks/task4/maps/level3/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2b1595c6b8828bbea4422e66946cbfb25a8f2b8 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/58.txt @@ -0,0 +1,3 @@ +1. move(blue,red) +2. move(yellow,orange) +3. move(green,yellow) diff --git a/blocks/task4/maps/level3/text_input/59.txt b/blocks/task4/maps/level3/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff5fc2b36a74424946acff93b466a3fe1dc37520 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/59.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(red,orange) +3. move(green,orange) diff --git a/blocks/task4/maps/level3/text_input/6.txt b/blocks/task4/maps/level3/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ad7f9c2cc3512f0dce65b21fd5c1e02a18ee07d --- /dev/null +++ b/blocks/task4/maps/level3/text_input/6.txt @@ -0,0 +1,3 @@ +1. move(blue,orange) +2. move(purple,green) +3. move(yellow,blue) diff --git a/blocks/task4/maps/level3/text_input/60.txt b/blocks/task4/maps/level3/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fd2387d626c651155e1afcc21314ad60a1c9966 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/60.txt @@ -0,0 +1,3 @@ +1. move(red,orange) +2. move(yellow,red) +3. move(red,green) diff --git a/blocks/task4/maps/level3/text_input/61.txt b/blocks/task4/maps/level3/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b0095669ce3e38f9ffd1fad7bc8149440612086 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/61.txt @@ -0,0 +1,3 @@ +1. move(yellow,orange) +2. move(green,yellow) +3. move(red,green) diff --git a/blocks/task4/maps/level3/text_input/62.txt b/blocks/task4/maps/level3/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff5fc2b36a74424946acff93b466a3fe1dc37520 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/62.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(red,orange) +3. move(green,orange) diff --git a/blocks/task4/maps/level3/text_input/63.txt b/blocks/task4/maps/level3/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..9418adfcc3b527b408913e776f1f1a7b206b01aa --- /dev/null +++ b/blocks/task4/maps/level3/text_input/63.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(blue,table) +3. move(green,orange) diff --git a/blocks/task4/maps/level3/text_input/64.txt b/blocks/task4/maps/level3/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..22613d45595f4e1e6297cff011a77baeb95e8d6b --- /dev/null +++ b/blocks/task4/maps/level3/text_input/64.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(red,orange) +3. move(green,red) diff --git a/blocks/task4/maps/level3/text_input/65.txt b/blocks/task4/maps/level3/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..be6b93cdc33a64f7e494c5a4b9b969066d6db8c4 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/65.txt @@ -0,0 +1,3 @@ +1. move(red,orange) +2. move(yellow,red) +3. move(green,yellow) diff --git a/blocks/task4/maps/level3/text_input/66.txt b/blocks/task4/maps/level3/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3cafadc183e883770a3473121c3a84ad7ed48d0 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/66.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(red,orange) +3. move(green,table) diff --git a/blocks/task4/maps/level3/text_input/67.txt b/blocks/task4/maps/level3/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5204df0545799bb5e27eeb36841bbf10d3b9b28 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/67.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(purple,table) +3. move(green,orange) diff --git a/blocks/task4/maps/level3/text_input/68.txt b/blocks/task4/maps/level3/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b5e763664c06e0af875d892468a6b81116f1222 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/68.txt @@ -0,0 +1,3 @@ +1. move(orange,red) +2. move(red,table) +3. move(purple,yellow) diff --git a/blocks/task4/maps/level3/text_input/69.txt b/blocks/task4/maps/level3/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..6dc6b65881f2a4a493eb6ba4e2c7ea3f00aeef21 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/69.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(purple,yellow) +3. move(blue,purple) diff --git a/blocks/task4/maps/level3/text_input/7.txt b/blocks/task4/maps/level3/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..33a25ed8adcd4f5cab31367786c6dba0ad4d092c --- /dev/null +++ b/blocks/task4/maps/level3/text_input/7.txt @@ -0,0 +1,3 @@ +1. move(green,purple) +2. move(orange,green) +3. move(red,orange) diff --git a/blocks/task4/maps/level3/text_input/70.txt b/blocks/task4/maps/level3/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..40e13b0433556ad3c9a07ad1911a60efb382f4c8 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/70.txt @@ -0,0 +1,3 @@ +1. move(green,table) +2. move(red,orange) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/71.txt b/blocks/task4/maps/level3/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..b61cccaf286a21a6e90f556a6b8619340981eab1 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/71.txt @@ -0,0 +1,3 @@ +1. move(yellow,red) +2. move(green,table) +3. move(red,green) diff --git a/blocks/task4/maps/level3/text_input/72.txt b/blocks/task4/maps/level3/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ac0e8be436002a598274db37ba2d3a655dd6fff --- /dev/null +++ b/blocks/task4/maps/level3/text_input/72.txt @@ -0,0 +1,3 @@ +1. move(green,table) +2. move(red,orange) +3. move(green,red) diff --git a/blocks/task4/maps/level3/text_input/73.txt b/blocks/task4/maps/level3/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..71c90d4ce3bac92720e137836a7c1ff6f8ec759e --- /dev/null +++ b/blocks/task4/maps/level3/text_input/73.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(yellow,orange) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/74.txt b/blocks/task4/maps/level3/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f68b2d055c7440b3c532e815f7464a2778bdee4 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/74.txt @@ -0,0 +1,3 @@ +1. move(green,table) +2. move(yellow,red) +3. move(purple,yellow) diff --git a/blocks/task4/maps/level3/text_input/75.txt b/blocks/task4/maps/level3/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2697a97282e5e43c9e863199309dd78fe2bb71e --- /dev/null +++ b/blocks/task4/maps/level3/text_input/75.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(purple,orange) +3. move(purple,green) diff --git a/blocks/task4/maps/level3/text_input/76.txt b/blocks/task4/maps/level3/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..27afea54a867bbf2d72d2091852d4dc777612f5c --- /dev/null +++ b/blocks/task4/maps/level3/text_input/76.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(orange,table) +3. move(blue,table) diff --git a/blocks/task4/maps/level3/text_input/77.txt b/blocks/task4/maps/level3/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..b87fa4e0c189dee35ff7d4a4e6233b3e9517ba7d --- /dev/null +++ b/blocks/task4/maps/level3/text_input/77.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(blue,red) +3. move(purple,orange) diff --git a/blocks/task4/maps/level3/text_input/78.txt b/blocks/task4/maps/level3/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dcf829bd51c9f920714b354b0084ca5d65bc239 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/78.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(orange,table) +3. move(yellow,table) diff --git a/blocks/task4/maps/level3/text_input/79.txt b/blocks/task4/maps/level3/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4e9c73aa48733f2d0e089481e998eb4790344e2 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/79.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(purple,blue) +3. move(yellow,orange) diff --git a/blocks/task4/maps/level3/text_input/8.txt b/blocks/task4/maps/level3/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3ad7830f474e687fa8bc4aec6752d609fdf699f --- /dev/null +++ b/blocks/task4/maps/level3/text_input/8.txt @@ -0,0 +1,3 @@ +1. move(purple,table) +2. move(orange,table) +3. move(yellow,table) diff --git a/blocks/task4/maps/level3/text_input/80.txt b/blocks/task4/maps/level3/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..74a028c60500763768b1a6978853d7fd45cbf488 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/80.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(green,table) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/81.txt b/blocks/task4/maps/level3/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6f9d379d6488afd7359d4501e297730d5b07199 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/81.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(green,orange) +3. move(red,yellow) diff --git a/blocks/task4/maps/level3/text_input/82.txt b/blocks/task4/maps/level3/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b591e44a4e11d132357624e2e62ec9870fac82b --- /dev/null +++ b/blocks/task4/maps/level3/text_input/82.txt @@ -0,0 +1,3 @@ +1. move(orange,table) +2. move(yellow,orange) +3. move(red,yellow) diff --git a/blocks/task4/maps/level3/text_input/83.txt b/blocks/task4/maps/level3/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..7843b1fb7288364012cba0b3270700d5813e376b --- /dev/null +++ b/blocks/task4/maps/level3/text_input/83.txt @@ -0,0 +1,3 @@ +1. move(red,yellow) +2. move(green,orange) +3. move(blue,table) diff --git a/blocks/task4/maps/level3/text_input/84.txt b/blocks/task4/maps/level3/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..146d44abc4c43c0a2bc7197a2de2610e6925c048 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/84.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(orange,blue) +3. move(purple,table) diff --git a/blocks/task4/maps/level3/text_input/85.txt b/blocks/task4/maps/level3/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..3acf1a636060bcef4ae1583b6e49ee541a4319f9 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/85.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(blue,table) +3. move(orange,table) diff --git a/blocks/task4/maps/level3/text_input/86.txt b/blocks/task4/maps/level3/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..588b5109230896de583e192d88da449fe35bc338 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/86.txt @@ -0,0 +1,3 @@ +1. move(blue,table) +2. move(orange,blue) +3. move(blue,green) diff --git a/blocks/task4/maps/level3/text_input/87.txt b/blocks/task4/maps/level3/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c95d04618b57a213cc91a2e24c18bbe2ac13dd7 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/87.txt @@ -0,0 +1,3 @@ +1. move(green,yellow) +2. move(red,table) +3. move(blue,table) diff --git a/blocks/task4/maps/level3/text_input/88.txt b/blocks/task4/maps/level3/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a37501654629002e0022346a5b19ceba959a95f --- /dev/null +++ b/blocks/task4/maps/level3/text_input/88.txt @@ -0,0 +1,3 @@ +1. move(orange,purple) +2. move(blue,green) +3. move(purple,blue) diff --git a/blocks/task4/maps/level3/text_input/89.txt b/blocks/task4/maps/level3/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..8de368b49ba7eb4aedf14caa8895e0b80a7ac828 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/89.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(yellow,blue) +3. move(purple,green) diff --git a/blocks/task4/maps/level3/text_input/9.txt b/blocks/task4/maps/level3/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..20baaf6a2b4bf824fb63975dcb4dab4408067686 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/9.txt @@ -0,0 +1,3 @@ +1. move(blue,orange) +2. move(yellow,blue) +3. move(yellow,red) diff --git a/blocks/task4/maps/level3/text_input/90.txt b/blocks/task4/maps/level3/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ef62cea63c1a947959b07ceaa721e506f58778b --- /dev/null +++ b/blocks/task4/maps/level3/text_input/90.txt @@ -0,0 +1,3 @@ +1. move(blue,green) +2. move(red,orange) +3. move(purple,blue) diff --git a/blocks/task4/maps/level3/text_input/91.txt b/blocks/task4/maps/level3/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..556a9288cbb20756e784eac02c9601ef330dbbc2 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/91.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(orange,yellow) +3. move(purple,green) diff --git a/blocks/task4/maps/level3/text_input/92.txt b/blocks/task4/maps/level3/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..e27a1f06e0f9be22cbd9428671faed8ef9179131 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/92.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(purple,green) +3. move(red,purple) diff --git a/blocks/task4/maps/level3/text_input/93.txt b/blocks/task4/maps/level3/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..18e9e7f1e5934e5e0c9759ab488636dad6f936fc --- /dev/null +++ b/blocks/task4/maps/level3/text_input/93.txt @@ -0,0 +1,3 @@ +1. move(orange,red) +2. move(red,yellow) +3. move(purple,green) diff --git a/blocks/task4/maps/level3/text_input/94.txt b/blocks/task4/maps/level3/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..63132b2db13a051f7a9da4ca26009a1fde414e48 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/94.txt @@ -0,0 +1,3 @@ +1. move(orange,green) +2. move(blue,yellow) +3. move(red,orange) diff --git a/blocks/task4/maps/level3/text_input/95.txt b/blocks/task4/maps/level3/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..5586a8ae618b51f97b4fc13ea27780b33e67b0f2 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/95.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(red,blue) +3. move(purple,table) diff --git a/blocks/task4/maps/level3/text_input/96.txt b/blocks/task4/maps/level3/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa59ab64076a04724733c6c358af04b5817bb845 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/96.txt @@ -0,0 +1,3 @@ +1. move(orange,green) +2. move(green,yellow) +3. move(red,orange) diff --git a/blocks/task4/maps/level3/text_input/97.txt b/blocks/task4/maps/level3/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b1af8d7ea8dd4c41fa8f455e3aad62a6723896 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/97.txt @@ -0,0 +1,3 @@ +1. move(orange,blue) +2. move(yellow,table) +3. move(red,blue) diff --git a/blocks/task4/maps/level3/text_input/98.txt b/blocks/task4/maps/level3/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..b65dc5a2a8776fca97d60fd548b2210f322dab86 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/98.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(purple,table) +3. move(green,blue) diff --git a/blocks/task4/maps/level3/text_input/99.txt b/blocks/task4/maps/level3/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9e7fab0aa6efb4801646bcabd85aa1e56c11317 --- /dev/null +++ b/blocks/task4/maps/level3/text_input/99.txt @@ -0,0 +1,3 @@ +1. move(red,table) +2. move(purple,table) +3. move(green,table) diff --git a/blocks/task4/maps/level5/annotation.txt b/blocks/task4/maps/level5/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..f04c2b77449e3a18e6c8c37f314f4583c3c4b953 --- /dev/null +++ b/blocks/task4/maps/level5/annotation.txt @@ -0,0 +1,50 @@ +3 +4 +9 +10 +13 +15 +17 +19 +20 +21 +26 +29 +30 +31 +33 +34 +35 +36 +40 +42 +44 +45 +49 +54 +56 +57 +58 +59 +60 +62 +64 +66 +67 +70 +71 +73 +74 +76 +78 +79 +82 +85 +86 +88 +90 +91 +92 +95 +96 +97 diff --git a/blocks/task4/maps/level5/image_input/0.jpg b/blocks/task4/maps/level5/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e53c1b4471f29b7903a670398fecc2f2167ef2f --- /dev/null +++ b/blocks/task4/maps/level5/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55d36a900e017f7751b1a5db8c17d26ba33fac56446dbb1be22138ea034d97f4 +size 9327 diff --git a/blocks/task4/maps/level5/image_input/1.jpg b/blocks/task4/maps/level5/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b04b366ce4fbed84a3aee39d2cbd7af6c003f1aa --- /dev/null +++ b/blocks/task4/maps/level5/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a9f858debe46dc5bf966788283e2f0825c199879b3ce29664728af2247242f +size 10093 diff --git a/blocks/task4/maps/level5/image_input/10.jpg b/blocks/task4/maps/level5/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1180ab68c26bb2f083bba8643fb962c60526fa3 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b23b902ad7c3ac335f56d03ce8213cbb39f7c229d4164da0cd6b050ab151f0 +size 10215 diff --git a/blocks/task4/maps/level5/image_input/11.jpg b/blocks/task4/maps/level5/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f4e5ab354dee7b9b5bd73c370d1f4c79bae8f2a --- /dev/null +++ b/blocks/task4/maps/level5/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aee7b7d4a88312e393a2b9b109ada33f28dc5fad5ec6853cbf9cf66f59a2e57 +size 11925 diff --git a/blocks/task4/maps/level5/image_input/12.jpg b/blocks/task4/maps/level5/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5661f690f9915ee608fc192e16c256e7a6c6352b --- /dev/null +++ b/blocks/task4/maps/level5/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a967861bf919cca0f9f483027efd340b0e91de299cac41efa78ee3f6e546bc01 +size 10445 diff --git a/blocks/task4/maps/level5/image_input/13.jpg b/blocks/task4/maps/level5/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efd5e4bd4533a87656ab784d226c3d70176c22d1 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adbde4157abd33834efb8ee849b93966f79be93d4598714e9957565bd753809f +size 11764 diff --git a/blocks/task4/maps/level5/image_input/14.jpg b/blocks/task4/maps/level5/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..920168cd567512f7bded508f24d94dd4ebaca065 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bbce481c38213512e74afece2631c7eb8cb52d92ab706c574b4eaa465f88f1 +size 11057 diff --git a/blocks/task4/maps/level5/image_input/15.jpg b/blocks/task4/maps/level5/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e752a07137d22a5a2eff39c0c014c6eff95c683 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175b7047e71ca6e9822f23eba5cf50274878d849042e7ed254cb9c103f213eb9 +size 9315 diff --git a/blocks/task4/maps/level5/image_input/16.jpg b/blocks/task4/maps/level5/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fe6e937130c0709967fd8ee2d2c851cc7f5430e --- /dev/null +++ b/blocks/task4/maps/level5/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b51ebb922dcbd8728b6f8b2b6100d1eb3c4407f72eaf5831b9f9d574a7b8bf2 +size 10083 diff --git a/blocks/task4/maps/level5/image_input/17.jpg b/blocks/task4/maps/level5/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5def92ef6ed9389ac8eaa8b5e999db5111a0d2f6 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a880ed361dea4b991b3f9d08881d41e01af618741046a61c2b2df2879d964555 +size 10745 diff --git a/blocks/task4/maps/level5/image_input/18.jpg b/blocks/task4/maps/level5/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4aecc0072bb01ae905453abfec2dcfdf53314e4 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ef95be8856eb4febe97bc84aec6a31acf40e8fb4cb82a7e1942be03c3c5d02 +size 10893 diff --git a/blocks/task4/maps/level5/image_input/19.jpg b/blocks/task4/maps/level5/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f4e5ab354dee7b9b5bd73c370d1f4c79bae8f2a --- /dev/null +++ b/blocks/task4/maps/level5/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aee7b7d4a88312e393a2b9b109ada33f28dc5fad5ec6853cbf9cf66f59a2e57 +size 11925 diff --git a/blocks/task4/maps/level5/image_input/2.jpg b/blocks/task4/maps/level5/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8e349169b3303e867376637ba933fb1638c372d --- /dev/null +++ b/blocks/task4/maps/level5/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324544729a94efdb1d9df74059e97145b442d5ca7f0756bcd89c132192105fd6 +size 10090 diff --git a/blocks/task4/maps/level5/image_input/20.jpg b/blocks/task4/maps/level5/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5661f690f9915ee608fc192e16c256e7a6c6352b --- /dev/null +++ b/blocks/task4/maps/level5/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a967861bf919cca0f9f483027efd340b0e91de299cac41efa78ee3f6e546bc01 +size 10445 diff --git a/blocks/task4/maps/level5/image_input/21.jpg b/blocks/task4/maps/level5/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..920168cd567512f7bded508f24d94dd4ebaca065 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bbce481c38213512e74afece2631c7eb8cb52d92ab706c574b4eaa465f88f1 +size 11057 diff --git a/blocks/task4/maps/level5/image_input/22.jpg b/blocks/task4/maps/level5/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..773155c3200805e162ad1d8806ffe332703081c4 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9060fc7b2e385e9760c116d580518c7425ef64c333e2e834f25dd74598907da8 +size 10517 diff --git a/blocks/task4/maps/level5/image_input/23.jpg b/blocks/task4/maps/level5/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8801d4d0d806c9a871aa82730ee45000a39a5ff --- /dev/null +++ b/blocks/task4/maps/level5/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58db4c95e862113540a897d84ac804375f1ea59458c6bd219f7ac05bdafd5f92 +size 11378 diff --git a/blocks/task4/maps/level5/image_input/24.jpg b/blocks/task4/maps/level5/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b5ef570d3345f1996a83bef1eb526e9af6bdf6c --- /dev/null +++ b/blocks/task4/maps/level5/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5293faaaf0014a6d68fb925655d8f2cb8534c4dffddb9ed825dfbfe5c4686f39 +size 11329 diff --git a/blocks/task4/maps/level5/image_input/25.jpg b/blocks/task4/maps/level5/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe6ba061f9c829364b109a8651d71abfcfdbd374 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36b88056c93649bf1b46f8ce52c0dc93e96a527436113f5bdc3b19b801f9b42 +size 10388 diff --git a/blocks/task4/maps/level5/image_input/26.jpg b/blocks/task4/maps/level5/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fe6e937130c0709967fd8ee2d2c851cc7f5430e --- /dev/null +++ b/blocks/task4/maps/level5/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b51ebb922dcbd8728b6f8b2b6100d1eb3c4407f72eaf5831b9f9d574a7b8bf2 +size 10083 diff --git a/blocks/task4/maps/level5/image_input/27.jpg b/blocks/task4/maps/level5/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfe93331132df53c1994010538bb2521e2b89b04 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8204d637b2058ccf0cb8d4fdea51d36dda36f34ce1e0813ce8fa45d189617c9e +size 10756 diff --git a/blocks/task4/maps/level5/image_input/28.jpg b/blocks/task4/maps/level5/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f2a290de2fc71e257d0749119ed7607b1805595 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1277802e9a0a4ed5ec4dd0c8358c8c93fd5c914366aa18d92c1c3f2fea2a8733 +size 10294 diff --git a/blocks/task4/maps/level5/image_input/29.jpg b/blocks/task4/maps/level5/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4aecc0072bb01ae905453abfec2dcfdf53314e4 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ef95be8856eb4febe97bc84aec6a31acf40e8fb4cb82a7e1942be03c3c5d02 +size 10893 diff --git a/blocks/task4/maps/level5/image_input/3.jpg b/blocks/task4/maps/level5/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e53c1b4471f29b7903a670398fecc2f2167ef2f --- /dev/null +++ b/blocks/task4/maps/level5/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55d36a900e017f7751b1a5db8c17d26ba33fac56446dbb1be22138ea034d97f4 +size 9327 diff --git a/blocks/task4/maps/level5/image_input/30.jpg b/blocks/task4/maps/level5/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..773155c3200805e162ad1d8806ffe332703081c4 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9060fc7b2e385e9760c116d580518c7425ef64c333e2e834f25dd74598907da8 +size 10517 diff --git a/blocks/task4/maps/level5/image_input/31.jpg b/blocks/task4/maps/level5/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8801d4d0d806c9a871aa82730ee45000a39a5ff --- /dev/null +++ b/blocks/task4/maps/level5/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58db4c95e862113540a897d84ac804375f1ea59458c6bd219f7ac05bdafd5f92 +size 11378 diff --git a/blocks/task4/maps/level5/image_input/32.jpg b/blocks/task4/maps/level5/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25b488577b2ae7c3522924f4fea353b0754d5f57 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d738eb7e4a229f7fb33e2fe99ea1477f3fa16351c0ee89aa0c928b32d5759e2 +size 9553 diff --git a/blocks/task4/maps/level5/image_input/33.jpg b/blocks/task4/maps/level5/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b5ef570d3345f1996a83bef1eb526e9af6bdf6c --- /dev/null +++ b/blocks/task4/maps/level5/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5293faaaf0014a6d68fb925655d8f2cb8534c4dffddb9ed825dfbfe5c4686f39 +size 11329 diff --git a/blocks/task4/maps/level5/image_input/34.jpg b/blocks/task4/maps/level5/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe6ba061f9c829364b109a8651d71abfcfdbd374 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36b88056c93649bf1b46f8ce52c0dc93e96a527436113f5bdc3b19b801f9b42 +size 10388 diff --git a/blocks/task4/maps/level5/image_input/35.jpg b/blocks/task4/maps/level5/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfe93331132df53c1994010538bb2521e2b89b04 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8204d637b2058ccf0cb8d4fdea51d36dda36f34ce1e0813ce8fa45d189617c9e +size 10756 diff --git a/blocks/task4/maps/level5/image_input/36.jpg b/blocks/task4/maps/level5/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f2a290de2fc71e257d0749119ed7607b1805595 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1277802e9a0a4ed5ec4dd0c8358c8c93fd5c914366aa18d92c1c3f2fea2a8733 +size 10294 diff --git a/blocks/task4/maps/level5/image_input/37.jpg b/blocks/task4/maps/level5/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc81394b3c380892c6c5559acedf112441261e66 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f052dac4db324aa47d962362a4b1652e3eb07fb52742fc9e2f1bfa7e07c7cb +size 10332 diff --git a/blocks/task4/maps/level5/image_input/38.jpg b/blocks/task4/maps/level5/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6af4148cb96e98f1c9729238d3c799b715bfa8f --- /dev/null +++ b/blocks/task4/maps/level5/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97fb253d90aa2d3c7fa40b7e20b4a528422f9622e284829396abfb3ac6987af9 +size 9983 diff --git a/blocks/task4/maps/level5/image_input/39.jpg b/blocks/task4/maps/level5/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b17f619fb044fde10f3e111e4407b84c83be675b --- /dev/null +++ b/blocks/task4/maps/level5/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa82c1a402ff2fd894410fcb6a476e950570f8b00bb4eb0f812802597f3b999 +size 9289 diff --git a/blocks/task4/maps/level5/image_input/4.jpg b/blocks/task4/maps/level5/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b04b366ce4fbed84a3aee39d2cbd7af6c003f1aa --- /dev/null +++ b/blocks/task4/maps/level5/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a9f858debe46dc5bf966788283e2f0825c199879b3ce29664728af2247242f +size 10093 diff --git a/blocks/task4/maps/level5/image_input/40.jpg b/blocks/task4/maps/level5/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25b488577b2ae7c3522924f4fea353b0754d5f57 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d738eb7e4a229f7fb33e2fe99ea1477f3fa16351c0ee89aa0c928b32d5759e2 +size 9553 diff --git a/blocks/task4/maps/level5/image_input/41.jpg b/blocks/task4/maps/level5/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c489c3e38ab698b9721bbbe77831ce911ec82dff --- /dev/null +++ b/blocks/task4/maps/level5/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09328ef99247f8cdeca8ac94c6be08a1babe2763ebba9b57e9ee333250a1e5be +size 12459 diff --git a/blocks/task4/maps/level5/image_input/42.jpg b/blocks/task4/maps/level5/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc81394b3c380892c6c5559acedf112441261e66 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f052dac4db324aa47d962362a4b1652e3eb07fb52742fc9e2f1bfa7e07c7cb +size 10332 diff --git a/blocks/task4/maps/level5/image_input/43.jpg b/blocks/task4/maps/level5/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..befad1e40340d491ef086033270b06bef1c60957 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d462ef9a70aac16df8dd8aac4d08767054ea8c8fc8d0d4be10919f5734e79d5b +size 11159 diff --git a/blocks/task4/maps/level5/image_input/44.jpg b/blocks/task4/maps/level5/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6af4148cb96e98f1c9729238d3c799b715bfa8f --- /dev/null +++ b/blocks/task4/maps/level5/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97fb253d90aa2d3c7fa40b7e20b4a528422f9622e284829396abfb3ac6987af9 +size 9983 diff --git a/blocks/task4/maps/level5/image_input/45.jpg b/blocks/task4/maps/level5/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b17f619fb044fde10f3e111e4407b84c83be675b --- /dev/null +++ b/blocks/task4/maps/level5/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa82c1a402ff2fd894410fcb6a476e950570f8b00bb4eb0f812802597f3b999 +size 9289 diff --git a/blocks/task4/maps/level5/image_input/46.jpg b/blocks/task4/maps/level5/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3f129ebd11a8e83ccb4c0227f2900f8ec79a31f --- /dev/null +++ b/blocks/task4/maps/level5/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0773fc4ffcde6f07d9e7cf781dd7d54f610b922c2cd8543250043e436ba4935 +size 10189 diff --git a/blocks/task4/maps/level5/image_input/47.jpg b/blocks/task4/maps/level5/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..656fcacda2ad7f781fb67db916d4ef83c3f1d414 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3bf544e81c05ad97acd5711868058400e084229cb19603dfdde7a806f9921ce +size 11129 diff --git a/blocks/task4/maps/level5/image_input/48.jpg b/blocks/task4/maps/level5/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aaf82738d5155a719a2cd4c1e5d5d6d11fd0133d --- /dev/null +++ b/blocks/task4/maps/level5/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f71c5e284757dad50afc72d2d79bf963e6b402dba6ad0e93613fd2fb8866ec +size 10850 diff --git a/blocks/task4/maps/level5/image_input/49.jpg b/blocks/task4/maps/level5/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c489c3e38ab698b9721bbbe77831ce911ec82dff --- /dev/null +++ b/blocks/task4/maps/level5/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09328ef99247f8cdeca8ac94c6be08a1babe2763ebba9b57e9ee333250a1e5be +size 12459 diff --git a/blocks/task4/maps/level5/image_input/5.jpg b/blocks/task4/maps/level5/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1180ab68c26bb2f083bba8643fb962c60526fa3 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b23b902ad7c3ac335f56d03ce8213cbb39f7c229d4164da0cd6b050ab151f0 +size 10215 diff --git a/blocks/task4/maps/level5/image_input/50.jpg b/blocks/task4/maps/level5/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d46677bb608064ea76ca3dfb415591f834dc0f1 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e30bddbb56d59447fbdaf5baef50e778e1cdc97ded6499caeee8c67c2db84024 +size 11385 diff --git a/blocks/task4/maps/level5/image_input/51.jpg b/blocks/task4/maps/level5/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..793ce83c030e90d3309cb71ffe9c1ebcfd80c1d0 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4ae18b77bd71bc6ab679d1dd221f7aa0253ba327b4ff62f8ef4e41c3c41e23 +size 11184 diff --git a/blocks/task4/maps/level5/image_input/52.jpg b/blocks/task4/maps/level5/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5de93836b1c46dd54fe73b8cc91b0bab93dd8f1d --- /dev/null +++ b/blocks/task4/maps/level5/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef7e0dcac59b1eb0be296362823897638ca6d0e1c72d319aa182f4107e04821 +size 9929 diff --git a/blocks/task4/maps/level5/image_input/53.jpg b/blocks/task4/maps/level5/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..916ab1df1576edfe06c9d4b6a550f5e0afb58aa3 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d259e3951a42ee1dc4c2fc502b06b7b527f7f784855a06bc732f60f6b6bf7b0 +size 10464 diff --git a/blocks/task4/maps/level5/image_input/54.jpg b/blocks/task4/maps/level5/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..befad1e40340d491ef086033270b06bef1c60957 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d462ef9a70aac16df8dd8aac4d08767054ea8c8fc8d0d4be10919f5734e79d5b +size 11159 diff --git a/blocks/task4/maps/level5/image_input/55.jpg b/blocks/task4/maps/level5/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5afdf1c18ff63a737184c11dfbb8ed3066492dca --- /dev/null +++ b/blocks/task4/maps/level5/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c730b2b39b6c8ea342c6cd00c03779658257977b4b8f0ea03d2454f240e1648b +size 10162 diff --git a/blocks/task4/maps/level5/image_input/56.jpg b/blocks/task4/maps/level5/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3f129ebd11a8e83ccb4c0227f2900f8ec79a31f --- /dev/null +++ b/blocks/task4/maps/level5/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0773fc4ffcde6f07d9e7cf781dd7d54f610b922c2cd8543250043e436ba4935 +size 10189 diff --git a/blocks/task4/maps/level5/image_input/57.jpg b/blocks/task4/maps/level5/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..656fcacda2ad7f781fb67db916d4ef83c3f1d414 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3bf544e81c05ad97acd5711868058400e084229cb19603dfdde7a806f9921ce +size 11129 diff --git a/blocks/task4/maps/level5/image_input/58.jpg b/blocks/task4/maps/level5/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aaf82738d5155a719a2cd4c1e5d5d6d11fd0133d --- /dev/null +++ b/blocks/task4/maps/level5/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f71c5e284757dad50afc72d2d79bf963e6b402dba6ad0e93613fd2fb8866ec +size 10850 diff --git a/blocks/task4/maps/level5/image_input/59.jpg b/blocks/task4/maps/level5/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d46677bb608064ea76ca3dfb415591f834dc0f1 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e30bddbb56d59447fbdaf5baef50e778e1cdc97ded6499caeee8c67c2db84024 +size 11385 diff --git a/blocks/task4/maps/level5/image_input/6.jpg b/blocks/task4/maps/level5/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efd5e4bd4533a87656ab784d226c3d70176c22d1 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adbde4157abd33834efb8ee849b93966f79be93d4598714e9957565bd753809f +size 11764 diff --git a/blocks/task4/maps/level5/image_input/60.jpg b/blocks/task4/maps/level5/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..793ce83c030e90d3309cb71ffe9c1ebcfd80c1d0 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4ae18b77bd71bc6ab679d1dd221f7aa0253ba327b4ff62f8ef4e41c3c41e23 +size 11184 diff --git a/blocks/task4/maps/level5/image_input/61.jpg b/blocks/task4/maps/level5/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ac3602326b1f4afc750e0d44d9f8404e5856300 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70bd9de2beec944ae96cf3b962c396a6e3a2ec9da93d4496801138a6565a756 +size 10208 diff --git a/blocks/task4/maps/level5/image_input/62.jpg b/blocks/task4/maps/level5/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5de93836b1c46dd54fe73b8cc91b0bab93dd8f1d --- /dev/null +++ b/blocks/task4/maps/level5/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef7e0dcac59b1eb0be296362823897638ca6d0e1c72d319aa182f4107e04821 +size 9929 diff --git a/blocks/task4/maps/level5/image_input/63.jpg b/blocks/task4/maps/level5/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..159c73bb3f70a76593dd67e2e0892eee65b1835e --- /dev/null +++ b/blocks/task4/maps/level5/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1661f5b3883b95b2cfe633d8bcd9a776e0a231d9e652726f46eee45a76f9b73 +size 11555 diff --git a/blocks/task4/maps/level5/image_input/64.jpg b/blocks/task4/maps/level5/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..916ab1df1576edfe06c9d4b6a550f5e0afb58aa3 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d259e3951a42ee1dc4c2fc502b06b7b527f7f784855a06bc732f60f6b6bf7b0 +size 10464 diff --git a/blocks/task4/maps/level5/image_input/65.jpg b/blocks/task4/maps/level5/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e019e15615321316d1600e809a720f93582e7d06 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c200774da07c0ca93b31916d71d33714cd373121214f5a4d1d1c3bf87aaba1 +size 10546 diff --git a/blocks/task4/maps/level5/image_input/66.jpg b/blocks/task4/maps/level5/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5afdf1c18ff63a737184c11dfbb8ed3066492dca --- /dev/null +++ b/blocks/task4/maps/level5/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c730b2b39b6c8ea342c6cd00c03779658257977b4b8f0ea03d2454f240e1648b +size 10162 diff --git a/blocks/task4/maps/level5/image_input/67.jpg b/blocks/task4/maps/level5/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ac3602326b1f4afc750e0d44d9f8404e5856300 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70bd9de2beec944ae96cf3b962c396a6e3a2ec9da93d4496801138a6565a756 +size 10208 diff --git a/blocks/task4/maps/level5/image_input/68.jpg b/blocks/task4/maps/level5/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a67bae385d632654cb18253abad4751475582a2b --- /dev/null +++ b/blocks/task4/maps/level5/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7424093490a2f60bfc54ffc55a96d8ddf81ad8d5664cb45fe6c0da321563f4d1 +size 10022 diff --git a/blocks/task4/maps/level5/image_input/69.jpg b/blocks/task4/maps/level5/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68c6a6f6f7c0964ab9e20547c1a66477f4d81e8b --- /dev/null +++ b/blocks/task4/maps/level5/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a926725c556ee9ef11bf834c5212a9270e2992d59cc612ee24af90d616ac1e90 +size 9966 diff --git a/blocks/task4/maps/level5/image_input/7.jpg b/blocks/task4/maps/level5/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e752a07137d22a5a2eff39c0c014c6eff95c683 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175b7047e71ca6e9822f23eba5cf50274878d849042e7ed254cb9c103f213eb9 +size 9315 diff --git a/blocks/task4/maps/level5/image_input/70.jpg b/blocks/task4/maps/level5/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..159c73bb3f70a76593dd67e2e0892eee65b1835e --- /dev/null +++ b/blocks/task4/maps/level5/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1661f5b3883b95b2cfe633d8bcd9a776e0a231d9e652726f46eee45a76f9b73 +size 11555 diff --git a/blocks/task4/maps/level5/image_input/71.jpg b/blocks/task4/maps/level5/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e019e15615321316d1600e809a720f93582e7d06 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c200774da07c0ca93b31916d71d33714cd373121214f5a4d1d1c3bf87aaba1 +size 10546 diff --git a/blocks/task4/maps/level5/image_input/72.jpg b/blocks/task4/maps/level5/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc40023af2c8066cfdc3169b72d515bbd17a4084 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce91f3c9fe8c701b079f9e70b72709e745beafd1c8d84629b79ab54684dabd3c +size 10428 diff --git a/blocks/task4/maps/level5/image_input/73.jpg b/blocks/task4/maps/level5/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a67bae385d632654cb18253abad4751475582a2b --- /dev/null +++ b/blocks/task4/maps/level5/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7424093490a2f60bfc54ffc55a96d8ddf81ad8d5664cb45fe6c0da321563f4d1 +size 10022 diff --git a/blocks/task4/maps/level5/image_input/74.jpg b/blocks/task4/maps/level5/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68c6a6f6f7c0964ab9e20547c1a66477f4d81e8b --- /dev/null +++ b/blocks/task4/maps/level5/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a926725c556ee9ef11bf834c5212a9270e2992d59cc612ee24af90d616ac1e90 +size 9966 diff --git a/blocks/task4/maps/level5/image_input/75.jpg b/blocks/task4/maps/level5/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb30a229ca4b5bdc87970833250660989d2351df --- /dev/null +++ b/blocks/task4/maps/level5/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a39ca1af2a23d206a29841f87fa3e1f7786f908a20a30f4de44cf5f35546190 +size 10516 diff --git a/blocks/task4/maps/level5/image_input/76.jpg b/blocks/task4/maps/level5/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc40023af2c8066cfdc3169b72d515bbd17a4084 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce91f3c9fe8c701b079f9e70b72709e745beafd1c8d84629b79ab54684dabd3c +size 10428 diff --git a/blocks/task4/maps/level5/image_input/77.jpg b/blocks/task4/maps/level5/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7c5a89edd1994eadd4c9388d341cccd868eac46 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2010adf1e512b5aefcf031333787b085e078412ca9563ff38d94d553404fdda7 +size 11273 diff --git a/blocks/task4/maps/level5/image_input/78.jpg b/blocks/task4/maps/level5/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb30a229ca4b5bdc87970833250660989d2351df --- /dev/null +++ b/blocks/task4/maps/level5/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a39ca1af2a23d206a29841f87fa3e1f7786f908a20a30f4de44cf5f35546190 +size 10516 diff --git a/blocks/task4/maps/level5/image_input/79.jpg b/blocks/task4/maps/level5/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7c5a89edd1994eadd4c9388d341cccd868eac46 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2010adf1e512b5aefcf031333787b085e078412ca9563ff38d94d553404fdda7 +size 11273 diff --git a/blocks/task4/maps/level5/image_input/8.jpg b/blocks/task4/maps/level5/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5def92ef6ed9389ac8eaa8b5e999db5111a0d2f6 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a880ed361dea4b991b3f9d08881d41e01af618741046a61c2b2df2879d964555 +size 10745 diff --git a/blocks/task4/maps/level5/image_input/80.jpg b/blocks/task4/maps/level5/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23d577f5021c341a50596216b634718c622e7a18 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b61b1de15e66698b013a043f733eb5e1f70ddb87146901edcb89dff4a0c7867 +size 9782 diff --git a/blocks/task4/maps/level5/image_input/81.jpg b/blocks/task4/maps/level5/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f1e93da1434458d4df48a870e39a534649325d7 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36e46519e42f7a98cfb861c035a228030fe79c888306049c89508766ea28423 +size 10588 diff --git a/blocks/task4/maps/level5/image_input/82.jpg b/blocks/task4/maps/level5/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23d577f5021c341a50596216b634718c622e7a18 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b61b1de15e66698b013a043f733eb5e1f70ddb87146901edcb89dff4a0c7867 +size 9782 diff --git a/blocks/task4/maps/level5/image_input/83.jpg b/blocks/task4/maps/level5/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d05c20fe5220bde1b00e05dca4e5ba31a5bca3d --- /dev/null +++ b/blocks/task4/maps/level5/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655ea54ae44f628c0e1c81f119e935ff399b63c0aa4f2647dc04ce1a849662b7 +size 12385 diff --git a/blocks/task4/maps/level5/image_input/84.jpg b/blocks/task4/maps/level5/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab6a206e84560f264c9cb996eebaf854c2600767 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee38ba478de4482662da3225853e5d0e3705d8f415f1482c47942ca3e4a7fd50 +size 11413 diff --git a/blocks/task4/maps/level5/image_input/85.jpg b/blocks/task4/maps/level5/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f1e93da1434458d4df48a870e39a534649325d7 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36e46519e42f7a98cfb861c035a228030fe79c888306049c89508766ea28423 +size 10588 diff --git a/blocks/task4/maps/level5/image_input/86.jpg b/blocks/task4/maps/level5/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d05c20fe5220bde1b00e05dca4e5ba31a5bca3d --- /dev/null +++ b/blocks/task4/maps/level5/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655ea54ae44f628c0e1c81f119e935ff399b63c0aa4f2647dc04ce1a849662b7 +size 12385 diff --git a/blocks/task4/maps/level5/image_input/87.jpg b/blocks/task4/maps/level5/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6109946d0bd5fd78ddb2805f3b507ae9fea48709 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2ca3598b248fa40945cce0fb75d21d64b205d91ac050b7d5ddc6b4a3eb5349 +size 11767 diff --git a/blocks/task4/maps/level5/image_input/88.jpg b/blocks/task4/maps/level5/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab6a206e84560f264c9cb996eebaf854c2600767 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee38ba478de4482662da3225853e5d0e3705d8f415f1482c47942ca3e4a7fd50 +size 11413 diff --git a/blocks/task4/maps/level5/image_input/89.jpg b/blocks/task4/maps/level5/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fda57b94053ebf9e0e8edea1afdc37cd3c6b5dac --- /dev/null +++ b/blocks/task4/maps/level5/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e0e6542423f071539648cd5dba58c4afd0e4ec05216a3bb7389a99cc8dc7bdd +size 10268 diff --git a/blocks/task4/maps/level5/image_input/9.jpg b/blocks/task4/maps/level5/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8e349169b3303e867376637ba933fb1638c372d --- /dev/null +++ b/blocks/task4/maps/level5/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324544729a94efdb1d9df74059e97145b442d5ca7f0756bcd89c132192105fd6 +size 10090 diff --git a/blocks/task4/maps/level5/image_input/90.jpg b/blocks/task4/maps/level5/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6109946d0bd5fd78ddb2805f3b507ae9fea48709 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2ca3598b248fa40945cce0fb75d21d64b205d91ac050b7d5ddc6b4a3eb5349 +size 11767 diff --git a/blocks/task4/maps/level5/image_input/91.jpg b/blocks/task4/maps/level5/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fda57b94053ebf9e0e8edea1afdc37cd3c6b5dac --- /dev/null +++ b/blocks/task4/maps/level5/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e0e6542423f071539648cd5dba58c4afd0e4ec05216a3bb7389a99cc8dc7bdd +size 10268 diff --git a/blocks/task4/maps/level5/image_input/92.jpg b/blocks/task4/maps/level5/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54194b0ae8b3d137516c52cb6ce683d1192eb810 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0500c7ce99fceb00953ed2fe2213cff4d4bd7e9911069f0795a8ed2a6b654a59 +size 10336 diff --git a/blocks/task4/maps/level5/image_input/93.jpg b/blocks/task4/maps/level5/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54194b0ae8b3d137516c52cb6ce683d1192eb810 --- /dev/null +++ b/blocks/task4/maps/level5/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0500c7ce99fceb00953ed2fe2213cff4d4bd7e9911069f0795a8ed2a6b654a59 +size 10336 diff --git a/blocks/task4/maps/level5/image_input/94.jpg b/blocks/task4/maps/level5/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca0c630d9e6167a3043ba99e7fff57bbc2de4c9f --- /dev/null +++ b/blocks/task4/maps/level5/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c27073efdb8936304a45f3e51410ebf13d2fe1bd8fb8d6ca254b678ad920787 +size 10236 diff --git a/blocks/task4/maps/level5/image_input/95.jpg b/blocks/task4/maps/level5/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca0c630d9e6167a3043ba99e7fff57bbc2de4c9f --- /dev/null +++ b/blocks/task4/maps/level5/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c27073efdb8936304a45f3e51410ebf13d2fe1bd8fb8d6ca254b678ad920787 +size 10236 diff --git a/blocks/task4/maps/level5/image_input/96.jpg b/blocks/task4/maps/level5/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5863d03f8bbf743eca71e621f7c64eacfb2bd3ef --- /dev/null +++ b/blocks/task4/maps/level5/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278b9e4277898f35d6ac0d103d1aab3159c7d01a1e314a17ba8b4312c371eb78 +size 9152 diff --git a/blocks/task4/maps/level5/image_input/97.jpg b/blocks/task4/maps/level5/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11e21fda9dd187cc2329db97ba3c05a36165c58a --- /dev/null +++ b/blocks/task4/maps/level5/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ef5b08aa315595653b4f867926e0dc516c09d8d554ec646a91b8444dec0e68 +size 10871 diff --git a/blocks/task4/maps/level5/image_input/98.jpg b/blocks/task4/maps/level5/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5863d03f8bbf743eca71e621f7c64eacfb2bd3ef --- /dev/null +++ b/blocks/task4/maps/level5/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278b9e4277898f35d6ac0d103d1aab3159c7d01a1e314a17ba8b4312c371eb78 +size 9152 diff --git a/blocks/task4/maps/level5/image_input/99.jpg b/blocks/task4/maps/level5/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11e21fda9dd187cc2329db97ba3c05a36165c58a --- /dev/null +++ b/blocks/task4/maps/level5/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ef5b08aa315595653b4f867926e0dc516c09d8d554ec646a91b8444dec0e68 +size 10871 diff --git a/blocks/task4/maps/level5/pure_text_rep_input/0.txt b/blocks/task4/maps/level5/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5503cbe4fb56ff31984106335655e656324915df --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/0.txt @@ -0,0 +1 @@ +- Stack with orange block, green block, purple block, yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/1.txt b/blocks/task4/maps/level5/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5bf2095047c1dd8875034bcc03eee5dd895425f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/1.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, blue block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/10.txt b/blocks/task4/maps/level5/pure_text_rep_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef4eb89cdbc2ea92026b03dbf59daebd8e69c839 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/10.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/11.txt b/blocks/task4/maps/level5/pure_text_rep_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..7909c94bbee3d4358366ce9f5cb141b9583e05b5 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/11.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/12.txt b/blocks/task4/maps/level5/pure_text_rep_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f6314e6f6b3def0081088dab9dca6632daa630a --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/12.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/13.txt b/blocks/task4/maps/level5/pure_text_rep_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..cff3067aecadb302cad1b92b5c97d70bf8ed1a11 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/13.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, orange block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/14.txt b/blocks/task4/maps/level5/pure_text_rep_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca6a9af650d014728acb352a95f738126ee3c271 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/14.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/15.txt b/blocks/task4/maps/level5/pure_text_rep_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..037444c2c0ae5221d31034cedc4919c61e88b848 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/15.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/16.txt b/blocks/task4/maps/level5/pure_text_rep_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..76218b6ce4a4f013228d7b0265a95af477f64451 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/16.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with blue block, purple block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/17.txt b/blocks/task4/maps/level5/pure_text_rep_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..6995e62a08b4c7d1bd0b4485706e7f3d4f4b879f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/17.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/18.txt b/blocks/task4/maps/level5/pure_text_rep_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..81e4f0ee42758cf8c853b5b2407c2069ee7a1ea3 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/18.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/19.txt b/blocks/task4/maps/level5/pure_text_rep_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..7909c94bbee3d4358366ce9f5cb141b9583e05b5 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/19.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/2.txt b/blocks/task4/maps/level5/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ee255e801efb7ab68545455b04ca445c42953cb --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/2.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block, purple block, from bottom to top +- Stack with red block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/20.txt b/blocks/task4/maps/level5/pure_text_rep_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f6314e6f6b3def0081088dab9dca6632daa630a --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/20.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/21.txt b/blocks/task4/maps/level5/pure_text_rep_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca6a9af650d014728acb352a95f738126ee3c271 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/21.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/22.txt b/blocks/task4/maps/level5/pure_text_rep_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0feca12fa7bc556e9e85ce2435f9255b0bcf19c --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/22.txt @@ -0,0 +1,2 @@ +- Stack with green block, yellow block, from bottom to top +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/23.txt b/blocks/task4/maps/level5/pure_text_rep_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee55c6938a765c65c3e72c9b421491c0f4da511c --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/23.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/24.txt b/blocks/task4/maps/level5/pure_text_rep_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..8de35f595aa033d98e792a29de86069aad1dd446 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/24.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/25.txt b/blocks/task4/maps/level5/pure_text_rep_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..046e9e39c1f90319344e9e57eef43952eb1955a8 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/25.txt @@ -0,0 +1,2 @@ +- Stack with blue block, orange block, from bottom to top +- Stack with green block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/26.txt b/blocks/task4/maps/level5/pure_text_rep_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..76218b6ce4a4f013228d7b0265a95af477f64451 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/26.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with blue block, purple block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/27.txt b/blocks/task4/maps/level5/pure_text_rep_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..f774bce7d993689d41ca918be5cc982c3fee584e --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/27.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, green block, from bottom to top +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/28.txt b/blocks/task4/maps/level5/pure_text_rep_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fb916f3c1e4184c49fcff714cafb70c6f5a5ab --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/28.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with blue block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/29.txt b/blocks/task4/maps/level5/pure_text_rep_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..81e4f0ee42758cf8c853b5b2407c2069ee7a1ea3 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/29.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/3.txt b/blocks/task4/maps/level5/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5503cbe4fb56ff31984106335655e656324915df --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/3.txt @@ -0,0 +1 @@ +- Stack with orange block, green block, purple block, yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/30.txt b/blocks/task4/maps/level5/pure_text_rep_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0feca12fa7bc556e9e85ce2435f9255b0bcf19c --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/30.txt @@ -0,0 +1,2 @@ +- Stack with green block, yellow block, from bottom to top +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/31.txt b/blocks/task4/maps/level5/pure_text_rep_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee55c6938a765c65c3e72c9b421491c0f4da511c --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/31.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/32.txt b/blocks/task4/maps/level5/pure_text_rep_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1b46433360feffffae5f4cd79856aeca737f430 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/32.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/33.txt b/blocks/task4/maps/level5/pure_text_rep_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..8de35f595aa033d98e792a29de86069aad1dd446 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/33.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/34.txt b/blocks/task4/maps/level5/pure_text_rep_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..046e9e39c1f90319344e9e57eef43952eb1955a8 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/34.txt @@ -0,0 +1,2 @@ +- Stack with blue block, orange block, from bottom to top +- Stack with green block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/35.txt b/blocks/task4/maps/level5/pure_text_rep_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..f774bce7d993689d41ca918be5cc982c3fee584e --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/35.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, green block, from bottom to top +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/36.txt b/blocks/task4/maps/level5/pure_text_rep_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fb916f3c1e4184c49fcff714cafb70c6f5a5ab --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/36.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with blue block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/37.txt b/blocks/task4/maps/level5/pure_text_rep_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..bec2ce199744ecd8d53dd2c9e776cc301bfbb5c0 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/37.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, green block, orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/38.txt b/blocks/task4/maps/level5/pure_text_rep_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..5526e3b0f80c3bea60c91356cccb35be904de13f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/38.txt @@ -0,0 +1,2 @@ +- Stack with purple block, red block, from bottom to top +- Stack with orange block, green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/39.txt b/blocks/task4/maps/level5/pure_text_rep_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e267756b87d5385b48bdf7fb6549890403b98180 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/39.txt @@ -0,0 +1 @@ +- Stack with orange block, green block, purple block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/4.txt b/blocks/task4/maps/level5/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5bf2095047c1dd8875034bcc03eee5dd895425f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/4.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, blue block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/40.txt b/blocks/task4/maps/level5/pure_text_rep_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1b46433360feffffae5f4cd79856aeca737f430 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/40.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/41.txt b/blocks/task4/maps/level5/pure_text_rep_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..15f5d94d432ab184d66e55953f4a031b989b315d --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/41.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, blue block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/42.txt b/blocks/task4/maps/level5/pure_text_rep_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..bec2ce199744ecd8d53dd2c9e776cc301bfbb5c0 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/42.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, green block, orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/43.txt b/blocks/task4/maps/level5/pure_text_rep_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..aca47fb64e6cf48b98cc82974f837f53a1dcf383 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/43.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, purple block, green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/44.txt b/blocks/task4/maps/level5/pure_text_rep_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..5526e3b0f80c3bea60c91356cccb35be904de13f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/44.txt @@ -0,0 +1,2 @@ +- Stack with purple block, red block, from bottom to top +- Stack with orange block, green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/45.txt b/blocks/task4/maps/level5/pure_text_rep_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..e267756b87d5385b48bdf7fb6549890403b98180 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/45.txt @@ -0,0 +1 @@ +- Stack with orange block, green block, purple block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/46.txt b/blocks/task4/maps/level5/pure_text_rep_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..99236ce09034854770f7d42c55bd1017282ea7f7 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/46.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/47.txt b/blocks/task4/maps/level5/pure_text_rep_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a07f004633e17d798be2596d43859fbe1014eb --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/47.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/48.txt b/blocks/task4/maps/level5/pure_text_rep_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..c18717865faacb7d7f3cade3e3a40461863a0a6d --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/48.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with red block, blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/49.txt b/blocks/task4/maps/level5/pure_text_rep_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..15f5d94d432ab184d66e55953f4a031b989b315d --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/49.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, blue block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/5.txt b/blocks/task4/maps/level5/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef4eb89cdbc2ea92026b03dbf59daebd8e69c839 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/5.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/50.txt b/blocks/task4/maps/level5/pure_text_rep_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..d870ef2e9da08f1701b2283cb80089c131e5699a --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/50.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, red block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/51.txt b/blocks/task4/maps/level5/pure_text_rep_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..af94ae616361a734bf324b440f78e6cd050a332d --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/51.txt @@ -0,0 +1 @@ +- Stack with red block, green block, orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/52.txt b/blocks/task4/maps/level5/pure_text_rep_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bd7be35b02c3ac0511b80020bb4d85c4de31b1e --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/52.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with purple block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/53.txt b/blocks/task4/maps/level5/pure_text_rep_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab8541fb531066f3aca348a764e9efdcfd9fe59e --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/53.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/54.txt b/blocks/task4/maps/level5/pure_text_rep_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..aca47fb64e6cf48b98cc82974f837f53a1dcf383 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/54.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, purple block, green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/55.txt b/blocks/task4/maps/level5/pure_text_rep_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..70b5d645a2397af5e6b5f49d89a0fcf5464bc57f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/55.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, green block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/56.txt b/blocks/task4/maps/level5/pure_text_rep_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..99236ce09034854770f7d42c55bd1017282ea7f7 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/56.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/57.txt b/blocks/task4/maps/level5/pure_text_rep_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a07f004633e17d798be2596d43859fbe1014eb --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/57.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/58.txt b/blocks/task4/maps/level5/pure_text_rep_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..c18717865faacb7d7f3cade3e3a40461863a0a6d --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/58.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with red block, blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/59.txt b/blocks/task4/maps/level5/pure_text_rep_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..d870ef2e9da08f1701b2283cb80089c131e5699a --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/59.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, red block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/6.txt b/blocks/task4/maps/level5/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..cff3067aecadb302cad1b92b5c97d70bf8ed1a11 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/6.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, orange block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/60.txt b/blocks/task4/maps/level5/pure_text_rep_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..af94ae616361a734bf324b440f78e6cd050a332d --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/60.txt @@ -0,0 +1 @@ +- Stack with red block, green block, orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/61.txt b/blocks/task4/maps/level5/pure_text_rep_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4277d989544a6bc48414c45b54ca05ec2fbf5e4 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/61.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/62.txt b/blocks/task4/maps/level5/pure_text_rep_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bd7be35b02c3ac0511b80020bb4d85c4de31b1e --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/62.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with purple block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/63.txt b/blocks/task4/maps/level5/pure_text_rep_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ca075da426694d02ed8ee7d67d6d85801f72b84 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/63.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, blue block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/64.txt b/blocks/task4/maps/level5/pure_text_rep_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab8541fb531066f3aca348a764e9efdcfd9fe59e --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/64.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/65.txt b/blocks/task4/maps/level5/pure_text_rep_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a14d61850844ca493f99d7c2acceecc728a26e9 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/65.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/66.txt b/blocks/task4/maps/level5/pure_text_rep_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..70b5d645a2397af5e6b5f49d89a0fcf5464bc57f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/66.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, green block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/67.txt b/blocks/task4/maps/level5/pure_text_rep_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4277d989544a6bc48414c45b54ca05ec2fbf5e4 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/67.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/68.txt b/blocks/task4/maps/level5/pure_text_rep_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a1b9dbb7b8930ecd6559ce23acfb3a634c6078f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/68.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, blue block, green block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/69.txt b/blocks/task4/maps/level5/pure_text_rep_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d10dec3552771f3a5d465f46274bd05e8ee9c88 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/69.txt @@ -0,0 +1 @@ +- Stack with green block, red block, blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/7.txt b/blocks/task4/maps/level5/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..037444c2c0ae5221d31034cedc4919c61e88b848 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/7.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/70.txt b/blocks/task4/maps/level5/pure_text_rep_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ca075da426694d02ed8ee7d67d6d85801f72b84 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/70.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, blue block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/71.txt b/blocks/task4/maps/level5/pure_text_rep_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a14d61850844ca493f99d7c2acceecc728a26e9 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/71.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/72.txt b/blocks/task4/maps/level5/pure_text_rep_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..be6fab2883c87d46b76530a23f3509dfe3fe5ecf --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/72.txt @@ -0,0 +1 @@ +- Stack with blue block, purple block, red block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/73.txt b/blocks/task4/maps/level5/pure_text_rep_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a1b9dbb7b8930ecd6559ce23acfb3a634c6078f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/73.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, blue block, green block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/74.txt b/blocks/task4/maps/level5/pure_text_rep_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d10dec3552771f3a5d465f46274bd05e8ee9c88 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/74.txt @@ -0,0 +1 @@ +- Stack with green block, red block, blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/75.txt b/blocks/task4/maps/level5/pure_text_rep_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..7be7263477e7308a567627aa7bd890a98e9dc4c5 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/75.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block +- Stack with purple block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/76.txt b/blocks/task4/maps/level5/pure_text_rep_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..be6fab2883c87d46b76530a23f3509dfe3fe5ecf --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/76.txt @@ -0,0 +1 @@ +- Stack with blue block, purple block, red block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/77.txt b/blocks/task4/maps/level5/pure_text_rep_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..307c52bdb8da25ed3f9bf4c5a886b0157a0a8416 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/77.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, yellow block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/78.txt b/blocks/task4/maps/level5/pure_text_rep_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..7be7263477e7308a567627aa7bd890a98e9dc4c5 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/78.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block +- Stack with purple block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/79.txt b/blocks/task4/maps/level5/pure_text_rep_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..307c52bdb8da25ed3f9bf4c5a886b0157a0a8416 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/79.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, yellow block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/8.txt b/blocks/task4/maps/level5/pure_text_rep_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..6995e62a08b4c7d1bd0b4485706e7f3d4f4b879f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/8.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/80.txt b/blocks/task4/maps/level5/pure_text_rep_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2057218f9684c6e0f5e7656f9ce8df9b6694794 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/80.txt @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/81.txt b/blocks/task4/maps/level5/pure_text_rep_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f66152da986c4656719baf5a88fe5d2bc056abd --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/81.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, red block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/82.txt b/blocks/task4/maps/level5/pure_text_rep_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2057218f9684c6e0f5e7656f9ce8df9b6694794 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/82.txt @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/83.txt b/blocks/task4/maps/level5/pure_text_rep_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa35a923a2fe46f9e81d4117509cca544eabe7ef --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/83.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, purple block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/84.txt b/blocks/task4/maps/level5/pure_text_rep_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..e610be26302e974aa11585a56ac0b6bd36a76092 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/84.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, green block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/85.txt b/blocks/task4/maps/level5/pure_text_rep_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f66152da986c4656719baf5a88fe5d2bc056abd --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/85.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, red block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/86.txt b/blocks/task4/maps/level5/pure_text_rep_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa35a923a2fe46f9e81d4117509cca544eabe7ef --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/86.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, purple block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/87.txt b/blocks/task4/maps/level5/pure_text_rep_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfcaeae7ac7d788c68949f7ef14d8de72d28a25f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/87.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, orange block, yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/88.txt b/blocks/task4/maps/level5/pure_text_rep_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..e610be26302e974aa11585a56ac0b6bd36a76092 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/88.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, green block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/89.txt b/blocks/task4/maps/level5/pure_text_rep_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f080eb4ad21929d50003c5961db86d19a926d06 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/89.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, red block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/9.txt b/blocks/task4/maps/level5/pure_text_rep_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ee255e801efb7ab68545455b04ca445c42953cb --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/9.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block, purple block, from bottom to top +- Stack with red block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/90.txt b/blocks/task4/maps/level5/pure_text_rep_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfcaeae7ac7d788c68949f7ef14d8de72d28a25f --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/90.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, orange block, yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/91.txt b/blocks/task4/maps/level5/pure_text_rep_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f080eb4ad21929d50003c5961db86d19a926d06 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/91.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, red block, orange block, green block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/92.txt b/blocks/task4/maps/level5/pure_text_rep_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..f79a68e60155c8e4ed66574f14d94629fdcb86e3 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/92.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/93.txt b/blocks/task4/maps/level5/pure_text_rep_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..f79a68e60155c8e4ed66574f14d94629fdcb86e3 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/93.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/94.txt b/blocks/task4/maps/level5/pure_text_rep_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7e3d5d11e373384028f2161f119d389901420b4 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/94.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, purple block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/95.txt b/blocks/task4/maps/level5/pure_text_rep_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7e3d5d11e373384028f2161f119d389901420b4 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/95.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, purple block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/96.txt b/blocks/task4/maps/level5/pure_text_rep_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..f60c4fb34442478bdd03fbc9ba8d1871e1ffc88a --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/96.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, yellow block, green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/97.txt b/blocks/task4/maps/level5/pure_text_rep_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1b74db87a7f388ae56633366fa17ec596db5fb7 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/97.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, orange block, from bottom to top +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/98.txt b/blocks/task4/maps/level5/pure_text_rep_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..f60c4fb34442478bdd03fbc9ba8d1871e1ffc88a --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/98.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, yellow block, green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level5/pure_text_rep_input/99.txt b/blocks/task4/maps/level5/pure_text_rep_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1b74db87a7f388ae56633366fa17ec596db5fb7 --- /dev/null +++ b/blocks/task4/maps/level5/pure_text_rep_input/99.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, orange block, from bottom to top +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level5/table_rep_input/0.txt b/blocks/task4/maps/level5/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1160f02be56ccc61d4a2053b9d99c001319eb53d --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/0.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | yellow | +Level 3 | purple | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/1.txt b/blocks/task4/maps/level5/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccded53d1d46ab09e92b2b07e467a1b8938e7c99 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/1.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | purple | +Level 3 | blue | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level5/table_rep_input/10.txt b/blocks/task4/maps/level5/table_rep_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..edcba7f3015e20bd0146d32ace3bb5fa29f1f1d9 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/10.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | blue | red | orange | green | diff --git a/blocks/task4/maps/level5/table_rep_input/11.txt b/blocks/task4/maps/level5/table_rep_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8bf8ebac121680ae5bb392bac000016af37aeec --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/11.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | blue | yellow | diff --git a/blocks/task4/maps/level5/table_rep_input/12.txt b/blocks/task4/maps/level5/table_rep_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb9938693ecfbb927576ea43427af1bc72e61021 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/12.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | blue | red | orange | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/13.txt b/blocks/task4/maps/level5/table_rep_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..33e545bc3dd404517f84f7ef1b83673fde000416 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/13.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | orange | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level5/table_rep_input/14.txt b/blocks/task4/maps/level5/table_rep_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffdb006837bbc08afe2cf98d551147d84c019df1 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/14.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | green | yellow | red | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/15.txt b/blocks/task4/maps/level5/table_rep_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e05518eddd30c46a013a313e147b33cd0dfbc5c --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/15.txt @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | yellow | +Level 3 | purple | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/16.txt b/blocks/task4/maps/level5/table_rep_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6546053faef9d66974e1598b18a015f5db61ead --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/16.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | purple | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/17.txt b/blocks/task4/maps/level5/table_rep_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..25b4258c8976e9f44733c304d9d3f3cca638a8ae --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/17.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | yellow | +Level 1 | purple | orange | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/18.txt b/blocks/task4/maps/level5/table_rep_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6447e6b58576a650c4b9d921c0158f25e330c0c --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/18.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | red | blue | purple | green | diff --git a/blocks/task4/maps/level5/table_rep_input/19.txt b/blocks/task4/maps/level5/table_rep_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8bf8ebac121680ae5bb392bac000016af37aeec --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/19.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | blue | yellow | diff --git a/blocks/task4/maps/level5/table_rep_input/2.txt b/blocks/task4/maps/level5/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..6460286a7ca8e424aa46c2de543dcb4ac35dc9d4 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/2.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | green | +Level 1 | blue | orange | red | diff --git a/blocks/task4/maps/level5/table_rep_input/20.txt b/blocks/task4/maps/level5/table_rep_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb9938693ecfbb927576ea43427af1bc72e61021 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/20.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | blue | red | orange | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/21.txt b/blocks/task4/maps/level5/table_rep_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffdb006837bbc08afe2cf98d551147d84c019df1 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/21.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | green | yellow | red | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/22.txt b/blocks/task4/maps/level5/table_rep_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea0ed53d21cb9e1cddb1f78f39f22872cd7e552a --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/22.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | yellow | purple | +Level 1 | green | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/23.txt b/blocks/task4/maps/level5/table_rep_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea34cce1381cf152a39cd83db4acfbb960fced56 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/23.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | purple | +Level 1 | blue | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/24.txt b/blocks/task4/maps/level5/table_rep_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f092945b88302d51908d00a67267f28cabe3f2ab --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/24.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | orange | red | diff --git a/blocks/task4/maps/level5/table_rep_input/25.txt b/blocks/task4/maps/level5/table_rep_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..541f525ccc3ef49577bc2a4a89fa155c60611dce --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/25.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | orange | yellow | +Level 1 | blue | green | diff --git a/blocks/task4/maps/level5/table_rep_input/26.txt b/blocks/task4/maps/level5/table_rep_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6546053faef9d66974e1598b18a015f5db61ead --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/26.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | purple | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/27.txt b/blocks/task4/maps/level5/table_rep_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..71de5dd29ad14fd16a691a55619178f68746a5ec --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/27.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | purple | +Level 1 | yellow | blue | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/28.txt b/blocks/task4/maps/level5/table_rep_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cc1181cce1342a89e44092ac474b3041dc9afc1 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/28.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | orange | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/29.txt b/blocks/task4/maps/level5/table_rep_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6447e6b58576a650c4b9d921c0158f25e330c0c --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/29.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | red | blue | purple | green | diff --git a/blocks/task4/maps/level5/table_rep_input/3.txt b/blocks/task4/maps/level5/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..1160f02be56ccc61d4a2053b9d99c001319eb53d --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/3.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | yellow | +Level 3 | purple | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/30.txt b/blocks/task4/maps/level5/table_rep_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea0ed53d21cb9e1cddb1f78f39f22872cd7e552a --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/30.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | yellow | purple | +Level 1 | green | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/31.txt b/blocks/task4/maps/level5/table_rep_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea34cce1381cf152a39cd83db4acfbb960fced56 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/31.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | purple | +Level 1 | blue | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/32.txt b/blocks/task4/maps/level5/table_rep_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a5a630bf1a14bc3cef67c1d5621707ad0fa03ff --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/32.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | purple | green | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/33.txt b/blocks/task4/maps/level5/table_rep_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..f092945b88302d51908d00a67267f28cabe3f2ab --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/33.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | orange | red | diff --git a/blocks/task4/maps/level5/table_rep_input/34.txt b/blocks/task4/maps/level5/table_rep_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..541f525ccc3ef49577bc2a4a89fa155c60611dce --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/34.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | orange | yellow | +Level 1 | blue | green | diff --git a/blocks/task4/maps/level5/table_rep_input/35.txt b/blocks/task4/maps/level5/table_rep_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..71de5dd29ad14fd16a691a55619178f68746a5ec --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/35.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | purple | +Level 1 | yellow | blue | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/36.txt b/blocks/task4/maps/level5/table_rep_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cc1181cce1342a89e44092ac474b3041dc9afc1 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/36.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | orange | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/37.txt b/blocks/task4/maps/level5/table_rep_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f88eede38a342a0b355a1cb499619d3edaaaf5b4 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/37.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | orange | +Level 3 | green | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/38.txt b/blocks/task4/maps/level5/table_rep_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..e35f0b9f579f8245632535a88d9435e5f6437ef3 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/38.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | red | green | +Level 1 | purple | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/39.txt b/blocks/task4/maps/level5/table_rep_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8a43bdde0c72815693cef869db00321230427a2 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/39.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | purple | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/4.txt b/blocks/task4/maps/level5/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccded53d1d46ab09e92b2b07e467a1b8938e7c99 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/4.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | purple | +Level 3 | blue | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level5/table_rep_input/40.txt b/blocks/task4/maps/level5/table_rep_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a5a630bf1a14bc3cef67c1d5621707ad0fa03ff --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/40.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | purple | green | +Level 1 | yellow | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/41.txt b/blocks/task4/maps/level5/table_rep_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..67d0d520936cf8570cc980a23a037adde8480355 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/41.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | blue | +Level 1 | orange | yellow | diff --git a/blocks/task4/maps/level5/table_rep_input/42.txt b/blocks/task4/maps/level5/table_rep_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..f88eede38a342a0b355a1cb499619d3edaaaf5b4 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/42.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | orange | +Level 3 | green | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/43.txt b/blocks/task4/maps/level5/table_rep_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..88fc06e60646e168bb72e4ca28235eae8bdf44e0 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/43.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | green | +Level 2 | | purple | +Level 1 | yellow | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/44.txt b/blocks/task4/maps/level5/table_rep_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..e35f0b9f579f8245632535a88d9435e5f6437ef3 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/44.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | red | green | +Level 1 | purple | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/45.txt b/blocks/task4/maps/level5/table_rep_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8a43bdde0c72815693cef869db00321230427a2 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/45.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | purple | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/46.txt b/blocks/task4/maps/level5/table_rep_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ac5ef2a9c0dc09bbe0c3d7852cfffeaeb4be362 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/46.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | purple | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/47.txt b/blocks/task4/maps/level5/table_rep_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb7803826ba787cbd9213378f2dff8fd8991c9df --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/47.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/48.txt b/blocks/task4/maps/level5/table_rep_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb900533dc2d2454629ffd9d13b84e20203b86b2 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/48.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | blue | +Level 1 | green | purple | red | diff --git a/blocks/task4/maps/level5/table_rep_input/49.txt b/blocks/task4/maps/level5/table_rep_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..67d0d520936cf8570cc980a23a037adde8480355 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/49.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | blue | +Level 1 | orange | yellow | diff --git a/blocks/task4/maps/level5/table_rep_input/5.txt b/blocks/task4/maps/level5/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..edcba7f3015e20bd0146d32ace3bb5fa29f1f1d9 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/5.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | blue | red | orange | green | diff --git a/blocks/task4/maps/level5/table_rep_input/50.txt b/blocks/task4/maps/level5/table_rep_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d394ddf6dc646b0147b04191af5f893edd3b45 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/50.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | orange | +Level 2 | | red | +Level 1 | yellow | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/51.txt b/blocks/task4/maps/level5/table_rep_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f0989c6af9f5c6c5a7e4d70994d2f01f19ab94b --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/51.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | orange | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task4/maps/level5/table_rep_input/52.txt b/blocks/task4/maps/level5/table_rep_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..aebe8dd1923ea4505e8098bda7227065a7d12b35 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/52.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | red | green | +Level 1 | yellow | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/53.txt b/blocks/task4/maps/level5/table_rep_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..41be237491c4c15fdc23a5ce9d5336690f60d8c6 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/53.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/54.txt b/blocks/task4/maps/level5/table_rep_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..88fc06e60646e168bb72e4ca28235eae8bdf44e0 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/54.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | green | +Level 2 | | purple | +Level 1 | yellow | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/55.txt b/blocks/task4/maps/level5/table_rep_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..22893fd6a957eb5b2cd7374c51180522e10a83c0 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/55.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | green | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task4/maps/level5/table_rep_input/56.txt b/blocks/task4/maps/level5/table_rep_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ac5ef2a9c0dc09bbe0c3d7852cfffeaeb4be362 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/56.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | purple | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/57.txt b/blocks/task4/maps/level5/table_rep_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb7803826ba787cbd9213378f2dff8fd8991c9df --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/57.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/58.txt b/blocks/task4/maps/level5/table_rep_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb900533dc2d2454629ffd9d13b84e20203b86b2 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/58.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | blue | +Level 1 | green | purple | red | diff --git a/blocks/task4/maps/level5/table_rep_input/59.txt b/blocks/task4/maps/level5/table_rep_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d394ddf6dc646b0147b04191af5f893edd3b45 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/59.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | orange | +Level 2 | | red | +Level 1 | yellow | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/6.txt b/blocks/task4/maps/level5/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..33e545bc3dd404517f84f7ef1b83673fde000416 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/6.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | orange | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level5/table_rep_input/60.txt b/blocks/task4/maps/level5/table_rep_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f0989c6af9f5c6c5a7e4d70994d2f01f19ab94b --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/60.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | orange | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task4/maps/level5/table_rep_input/61.txt b/blocks/task4/maps/level5/table_rep_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd2ddc205fd82b12fef619c70c02656c62953797 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/61.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | purple | yellow | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/62.txt b/blocks/task4/maps/level5/table_rep_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..aebe8dd1923ea4505e8098bda7227065a7d12b35 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/62.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | red | green | +Level 1 | yellow | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/63.txt b/blocks/task4/maps/level5/table_rep_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..d20c136150d24300659423c6e827e28d8c945d3b --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/63.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | blue | +Level 1 | green | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/64.txt b/blocks/task4/maps/level5/table_rep_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..41be237491c4c15fdc23a5ce9d5336690f60d8c6 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/64.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/65.txt b/blocks/task4/maps/level5/table_rep_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..d96e861b80768e97180f59d420d89572739c74eb --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/65.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | blue | +Level 1 | green | red | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/66.txt b/blocks/task4/maps/level5/table_rep_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..22893fd6a957eb5b2cd7374c51180522e10a83c0 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/66.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | green | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task4/maps/level5/table_rep_input/67.txt b/blocks/task4/maps/level5/table_rep_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd2ddc205fd82b12fef619c70c02656c62953797 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/67.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | purple | yellow | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/68.txt b/blocks/task4/maps/level5/table_rep_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..52851def989479bec845e3f86fcd06a0ca5e5bc6 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/68.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | blue | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/69.txt b/blocks/task4/maps/level5/table_rep_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a533036d3604bb0d84af5c3d4e8511266fbcb72 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/69.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | purple | +Level 3 | blue | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task4/maps/level5/table_rep_input/7.txt b/blocks/task4/maps/level5/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e05518eddd30c46a013a313e147b33cd0dfbc5c --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/7.txt @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | yellow | +Level 3 | purple | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/70.txt b/blocks/task4/maps/level5/table_rep_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..d20c136150d24300659423c6e827e28d8c945d3b --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/70.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | blue | +Level 1 | green | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/71.txt b/blocks/task4/maps/level5/table_rep_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..d96e861b80768e97180f59d420d89572739c74eb --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/71.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | blue | +Level 1 | green | red | orange | diff --git a/blocks/task4/maps/level5/table_rep_input/72.txt b/blocks/task4/maps/level5/table_rep_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..f801ce541ff2f218a74a64c81a7e0fbdd97ba3b4 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/72.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | orange | +Level 3 | red | +Level 2 | purple | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/73.txt b/blocks/task4/maps/level5/table_rep_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..52851def989479bec845e3f86fcd06a0ca5e5bc6 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/73.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | blue | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/74.txt b/blocks/task4/maps/level5/table_rep_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a533036d3604bb0d84af5c3d4e8511266fbcb72 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/74.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | purple | +Level 3 | blue | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task4/maps/level5/table_rep_input/75.txt b/blocks/task4/maps/level5/table_rep_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..d49839c3cb49986dece98573fbcb448025c095ea --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/75.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | green | +Level 1 | yellow | blue | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/76.txt b/blocks/task4/maps/level5/table_rep_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..f801ce541ff2f218a74a64c81a7e0fbdd97ba3b4 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/76.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | orange | +Level 3 | red | +Level 2 | purple | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/77.txt b/blocks/task4/maps/level5/table_rep_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..b47fb88a842269f4430c007ab2c7c702c5f5b6dc --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/77.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | orange | green | diff --git a/blocks/task4/maps/level5/table_rep_input/78.txt b/blocks/task4/maps/level5/table_rep_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..d49839c3cb49986dece98573fbcb448025c095ea --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/78.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | green | +Level 1 | yellow | blue | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/79.txt b/blocks/task4/maps/level5/table_rep_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..b47fb88a842269f4430c007ab2c7c702c5f5b6dc --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/79.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | orange | green | diff --git a/blocks/task4/maps/level5/table_rep_input/8.txt b/blocks/task4/maps/level5/table_rep_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..25b4258c8976e9f44733c304d9d3f3cca638a8ae --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/8.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | yellow | +Level 1 | purple | orange | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/80.txt b/blocks/task4/maps/level5/table_rep_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..b29ecf4b7b2f4a8e8c23c019ad07861480539886 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/80.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | orange | +Level 1 | red | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/81.txt b/blocks/task4/maps/level5/table_rep_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..deb522750ddd1bb7753752b78ddb4ab2fba90463 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/81.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | green | +Level 3 | red | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/82.txt b/blocks/task4/maps/level5/table_rep_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..b29ecf4b7b2f4a8e8c23c019ad07861480539886 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/82.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | orange | +Level 1 | red | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/83.txt b/blocks/task4/maps/level5/table_rep_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb9fdf8834f00a62bd6586719451afe7570da37f --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/83.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | green | +Level 2 | | purple | +Level 1 | blue | red | diff --git a/blocks/task4/maps/level5/table_rep_input/84.txt b/blocks/task4/maps/level5/table_rep_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c0f96d2cb2200f211e1fc2e9625c4d9d2367483 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/84.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | purple | red | diff --git a/blocks/task4/maps/level5/table_rep_input/85.txt b/blocks/task4/maps/level5/table_rep_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..deb522750ddd1bb7753752b78ddb4ab2fba90463 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/85.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | green | +Level 3 | red | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task4/maps/level5/table_rep_input/86.txt b/blocks/task4/maps/level5/table_rep_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb9fdf8834f00a62bd6586719451afe7570da37f --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/86.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | green | +Level 2 | | purple | +Level 1 | blue | red | diff --git a/blocks/task4/maps/level5/table_rep_input/87.txt b/blocks/task4/maps/level5/table_rep_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c1621ba498025d859f45e8141d67b383789a0a6 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/87.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | purple | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/88.txt b/blocks/task4/maps/level5/table_rep_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c0f96d2cb2200f211e1fc2e9625c4d9d2367483 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/88.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | purple | red | diff --git a/blocks/task4/maps/level5/table_rep_input/89.txt b/blocks/task4/maps/level5/table_rep_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..904d6453fe1bc0662dfca2228eadb30eca5eaba3 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/89.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | orange | +Level 3 | red | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task4/maps/level5/table_rep_input/9.txt b/blocks/task4/maps/level5/table_rep_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..6460286a7ca8e424aa46c2de543dcb4ac35dc9d4 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/9.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | green | +Level 1 | blue | orange | red | diff --git a/blocks/task4/maps/level5/table_rep_input/90.txt b/blocks/task4/maps/level5/table_rep_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c1621ba498025d859f45e8141d67b383789a0a6 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/90.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | purple | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/91.txt b/blocks/task4/maps/level5/table_rep_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..904d6453fe1bc0662dfca2228eadb30eca5eaba3 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/91.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | orange | +Level 3 | red | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task4/maps/level5/table_rep_input/92.txt b/blocks/task4/maps/level5/table_rep_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb5ca96943232cfe986a7c938ac5bcb024cc1534 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/92.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | red | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level5/table_rep_input/93.txt b/blocks/task4/maps/level5/table_rep_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb5ca96943232cfe986a7c938ac5bcb024cc1534 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/93.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | red | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level5/table_rep_input/94.txt b/blocks/task4/maps/level5/table_rep_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..16662d9893560748311c5ae028d987dabc45fc69 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/94.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | green | +Level 3 | purple | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/95.txt b/blocks/task4/maps/level5/table_rep_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..16662d9893560748311c5ae028d987dabc45fc69 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/95.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | green | +Level 3 | purple | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task4/maps/level5/table_rep_input/96.txt b/blocks/task4/maps/level5/table_rep_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecf863ce9d7b7646d0e30eecc0f261a3f921726e --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/96.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | green | +Level 3 | yellow | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level5/table_rep_input/97.txt b/blocks/task4/maps/level5/table_rep_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..5722f1d8df1a310d68f78062e137870c7ca743c5 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/97.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | purple | +Level 1 | green | red | yellow | diff --git a/blocks/task4/maps/level5/table_rep_input/98.txt b/blocks/task4/maps/level5/table_rep_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecf863ce9d7b7646d0e30eecc0f261a3f921726e --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/98.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | green | +Level 3 | yellow | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level5/table_rep_input/99.txt b/blocks/task4/maps/level5/table_rep_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..5722f1d8df1a310d68f78062e137870c7ca743c5 --- /dev/null +++ b/blocks/task4/maps/level5/table_rep_input/99.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | purple | +Level 1 | green | red | yellow | diff --git a/blocks/task4/maps/level5/text_input/0.txt b/blocks/task4/maps/level5/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..84dcd48f622a23bed8e616cdb2ca19614e13f669 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/0.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(yellow,red) +3. move(purple,table) +4. move(purple,red) +5. move(yellow,purple) diff --git a/blocks/task4/maps/level5/text_input/1.txt b/blocks/task4/maps/level5/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dd9199802120d3365c5a6b2c596fa1aecfdc822 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/1.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(orange,table) +3. move(purple,orange) +4. move(blue,table) +5. move(purple,blue) diff --git a/blocks/task4/maps/level5/text_input/10.txt b/blocks/task4/maps/level5/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..709c9e05cfb535a062df83402c59c4e3b6ab5199 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/10.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(green,red) +3. move(blue,green) +4. move(orange,blue) +5. move(purple,orange) diff --git a/blocks/task4/maps/level5/text_input/11.txt b/blocks/task4/maps/level5/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..3aa967d174b44861e2837c73e2e7de616cf62522 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/11.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(purple,table) +3. move(orange,blue) +4. move(yellow,orange) +5. move(green,yellow) diff --git a/blocks/task4/maps/level5/text_input/12.txt b/blocks/task4/maps/level5/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..a37d8c2f7c127e20cd8fbb575f5d69b09cb87216 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/12.txt @@ -0,0 +1,5 @@ +1. move(yellow,blue) +2. move(purple,red) +3. move(yellow,purple) +4. move(purple,blue) +5. move(orange,yellow) diff --git a/blocks/task4/maps/level5/text_input/13.txt b/blocks/task4/maps/level5/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9f5e41a03a6802383ebb15a2dd349ed787a08fb --- /dev/null +++ b/blocks/task4/maps/level5/text_input/13.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(red,table) +3. move(orange,table) +4. move(red,green) +5. move(yellow,orange) diff --git a/blocks/task4/maps/level5/text_input/14.txt b/blocks/task4/maps/level5/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..0454103a82cb82d42167ba37c1622cae35acc4ab --- /dev/null +++ b/blocks/task4/maps/level5/text_input/14.txt @@ -0,0 +1,5 @@ +1. move(orange,red) +2. move(purple,table) +3. move(yellow,purple) +4. move(red,yellow) +5. move(green,red) diff --git a/blocks/task4/maps/level5/text_input/15.txt b/blocks/task4/maps/level5/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..38f7b1f7c0852335b84cf3fb40ceb716c886aebc --- /dev/null +++ b/blocks/task4/maps/level5/text_input/15.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(purple,table) +3. move(red,table) +4. move(yellow,blue) +5. move(purple,red) diff --git a/blocks/task4/maps/level5/text_input/16.txt b/blocks/task4/maps/level5/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..173c7874c107738d9efdd1f57918172bec8b8113 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/16.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(purple,red) +3. move(yellow,red) +4. move(green,table) +5. move(purple,green) diff --git a/blocks/task4/maps/level5/text_input/17.txt b/blocks/task4/maps/level5/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe2dc308b57bf78c19f7370f822ab44f440bb3d7 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/17.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(yellow,purple) +3. move(blue,yellow) +4. move(orange,blue) +5. move(green,orange) diff --git a/blocks/task4/maps/level5/text_input/18.txt b/blocks/task4/maps/level5/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..faa22492c39d1276bdbd48634b575ed987097bc9 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/18.txt @@ -0,0 +1,5 @@ +1. move(red,blue) +2. move(purple,red) +3. move(orange,table) +4. move(red,green) +5. move(green,purple) diff --git a/blocks/task4/maps/level5/text_input/19.txt b/blocks/task4/maps/level5/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..06401baac01e1e6dd0afb68218f7241d719733bf --- /dev/null +++ b/blocks/task4/maps/level5/text_input/19.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(purple,table) +3. move(orange,blue) +4. move(yellow,orange) +5. move(red,yellow) diff --git a/blocks/task4/maps/level5/text_input/2.txt b/blocks/task4/maps/level5/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..db618c53361db1457d504112339d671bf94a98e7 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/2.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(purple,red) +3. move(blue,purple) +4. move(yellow,blue) +5. move(green,blue) diff --git a/blocks/task4/maps/level5/text_input/20.txt b/blocks/task4/maps/level5/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfdb6e7c0473a72bafd3c2783967555ced9b4316 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/20.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(purple,red) +3. move(yellow,purple) +4. move(orange,yellow) +5. move(blue,orange) diff --git a/blocks/task4/maps/level5/text_input/21.txt b/blocks/task4/maps/level5/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..78208b9c55097cba19e4b1cb9e9b8db9a13ef2dd --- /dev/null +++ b/blocks/task4/maps/level5/text_input/21.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(yellow,purple) +3. move(red,yellow) +4. move(green,red) +5. move(orange,green) diff --git a/blocks/task4/maps/level5/text_input/22.txt b/blocks/task4/maps/level5/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4ac18769636bb04c0391d1f6cb71dbac8bd7ad9 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/22.txt @@ -0,0 +1,5 @@ +1. move(yellow,blue) +2. move(orange,yellow) +3. move(purple,table) +4. move(orange,purple) +5. move(blue,orange) diff --git a/blocks/task4/maps/level5/text_input/23.txt b/blocks/task4/maps/level5/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a70693f903b4cdc81c6cb3a9c9204fc3cf64fa8 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/23.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(yellow,green) +3. move(red,table) +4. move(purple,table) +5. move(orange,red) diff --git a/blocks/task4/maps/level5/text_input/24.txt b/blocks/task4/maps/level5/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebe97dd96b770a2901b387f0d31877ecb1e1def1 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/24.txt @@ -0,0 +1,5 @@ +1. move(red,orange) +2. move(purple,orange) +3. move(yellow,purple) +4. move(blue,table) +5. move(red,blue) diff --git a/blocks/task4/maps/level5/text_input/25.txt b/blocks/task4/maps/level5/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..fae567a67c37b774fb4549927fa276f271d8942d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/25.txt @@ -0,0 +1,5 @@ +1. move(orange,red) +2. move(orange,table) +3. move(purple,blue) +4. move(yellow,table) +5. move(green,orange) diff --git a/blocks/task4/maps/level5/text_input/26.txt b/blocks/task4/maps/level5/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..43e7c5e133e67083ff39e3cb1860295a8cffcbce --- /dev/null +++ b/blocks/task4/maps/level5/text_input/26.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(red,table) +3. move(purple,green) +4. move(yellow,red) +5. move(blue,yellow) diff --git a/blocks/task4/maps/level5/text_input/27.txt b/blocks/task4/maps/level5/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e35727eafd29d9d3db68637e02041c8a2c3e422 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/27.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(purple,table) +3. move(yellow,orange) +4. move(yellow,red) +5. move(blue,yellow) diff --git a/blocks/task4/maps/level5/text_input/28.txt b/blocks/task4/maps/level5/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..c26523858e9febc457360649a0f173e81b94425f --- /dev/null +++ b/blocks/task4/maps/level5/text_input/28.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(red,table) +3. move(orange,red) +4. move(green,purple) +5. move(blue,yellow) diff --git a/blocks/task4/maps/level5/text_input/29.txt b/blocks/task4/maps/level5/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cc71b98da9b269e4b1583251b509822528757d9 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/29.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(red,blue) +3. move(purple,red) +4. move(green,purple) +5. move(orange,green) diff --git a/blocks/task4/maps/level5/text_input/3.txt b/blocks/task4/maps/level5/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ac0814444c3cd08c3a7e365f51a866f243fa684 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/3.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(yellow,table) +3. move(purple,table) +4. move(green,table) +5. move(yellow,purple) diff --git a/blocks/task4/maps/level5/text_input/30.txt b/blocks/task4/maps/level5/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..db49c1448663892777f9d587e85e670a1d42c159 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/30.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(yellow,table) +3. move(purple,table) +4. move(orange,purple) +5. move(blue,orange) diff --git a/blocks/task4/maps/level5/text_input/31.txt b/blocks/task4/maps/level5/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..131e9d752cb11ffc9450041eee46dd267722065c --- /dev/null +++ b/blocks/task4/maps/level5/text_input/31.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(red,table) +3. move(purple,table) +4. move(blue,yellow) +5. move(orange,red) diff --git a/blocks/task4/maps/level5/text_input/32.txt b/blocks/task4/maps/level5/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2b78c99d7a450aff9aa77031a46515e4ab47fbf --- /dev/null +++ b/blocks/task4/maps/level5/text_input/32.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(orange,purple) +3. move(purple,red) +4. move(green,table) +5. move(blue,purple) diff --git a/blocks/task4/maps/level5/text_input/33.txt b/blocks/task4/maps/level5/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4ea8389952a6383e06e2b3cdc88a615b96e6a18 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/33.txt @@ -0,0 +1,5 @@ +1. move(purple,orange) +2. move(yellow,table) +3. move(blue,table) +4. move(red,blue) +5. move(yellow,red) diff --git a/blocks/task4/maps/level5/text_input/34.txt b/blocks/task4/maps/level5/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..de99d4bcf2d6a991a622e5c1c487be3128996e16 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/34.txt @@ -0,0 +1,5 @@ +1. move(purple,orange) +2. move(yellow,table) +3. move(purple,yellow) +4. move(orange,table) +5. move(green,orange) diff --git a/blocks/task4/maps/level5/text_input/35.txt b/blocks/task4/maps/level5/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a226a8ffb7313243cbcca603afb21e6f20a60863 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/35.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(yellow,orange) +3. move(green,table) +4. move(blue,yellow) +5. move(purple,blue) diff --git a/blocks/task4/maps/level5/text_input/36.txt b/blocks/task4/maps/level5/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..86e491add0827f439f1af724352329d0cd1641bf --- /dev/null +++ b/blocks/task4/maps/level5/text_input/36.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(green,table) +3. move(orange,red) +4. move(blue,yellow) +5. move(green,blue) diff --git a/blocks/task4/maps/level5/text_input/37.txt b/blocks/task4/maps/level5/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..7918e9597f2cd974f21da3efda20817ceff996a4 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/37.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(blue,red) +3. move(orange,table) +4. move(green,orange) +5. move(yellow,green) diff --git a/blocks/task4/maps/level5/text_input/38.txt b/blocks/task4/maps/level5/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..64c8c8e343faa08fa2a35710afba58a6717ff10f --- /dev/null +++ b/blocks/task4/maps/level5/text_input/38.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(green,table) +3. move(yellow,green) +4. move(orange,green) +5. move(blue,orange) diff --git a/blocks/task4/maps/level5/text_input/39.txt b/blocks/task4/maps/level5/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e6cb888c8206b0950e94b6e37a1e841e92b5b8d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/39.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(blue,table) +3. move(red,blue) +4. move(purple,yellow) +5. move(purple,red) diff --git a/blocks/task4/maps/level5/text_input/4.txt b/blocks/task4/maps/level5/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d091d5c91540196a42ed8f21e59090750142aa20 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/4.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(purple,table) +3. move(blue,table) +4. move(green,table) +5. move(purple,blue) diff --git a/blocks/task4/maps/level5/text_input/40.txt b/blocks/task4/maps/level5/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..6df6a16f96ca10eb63c7bb5f3471b550d0094b04 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/40.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(green,table) +3. move(purple,red) +4. move(yellow,green) +5. move(blue,purple) diff --git a/blocks/task4/maps/level5/text_input/41.txt b/blocks/task4/maps/level5/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..32c12ba3ebc8053f3d9fccba892e9251e27fa796 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/41.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(purple,table) +3. move(red,table) +4. move(blue,purple) +5. move(yellow,orange) diff --git a/blocks/task4/maps/level5/text_input/42.txt b/blocks/task4/maps/level5/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cf720830f718ec819cce7284139f0236b6ae12e --- /dev/null +++ b/blocks/task4/maps/level5/text_input/42.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(orange,table) +3. move(green,orange) +4. move(yellow,green) +5. move(blue,yellow) diff --git a/blocks/task4/maps/level5/text_input/43.txt b/blocks/task4/maps/level5/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..2395f0e09bc49926ea1a70234caa3617b80e09be --- /dev/null +++ b/blocks/task4/maps/level5/text_input/43.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(green,blue) +3. move(purple,table) +4. move(orange,yellow) +5. move(blue,table) diff --git a/blocks/task4/maps/level5/text_input/44.txt b/blocks/task4/maps/level5/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..52350829f6ea2045b0ea573949ff684799056ccc --- /dev/null +++ b/blocks/task4/maps/level5/text_input/44.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(green,table) +3. move(red,table) +4. move(orange,green) +5. move(blue,orange) diff --git a/blocks/task4/maps/level5/text_input/45.txt b/blocks/task4/maps/level5/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3935358497b1bc2529d31b39db4060258ece4bf --- /dev/null +++ b/blocks/task4/maps/level5/text_input/45.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(blue,table) +3. move(red,blue) +4. move(purple,red) +5. move(green,table) diff --git a/blocks/task4/maps/level5/text_input/46.txt b/blocks/task4/maps/level5/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e36b354d2ab4b121c51848d7d16444e638f8c33 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/46.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(yellow,table) +3. move(purple,orange) +4. move(yellow,green) +5. move(red,table) diff --git a/blocks/task4/maps/level5/text_input/47.txt b/blocks/task4/maps/level5/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..a127430747f48a1429fe26de3615f1355e41a4a1 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/47.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(red,purple) +3. move(orange,red) +4. move(yellow,table) +5. move(blue,yellow) diff --git a/blocks/task4/maps/level5/text_input/48.txt b/blocks/task4/maps/level5/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c07bb8c4ebd012bd089974b38c183f7fa60cbeb --- /dev/null +++ b/blocks/task4/maps/level5/text_input/48.txt @@ -0,0 +1,5 @@ +1. move(orange,purple) +2. move(blue,table) +3. move(red,green) +4. move(blue,purple) +5. move(orange,red) diff --git a/blocks/task4/maps/level5/text_input/49.txt b/blocks/task4/maps/level5/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b12318e6bb075e34a955d705d9ad8c437d8f789 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/49.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(red,table) +3. move(blue,purple) +4. move(yellow,orange) +5. move(red,yellow) diff --git a/blocks/task4/maps/level5/text_input/5.txt b/blocks/task4/maps/level5/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa46920f8fdad8fc7fbfc2b1275b78fd9f42460d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/5.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(green,red) +3. move(blue,green) +4. move(green,purple) +5. move(orange,blue) diff --git a/blocks/task4/maps/level5/text_input/50.txt b/blocks/task4/maps/level5/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..0096c77b2d42998c8a213f40f63a3ba6e459f103 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/50.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(blue,green) +3. move(orange,yellow) +4. move(red,table) +5. move(purple,red) diff --git a/blocks/task4/maps/level5/text_input/51.txt b/blocks/task4/maps/level5/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..04cb62448144382b246128e1cbfe54f8197555cb --- /dev/null +++ b/blocks/task4/maps/level5/text_input/51.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(blue,table) +3. move(orange,yellow) +4. move(green,table) +5. move(purple,green) diff --git a/blocks/task4/maps/level5/text_input/52.txt b/blocks/task4/maps/level5/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2b5114971042c96ea30a31bde500a551b12e675 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/52.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(orange,yellow) +3. move(green,table) +4. move(blue,red) +5. move(orange,green) diff --git a/blocks/task4/maps/level5/text_input/53.txt b/blocks/task4/maps/level5/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c900a47976c06b181f53ac7db1ba052cb80334a --- /dev/null +++ b/blocks/task4/maps/level5/text_input/53.txt @@ -0,0 +1,5 @@ +1. move(green,purple) +2. move(orange,green) +3. move(blue,table) +4. move(green,blue) +5. move(orange,green) diff --git a/blocks/task4/maps/level5/text_input/54.txt b/blocks/task4/maps/level5/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd426c31403b20f3733f0e1438df9f0ee8535211 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/54.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(green,table) +3. move(purple,table) +4. move(green,purple) +5. move(orange,yellow) diff --git a/blocks/task4/maps/level5/text_input/55.txt b/blocks/task4/maps/level5/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..05ccd8dd261830d7e1bc231672c2b5557e5020b0 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/55.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(yellow,table) +3. move(green,table) +4. move(blue,green) +5. move(purple,green) diff --git a/blocks/task4/maps/level5/text_input/56.txt b/blocks/task4/maps/level5/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..660c3a27ab84edcfaba097cd8f20e013a3974290 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/56.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(yellow,table) +3. move(purple,table) +4. move(red,table) +5. move(purple,red) diff --git a/blocks/task4/maps/level5/text_input/57.txt b/blocks/task4/maps/level5/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c9609808c4408d62db4dc6325763d8ee07c7104 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/57.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(red,table) +3. move(yellow,table) +4. move(blue,yellow) +5. move(red,blue) diff --git a/blocks/task4/maps/level5/text_input/58.txt b/blocks/task4/maps/level5/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..9958b3518291b040f68e318085d887056acc66e1 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/58.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(blue,table) +3. move(red,green) +4. move(orange,red) +5. move(purple,orange) diff --git a/blocks/task4/maps/level5/text_input/59.txt b/blocks/task4/maps/level5/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..a69519246fd4ce44798464c042ff1dc094d53bd1 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/59.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(orange,yellow) +3. move(red,table) +4. move(green,orange) +5. move(purple,red) diff --git a/blocks/task4/maps/level5/text_input/6.txt b/blocks/task4/maps/level5/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d50dc3d91d42711c432cb89b510d4247ce332bf --- /dev/null +++ b/blocks/task4/maps/level5/text_input/6.txt @@ -0,0 +1,5 @@ +1. move(yellow,purple) +2. move(red,table) +3. move(orange,table) +4. move(purple,orange) +5. move(yellow,orange) diff --git a/blocks/task4/maps/level5/text_input/60.txt b/blocks/task4/maps/level5/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5003e8a56fcb41e2cfabd247c7623e7b52aa643 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/60.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(blue,table) +3. move(orange,table) +4. move(green,table) +5. move(orange,green) diff --git a/blocks/task4/maps/level5/text_input/61.txt b/blocks/task4/maps/level5/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d4a6b369cbff3bb518b643b2042d52b22dc3da3 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/61.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(blue,red) +3. move(red,green) +4. move(purple,blue) +5. move(yellow,purple) diff --git a/blocks/task4/maps/level5/text_input/62.txt b/blocks/task4/maps/level5/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd1d296f9a16299e4a716057debcdee8f4fba67d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/62.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(green,table) +3. move(red,table) +4. move(purple,red) +5. move(orange,green) diff --git a/blocks/task4/maps/level5/text_input/63.txt b/blocks/task4/maps/level5/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a8171e290f9edf2d2db2749b42f5add88c5eb3c --- /dev/null +++ b/blocks/task4/maps/level5/text_input/63.txt @@ -0,0 +1,5 @@ +1. move(purple,green) +2. move(purple,blue) +3. move(red,table) +4. move(purple,red) +5. move(blue,table) diff --git a/blocks/task4/maps/level5/text_input/64.txt b/blocks/task4/maps/level5/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..05c7b71b449db666f5c8717933a278e066b92a82 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/64.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(blue,table) +3. move(green,blue) +4. move(orange,green) +5. move(purple,orange) diff --git a/blocks/task4/maps/level5/text_input/65.txt b/blocks/task4/maps/level5/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..137f5672ad2f9f73fb2f1e21aff958fd4f8931bf --- /dev/null +++ b/blocks/task4/maps/level5/text_input/65.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(red,yellow) +3. move(green,yellow) +4. move(blue,red) +5. move(green,blue) diff --git a/blocks/task4/maps/level5/text_input/66.txt b/blocks/task4/maps/level5/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..8365bfd4346fe5f5d4017a3be3ebc160ec3629e6 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/66.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(yellow,table) +3. move(green,table) +4. move(purple,green) +5. move(orange,purple) diff --git a/blocks/task4/maps/level5/text_input/67.txt b/blocks/task4/maps/level5/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bf612bfca9b8e7f8f7a9359ca45adee0cf4ba78 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/67.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(blue,red) +3. move(purple,blue) +4. move(yellow,purple) +5. move(green,yellow) diff --git a/blocks/task4/maps/level5/text_input/68.txt b/blocks/task4/maps/level5/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..91cbff21f35ff0db377329857ce639dd75f6323d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/68.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(yellow,table) +3. move(green,yellow) +4. move(blue,table) +5. move(green,red) diff --git a/blocks/task4/maps/level5/text_input/69.txt b/blocks/task4/maps/level5/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..8dc7aa955c12276a78ecc8d5080ad8bd4dcb95f4 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/69.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(purple,table) +3. move(blue,yellow) +4. move(red,table) +5. move(yellow,table) diff --git a/blocks/task4/maps/level5/text_input/7.txt b/blocks/task4/maps/level5/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bfe03d8a45f1b0d40b38b152a02724514309b58 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/7.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(purple,yellow) +3. move(red,table) +4. move(purple,green) +5. move(purple,red) diff --git a/blocks/task4/maps/level5/text_input/70.txt b/blocks/task4/maps/level5/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d1f47e129994254211cc2f86aa6b4b577dfa979 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/70.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(red,table) +3. move(blue,table) +4. move(purple,red) +5. move(orange,purple) diff --git a/blocks/task4/maps/level5/text_input/71.txt b/blocks/task4/maps/level5/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..f966b76a15bd02a23fddf8ffa165cda29367f084 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/71.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(red,yellow) +3. move(blue,red) +4. move(green,blue) +5. move(orange,green) diff --git a/blocks/task4/maps/level5/text_input/72.txt b/blocks/task4/maps/level5/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a32d86b74502e7ccab761f15a95a8c76fbb1950 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/72.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(orange,table) +3. move(green,orange) +4. move(orange,red) +5. move(red,table) diff --git a/blocks/task4/maps/level5/text_input/73.txt b/blocks/task4/maps/level5/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..3038ec1e13f36ad7951cd331465c2872a9d769ac --- /dev/null +++ b/blocks/task4/maps/level5/text_input/73.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(green,table) +3. move(blue,table) +4. move(green,red) +5. move(yellow,green) diff --git a/blocks/task4/maps/level5/text_input/74.txt b/blocks/task4/maps/level5/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..f395124fa2daa659d99a8f4401cb5b87a142eaa7 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/74.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(purple,table) +3. move(blue,yellow) +4. move(red,table) +5. move(green,purple) diff --git a/blocks/task4/maps/level5/text_input/75.txt b/blocks/task4/maps/level5/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..386cd3a59c8a3a432068c2af7cd34e789680828d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/75.txt @@ -0,0 +1,5 @@ +1. move(red,yellow) +2. move(green,red) +3. move(blue,purple) +4. move(blue,orange) +5. move(green,blue) diff --git a/blocks/task4/maps/level5/text_input/76.txt b/blocks/task4/maps/level5/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..3592b38c6c34f047583d8aef0b332c8e7c251f04 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/76.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(orange,table) +3. move(red,table) +4. move(green,orange) +5. move(purple,green) diff --git a/blocks/task4/maps/level5/text_input/77.txt b/blocks/task4/maps/level5/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd29baa59b9721b3f0bf6eb1260132545da1ad9d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/77.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(red,table) +3. move(yellow,orange) +4. move(blue,red) +5. move(green,yellow) diff --git a/blocks/task4/maps/level5/text_input/78.txt b/blocks/task4/maps/level5/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..06f59128f9b0e95b8016a71a7e3536a50e6441cd --- /dev/null +++ b/blocks/task4/maps/level5/text_input/78.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(green,table) +3. move(blue,purple) +4. move(green,blue) +5. move(red,green) diff --git a/blocks/task4/maps/level5/text_input/79.txt b/blocks/task4/maps/level5/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a1453a4b8e2e7ee58c0a45a882b7c6a3d24c085 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/79.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(red,table) +3. move(yellow,orange) +4. move(green,yellow) +5. move(purple,green) diff --git a/blocks/task4/maps/level5/text_input/8.txt b/blocks/task4/maps/level5/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1efce508e76497fd61aacbecfa20dccc4abb31d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/8.txt @@ -0,0 +1,5 @@ +1. move(yellow,purple) +2. move(red,table) +3. move(blue,yellow) +4. move(green,table) +5. move(orange,blue) diff --git a/blocks/task4/maps/level5/text_input/80.txt b/blocks/task4/maps/level5/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f185d2931add2e1eae6cc4f5863717987e9f82e3 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/80.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(yellow,table) +3. move(orange,purple) +4. move(yellow,orange) +5. move(orange,table) diff --git a/blocks/task4/maps/level5/text_input/81.txt b/blocks/task4/maps/level5/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bdea863e2db409ee2bb681b41de2ce7c4ff5cd2 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/81.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(green,table) +3. move(red,orange) +4. move(blue,orange) +5. move(blue,table) diff --git a/blocks/task4/maps/level5/text_input/82.txt b/blocks/task4/maps/level5/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d974e309a08387c836d19761842b42367c8d379 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/82.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(purple,table) +3. move(orange,purple) +4. move(blue,red) +5. move(yellow,orange) diff --git a/blocks/task4/maps/level5/text_input/83.txt b/blocks/task4/maps/level5/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..20d69a79039b54d4bd41e39cf2907eb1d88e4c19 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/83.txt @@ -0,0 +1,5 @@ +1. move(blue,yellow) +2. move(orange,table) +3. move(green,table) +4. move(purple,orange) +5. move(blue,purple) diff --git a/blocks/task4/maps/level5/text_input/84.txt b/blocks/task4/maps/level5/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..7920edd4b0d1a7e2b5d4ca2fe2bc9224566e77de --- /dev/null +++ b/blocks/task4/maps/level5/text_input/84.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(yellow,purple) +3. move(green,table) +4. move(yellow,green) +5. move(red,orange) diff --git a/blocks/task4/maps/level5/text_input/85.txt b/blocks/task4/maps/level5/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..01ebe557a9f5a83699d0bb8936b0b2783f06937a --- /dev/null +++ b/blocks/task4/maps/level5/text_input/85.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(green,table) +3. move(red,table) +4. move(blue,table) +5. move(red,blue) diff --git a/blocks/task4/maps/level5/text_input/86.txt b/blocks/task4/maps/level5/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..747ccda00eaffc245b103fa94514a27970879970 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/86.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(green,table) +3. move(purple,orange) +4. move(blue,purple) +5. move(red,blue) diff --git a/blocks/task4/maps/level5/text_input/87.txt b/blocks/task4/maps/level5/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..6286f33563e3de7859137d919935e6b950ef81b4 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/87.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(yellow,table) +3. move(purple,orange) +4. move(orange,red) +5. move(red,purple) diff --git a/blocks/task4/maps/level5/text_input/88.txt b/blocks/task4/maps/level5/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b4d899b80d58ab5dcd6f35518f00a010aedd19d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/88.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(yellow,table) +3. move(green,table) +4. move(purple,red) +5. move(yellow,green) diff --git a/blocks/task4/maps/level5/text_input/89.txt b/blocks/task4/maps/level5/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..319dc47663d92ead6cfa3f49f18430e8a1bf4446 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/89.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(yellow,table) +3. move(orange,table) +4. move(red,table) +5. move(blue,table) diff --git a/blocks/task4/maps/level5/text_input/9.txt b/blocks/task4/maps/level5/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cb266e3179a8817d77bd97dd3c88c2fcad1fd0a --- /dev/null +++ b/blocks/task4/maps/level5/text_input/9.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(purple,red) +3. move(blue,purple) +4. move(green,blue) +5. move(orange,green) diff --git a/blocks/task4/maps/level5/text_input/90.txt b/blocks/task4/maps/level5/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca055aa8057fb56a85468e0bed970a22aca1d348 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/90.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(yellow,table) +3. move(purple,orange) +4. move(red,purple) +5. move(yellow,red) diff --git a/blocks/task4/maps/level5/text_input/91.txt b/blocks/task4/maps/level5/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e828bf48e6b92b5cc9c2c98d14cb66e6c0de20c --- /dev/null +++ b/blocks/task4/maps/level5/text_input/91.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(orange,table) +3. move(red,table) +4. move(blue,table) +5. move(yellow,red) diff --git a/blocks/task4/maps/level5/text_input/92.txt b/blocks/task4/maps/level5/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e5efbc15751707b018161db661e8170424800aa --- /dev/null +++ b/blocks/task4/maps/level5/text_input/92.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(blue,purple) +3. move(red,table) +4. move(yellow,red) +5. move(green,blue) diff --git a/blocks/task4/maps/level5/text_input/93.txt b/blocks/task4/maps/level5/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..13e8a20dde547d856cbb698fae8d333c469e89d9 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/93.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(blue,green) +3. move(red,table) +4. move(yellow,red) +5. move(blue,purple) diff --git a/blocks/task4/maps/level5/text_input/94.txt b/blocks/task4/maps/level5/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..379794db5d851c7680ccbe810fe9514ec025661c --- /dev/null +++ b/blocks/task4/maps/level5/text_input/94.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(orange,table) +3. move(green,table) +4. move(purple,orange) +5. move(red,table) diff --git a/blocks/task4/maps/level5/text_input/95.txt b/blocks/task4/maps/level5/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..118167c6bbd6a94068e46596ff3686f6b11a447d --- /dev/null +++ b/blocks/task4/maps/level5/text_input/95.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(green,table) +3. move(purple,table) +4. move(red,table) +5. move(purple,blue) diff --git a/blocks/task4/maps/level5/text_input/96.txt b/blocks/task4/maps/level5/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bc5b4e76e6fe93fd6ccf55647ae99028c840b67 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/96.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(green,table) +3. move(yellow,blue) +4. move(purple,table) +5. move(red,yellow) diff --git a/blocks/task4/maps/level5/text_input/97.txt b/blocks/task4/maps/level5/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..86f617ed7a9fd825201cc971a10aac06e00a7ff4 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/97.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(orange,green) +3. move(yellow,orange) +4. move(red,yellow) +5. move(purple,red) diff --git a/blocks/task4/maps/level5/text_input/98.txt b/blocks/task4/maps/level5/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..6eeb7d647bcaed3d3527c6093590151e3785fda0 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/98.txt @@ -0,0 +1,5 @@ +1. move(blue,table) +2. move(green,table) +3. move(yellow,blue) +4. move(blue,green) +5. move(purple,table) diff --git a/blocks/task4/maps/level5/text_input/99.txt b/blocks/task4/maps/level5/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e02ebf55a4c5bdf5083bc536c651837719c764c4 --- /dev/null +++ b/blocks/task4/maps/level5/text_input/99.txt @@ -0,0 +1,5 @@ +1. move(orange,green) +2. move(purple,table) +3. move(yellow,orange) +4. move(orange,red) +5. move(red,yellow) diff --git a/blocks/task4/maps/level7/annotation.txt b/blocks/task4/maps/level7/annotation.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbff156b01be1d0c61f1c9dfe7fceec2966652e1 --- /dev/null +++ b/blocks/task4/maps/level7/annotation.txt @@ -0,0 +1,50 @@ +0 +4 +6 +7 +8 +9 +10 +11 +12 +14 +15 +18 +19 +26 +27 +28 +30 +31 +32 +33 +35 +38 +39 +44 +48 +51 +53 +54 +56 +57 +61 +62 +63 +66 +71 +72 +73 +75 +76 +77 +78 +80 +81 +83 +84 +87 +89 +90 +93 +99 diff --git a/blocks/task4/maps/level7/image_input/0.jpg b/blocks/task4/maps/level7/image_input/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdb167c09d9b93b0f1efc9637329b3cc5f8aa93d --- /dev/null +++ b/blocks/task4/maps/level7/image_input/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a516d545cd646e4fab6520bbf894e6784ba44fdfceb42e3c2ebba273a38d3fe +size 11527 diff --git a/blocks/task4/maps/level7/image_input/1.jpg b/blocks/task4/maps/level7/image_input/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdb167c09d9b93b0f1efc9637329b3cc5f8aa93d --- /dev/null +++ b/blocks/task4/maps/level7/image_input/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a516d545cd646e4fab6520bbf894e6784ba44fdfceb42e3c2ebba273a38d3fe +size 11527 diff --git a/blocks/task4/maps/level7/image_input/10.jpg b/blocks/task4/maps/level7/image_input/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efe5d983379989c6653f4a8ce6645f3dc2b681ad --- /dev/null +++ b/blocks/task4/maps/level7/image_input/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60b045fdd0e56560b449b753fe6ceecfeac8dc7b40110b1b158014b4eba7a28 +size 9810 diff --git a/blocks/task4/maps/level7/image_input/11.jpg b/blocks/task4/maps/level7/image_input/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40a4f434905822510986f5e1841d08498c9b5fd9 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723341149a4698d991c40931accda49dd7cf35bcf5c4541a7fdd5e20fa259ac8 +size 10329 diff --git a/blocks/task4/maps/level7/image_input/12.jpg b/blocks/task4/maps/level7/image_input/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..153d63ae89cc45e99cc35c2d2fd130a52065ac55 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a9eae67930140d8169401c3a88cd35fde54e0fb011df58fc84631ed772b501 +size 10463 diff --git a/blocks/task4/maps/level7/image_input/13.jpg b/blocks/task4/maps/level7/image_input/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..288db37a8974a798ced27e24473223ee73e8c2ec --- /dev/null +++ b/blocks/task4/maps/level7/image_input/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e516d723e5da617ea636d7658db451afc6bdcf4aa662d42f6cbe50ca1fd8f04 +size 11152 diff --git a/blocks/task4/maps/level7/image_input/14.jpg b/blocks/task4/maps/level7/image_input/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f982387efeab5683c09c79cc0b67a96fe6a2f30 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a39e2daa608efbb2be9c8004c3681fdcbd06da266e24eb2a09ea9824570c1f04 +size 10027 diff --git a/blocks/task4/maps/level7/image_input/15.jpg b/blocks/task4/maps/level7/image_input/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b2148190279fc07bc2da0f97f70b6d2347df6b3 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5869a741555fa77461d116e390d15053e12d45b9ecdcd8534d1dcee94f6c9bf5 +size 9792 diff --git a/blocks/task4/maps/level7/image_input/16.jpg b/blocks/task4/maps/level7/image_input/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65675ef4e9c220ea74ef063253a8348df5787690 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07d05c84175968662da29f82ef47c9f6c7bd6fb0c91fdc0b023a88552d76cf +size 9257 diff --git a/blocks/task4/maps/level7/image_input/17.jpg b/blocks/task4/maps/level7/image_input/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efe5d983379989c6653f4a8ce6645f3dc2b681ad --- /dev/null +++ b/blocks/task4/maps/level7/image_input/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60b045fdd0e56560b449b753fe6ceecfeac8dc7b40110b1b158014b4eba7a28 +size 9810 diff --git a/blocks/task4/maps/level7/image_input/18.jpg b/blocks/task4/maps/level7/image_input/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c42f1ad4ef4945297b6c20d132cecf917d3e251 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51cc3903bd45f9dbb1ba265ce4bafd73efd5437c685d75974147509249f73e31 +size 12138 diff --git a/blocks/task4/maps/level7/image_input/19.jpg b/blocks/task4/maps/level7/image_input/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b04b366ce4fbed84a3aee39d2cbd7af6c003f1aa --- /dev/null +++ b/blocks/task4/maps/level7/image_input/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a9f858debe46dc5bf966788283e2f0825c199879b3ce29664728af2247242f +size 10093 diff --git a/blocks/task4/maps/level7/image_input/2.jpg b/blocks/task4/maps/level7/image_input/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0eaed422fe20e6de6ce3afc99258dc92bf6306f8 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8baaa89e60b3a2770e752b84b9655fe65fa21fa2c224469ccf435295cf2f3ac +size 10156 diff --git a/blocks/task4/maps/level7/image_input/20.jpg b/blocks/task4/maps/level7/image_input/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40a4f434905822510986f5e1841d08498c9b5fd9 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723341149a4698d991c40931accda49dd7cf35bcf5c4541a7fdd5e20fa259ac8 +size 10329 diff --git a/blocks/task4/maps/level7/image_input/21.jpg b/blocks/task4/maps/level7/image_input/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..153d63ae89cc45e99cc35c2d2fd130a52065ac55 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a9eae67930140d8169401c3a88cd35fde54e0fb011df58fc84631ed772b501 +size 10463 diff --git a/blocks/task4/maps/level7/image_input/22.jpg b/blocks/task4/maps/level7/image_input/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f982387efeab5683c09c79cc0b67a96fe6a2f30 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a39e2daa608efbb2be9c8004c3681fdcbd06da266e24eb2a09ea9824570c1f04 +size 10027 diff --git a/blocks/task4/maps/level7/image_input/23.jpg b/blocks/task4/maps/level7/image_input/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b2148190279fc07bc2da0f97f70b6d2347df6b3 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5869a741555fa77461d116e390d15053e12d45b9ecdcd8534d1dcee94f6c9bf5 +size 9792 diff --git a/blocks/task4/maps/level7/image_input/24.jpg b/blocks/task4/maps/level7/image_input/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c42f1ad4ef4945297b6c20d132cecf917d3e251 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51cc3903bd45f9dbb1ba265ce4bafd73efd5437c685d75974147509249f73e31 +size 12138 diff --git a/blocks/task4/maps/level7/image_input/25.jpg b/blocks/task4/maps/level7/image_input/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b04b366ce4fbed84a3aee39d2cbd7af6c003f1aa --- /dev/null +++ b/blocks/task4/maps/level7/image_input/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a9f858debe46dc5bf966788283e2f0825c199879b3ce29664728af2247242f +size 10093 diff --git a/blocks/task4/maps/level7/image_input/26.jpg b/blocks/task4/maps/level7/image_input/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28e7ecf5c8a7074bdb8ad99e1136b721668e4505 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168c22616b69d6bb8621f7984bf22003f97a5acfe4753801f0bf077df005abbe +size 12234 diff --git a/blocks/task4/maps/level7/image_input/27.jpg b/blocks/task4/maps/level7/image_input/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a15fb2164914b02427e3ece1b90c8ebc2d3f20eb --- /dev/null +++ b/blocks/task4/maps/level7/image_input/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35034cfe2a87c8f8d6b51d908ee48beceee14b1bc807cc4a24c79ba106871dd6 +size 11226 diff --git a/blocks/task4/maps/level7/image_input/28.jpg b/blocks/task4/maps/level7/image_input/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..559384febba7071eba7193a88ce2fc3f7a577c68 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6927af8170e81cee45b079bcff2aa56d2930c7a4655ebda85777ea42d52beaeb +size 9903 diff --git a/blocks/task4/maps/level7/image_input/29.jpg b/blocks/task4/maps/level7/image_input/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28e7ecf5c8a7074bdb8ad99e1136b721668e4505 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168c22616b69d6bb8621f7984bf22003f97a5acfe4753801f0bf077df005abbe +size 12234 diff --git a/blocks/task4/maps/level7/image_input/3.jpg b/blocks/task4/maps/level7/image_input/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08fda8904dc54be41711fd928bbf40f9e9cfd326 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84d2d13eecf6b6ccf0162f7d626b7e17b04300c48a07f10d318eb9b4ca9e873 +size 10770 diff --git a/blocks/task4/maps/level7/image_input/30.jpg b/blocks/task4/maps/level7/image_input/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..511f1dc4205a6fea26c8d1f7eb7b9ecf230c130b --- /dev/null +++ b/blocks/task4/maps/level7/image_input/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307d8209e8bad87e0dc4fb78a269cf2a4b9c7a39ea64f05251372b8437a0369f +size 10530 diff --git a/blocks/task4/maps/level7/image_input/31.jpg b/blocks/task4/maps/level7/image_input/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e62be99d6f173224f141a58b54878d27e755c6b6 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f578a40b52c2f08d8ae3eb2aec23f258201553899f08065443871c74f58eceff +size 10178 diff --git a/blocks/task4/maps/level7/image_input/32.jpg b/blocks/task4/maps/level7/image_input/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd76b72a45af7c662674e6a37054c631a96e75a9 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b79be64bcee204e29f3cc6c605ec042dd3f10f9a5d0d74a81916da8053b3cc +size 11257 diff --git a/blocks/task4/maps/level7/image_input/33.jpg b/blocks/task4/maps/level7/image_input/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16c2fa2afb5ac5f491f32aa8fc149bc35de5f0cd --- /dev/null +++ b/blocks/task4/maps/level7/image_input/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45d44b82a06ea8b976d800848c585d3b3a5736fb694dbcb6a3a3bfb086af052d +size 10405 diff --git a/blocks/task4/maps/level7/image_input/34.jpg b/blocks/task4/maps/level7/image_input/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a15fb2164914b02427e3ece1b90c8ebc2d3f20eb --- /dev/null +++ b/blocks/task4/maps/level7/image_input/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35034cfe2a87c8f8d6b51d908ee48beceee14b1bc807cc4a24c79ba106871dd6 +size 11226 diff --git a/blocks/task4/maps/level7/image_input/35.jpg b/blocks/task4/maps/level7/image_input/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23285adb79a83a3762fe1f6f461bc74e1b381676 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b64b24269d41cc325e7884c1bcb47a37dcc8c4d4b4fd1b4f5e81770dabb819 +size 10286 diff --git a/blocks/task4/maps/level7/image_input/36.jpg b/blocks/task4/maps/level7/image_input/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..559384febba7071eba7193a88ce2fc3f7a577c68 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6927af8170e81cee45b079bcff2aa56d2930c7a4655ebda85777ea42d52beaeb +size 9903 diff --git a/blocks/task4/maps/level7/image_input/37.jpg b/blocks/task4/maps/level7/image_input/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..511f1dc4205a6fea26c8d1f7eb7b9ecf230c130b --- /dev/null +++ b/blocks/task4/maps/level7/image_input/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307d8209e8bad87e0dc4fb78a269cf2a4b9c7a39ea64f05251372b8437a0369f +size 10530 diff --git a/blocks/task4/maps/level7/image_input/38.jpg b/blocks/task4/maps/level7/image_input/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b34a9d0b8fef983fe5e3290db91ac2e85b97c35f --- /dev/null +++ b/blocks/task4/maps/level7/image_input/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ae34185b8364ae5a6f2195cea0d1af353217095c4dffd23836e66524783601 +size 11802 diff --git a/blocks/task4/maps/level7/image_input/39.jpg b/blocks/task4/maps/level7/image_input/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a7acadc1ccecd090e3970ad3c9694a1b2469323 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7763f18f3e720d02569c60c00ca0c8d32cc0863d2d8e667bb33015dc02b732 +size 10159 diff --git a/blocks/task4/maps/level7/image_input/4.jpg b/blocks/task4/maps/level7/image_input/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0eaed422fe20e6de6ce3afc99258dc92bf6306f8 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8baaa89e60b3a2770e752b84b9655fe65fa21fa2c224469ccf435295cf2f3ac +size 10156 diff --git a/blocks/task4/maps/level7/image_input/40.jpg b/blocks/task4/maps/level7/image_input/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e62be99d6f173224f141a58b54878d27e755c6b6 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f578a40b52c2f08d8ae3eb2aec23f258201553899f08065443871c74f58eceff +size 10178 diff --git a/blocks/task4/maps/level7/image_input/41.jpg b/blocks/task4/maps/level7/image_input/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd76b72a45af7c662674e6a37054c631a96e75a9 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b79be64bcee204e29f3cc6c605ec042dd3f10f9a5d0d74a81916da8053b3cc +size 11257 diff --git a/blocks/task4/maps/level7/image_input/42.jpg b/blocks/task4/maps/level7/image_input/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16c2fa2afb5ac5f491f32aa8fc149bc35de5f0cd --- /dev/null +++ b/blocks/task4/maps/level7/image_input/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45d44b82a06ea8b976d800848c585d3b3a5736fb694dbcb6a3a3bfb086af052d +size 10405 diff --git a/blocks/task4/maps/level7/image_input/43.jpg b/blocks/task4/maps/level7/image_input/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23285adb79a83a3762fe1f6f461bc74e1b381676 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b64b24269d41cc325e7884c1bcb47a37dcc8c4d4b4fd1b4f5e81770dabb819 +size 10286 diff --git a/blocks/task4/maps/level7/image_input/44.jpg b/blocks/task4/maps/level7/image_input/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12a05d54ae9022e74e43e315ec49b2eecd8134a6 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620fe9ce12aace0e9ea1cc047543785ecdf694cdb4c2e0dbd6c160933f40bdb3 +size 10418 diff --git a/blocks/task4/maps/level7/image_input/45.jpg b/blocks/task4/maps/level7/image_input/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b34a9d0b8fef983fe5e3290db91ac2e85b97c35f --- /dev/null +++ b/blocks/task4/maps/level7/image_input/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ae34185b8364ae5a6f2195cea0d1af353217095c4dffd23836e66524783601 +size 11802 diff --git a/blocks/task4/maps/level7/image_input/46.jpg b/blocks/task4/maps/level7/image_input/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a7acadc1ccecd090e3970ad3c9694a1b2469323 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7763f18f3e720d02569c60c00ca0c8d32cc0863d2d8e667bb33015dc02b732 +size 10159 diff --git a/blocks/task4/maps/level7/image_input/47.jpg b/blocks/task4/maps/level7/image_input/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12a05d54ae9022e74e43e315ec49b2eecd8134a6 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620fe9ce12aace0e9ea1cc047543785ecdf694cdb4c2e0dbd6c160933f40bdb3 +size 10418 diff --git a/blocks/task4/maps/level7/image_input/48.jpg b/blocks/task4/maps/level7/image_input/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ccade9a7e9b7fe6af3f375df5c2b598ce93a0521 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d78fe2b6cdc2a3f46ff803d901820a552e9425ba6d0c60e4c23c03554075710 +size 9292 diff --git a/blocks/task4/maps/level7/image_input/49.jpg b/blocks/task4/maps/level7/image_input/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ccade9a7e9b7fe6af3f375df5c2b598ce93a0521 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d78fe2b6cdc2a3f46ff803d901820a552e9425ba6d0c60e4c23c03554075710 +size 9292 diff --git a/blocks/task4/maps/level7/image_input/5.jpg b/blocks/task4/maps/level7/image_input/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c03a2d1443dfd8c646978cc4d6e939fd5347c2ca --- /dev/null +++ b/blocks/task4/maps/level7/image_input/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:333a05ed05b1a0373cc9b67c99d08def504f136a8b5b7448f25957d7a68afd23 +size 10749 diff --git a/blocks/task4/maps/level7/image_input/50.jpg b/blocks/task4/maps/level7/image_input/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07795d6ccd17df13b18cd587a5577adbe0cc581b --- /dev/null +++ b/blocks/task4/maps/level7/image_input/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7a9825c7fe99232ce5985dd27a5684e45175ee67f3abc041dea52fdd1291c8 +size 9829 diff --git a/blocks/task4/maps/level7/image_input/51.jpg b/blocks/task4/maps/level7/image_input/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07795d6ccd17df13b18cd587a5577adbe0cc581b --- /dev/null +++ b/blocks/task4/maps/level7/image_input/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7a9825c7fe99232ce5985dd27a5684e45175ee67f3abc041dea52fdd1291c8 +size 9829 diff --git a/blocks/task4/maps/level7/image_input/52.jpg b/blocks/task4/maps/level7/image_input/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ceec78e5362e4ab5882169123fda75bec15de32 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b107237638b1d91c51285fef8b4c95164e138f723abea360a09f70ee5f35913d +size 9924 diff --git a/blocks/task4/maps/level7/image_input/53.jpg b/blocks/task4/maps/level7/image_input/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ceec78e5362e4ab5882169123fda75bec15de32 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b107237638b1d91c51285fef8b4c95164e138f723abea360a09f70ee5f35913d +size 9924 diff --git a/blocks/task4/maps/level7/image_input/54.jpg b/blocks/task4/maps/level7/image_input/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88adbfb16dba0eda0fa78886607d90f8e366f86c --- /dev/null +++ b/blocks/task4/maps/level7/image_input/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdcb4340ddcc906785a5c349470c227496482ab9863f19660feaa395e555fff8 +size 10350 diff --git a/blocks/task4/maps/level7/image_input/55.jpg b/blocks/task4/maps/level7/image_input/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88adbfb16dba0eda0fa78886607d90f8e366f86c --- /dev/null +++ b/blocks/task4/maps/level7/image_input/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdcb4340ddcc906785a5c349470c227496482ab9863f19660feaa395e555fff8 +size 10350 diff --git a/blocks/task4/maps/level7/image_input/56.jpg b/blocks/task4/maps/level7/image_input/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c24a7770d74e7c277a57c2ab6cf3fb08459cbdf --- /dev/null +++ b/blocks/task4/maps/level7/image_input/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846c20a86b6543b69c891e54cd263c6b1cb6f6a9058610bffdf2ea589af74039 +size 11431 diff --git a/blocks/task4/maps/level7/image_input/57.jpg b/blocks/task4/maps/level7/image_input/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86555b4aeb523f6a5a1ac5f638f5c1c12a6ff0d1 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f92a09d9b8354a3bbb84f2af36f449614f031fdfd6aabf193b4bcfdfe3d7d7a +size 10045 diff --git a/blocks/task4/maps/level7/image_input/58.jpg b/blocks/task4/maps/level7/image_input/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c24a7770d74e7c277a57c2ab6cf3fb08459cbdf --- /dev/null +++ b/blocks/task4/maps/level7/image_input/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846c20a86b6543b69c891e54cd263c6b1cb6f6a9058610bffdf2ea589af74039 +size 11431 diff --git a/blocks/task4/maps/level7/image_input/59.jpg b/blocks/task4/maps/level7/image_input/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86555b4aeb523f6a5a1ac5f638f5c1c12a6ff0d1 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f92a09d9b8354a3bbb84f2af36f449614f031fdfd6aabf193b4bcfdfe3d7d7a +size 10045 diff --git a/blocks/task4/maps/level7/image_input/6.jpg b/blocks/task4/maps/level7/image_input/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08fda8904dc54be41711fd928bbf40f9e9cfd326 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84d2d13eecf6b6ccf0162f7d626b7e17b04300c48a07f10d318eb9b4ca9e873 +size 10770 diff --git a/blocks/task4/maps/level7/image_input/60.jpg b/blocks/task4/maps/level7/image_input/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a344ed2702ac4c6f0b11f1621c42cf67e61362ae --- /dev/null +++ b/blocks/task4/maps/level7/image_input/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5a6046615a1022e3e8dbc2d47068640a383a360afa0a4d2c4cd3da27619401 +size 11314 diff --git a/blocks/task4/maps/level7/image_input/61.jpg b/blocks/task4/maps/level7/image_input/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a344ed2702ac4c6f0b11f1621c42cf67e61362ae --- /dev/null +++ b/blocks/task4/maps/level7/image_input/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5a6046615a1022e3e8dbc2d47068640a383a360afa0a4d2c4cd3da27619401 +size 11314 diff --git a/blocks/task4/maps/level7/image_input/62.jpg b/blocks/task4/maps/level7/image_input/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b0d1069bea61a6a891d95df81c94085cbabf6e7 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b5a57f27fb5467ebdf4c8a6b22be1d5117540ca9f2e2f4577b1d0f20fd018d +size 10544 diff --git a/blocks/task4/maps/level7/image_input/63.jpg b/blocks/task4/maps/level7/image_input/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14cb4e6d4a8528cb8ee11d7a12da377f3e485e8c --- /dev/null +++ b/blocks/task4/maps/level7/image_input/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c3048fc4b4daaefd00a49c6495addafca9d7fa90a20da7267189c1e11e80c33 +size 11678 diff --git a/blocks/task4/maps/level7/image_input/64.jpg b/blocks/task4/maps/level7/image_input/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b0d1069bea61a6a891d95df81c94085cbabf6e7 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b5a57f27fb5467ebdf4c8a6b22be1d5117540ca9f2e2f4577b1d0f20fd018d +size 10544 diff --git a/blocks/task4/maps/level7/image_input/65.jpg b/blocks/task4/maps/level7/image_input/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14cb4e6d4a8528cb8ee11d7a12da377f3e485e8c --- /dev/null +++ b/blocks/task4/maps/level7/image_input/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c3048fc4b4daaefd00a49c6495addafca9d7fa90a20da7267189c1e11e80c33 +size 11678 diff --git a/blocks/task4/maps/level7/image_input/66.jpg b/blocks/task4/maps/level7/image_input/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25b50a3d00ebbd445f3b37de00f5a4cc6bd0e8db --- /dev/null +++ b/blocks/task4/maps/level7/image_input/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598329a4759639f87f4dc75788497165b710ff56a60c72a20dc3fc68eafc3f15 +size 9917 diff --git a/blocks/task4/maps/level7/image_input/67.jpg b/blocks/task4/maps/level7/image_input/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25b50a3d00ebbd445f3b37de00f5a4cc6bd0e8db --- /dev/null +++ b/blocks/task4/maps/level7/image_input/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598329a4759639f87f4dc75788497165b710ff56a60c72a20dc3fc68eafc3f15 +size 9917 diff --git a/blocks/task4/maps/level7/image_input/68.jpg b/blocks/task4/maps/level7/image_input/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..328c085d23a7efca3385f886858f0164437c6131 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4d9419198912ac853229a0c41481bd0ef84ac97802c6318476c938beff6475 +size 9958 diff --git a/blocks/task4/maps/level7/image_input/69.jpg b/blocks/task4/maps/level7/image_input/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efe17621263b0fa76d071ba7aa226f36ddc061ad --- /dev/null +++ b/blocks/task4/maps/level7/image_input/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1b4f3b3c0d61c10c8e1d7e827cbf84b231a30171da5b052f37b9dbaa73fb476 +size 11280 diff --git a/blocks/task4/maps/level7/image_input/7.jpg b/blocks/task4/maps/level7/image_input/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c03a2d1443dfd8c646978cc4d6e939fd5347c2ca --- /dev/null +++ b/blocks/task4/maps/level7/image_input/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:333a05ed05b1a0373cc9b67c99d08def504f136a8b5b7448f25957d7a68afd23 +size 10749 diff --git a/blocks/task4/maps/level7/image_input/70.jpg b/blocks/task4/maps/level7/image_input/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df2ec47f3b769fa2cb8c44d44e3c41b7f3afe228 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082f66305b9f2c93ff2179d1dfa61aee8262e2e315218410e909628ea1ddc6f0 +size 11728 diff --git a/blocks/task4/maps/level7/image_input/71.jpg b/blocks/task4/maps/level7/image_input/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..328c085d23a7efca3385f886858f0164437c6131 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4d9419198912ac853229a0c41481bd0ef84ac97802c6318476c938beff6475 +size 9958 diff --git a/blocks/task4/maps/level7/image_input/72.jpg b/blocks/task4/maps/level7/image_input/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efe17621263b0fa76d071ba7aa226f36ddc061ad --- /dev/null +++ b/blocks/task4/maps/level7/image_input/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1b4f3b3c0d61c10c8e1d7e827cbf84b231a30171da5b052f37b9dbaa73fb476 +size 11280 diff --git a/blocks/task4/maps/level7/image_input/73.jpg b/blocks/task4/maps/level7/image_input/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df2ec47f3b769fa2cb8c44d44e3c41b7f3afe228 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082f66305b9f2c93ff2179d1dfa61aee8262e2e315218410e909628ea1ddc6f0 +size 11728 diff --git a/blocks/task4/maps/level7/image_input/74.jpg b/blocks/task4/maps/level7/image_input/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68bb0eecb798760939e0a8b49fd75fa334b29483 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed182c15cfc6654eb4dcf4d6158705e485eacfd36f76ca392b94c43a34a790a3 +size 10458 diff --git a/blocks/task4/maps/level7/image_input/75.jpg b/blocks/task4/maps/level7/image_input/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68bb0eecb798760939e0a8b49fd75fa334b29483 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed182c15cfc6654eb4dcf4d6158705e485eacfd36f76ca392b94c43a34a790a3 +size 10458 diff --git a/blocks/task4/maps/level7/image_input/76.jpg b/blocks/task4/maps/level7/image_input/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b04b1f33888f1026df4137f76dccbf0a04f53d2c --- /dev/null +++ b/blocks/task4/maps/level7/image_input/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e9d4de6374490b75717af621ba72e0be60140fedfb6396a0a941e79025bd99 +size 10538 diff --git a/blocks/task4/maps/level7/image_input/77.jpg b/blocks/task4/maps/level7/image_input/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6cdae237217474b63737e59d3d343d65e209858 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:943a156e612a438bf3132a17cd42c2715f647e92e7731f05221731aa67fad107 +size 9548 diff --git a/blocks/task4/maps/level7/image_input/78.jpg b/blocks/task4/maps/level7/image_input/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..130b9607a1f3e4f5c2b9d8cc8622ad6fc99a1286 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e47921313d412d93c7bc68f5e8d2ce58bdd332b893864c0eead93afc5ad27a +size 9557 diff --git a/blocks/task4/maps/level7/image_input/79.jpg b/blocks/task4/maps/level7/image_input/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b04b1f33888f1026df4137f76dccbf0a04f53d2c --- /dev/null +++ b/blocks/task4/maps/level7/image_input/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e9d4de6374490b75717af621ba72e0be60140fedfb6396a0a941e79025bd99 +size 10538 diff --git a/blocks/task4/maps/level7/image_input/8.jpg b/blocks/task4/maps/level7/image_input/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..288db37a8974a798ced27e24473223ee73e8c2ec --- /dev/null +++ b/blocks/task4/maps/level7/image_input/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e516d723e5da617ea636d7658db451afc6bdcf4aa662d42f6cbe50ca1fd8f04 +size 11152 diff --git a/blocks/task4/maps/level7/image_input/80.jpg b/blocks/task4/maps/level7/image_input/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07685019162d4534fd84b47b71209034416a1214 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ef75400767976dcbac8873cc0a045553592e8df1839e44fc7a3b589e8ad72b +size 10593 diff --git a/blocks/task4/maps/level7/image_input/81.jpg b/blocks/task4/maps/level7/image_input/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99d8777622f495dab716c0a7d5e649d06e169879 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87313a117e561816ff806636de9e704e052795d162608bc1671f9b7bd2e70dd +size 10697 diff --git a/blocks/task4/maps/level7/image_input/82.jpg b/blocks/task4/maps/level7/image_input/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6cdae237217474b63737e59d3d343d65e209858 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:943a156e612a438bf3132a17cd42c2715f647e92e7731f05221731aa67fad107 +size 9548 diff --git a/blocks/task4/maps/level7/image_input/83.jpg b/blocks/task4/maps/level7/image_input/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7cba28c0ef77c5ab93a47497e428ac6b1527371 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90212fe7162d86d0a446f55b2b29e424796942bf66f1c79526c070e9168ee59 +size 10069 diff --git a/blocks/task4/maps/level7/image_input/84.jpg b/blocks/task4/maps/level7/image_input/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cfd6fece601de87523381613dffd043b03eb6d5 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5211399dee272e4f0910e271e4d43e2482027e6e976aedb68cdc7c99e8da46 +size 12386 diff --git a/blocks/task4/maps/level7/image_input/85.jpg b/blocks/task4/maps/level7/image_input/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..130b9607a1f3e4f5c2b9d8cc8622ad6fc99a1286 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e47921313d412d93c7bc68f5e8d2ce58bdd332b893864c0eead93afc5ad27a +size 9557 diff --git a/blocks/task4/maps/level7/image_input/86.jpg b/blocks/task4/maps/level7/image_input/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07685019162d4534fd84b47b71209034416a1214 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ef75400767976dcbac8873cc0a045553592e8df1839e44fc7a3b589e8ad72b +size 10593 diff --git a/blocks/task4/maps/level7/image_input/87.jpg b/blocks/task4/maps/level7/image_input/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38b7246ab38967650e792bc66c80e0562e73f2c3 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8a8e9ba8e1c58fa348bc572afb2dae6c78787bcc8ce510dbbf54b2b44469d8 +size 10151 diff --git a/blocks/task4/maps/level7/image_input/88.jpg b/blocks/task4/maps/level7/image_input/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99d8777622f495dab716c0a7d5e649d06e169879 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87313a117e561816ff806636de9e704e052795d162608bc1671f9b7bd2e70dd +size 10697 diff --git a/blocks/task4/maps/level7/image_input/89.jpg b/blocks/task4/maps/level7/image_input/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8714ebe4ccb4ec7b4727f7f21f1d8707ac8f0707 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96247d59ba27ef77d605e31b96dcb7e8d8cc75278cba25b05eb99766e816db7c +size 10697 diff --git a/blocks/task4/maps/level7/image_input/9.jpg b/blocks/task4/maps/level7/image_input/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65675ef4e9c220ea74ef063253a8348df5787690 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07d05c84175968662da29f82ef47c9f6c7bd6fb0c91fdc0b023a88552d76cf +size 9257 diff --git a/blocks/task4/maps/level7/image_input/90.jpg b/blocks/task4/maps/level7/image_input/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ff68b298faf81c6391e510bad9ecd3a10376dcb --- /dev/null +++ b/blocks/task4/maps/level7/image_input/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab718dbd4ae32a1a3837be2ef3605ba004b2dc67e9d1bc1eadaa98b848ecea1 +size 10713 diff --git a/blocks/task4/maps/level7/image_input/91.jpg b/blocks/task4/maps/level7/image_input/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7cba28c0ef77c5ab93a47497e428ac6b1527371 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90212fe7162d86d0a446f55b2b29e424796942bf66f1c79526c070e9168ee59 +size 10069 diff --git a/blocks/task4/maps/level7/image_input/92.jpg b/blocks/task4/maps/level7/image_input/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cfd6fece601de87523381613dffd043b03eb6d5 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5211399dee272e4f0910e271e4d43e2482027e6e976aedb68cdc7c99e8da46 +size 12386 diff --git a/blocks/task4/maps/level7/image_input/93.jpg b/blocks/task4/maps/level7/image_input/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53801ae5a2b293921da726b72cd9178aed70c813 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b5b4bd0febf06f79576c463d7a0bfab2b938f4fe255a09ab9977a9eb331166 +size 10099 diff --git a/blocks/task4/maps/level7/image_input/94.jpg b/blocks/task4/maps/level7/image_input/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38b7246ab38967650e792bc66c80e0562e73f2c3 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8a8e9ba8e1c58fa348bc572afb2dae6c78787bcc8ce510dbbf54b2b44469d8 +size 10151 diff --git a/blocks/task4/maps/level7/image_input/95.jpg b/blocks/task4/maps/level7/image_input/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8714ebe4ccb4ec7b4727f7f21f1d8707ac8f0707 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96247d59ba27ef77d605e31b96dcb7e8d8cc75278cba25b05eb99766e816db7c +size 10697 diff --git a/blocks/task4/maps/level7/image_input/96.jpg b/blocks/task4/maps/level7/image_input/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ff68b298faf81c6391e510bad9ecd3a10376dcb --- /dev/null +++ b/blocks/task4/maps/level7/image_input/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab718dbd4ae32a1a3837be2ef3605ba004b2dc67e9d1bc1eadaa98b848ecea1 +size 10713 diff --git a/blocks/task4/maps/level7/image_input/97.jpg b/blocks/task4/maps/level7/image_input/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53801ae5a2b293921da726b72cd9178aed70c813 --- /dev/null +++ b/blocks/task4/maps/level7/image_input/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b5b4bd0febf06f79576c463d7a0bfab2b938f4fe255a09ab9977a9eb331166 +size 10099 diff --git a/blocks/task4/maps/level7/image_input/98.jpg b/blocks/task4/maps/level7/image_input/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b77c519a728e9c4294c87a1ae79cbd47fd9f8f0a --- /dev/null +++ b/blocks/task4/maps/level7/image_input/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcfd2b45ac4c5be5a894f96092fe08bb42948e67c569c82b2e300475ffbf0a94 +size 10444 diff --git a/blocks/task4/maps/level7/image_input/99.jpg b/blocks/task4/maps/level7/image_input/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b77c519a728e9c4294c87a1ae79cbd47fd9f8f0a --- /dev/null +++ b/blocks/task4/maps/level7/image_input/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcfd2b45ac4c5be5a894f96092fe08bb42948e67c569c82b2e300475ffbf0a94 +size 10444 diff --git a/blocks/task4/maps/level7/pure_text_rep_input/0.txt b/blocks/task4/maps/level7/pure_text_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd0973eb6873dd01ff07d8582bfe3055f91956a7 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/0.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, green block, blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/1.txt b/blocks/task4/maps/level7/pure_text_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd0973eb6873dd01ff07d8582bfe3055f91956a7 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/1.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, green block, blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/10.txt b/blocks/task4/maps/level7/pure_text_rep_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..23e29859984218df70b2c0ac6543d86bd88c40c2 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/10.txt @@ -0,0 +1 @@ +- Stack with blue block, orange block, purple block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/11.txt b/blocks/task4/maps/level7/pure_text_rep_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..029161097d1774d4133a9f692254a32359c24f66 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/11.txt @@ -0,0 +1 @@ +- Stack with orange block, red block, blue block, green block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/12.txt b/blocks/task4/maps/level7/pure_text_rep_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4efb4c723da289978bf8fee9a4a17f3a062d440 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/12.txt @@ -0,0 +1 @@ +- Stack with blue block, purple block, orange block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/13.txt b/blocks/task4/maps/level7/pure_text_rep_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4db7409f616d544c45e0bf339c139838e0c9529 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/13.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, green block, blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/14.txt b/blocks/task4/maps/level7/pure_text_rep_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..342fc7c22bdf5b87274aa9d644ebcb022f5cecf0 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/14.txt @@ -0,0 +1 @@ +- Stack with orange block, yellow block, green block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/15.txt b/blocks/task4/maps/level7/pure_text_rep_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d46e88a056722dd489749ec2fe3f5b02afdb944 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/15.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with blue block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/16.txt b/blocks/task4/maps/level7/pure_text_rep_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cf4897d31726db2f0b51d71760a878c506b2826 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/16.txt @@ -0,0 +1 @@ +- Stack with yellow block, orange block, red block, green block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/17.txt b/blocks/task4/maps/level7/pure_text_rep_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..23e29859984218df70b2c0ac6543d86bd88c40c2 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/17.txt @@ -0,0 +1 @@ +- Stack with blue block, orange block, purple block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/18.txt b/blocks/task4/maps/level7/pure_text_rep_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa714bf4a3523351e1f3b9e4b53034cec056c982 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/18.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, orange block, yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/19.txt b/blocks/task4/maps/level7/pure_text_rep_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5bf2095047c1dd8875034bcc03eee5dd895425f --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/19.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, blue block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/2.txt b/blocks/task4/maps/level7/pure_text_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..47f9f612992a1c468b1bae492b3ebc1acee25040 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/2.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, green block, from bottom to top +- Stack with orange block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/20.txt b/blocks/task4/maps/level7/pure_text_rep_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..029161097d1774d4133a9f692254a32359c24f66 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/20.txt @@ -0,0 +1 @@ +- Stack with orange block, red block, blue block, green block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/21.txt b/blocks/task4/maps/level7/pure_text_rep_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4efb4c723da289978bf8fee9a4a17f3a062d440 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/21.txt @@ -0,0 +1 @@ +- Stack with blue block, purple block, orange block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/22.txt b/blocks/task4/maps/level7/pure_text_rep_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..342fc7c22bdf5b87274aa9d644ebcb022f5cecf0 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/22.txt @@ -0,0 +1 @@ +- Stack with orange block, yellow block, green block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/23.txt b/blocks/task4/maps/level7/pure_text_rep_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d46e88a056722dd489749ec2fe3f5b02afdb944 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/23.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with blue block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/24.txt b/blocks/task4/maps/level7/pure_text_rep_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa714bf4a3523351e1f3b9e4b53034cec056c982 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/24.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, orange block, yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/25.txt b/blocks/task4/maps/level7/pure_text_rep_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5bf2095047c1dd8875034bcc03eee5dd895425f --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/25.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, blue block, purple block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/26.txt b/blocks/task4/maps/level7/pure_text_rep_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7afef7ea75d49abf4d296feee48f7485e498537e --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/26.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/27.txt b/blocks/task4/maps/level7/pure_text_rep_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2169b1de36d3a94465a7e7f7e73c0bba0dfcacf --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/27.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/28.txt b/blocks/task4/maps/level7/pure_text_rep_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3358d7d3e75bd3f482d60734274ed5c235db85f --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/28.txt @@ -0,0 +1 @@ +- Stack with purple block, orange block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/29.txt b/blocks/task4/maps/level7/pure_text_rep_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..7afef7ea75d49abf4d296feee48f7485e498537e --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/29.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/3.txt b/blocks/task4/maps/level7/pure_text_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c2ee5fd54d62474c02dbf06253de686c032ea42 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/3.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/30.txt b/blocks/task4/maps/level7/pure_text_rep_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..8de673ead65025acdf2001f6f39b70570c3a40da --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/30.txt @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with green block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/31.txt b/blocks/task4/maps/level7/pure_text_rep_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8642e554e3087c81343ec56df778773165e9b5c --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/31.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, blue block, yellow block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/32.txt b/blocks/task4/maps/level7/pure_text_rep_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c8dadc94c1cb19a36a9a943c27dc58240a2921a --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/32.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/33.txt b/blocks/task4/maps/level7/pure_text_rep_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..987132c569f446ec5630ce197a778beb5668ce07 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/33.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, yellow block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/34.txt b/blocks/task4/maps/level7/pure_text_rep_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2169b1de36d3a94465a7e7f7e73c0bba0dfcacf --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/34.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/35.txt b/blocks/task4/maps/level7/pure_text_rep_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0fb17d5991e463daa2790b0526c0a4f34ac5b23 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/35.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/36.txt b/blocks/task4/maps/level7/pure_text_rep_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3358d7d3e75bd3f482d60734274ed5c235db85f --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/36.txt @@ -0,0 +1 @@ +- Stack with purple block, orange block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/37.txt b/blocks/task4/maps/level7/pure_text_rep_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..8de673ead65025acdf2001f6f39b70570c3a40da --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/37.txt @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with green block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/38.txt b/blocks/task4/maps/level7/pure_text_rep_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..db57a47b4545c161f4d929f81dcf3c1e00c407b5 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/38.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/39.txt b/blocks/task4/maps/level7/pure_text_rep_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..b74dd6eeb6db37ac56fb209f424206de9cac02f5 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/39.txt @@ -0,0 +1,2 @@ +- Stack with green block, yellow block, from bottom to top +- Stack with purple block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/4.txt b/blocks/task4/maps/level7/pure_text_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..47f9f612992a1c468b1bae492b3ebc1acee25040 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/4.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, green block, from bottom to top +- Stack with orange block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/40.txt b/blocks/task4/maps/level7/pure_text_rep_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8642e554e3087c81343ec56df778773165e9b5c --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/40.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, blue block, yellow block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/41.txt b/blocks/task4/maps/level7/pure_text_rep_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c8dadc94c1cb19a36a9a943c27dc58240a2921a --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/41.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/42.txt b/blocks/task4/maps/level7/pure_text_rep_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..987132c569f446ec5630ce197a778beb5668ce07 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/42.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, yellow block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/43.txt b/blocks/task4/maps/level7/pure_text_rep_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0fb17d5991e463daa2790b0526c0a4f34ac5b23 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/43.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/44.txt b/blocks/task4/maps/level7/pure_text_rep_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..609c745467782fc35b4cca48656939ef6ecaa027 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/44.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, orange block, blue block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/45.txt b/blocks/task4/maps/level7/pure_text_rep_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..db57a47b4545c161f4d929f81dcf3c1e00c407b5 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/45.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/46.txt b/blocks/task4/maps/level7/pure_text_rep_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..b74dd6eeb6db37ac56fb209f424206de9cac02f5 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/46.txt @@ -0,0 +1,2 @@ +- Stack with green block, yellow block, from bottom to top +- Stack with purple block, blue block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/47.txt b/blocks/task4/maps/level7/pure_text_rep_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..609c745467782fc35b4cca48656939ef6ecaa027 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/47.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, orange block, blue block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/48.txt b/blocks/task4/maps/level7/pure_text_rep_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cf365fcc36ef7d8c5607dbc38c0b9569719f74a --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/48.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, orange block, yellow block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/49.txt b/blocks/task4/maps/level7/pure_text_rep_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cf365fcc36ef7d8c5607dbc38c0b9569719f74a --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/49.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, orange block, yellow block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/5.txt b/blocks/task4/maps/level7/pure_text_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c5f0b3d7dc5270a271a3f5fe94f243416bbbb1d --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/5.txt @@ -0,0 +1,2 @@ +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/50.txt b/blocks/task4/maps/level7/pure_text_rep_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..7816ea2939473b9a4236f7693a6549031eaa2557 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/50.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, green block, yellow block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/51.txt b/blocks/task4/maps/level7/pure_text_rep_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..7816ea2939473b9a4236f7693a6549031eaa2557 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/51.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, green block, yellow block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/52.txt b/blocks/task4/maps/level7/pure_text_rep_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d8a397183be874122aab42e25605d7917978c5e --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/52.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with red block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/53.txt b/blocks/task4/maps/level7/pure_text_rep_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d8a397183be874122aab42e25605d7917978c5e --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/53.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with red block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/54.txt b/blocks/task4/maps/level7/pure_text_rep_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..14ca19685e7130b32585b4029caa32073761672c --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/54.txt @@ -0,0 +1,2 @@ +- Stack with orange block, red block, from bottom to top +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/55.txt b/blocks/task4/maps/level7/pure_text_rep_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..14ca19685e7130b32585b4029caa32073761672c --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/55.txt @@ -0,0 +1,2 @@ +- Stack with orange block, red block, from bottom to top +- Stack with blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/56.txt b/blocks/task4/maps/level7/pure_text_rep_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..da7cde5fd16c8271ffe81fa371e4f7e60d1fd5e9 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/56.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/57.txt b/blocks/task4/maps/level7/pure_text_rep_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..831baf51dd9977a41d9c4c4f68a9fa4ccd3bdc21 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/57.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, green block, orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/58.txt b/blocks/task4/maps/level7/pure_text_rep_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..da7cde5fd16c8271ffe81fa371e4f7e60d1fd5e9 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/58.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/59.txt b/blocks/task4/maps/level7/pure_text_rep_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..831baf51dd9977a41d9c4c4f68a9fa4ccd3bdc21 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/59.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, green block, orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/6.txt b/blocks/task4/maps/level7/pure_text_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c2ee5fd54d62474c02dbf06253de686c032ea42 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/6.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/60.txt b/blocks/task4/maps/level7/pure_text_rep_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..137b406aa0d382b14a2deadbbcfffac2f34dba3d --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/60.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/61.txt b/blocks/task4/maps/level7/pure_text_rep_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..137b406aa0d382b14a2deadbbcfffac2f34dba3d --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/61.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/62.txt b/blocks/task4/maps/level7/pure_text_rep_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3c1e185f63c8097f3b5456f379d6bd19aef0f8b --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/62.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, red block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/63.txt b/blocks/task4/maps/level7/pure_text_rep_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..012a19162381355777989c8ed9f66223f6f76d8e --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/63.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, red block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/64.txt b/blocks/task4/maps/level7/pure_text_rep_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3c1e185f63c8097f3b5456f379d6bd19aef0f8b --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/64.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, red block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/65.txt b/blocks/task4/maps/level7/pure_text_rep_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..012a19162381355777989c8ed9f66223f6f76d8e --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/65.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, red block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/66.txt b/blocks/task4/maps/level7/pure_text_rep_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4b872ef9f9a97158134bb8e06505a6fe5c982dd --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/66.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/67.txt b/blocks/task4/maps/level7/pure_text_rep_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4b872ef9f9a97158134bb8e06505a6fe5c982dd --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/67.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, orange block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/68.txt b/blocks/task4/maps/level7/pure_text_rep_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..c64fc8ecbfa63ef8e101848216a03d9eb8e612a1 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/68.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/69.txt b/blocks/task4/maps/level7/pure_text_rep_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..65350406868d599913e2d3dd4ca3474049a02125 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/69.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/7.txt b/blocks/task4/maps/level7/pure_text_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c5f0b3d7dc5270a271a3f5fe94f243416bbbb1d --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/7.txt @@ -0,0 +1,2 @@ +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, yellow block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/70.txt b/blocks/task4/maps/level7/pure_text_rep_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..eeb2ee6a7302e8ffb5d5ce04ca9d98ac8ec4cb4e --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/70.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, green block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/71.txt b/blocks/task4/maps/level7/pure_text_rep_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..c64fc8ecbfa63ef8e101848216a03d9eb8e612a1 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/71.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/72.txt b/blocks/task4/maps/level7/pure_text_rep_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..65350406868d599913e2d3dd4ca3474049a02125 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/72.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/73.txt b/blocks/task4/maps/level7/pure_text_rep_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..eeb2ee6a7302e8ffb5d5ce04ca9d98ac8ec4cb4e --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/73.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, green block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/74.txt b/blocks/task4/maps/level7/pure_text_rep_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..717bc14298b90482a6152361988a26009454c832 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/74.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, orange block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/75.txt b/blocks/task4/maps/level7/pure_text_rep_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..717bc14298b90482a6152361988a26009454c832 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/75.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, orange block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/76.txt b/blocks/task4/maps/level7/pure_text_rep_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab97223377be6830a9ec1eced85e46db54e33062 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/76.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, blue block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/77.txt b/blocks/task4/maps/level7/pure_text_rep_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..38e43ac58cbd0464381a3fa07478efae68c04dcc --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/77.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, green block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/78.txt b/blocks/task4/maps/level7/pure_text_rep_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e589521d1a207de97b64a2ff8fd52b31b8eb49f --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/78.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/79.txt b/blocks/task4/maps/level7/pure_text_rep_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab97223377be6830a9ec1eced85e46db54e33062 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/79.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, blue block, green block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/8.txt b/blocks/task4/maps/level7/pure_text_rep_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4db7409f616d544c45e0bf339c139838e0c9529 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/8.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, green block, blue block, orange block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/80.txt b/blocks/task4/maps/level7/pure_text_rep_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a61827f340a7e38633b6fe9714aaaa59a6decf7 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/80.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, blue block, orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/81.txt b/blocks/task4/maps/level7/pure_text_rep_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c469f8cc80493b55d12304693caab704f5cf3fd --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/81.txt @@ -0,0 +1 @@ +- Stack with red block, green block, yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/82.txt b/blocks/task4/maps/level7/pure_text_rep_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..38e43ac58cbd0464381a3fa07478efae68c04dcc --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/82.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, green block, purple block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/83.txt b/blocks/task4/maps/level7/pure_text_rep_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..59b7bdb2bc68f518cc9de93022d043b86ce483c1 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/83.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, red block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/84.txt b/blocks/task4/maps/level7/pure_text_rep_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..baa9b10ab802a7f8d99c48095e7c060ea39b97fd --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/84.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, blue block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/85.txt b/blocks/task4/maps/level7/pure_text_rep_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e589521d1a207de97b64a2ff8fd52b31b8eb49f --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/85.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, blue block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/86.txt b/blocks/task4/maps/level7/pure_text_rep_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a61827f340a7e38633b6fe9714aaaa59a6decf7 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/86.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, blue block, orange block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/87.txt b/blocks/task4/maps/level7/pure_text_rep_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..09fc9afcd1b490063d29b4e5dcab6fb2da5ee1b4 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/87.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, yellow block, green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/88.txt b/blocks/task4/maps/level7/pure_text_rep_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c469f8cc80493b55d12304693caab704f5cf3fd --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/88.txt @@ -0,0 +1 @@ +- Stack with red block, green block, yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/89.txt b/blocks/task4/maps/level7/pure_text_rep_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..62c3c31f8c657336653473001547670c1a0c0d72 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/89.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, orange block, red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/9.txt b/blocks/task4/maps/level7/pure_text_rep_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cf4897d31726db2f0b51d71760a878c506b2826 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/9.txt @@ -0,0 +1 @@ +- Stack with yellow block, orange block, red block, green block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/90.txt b/blocks/task4/maps/level7/pure_text_rep_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..c59d709bbf2712aae4c24d32681b19aa42ce9ee0 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/90.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, blue block, purple block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/91.txt b/blocks/task4/maps/level7/pure_text_rep_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..59b7bdb2bc68f518cc9de93022d043b86ce483c1 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/91.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, red block, yellow block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/92.txt b/blocks/task4/maps/level7/pure_text_rep_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..baa9b10ab802a7f8d99c48095e7c060ea39b97fd --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/92.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, blue block, green block, red block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/93.txt b/blocks/task4/maps/level7/pure_text_rep_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ade1b452a8fde8165e1093851bff0b307057604 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/93.txt @@ -0,0 +1 @@ +- Stack with orange block, blue block, yellow block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/94.txt b/blocks/task4/maps/level7/pure_text_rep_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..09fc9afcd1b490063d29b4e5dcab6fb2da5ee1b4 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/94.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, yellow block, green block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/95.txt b/blocks/task4/maps/level7/pure_text_rep_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..62c3c31f8c657336653473001547670c1a0c0d72 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/95.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, orange block, red block, blue block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/96.txt b/blocks/task4/maps/level7/pure_text_rep_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..c59d709bbf2712aae4c24d32681b19aa42ce9ee0 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/96.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, blue block, purple block, green block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/97.txt b/blocks/task4/maps/level7/pure_text_rep_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ade1b452a8fde8165e1093851bff0b307057604 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/97.txt @@ -0,0 +1 @@ +- Stack with orange block, blue block, yellow block, red block, purple block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/98.txt b/blocks/task4/maps/level7/pure_text_rep_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c30f9f54a3ef3ed5948e8bd3f601d76c9dcf824 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/98.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/pure_text_rep_input/99.txt b/blocks/task4/maps/level7/pure_text_rep_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c30f9f54a3ef3ed5948e8bd3f601d76c9dcf824 --- /dev/null +++ b/blocks/task4/maps/level7/pure_text_rep_input/99.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task4/maps/level7/table_rep_input/0.txt b/blocks/task4/maps/level7/table_rep_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..41e5fe58f3005b5fdb1d27bbdc7b9b68eae24b6a --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/0.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | blue | +Level 2 | | green | +Level 1 | yellow | red | diff --git a/blocks/task4/maps/level7/table_rep_input/1.txt b/blocks/task4/maps/level7/table_rep_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..41e5fe58f3005b5fdb1d27bbdc7b9b68eae24b6a --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/1.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | blue | +Level 2 | | green | +Level 1 | yellow | red | diff --git a/blocks/task4/maps/level7/table_rep_input/10.txt b/blocks/task4/maps/level7/table_rep_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fd8927a053c7b1db57bb67ada395120c58db1f7 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/10.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | green | +Level 3 | purple | +Level 2 | orange | +Level 1 | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/11.txt b/blocks/task4/maps/level7/table_rep_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..f933820102f2b0d83380d28379a5c66c8f55643f --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/11.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | blue | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/12.txt b/blocks/task4/maps/level7/table_rep_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1a9684a532af22e3af436f254483b0519e7e203 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/12.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | green | +Level 3 | orange | +Level 2 | purple | +Level 1 | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/13.txt b/blocks/task4/maps/level7/table_rep_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..43c4ff5a3e6cce1d46da78b2cf6df0355ae8151e --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/13.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | blue | +Level 3 | green | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/14.txt b/blocks/task4/maps/level7/table_rep_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..681d096442960ad424695fefde12a1be212717e5 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/14.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | green | +Level 2 | yellow | +Level 1 | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/15.txt b/blocks/task4/maps/level7/table_rep_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..7165a300eacd53fb7f1aa9ea5712fb0a35d30b45 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/15.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | green | +Level 1 | purple | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/16.txt b/blocks/task4/maps/level7/table_rep_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..27606d83091b145d8bc4ad4fc60d78ed7db8141e --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/16.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | red | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/17.txt b/blocks/task4/maps/level7/table_rep_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fd8927a053c7b1db57bb67ada395120c58db1f7 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/17.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | green | +Level 3 | purple | +Level 2 | orange | +Level 1 | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/18.txt b/blocks/task4/maps/level7/table_rep_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..188ba500f24ebce9d8df8952f3190b5953d31e95 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/18.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level7/table_rep_input/19.txt b/blocks/task4/maps/level7/table_rep_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccded53d1d46ab09e92b2b07e467a1b8938e7c99 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/19.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | purple | +Level 3 | blue | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/2.txt b/blocks/task4/maps/level7/table_rep_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2ee297c0fbe29c63d0acc90d30b36e66b9faa2d --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/2.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | green | purple | +Level 1 | yellow | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/20.txt b/blocks/task4/maps/level7/table_rep_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..f933820102f2b0d83380d28379a5c66c8f55643f --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/20.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | blue | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/21.txt b/blocks/task4/maps/level7/table_rep_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1a9684a532af22e3af436f254483b0519e7e203 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/21.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | green | +Level 3 | orange | +Level 2 | purple | +Level 1 | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/22.txt b/blocks/task4/maps/level7/table_rep_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..681d096442960ad424695fefde12a1be212717e5 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/22.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | green | +Level 2 | yellow | +Level 1 | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/23.txt b/blocks/task4/maps/level7/table_rep_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..7165a300eacd53fb7f1aa9ea5712fb0a35d30b45 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/23.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | green | +Level 1 | purple | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/24.txt b/blocks/task4/maps/level7/table_rep_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..188ba500f24ebce9d8df8952f3190b5953d31e95 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/24.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level7/table_rep_input/25.txt b/blocks/task4/maps/level7/table_rep_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccded53d1d46ab09e92b2b07e467a1b8938e7c99 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/25.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | purple | +Level 3 | blue | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/26.txt b/blocks/task4/maps/level7/table_rep_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0a4107b1ca1d8c68aadc22ac26735b74a825918 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/26.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | blue | green | diff --git a/blocks/task4/maps/level7/table_rep_input/27.txt b/blocks/task4/maps/level7/table_rep_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..506230d399cbc21e0edd7ca687014552c2793e2e --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/27.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | yellow | +Level 1 | orange | green | diff --git a/blocks/task4/maps/level7/table_rep_input/28.txt b/blocks/task4/maps/level7/table_rep_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b52cba92f90727d6e0f4bfcb38046489a1cf797 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/28.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | blue | +Level 2 | orange | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/29.txt b/blocks/task4/maps/level7/table_rep_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0a4107b1ca1d8c68aadc22ac26735b74a825918 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/29.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | blue | green | diff --git a/blocks/task4/maps/level7/table_rep_input/3.txt b/blocks/task4/maps/level7/table_rep_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..564398594bf7fb2d8192e434ca12651fcf6eece3 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/3.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | orange | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/30.txt b/blocks/task4/maps/level7/table_rep_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9267b6c3451906a57067afe25d602619e8143fc --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/30.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | orange | blue | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level7/table_rep_input/31.txt b/blocks/task4/maps/level7/table_rep_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..26e9beb4220fa572fadcc69412cd725b218f0e61 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/31.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | red | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/32.txt b/blocks/task4/maps/level7/table_rep_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c7dc622a0c2078a47157a00deee7ad7509bd9f0 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/32.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/33.txt b/blocks/task4/maps/level7/table_rep_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ede06877e37d4c36c8d7034bdcf6d3415961e72 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/33.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/34.txt b/blocks/task4/maps/level7/table_rep_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..506230d399cbc21e0edd7ca687014552c2793e2e --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/34.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | yellow | +Level 1 | orange | green | diff --git a/blocks/task4/maps/level7/table_rep_input/35.txt b/blocks/task4/maps/level7/table_rep_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dc9869ae8975f1fc9e8138cde09ca545d4c156f --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/35.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | blue | +Level 3 | yellow | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task4/maps/level7/table_rep_input/36.txt b/blocks/task4/maps/level7/table_rep_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b52cba92f90727d6e0f4bfcb38046489a1cf797 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/36.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | blue | +Level 2 | orange | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/37.txt b/blocks/task4/maps/level7/table_rep_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9267b6c3451906a57067afe25d602619e8143fc --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/37.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | orange | blue | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level7/table_rep_input/38.txt b/blocks/task4/maps/level7/table_rep_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..068ec625218e2e63e86ce8aa539321d11d4e57e5 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/38.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | blue | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level7/table_rep_input/39.txt b/blocks/task4/maps/level7/table_rep_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5df982d0a61ed209200b0c16cb1f34ea5c9c8bd --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/39.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | blue | +Level 1 | green | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/4.txt b/blocks/task4/maps/level7/table_rep_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2ee297c0fbe29c63d0acc90d30b36e66b9faa2d --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/4.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | green | purple | +Level 1 | yellow | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/40.txt b/blocks/task4/maps/level7/table_rep_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..26e9beb4220fa572fadcc69412cd725b218f0e61 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/40.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | red | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/41.txt b/blocks/task4/maps/level7/table_rep_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c7dc622a0c2078a47157a00deee7ad7509bd9f0 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/41.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/42.txt b/blocks/task4/maps/level7/table_rep_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ede06877e37d4c36c8d7034bdcf6d3415961e72 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/42.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/43.txt b/blocks/task4/maps/level7/table_rep_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dc9869ae8975f1fc9e8138cde09ca545d4c156f --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/43.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | blue | +Level 3 | yellow | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task4/maps/level7/table_rep_input/44.txt b/blocks/task4/maps/level7/table_rep_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff38f7c033d35f7691207dc87768f082ec4216d6 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/44.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | blue | +Level 3 | orange | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/45.txt b/blocks/task4/maps/level7/table_rep_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..068ec625218e2e63e86ce8aa539321d11d4e57e5 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/45.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | blue | +Level 1 | purple | green | diff --git a/blocks/task4/maps/level7/table_rep_input/46.txt b/blocks/task4/maps/level7/table_rep_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5df982d0a61ed209200b0c16cb1f34ea5c9c8bd --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/46.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | blue | +Level 1 | green | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/47.txt b/blocks/task4/maps/level7/table_rep_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff38f7c033d35f7691207dc87768f082ec4216d6 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/47.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | blue | +Level 3 | orange | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/48.txt b/blocks/task4/maps/level7/table_rep_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..c77ee800514134cd569c1e89653548556c96fdea --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/48.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | yellow | +Level 3 | orange | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/49.txt b/blocks/task4/maps/level7/table_rep_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..c77ee800514134cd569c1e89653548556c96fdea --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/49.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | yellow | +Level 3 | orange | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/5.txt b/blocks/task4/maps/level7/table_rep_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..261101b6a7dd6b6c8de7c8dd6de44168cb68ba3d --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/5.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | purple | yellow | +Level 1 | blue | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/50.txt b/blocks/task4/maps/level7/table_rep_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..1564004c67a3b7b66a1ca3b12fa141ca966bfb1f --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/50.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | green | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/51.txt b/blocks/task4/maps/level7/table_rep_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..1564004c67a3b7b66a1ca3b12fa141ca966bfb1f --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/51.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | green | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/52.txt b/blocks/task4/maps/level7/table_rep_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..929a3978b8dee3ceb6724b28b9ea4425ea0e7f7d --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/52.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | green | +Level 1 | yellow | red | diff --git a/blocks/task4/maps/level7/table_rep_input/53.txt b/blocks/task4/maps/level7/table_rep_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..929a3978b8dee3ceb6724b28b9ea4425ea0e7f7d --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/53.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | green | +Level 1 | yellow | red | diff --git a/blocks/task4/maps/level7/table_rep_input/54.txt b/blocks/task4/maps/level7/table_rep_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8f7f69da74fa73c08acc93b8aaab17ca747d8d4 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/54.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | red | yellow | +Level 1 | orange | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/55.txt b/blocks/task4/maps/level7/table_rep_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8f7f69da74fa73c08acc93b8aaab17ca747d8d4 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/55.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | red | yellow | +Level 1 | orange | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/56.txt b/blocks/task4/maps/level7/table_rep_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2df47c8e9ef854bb849936d0ca43338a224fce44 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/56.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | green | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/57.txt b/blocks/task4/maps/level7/table_rep_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d58b2648cef343116f2441055596461314d90c8 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/57.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | orange | +Level 3 | green | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/58.txt b/blocks/task4/maps/level7/table_rep_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..2df47c8e9ef854bb849936d0ca43338a224fce44 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/58.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | green | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/59.txt b/blocks/task4/maps/level7/table_rep_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d58b2648cef343116f2441055596461314d90c8 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/59.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | orange | +Level 3 | green | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/6.txt b/blocks/task4/maps/level7/table_rep_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..564398594bf7fb2d8192e434ca12651fcf6eece3 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/6.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | orange | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/60.txt b/blocks/task4/maps/level7/table_rep_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..816d44a10c3f06792de4f9d2c402fcf7f7b1e4f4 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/60.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | blue | red | diff --git a/blocks/task4/maps/level7/table_rep_input/61.txt b/blocks/task4/maps/level7/table_rep_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..816d44a10c3f06792de4f9d2c402fcf7f7b1e4f4 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/61.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | blue | red | diff --git a/blocks/task4/maps/level7/table_rep_input/62.txt b/blocks/task4/maps/level7/table_rep_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..51c10c4c72473cda63724fd6af23368d60cf1b26 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/62.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | red | +Level 1 | green | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/63.txt b/blocks/task4/maps/level7/table_rep_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..dba3d7ed4d2b44419180ede35c6501e4e57310ad --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/63.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | orange | green | diff --git a/blocks/task4/maps/level7/table_rep_input/64.txt b/blocks/task4/maps/level7/table_rep_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..51c10c4c72473cda63724fd6af23368d60cf1b26 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/64.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | red | +Level 1 | green | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/65.txt b/blocks/task4/maps/level7/table_rep_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..dba3d7ed4d2b44419180ede35c6501e4e57310ad --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/65.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | orange | green | diff --git a/blocks/task4/maps/level7/table_rep_input/66.txt b/blocks/task4/maps/level7/table_rep_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f2c958438fd23445c69007948b0c03f50ee79af --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/66.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | blue | orange | +Level 1 | yellow | red | diff --git a/blocks/task4/maps/level7/table_rep_input/67.txt b/blocks/task4/maps/level7/table_rep_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f2c958438fd23445c69007948b0c03f50ee79af --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/67.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | blue | orange | +Level 1 | yellow | red | diff --git a/blocks/task4/maps/level7/table_rep_input/68.txt b/blocks/task4/maps/level7/table_rep_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e47ba364e3d7c24e20812d65723604cb0b5fa9e --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/68.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | orange | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/69.txt b/blocks/task4/maps/level7/table_rep_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..97f4b6ac99a482d3b9923d3fe55c8a38d4fc8fe4 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/69.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | blue | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/7.txt b/blocks/task4/maps/level7/table_rep_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..261101b6a7dd6b6c8de7c8dd6de44168cb68ba3d --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/7.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | purple | yellow | +Level 1 | blue | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/70.txt b/blocks/task4/maps/level7/table_rep_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..eec1156f4df5cc99cd1acf163f8e27b3db6555e5 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/70.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | green | +Level 1 | yellow | red | diff --git a/blocks/task4/maps/level7/table_rep_input/71.txt b/blocks/task4/maps/level7/table_rep_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e47ba364e3d7c24e20812d65723604cb0b5fa9e --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/71.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | orange | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task4/maps/level7/table_rep_input/72.txt b/blocks/task4/maps/level7/table_rep_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..97f4b6ac99a482d3b9923d3fe55c8a38d4fc8fe4 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/72.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | blue | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/73.txt b/blocks/task4/maps/level7/table_rep_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..eec1156f4df5cc99cd1acf163f8e27b3db6555e5 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/73.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | green | +Level 1 | yellow | red | diff --git a/blocks/task4/maps/level7/table_rep_input/74.txt b/blocks/task4/maps/level7/table_rep_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cb1309afd32ff546f576f6e4f85af47029127df --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/74.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | red | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/75.txt b/blocks/task4/maps/level7/table_rep_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cb1309afd32ff546f576f6e4f85af47029127df --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/75.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | red | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/76.txt b/blocks/task4/maps/level7/table_rep_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..262ed6092a3cc55368567155c0428fc14ee090dc --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/76.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | green | +Level 3 | blue | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/77.txt b/blocks/task4/maps/level7/table_rep_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ca5f17aff019f3c02d56c7921f553acff4cc5e6 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/77.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | green | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/78.txt b/blocks/task4/maps/level7/table_rep_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..db4ccba412288baa73a5615a274252931f3446f8 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/78.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | orange | blue | +Level 1 | yellow | green | diff --git a/blocks/task4/maps/level7/table_rep_input/79.txt b/blocks/task4/maps/level7/table_rep_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..262ed6092a3cc55368567155c0428fc14ee090dc --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/79.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | green | +Level 3 | blue | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/8.txt b/blocks/task4/maps/level7/table_rep_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..43c4ff5a3e6cce1d46da78b2cf6df0355ae8151e --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/8.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | blue | +Level 3 | green | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/80.txt b/blocks/task4/maps/level7/table_rep_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..969d6d58df861068cc47d86a68a4967d5527663f --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/80.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | orange | +Level 3 | blue | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/81.txt b/blocks/task4/maps/level7/table_rep_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef2c0f01c0fdd61ad477c667233c5bd60bec8fdd --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/81.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | purple | +Level 3 | yellow | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/82.txt b/blocks/task4/maps/level7/table_rep_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ca5f17aff019f3c02d56c7921f553acff4cc5e6 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/82.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | green | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/83.txt b/blocks/task4/maps/level7/table_rep_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..990661ce19980d9a72ba61294587bb846f4c78d8 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/83.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | yellow | +Level 3 | red | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/84.txt b/blocks/task4/maps/level7/table_rep_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..931d9ca71f72c1884c77944cf424d4e6eb75de56 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/84.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | green | +Level 2 | | blue | +Level 1 | orange | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/85.txt b/blocks/task4/maps/level7/table_rep_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..db4ccba412288baa73a5615a274252931f3446f8 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/85.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | orange | blue | +Level 1 | yellow | green | diff --git a/blocks/task4/maps/level7/table_rep_input/86.txt b/blocks/task4/maps/level7/table_rep_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..969d6d58df861068cc47d86a68a4967d5527663f --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/86.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | orange | +Level 3 | blue | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/87.txt b/blocks/task4/maps/level7/table_rep_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..80d7742b3e5f58ac808ca209ab40bd672e596690 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/87.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | green | +Level 3 | yellow | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/88.txt b/blocks/task4/maps/level7/table_rep_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef2c0f01c0fdd61ad477c667233c5bd60bec8fdd --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/88.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | purple | +Level 3 | yellow | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/89.txt b/blocks/task4/maps/level7/table_rep_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddb2a0707622916ca0646741e10c4b348cdc9d76 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/89.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | orange | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/9.txt b/blocks/task4/maps/level7/table_rep_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..27606d83091b145d8bc4ad4fc60d78ed7db8141e --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/9.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | red | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/90.txt b/blocks/task4/maps/level7/table_rep_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..e08fe0ac9146ef83f43c00529084317f44276e75 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/90.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | purple | +Level 3 | blue | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/91.txt b/blocks/task4/maps/level7/table_rep_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..990661ce19980d9a72ba61294587bb846f4c78d8 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/91.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | yellow | +Level 3 | red | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/92.txt b/blocks/task4/maps/level7/table_rep_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..931d9ca71f72c1884c77944cf424d4e6eb75de56 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/92.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | green | +Level 2 | | blue | +Level 1 | orange | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/93.txt b/blocks/task4/maps/level7/table_rep_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b11e83020bcf39d2abf3e64c144fa6d821080d7 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/93.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | red | +Level 3 | yellow | +Level 2 | blue | +Level 1 | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/94.txt b/blocks/task4/maps/level7/table_rep_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..80d7742b3e5f58ac808ca209ab40bd672e596690 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/94.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | green | +Level 3 | yellow | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/95.txt b/blocks/task4/maps/level7/table_rep_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddb2a0707622916ca0646741e10c4b348cdc9d76 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/95.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | orange | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task4/maps/level7/table_rep_input/96.txt b/blocks/task4/maps/level7/table_rep_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..e08fe0ac9146ef83f43c00529084317f44276e75 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/96.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | purple | +Level 3 | blue | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task4/maps/level7/table_rep_input/97.txt b/blocks/task4/maps/level7/table_rep_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b11e83020bcf39d2abf3e64c144fa6d821080d7 --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/97.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | red | +Level 3 | yellow | +Level 2 | blue | +Level 1 | orange | diff --git a/blocks/task4/maps/level7/table_rep_input/98.txt b/blocks/task4/maps/level7/table_rep_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..f33df98a6374e042942fb55bce9e456990268f0d --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/98.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | orange | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/table_rep_input/99.txt b/blocks/task4/maps/level7/table_rep_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..f33df98a6374e042942fb55bce9e456990268f0d --- /dev/null +++ b/blocks/task4/maps/level7/table_rep_input/99.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | orange | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task4/maps/level7/text_input/0.txt b/blocks/task4/maps/level7/text_input/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..13691f205cd9853c165da95b004159b58ab9dd75 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/0.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(blue,table) +3. move(green,table) +4. move(orange,green) +5. move(blue,orange) +6. move(yellow,blue) +7. move(red,yellow) diff --git a/blocks/task4/maps/level7/text_input/1.txt b/blocks/task4/maps/level7/text_input/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..57c9abd3766b0ca8a3dd8df80b6d7ad7c6636bda --- /dev/null +++ b/blocks/task4/maps/level7/text_input/1.txt @@ -0,0 +1,7 @@ +1. move(green,table) +2. move(orange,table) +3. move(blue,yellow) +4. move(green,table) +5. move(orange,green) +6. move(blue,orange) +7. move(yellow,blue) diff --git a/blocks/task4/maps/level7/text_input/10.txt b/blocks/task4/maps/level7/text_input/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..1303719abd0af112c7338725e9582278c0007431 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/10.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,table) +3. move(purple,table) +4. move(orange,table) +5. move(green,blue) +6. move(orange,green) +7. move(purple,orange) diff --git a/blocks/task4/maps/level7/text_input/11.txt b/blocks/task4/maps/level7/text_input/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..af258f55247439f2059915d3508a795ebd7aa2e8 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/11.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(green,table) +3. move(blue,table) +4. move(red,blue) +5. move(orange,red) +6. move(green,orange) +7. move(purple,green) diff --git a/blocks/task4/maps/level7/text_input/12.txt b/blocks/task4/maps/level7/text_input/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..9041b5ba2905d82f4ad944ab0cccb7ef20cfa774 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/12.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,table) +3. move(orange,table) +4. move(purple,table) +5. move(blue,orange) +6. move(green,blue) +7. move(red,green) diff --git a/blocks/task4/maps/level7/text_input/13.txt b/blocks/task4/maps/level7/text_input/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..62cfadbe15a465399a9ae0e3b09ee23f2dcfe721 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/13.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(red,orange) +3. move(blue,table) +4. move(green,table) +5. move(purple,table) +6. move(orange,purple) +7. move(green,orange) diff --git a/blocks/task4/maps/level7/text_input/14.txt b/blocks/task4/maps/level7/text_input/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..52abd29c4294372746e3064266fee165189ed741 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/14.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(blue,table) +3. move(green,table) +4. move(yellow,table) +5. move(red,orange) +6. move(blue,red) +7. move(green,yellow) diff --git a/blocks/task4/maps/level7/text_input/15.txt b/blocks/task4/maps/level7/text_input/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..92d4cdf5b587af833f041bfa160e4de386351a37 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/15.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,table) +3. move(yellow,table) +4. move(red,green) +5. move(purple,red) +6. move(blue,purple) +7. move(yellow,blue) diff --git a/blocks/task4/maps/level7/text_input/16.txt b/blocks/task4/maps/level7/text_input/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6b300be29611b327d87c211cf0f93aa0ecafa44 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/16.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(purple,table) +3. move(green,table) +4. move(red,table) +5. move(purple,red) +6. move(green,purple) +7. move(orange,table) diff --git a/blocks/task4/maps/level7/text_input/17.txt b/blocks/task4/maps/level7/text_input/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa05c3ea5ceeb540ec785ec116f703ff9f9efd88 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/17.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,table) +3. move(purple,red) +4. move(red,table) +5. move(orange,purple) +6. move(green,blue) +7. move(orange,green) diff --git a/blocks/task4/maps/level7/text_input/18.txt b/blocks/task4/maps/level7/text_input/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..15722564c48ad046bee7bac45a5f523a6653da82 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/18.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(yellow,table) +3. move(orange,table) +4. move(green,orange) +5. move(yellow,green) +6. move(red,yellow) +7. move(purple,red) diff --git a/blocks/task4/maps/level7/text_input/19.txt b/blocks/task4/maps/level7/text_input/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7acb6822dd02a2c802bf3d36dc34cfa45b118af --- /dev/null +++ b/blocks/task4/maps/level7/text_input/19.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(purple,table) +3. move(blue,table) +4. move(green,table) +5. move(yellow,blue) +6. move(orange,yellow) +7. move(purple,green) diff --git a/blocks/task4/maps/level7/text_input/2.txt b/blocks/task4/maps/level7/text_input/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..38c809fa499a4c2a04ade5438536bdff45108d72 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/2.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(purple,table) +3. move(green,table) +4. move(yellow,purple) +5. move(orange,yellow) +6. move(purple,table) +7. move(green,orange) diff --git a/blocks/task4/maps/level7/text_input/20.txt b/blocks/task4/maps/level7/text_input/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24a936dfc30d6c69951516cb780b27daf787d606 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/20.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(green,purple) +3. move(blue,table) +4. move(red,purple) +5. move(red,blue) +6. move(orange,red) +7. move(green,orange) diff --git a/blocks/task4/maps/level7/text_input/21.txt b/blocks/task4/maps/level7/text_input/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..21c422b3e8f223d43be456ac913a2ce2f75203ba --- /dev/null +++ b/blocks/task4/maps/level7/text_input/21.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,red) +3. move(orange,table) +4. move(purple,table) +5. move(red,purple) +6. move(blue,orange) +7. move(green,blue) diff --git a/blocks/task4/maps/level7/text_input/22.txt b/blocks/task4/maps/level7/text_input/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..96d8e69e79d668204caf8c87f74ae8f52b043082 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/22.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(blue,table) +3. move(green,red) +4. move(yellow,table) +5. move(red,orange) +6. move(green,yellow) +7. move(red,orange) diff --git a/blocks/task4/maps/level7/text_input/23.txt b/blocks/task4/maps/level7/text_input/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..a766e2573f89d450843323967e48e92e2860bc74 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/23.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(orange,purple) +3. move(red,purple) +4. move(green,table) +5. move(red,green) +6. move(purple,red) +7. move(blue,purple) diff --git a/blocks/task4/maps/level7/text_input/24.txt b/blocks/task4/maps/level7/text_input/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..14d6144c23e49338c2f6032bbf304036a4d3161a --- /dev/null +++ b/blocks/task4/maps/level7/text_input/24.txt @@ -0,0 +1,7 @@ +1. move(red,purple) +2. move(yellow,red) +3. move(orange,table) +4. move(green,orange) +5. move(yellow,green) +6. move(red,yellow) +7. move(blue,table) diff --git a/blocks/task4/maps/level7/text_input/25.txt b/blocks/task4/maps/level7/text_input/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..42521a75747d703b8f37ad31eec58e3d782d8e02 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/25.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(orange,table) +3. move(purple,orange) +4. move(blue,table) +5. move(green,table) +6. move(purple,green) +7. move(yellow,blue) diff --git a/blocks/task4/maps/level7/text_input/26.txt b/blocks/task4/maps/level7/text_input/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c74d9d0ccd853acdfc27f2e2ef6e11ddf179020 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/26.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,table) +3. move(orange,table) +4. move(green,purple) +5. move(yellow,green) +6. move(blue,yellow) +7. move(orange,blue) diff --git a/blocks/task4/maps/level7/text_input/27.txt b/blocks/task4/maps/level7/text_input/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f861f24a51e04c3eac98f26f01b46fbcd3d11d1 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/27.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(blue,table) +3. move(yellow,table) +4. move(blue,yellow) +5. move(orange,blue) +6. move(green,orange) +7. move(purple,green) diff --git a/blocks/task4/maps/level7/text_input/28.txt b/blocks/task4/maps/level7/text_input/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c67223bdb3d781b6cfab98033e68611852acdbf --- /dev/null +++ b/blocks/task4/maps/level7/text_input/28.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(red,table) +3. move(blue,table) +4. move(orange,blue) +5. move(purple,orange) +6. move(red,purple) +7. move(yellow,red) diff --git a/blocks/task4/maps/level7/text_input/29.txt b/blocks/task4/maps/level7/text_input/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..abf132582d30e2641449875d7346cf46a8672ffc --- /dev/null +++ b/blocks/task4/maps/level7/text_input/29.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,blue) +3. move(green,yellow) +4. move(orange,table) +5. move(green,purple) +6. move(yellow,green) +7. move(blue,yellow) diff --git a/blocks/task4/maps/level7/text_input/3.txt b/blocks/task4/maps/level7/text_input/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8745d85544bd24de3a015cf084ed2658739c200 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/3.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(orange,red) +3. move(purple,red) +4. move(orange,table) +5. move(purple,orange) +6. move(green,table) +7. move(yellow,purple) diff --git a/blocks/task4/maps/level7/text_input/30.txt b/blocks/task4/maps/level7/text_input/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..a30210d6c5e10502f49544cb0e501878a1b5f6a4 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/30.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(orange,table) +3. move(blue,table) +4. move(green,yellow) +5. move(purple,green) +6. move(blue,purple) +7. move(orange,blue) diff --git a/blocks/task4/maps/level7/text_input/31.txt b/blocks/task4/maps/level7/text_input/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b388e03e69b4d1b12e5c5f10655b89be0e17a90 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/31.txt @@ -0,0 +1,7 @@ +1. move(green,table) +2. move(yellow,table) +3. move(blue,table) +4. move(green,blue) +5. move(purple,green) +6. move(red,purple) +7. move(yellow,red) diff --git a/blocks/task4/maps/level7/text_input/32.txt b/blocks/task4/maps/level7/text_input/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a4c815ead3dd485f510ba215542942649d88d0e --- /dev/null +++ b/blocks/task4/maps/level7/text_input/32.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(red,table) +3. move(blue,table) +4. move(yellow,blue) +5. move(red,yellow) +6. move(orange,red) +7. move(purple,orange) diff --git a/blocks/task4/maps/level7/text_input/33.txt b/blocks/task4/maps/level7/text_input/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7621c117b1c705183e903f20fc68ab24b4033db --- /dev/null +++ b/blocks/task4/maps/level7/text_input/33.txt @@ -0,0 +1,7 @@ +1. move(green,table) +2. move(yellow,table) +3. move(orange,table) +4. move(blue,green) +5. move(orange,blue) +6. move(red,orange) +7. move(yellow,red) diff --git a/blocks/task4/maps/level7/text_input/34.txt b/blocks/task4/maps/level7/text_input/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..8863f169a5b0fd853d00503c28612fbef3dcdc76 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/34.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(blue,orange) +3. move(yellow,table) +4. move(orange,yellow) +5. move(blue,yellow) +6. move(orange,blue) +7. move(green,orange) diff --git a/blocks/task4/maps/level7/text_input/35.txt b/blocks/task4/maps/level7/text_input/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc5313b9f14d8a993f65d1854403374a014fdb52 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/35.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(blue,table) +3. move(yellow,table) +4. move(orange,yellow) +5. move(purple,orange) +6. move(green,purple) +7. move(blue,green) diff --git a/blocks/task4/maps/level7/text_input/36.txt b/blocks/task4/maps/level7/text_input/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..1877c598cab76c61b823d12f95689f7d8a2d2302 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/36.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(red,yellow) +3. move(blue,green) +4. move(blue,table) +5. move(orange,blue) +6. move(purple,orange) +7. move(red,purple) diff --git a/blocks/task4/maps/level7/text_input/37.txt b/blocks/task4/maps/level7/text_input/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef742a428b85ac069475a84b1382e995be1b5156 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/37.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(blue,table) +3. move(purple,blue) +4. move(orange,table) +5. move(green,yellow) +6. move(purple,green) +7. move(blue,purple) diff --git a/blocks/task4/maps/level7/text_input/38.txt b/blocks/task4/maps/level7/text_input/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..370d0bd92e93444a3c4687310e3344fe227315c9 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/38.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(red,table) +3. move(blue,table) +4. move(green,red) +5. move(purple,green) +6. move(blue,purple) +7. move(yellow,blue) diff --git a/blocks/task4/maps/level7/text_input/39.txt b/blocks/task4/maps/level7/text_input/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebf2aca53873ba6d4519c145ab38b348797d6ed8 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/39.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(blue,table) +3. move(yellow,table) +4. move(purple,green) +5. move(red,purple) +6. move(blue,red) +7. move(yellow,blue) diff --git a/blocks/task4/maps/level7/text_input/4.txt b/blocks/task4/maps/level7/text_input/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..7540237182c8900aabc22ee9b10bbe629f145f82 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/4.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,red) +3. move(purple,table) +4. move(yellow,purple) +5. move(orange,yellow) +6. move(green,orange) +7. move(red,green) diff --git a/blocks/task4/maps/level7/text_input/40.txt b/blocks/task4/maps/level7/text_input/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ef8e724173e85b138b73387814c20e3c52594eb --- /dev/null +++ b/blocks/task4/maps/level7/text_input/40.txt @@ -0,0 +1,7 @@ +1. move(green,red) +2. move(yellow,table) +3. move(blue,table) +4. move(green,blue) +5. move(purple,green) +6. move(blue,yellow) +7. move(red,purple) diff --git a/blocks/task4/maps/level7/text_input/41.txt b/blocks/task4/maps/level7/text_input/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..6abe53d502118023cb78ae7092fb95ace8a1a382 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/41.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(yellow,table) +3. move(red,purple) +4. move(blue,table) +5. move(yellow,blue) +6. move(red,yellow) +7. move(orange,red) diff --git a/blocks/task4/maps/level7/text_input/42.txt b/blocks/task4/maps/level7/text_input/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..20da26caed8a5b628206a79ea220a5818dc270a6 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/42.txt @@ -0,0 +1,7 @@ +1. move(yellow,red) +2. move(green,table) +3. move(yellow,table) +4. move(orange,yellow) +5. move(blue,green) +6. move(orange,blue) +7. move(red,orange) diff --git a/blocks/task4/maps/level7/text_input/43.txt b/blocks/task4/maps/level7/text_input/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..393001dc980ca303855816d8ec90426658ba6a71 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/43.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(blue,table) +3. move(yellow,table) +4. move(orange,yellow) +5. move(purple,orange) +6. move(green,red) +7. move(green,purple) diff --git a/blocks/task4/maps/level7/text_input/44.txt b/blocks/task4/maps/level7/text_input/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..64a66a0bedf53675b85b46f4824b712226bd0c52 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/44.txt @@ -0,0 +1,7 @@ +1. move(green,table) +2. move(blue,table) +3. move(orange,table) +4. move(purple,table) +5. move(blue,red) +6. move(purple,blue) +7. move(green,purple) diff --git a/blocks/task4/maps/level7/text_input/45.txt b/blocks/task4/maps/level7/text_input/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8f890015503a9237e059014249d93dddd37512c --- /dev/null +++ b/blocks/task4/maps/level7/text_input/45.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(red,orange) +3. move(red,table) +4. move(blue,yellow) +5. move(green,red) +6. move(purple,green) +7. move(blue,purple) diff --git a/blocks/task4/maps/level7/text_input/46.txt b/blocks/task4/maps/level7/text_input/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..65a81ba2c50a10380a414e2fc32a1f4c3f7d9c47 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/46.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(yellow,table) +3. move(blue,yellow) +4. move(purple,green) +5. move(red,purple) +6. move(red,yellow) +7. move(blue,red) diff --git a/blocks/task4/maps/level7/text_input/47.txt b/blocks/task4/maps/level7/text_input/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f8dd8517b9df1ca3501848909d917c8ba1ebac2 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/47.txt @@ -0,0 +1,7 @@ +1. move(green,table) +2. move(blue,green) +3. move(orange,table) +4. move(purple,orange) +5. move(orange,table) +6. move(blue,red) +7. move(purple,blue) diff --git a/blocks/task4/maps/level7/text_input/48.txt b/blocks/task4/maps/level7/text_input/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..516b83f4e9bc5b32de1cd6147ed1519e2741339c --- /dev/null +++ b/blocks/task4/maps/level7/text_input/48.txt @@ -0,0 +1,7 @@ +1. move(green,table) +2. move(yellow,table) +3. move(orange,table) +4. move(purple,table) +5. move(green,orange) +6. move(red,green) +7. move(yellow,purple) diff --git a/blocks/task4/maps/level7/text_input/49.txt b/blocks/task4/maps/level7/text_input/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5093ac6fdf9596f61816c44ddf5a0b51bb7b33c --- /dev/null +++ b/blocks/task4/maps/level7/text_input/49.txt @@ -0,0 +1,7 @@ +1. move(green,table) +2. move(yellow,green) +3. move(orange,table) +4. move(green,table) +5. move(purple,table) +6. move(yellow,purple) +7. move(green,orange) diff --git a/blocks/task4/maps/level7/text_input/5.txt b/blocks/task4/maps/level7/text_input/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddfa7716bb29721fc8d01115acf0b732ec3514fa --- /dev/null +++ b/blocks/task4/maps/level7/text_input/5.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(purple,table) +3. move(yellow,table) +4. move(green,table) +5. move(orange,purple) +6. move(blue,orange) +7. move(red,blue) diff --git a/blocks/task4/maps/level7/text_input/50.txt b/blocks/task4/maps/level7/text_input/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..109809ecc5337aba1cf85a408371e5caccf2289c --- /dev/null +++ b/blocks/task4/maps/level7/text_input/50.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(green,orange) +3. move(yellow,table) +4. move(green,table) +5. move(blue,green) +6. move(orange,yellow) +7. move(purple,orange) diff --git a/blocks/task4/maps/level7/text_input/51.txt b/blocks/task4/maps/level7/text_input/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce1b9eaae9ba7f138d119f1a78090cb3b9de6666 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/51.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(yellow,table) +3. move(green,table) +4. move(blue,table) +5. move(orange,yellow) +6. move(purple,orange) +7. move(blue,purple) diff --git a/blocks/task4/maps/level7/text_input/52.txt b/blocks/task4/maps/level7/text_input/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..a03d254e60f78f2749290bb32fdeb17126af9d60 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/52.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(green,orange) +3. move(purple,table) +4. move(red,purple) +5. move(yellow,purple) +6. move(green,red) +7. move(yellow,green) diff --git a/blocks/task4/maps/level7/text_input/53.txt b/blocks/task4/maps/level7/text_input/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dce58f5179881f8831482cd67b171c93608f91e --- /dev/null +++ b/blocks/task4/maps/level7/text_input/53.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(green,table) +3. move(purple,table) +4. move(red,purple) +5. move(green,red) +6. move(yellow,green) +7. move(orange,yellow) diff --git a/blocks/task4/maps/level7/text_input/54.txt b/blocks/task4/maps/level7/text_input/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd037ca6020261ca7e14cd44a15b8e839e863143 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/54.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,table) +3. move(red,table) +4. move(purple,blue) +5. move(yellow,purple) +6. move(orange,yellow) +7. move(red,orange) diff --git a/blocks/task4/maps/level7/text_input/55.txt b/blocks/task4/maps/level7/text_input/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c3697341abbab59a4c6218259d16ae29a58dc96 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/55.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,red) +3. move(purple,blue) +4. move(blue,table) +5. move(yellow,purple) +6. move(red,table) +7. move(orange,yellow) diff --git a/blocks/task4/maps/level7/text_input/56.txt b/blocks/task4/maps/level7/text_input/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..46e6103e0134d48c776b91ee00d299686fd89caa --- /dev/null +++ b/blocks/task4/maps/level7/text_input/56.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(purple,table) +3. move(yellow,table) +4. move(green,yellow) +5. move(blue,green) +6. move(purple,blue) +7. move(orange,purple) diff --git a/blocks/task4/maps/level7/text_input/57.txt b/blocks/task4/maps/level7/text_input/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c881237ee75a7403319412d7f3afb3ddb75181c --- /dev/null +++ b/blocks/task4/maps/level7/text_input/57.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(orange,table) +3. move(green,table) +4. move(yellow,green) +5. move(purple,yellow) +6. move(blue,purple) +7. move(orange,blue) diff --git a/blocks/task4/maps/level7/text_input/58.txt b/blocks/task4/maps/level7/text_input/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..f79504cb862e3f6b7b87ae0be6b54b83e6c85dc7 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/58.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(purple,table) +3. move(yellow,table) +4. move(green,yellow) +5. move(green,red) +6. move(blue,green) +7. move(purple,blue) diff --git a/blocks/task4/maps/level7/text_input/59.txt b/blocks/task4/maps/level7/text_input/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ed5d95d3120c49a40927a157b5c870a3706dccc --- /dev/null +++ b/blocks/task4/maps/level7/text_input/59.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(orange,table) +3. move(green,table) +4. move(blue,orange) +5. move(yellow,green) +6. move(purple,yellow) +7. move(blue,purple) diff --git a/blocks/task4/maps/level7/text_input/6.txt b/blocks/task4/maps/level7/text_input/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6e650e5f41a27c4be296b625524342401ff2bfc --- /dev/null +++ b/blocks/task4/maps/level7/text_input/6.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(purple,table) +3. move(orange,table) +4. move(green,table) +5. move(red,green) +6. move(purple,orange) +7. move(yellow,purple) diff --git a/blocks/task4/maps/level7/text_input/60.txt b/blocks/task4/maps/level7/text_input/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..82704f8825e92c3bef94ee3ed44685220c803272 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/60.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,blue) +3. move(orange,table) +4. move(blue,red) +5. move(yellow,orange) +6. move(blue,yellow) +7. move(purple,blue) diff --git a/blocks/task4/maps/level7/text_input/61.txt b/blocks/task4/maps/level7/text_input/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..520d2e78456eed1235f110e44dfe507bbcdbc8dc --- /dev/null +++ b/blocks/task4/maps/level7/text_input/61.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,table) +3. move(orange,table) +4. move(yellow,orange) +5. move(blue,yellow) +6. move(purple,blue) +7. move(red,purple) diff --git a/blocks/task4/maps/level7/text_input/62.txt b/blocks/task4/maps/level7/text_input/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9000fba04238638626b1c9b2598a8eeeda85532 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/62.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(blue,table) +3. move(red,table) +4. move(yellow,green) +5. move(red,yellow) +6. move(purple,red) +7. move(blue,purple) diff --git a/blocks/task4/maps/level7/text_input/63.txt b/blocks/task4/maps/level7/text_input/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..69fde06ef9900a0f3fc0777b0b994d406387f707 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/63.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,table) +3. move(red,table) +4. move(orange,red) +5. move(yellow,orange) +6. move(green,yellow) +7. move(purple,green) diff --git a/blocks/task4/maps/level7/text_input/64.txt b/blocks/task4/maps/level7/text_input/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f2ff738a3ed3725ff6f1c38468bcc1831d5402c --- /dev/null +++ b/blocks/task4/maps/level7/text_input/64.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(blue,table) +3. move(yellow,blue) +4. move(red,blue) +5. move(yellow,green) +6. move(red,yellow) +7. move(purple,red) diff --git a/blocks/task4/maps/level7/text_input/65.txt b/blocks/task4/maps/level7/text_input/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfaff95141978a0832509ec6d59bda84ed775c8e --- /dev/null +++ b/blocks/task4/maps/level7/text_input/65.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,purple) +3. move(red,table) +4. move(orange,red) +5. move(yellow,orange) +6. move(green,yellow) +7. move(orange,table) diff --git a/blocks/task4/maps/level7/text_input/66.txt b/blocks/task4/maps/level7/text_input/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..80bd808a98890f36d4d91634a72bce775fe9ca3c --- /dev/null +++ b/blocks/task4/maps/level7/text_input/66.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(orange,table) +3. move(blue,table) +4. move(red,blue) +5. move(orange,red) +6. move(purple,orange) +7. move(yellow,purple) diff --git a/blocks/task4/maps/level7/text_input/67.txt b/blocks/task4/maps/level7/text_input/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..17a2f8311cca470e9be615b86e115bd3d859d511 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/67.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(purple,yellow) +3. move(orange,purple) +4. move(red,blue) +5. move(orange,red) +6. move(purple,orange) +7. move(green,table) diff --git a/blocks/task4/maps/level7/text_input/68.txt b/blocks/task4/maps/level7/text_input/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..422fde7eb546417a21efefeaf7326a310f371133 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/68.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(purple,table) +3. move(orange,table) +4. move(blue,table) +5. move(yellow,purple) +6. move(red,blue) +7. move(orange,red) diff --git a/blocks/task4/maps/level7/text_input/69.txt b/blocks/task4/maps/level7/text_input/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a0db0ba309f0c5a8777f3de8870bf28604bb611 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/69.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,table) +3. move(orange,yellow) +4. move(blue,table) +5. move(purple,blue) +6. move(orange,purple) +7. move(yellow,orange) diff --git a/blocks/task4/maps/level7/text_input/7.txt b/blocks/task4/maps/level7/text_input/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d867cf076ac8b4990d0d57bbba08c935b8f64d55 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/7.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(yellow,table) +3. move(purple,table) +4. move(orange,purple) +5. move(blue,orange) +6. move(red,blue) +7. move(yellow,red) diff --git a/blocks/task4/maps/level7/text_input/70.txt b/blocks/task4/maps/level7/text_input/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff48d84f5c94268ffdb9620f2808ab3668fe406 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/70.txt @@ -0,0 +1,7 @@ +1. move(purple,yellow) +2. move(blue,table) +3. move(red,purple) +4. move(green,table) +5. move(purple,green) +6. move(yellow,purple) +7. move(red,yellow) diff --git a/blocks/task4/maps/level7/text_input/71.txt b/blocks/task4/maps/level7/text_input/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2934df6cc29e3921abf292da5afdaeeaf4fe3f54 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/71.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(purple,table) +3. move(orange,table) +4. move(yellow,table) +5. move(red,blue) +6. move(orange,red) +7. move(yellow,orange) diff --git a/blocks/task4/maps/level7/text_input/72.txt b/blocks/task4/maps/level7/text_input/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea0bcd041ba59c71f81f793ac2dbbdd043533701 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/72.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(yellow,table) +3. move(blue,table) +4. move(purple,blue) +5. move(orange,purple) +6. move(yellow,orange) +7. move(red,yellow) diff --git a/blocks/task4/maps/level7/text_input/73.txt b/blocks/task4/maps/level7/text_input/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..e452f63d2fea52a414e09f2b55f43bd4bb6be8a9 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/73.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(blue,table) +3. move(green,table) +4. move(purple,green) +5. move(yellow,purple) +6. move(red,yellow) +7. move(blue,red) diff --git a/blocks/task4/maps/level7/text_input/74.txt b/blocks/task4/maps/level7/text_input/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d186ed52d7d33ed2b0bf4b01869fa67737b7fdc --- /dev/null +++ b/blocks/task4/maps/level7/text_input/74.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(yellow,table) +3. move(orange,blue) +4. move(yellow,purple) +5. move(orange,yellow) +6. move(red,orange) +7. move(purple,table) diff --git a/blocks/task4/maps/level7/text_input/75.txt b/blocks/task4/maps/level7/text_input/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..19ea6735b5cc0b8db5a038cb5a762d824796de57 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/75.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(yellow,table) +3. move(orange,table) +4. move(yellow,purple) +5. move(orange,yellow) +6. move(red,orange) +7. move(blue,red) diff --git a/blocks/task4/maps/level7/text_input/76.txt b/blocks/task4/maps/level7/text_input/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..326e34b069c46c458c1caab9315d6626239a2aac --- /dev/null +++ b/blocks/task4/maps/level7/text_input/76.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(green,table) +3. move(blue,green) +4. move(red,table) +5. move(purple,blue) +6. move(red,purple) +7. move(orange,red) diff --git a/blocks/task4/maps/level7/text_input/77.txt b/blocks/task4/maps/level7/text_input/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8431cfe4fe062df9419d80e97a13f2d75378d22b --- /dev/null +++ b/blocks/task4/maps/level7/text_input/77.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(purple,table) +3. move(green,table) +4. move(blue,table) +5. move(red,purple) +6. move(yellow,red) +7. move(blue,yellow) diff --git a/blocks/task4/maps/level7/text_input/78.txt b/blocks/task4/maps/level7/text_input/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..3df3dae20cb245aeee1d953f3201227f405b3546 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/78.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(blue,table) +3. move(orange,table) +4. move(yellow,orange) +5. move(green,yellow) +6. move(blue,green) +7. move(purple,blue) diff --git a/blocks/task4/maps/level7/text_input/79.txt b/blocks/task4/maps/level7/text_input/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..72f6ed05a84f578a77b8e34a595640d8bc4c8157 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/79.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(green,table) +3. move(blue,green) +4. move(red,orange) +5. move(purple,blue) +6. move(red,blue) +7. move(red,purple) diff --git a/blocks/task4/maps/level7/text_input/8.txt b/blocks/task4/maps/level7/text_input/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..60d3d26ae1c69de64616dd404804c8bcbc30e5bd --- /dev/null +++ b/blocks/task4/maps/level7/text_input/8.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(blue,table) +3. move(green,table) +4. move(purple,table) +5. move(blue,red) +6. move(orange,purple) +7. move(green,orange) diff --git a/blocks/task4/maps/level7/text_input/80.txt b/blocks/task4/maps/level7/text_input/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..d06f592647ff0c693a2198217dbfaa1f7aabcc49 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/80.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(orange,table) +3. move(blue,table) +4. move(green,table) +5. move(orange,green) +6. move(blue,orange) +7. move(red,blue) diff --git a/blocks/task4/maps/level7/text_input/81.txt b/blocks/task4/maps/level7/text_input/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..255ae203bee99ba95e2e9f864051bd98724537f9 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/81.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(purple,table) +3. move(yellow,table) +4. move(purple,yellow) +5. move(green,purple) +6. move(blue,green) +7. move(red,blue) diff --git a/blocks/task4/maps/level7/text_input/82.txt b/blocks/task4/maps/level7/text_input/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa21228e6d1053fb64b7896a4940bb68fde96a6d --- /dev/null +++ b/blocks/task4/maps/level7/text_input/82.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(purple,table) +3. move(green,table) +4. move(yellow,green) +5. move(blue,green) +6. move(red,purple) +7. move(yellow,red) diff --git a/blocks/task4/maps/level7/text_input/83.txt b/blocks/task4/maps/level7/text_input/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..4750f1a0a272f7230ba3d06fe4b59162c7ddff70 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/83.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(yellow,table) +3. move(red,table) +4. move(green,yellow) +5. move(red,green) +6. move(purple,red) +7. move(blue,purple) diff --git a/blocks/task4/maps/level7/text_input/84.txt b/blocks/task4/maps/level7/text_input/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcd539f402468b0f41a8428445338f0ff6fcae3e --- /dev/null +++ b/blocks/task4/maps/level7/text_input/84.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,table) +3. move(blue,table) +4. move(purple,green) +5. move(orange,purple) +6. move(red,orange) +7. move(blue,red) diff --git a/blocks/task4/maps/level7/text_input/85.txt b/blocks/task4/maps/level7/text_input/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..939c732fc0f6ef4a2069a1321df4fa545444016c --- /dev/null +++ b/blocks/task4/maps/level7/text_input/85.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(orange,table) +3. move(yellow,orange) +4. move(blue,purple) +5. move(green,yellow) +6. move(blue,green) +7. move(yellow,purple) diff --git a/blocks/task4/maps/level7/text_input/86.txt b/blocks/task4/maps/level7/text_input/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e10a64dde196aa5f27e506dfb6c9406760715a1 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/86.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(orange,red) +3. move(blue,table) +4. move(green,table) +5. move(red,blue) +6. move(orange,green) +7. move(blue,orange) diff --git a/blocks/task4/maps/level7/text_input/87.txt b/blocks/task4/maps/level7/text_input/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..d113e503c109b7050894c6813899ce0140d82f8e --- /dev/null +++ b/blocks/task4/maps/level7/text_input/87.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(green,table) +3. move(yellow,table) +4. move(red,table) +5. move(green,red) +6. move(purple,green) +7. move(yellow,purple) diff --git a/blocks/task4/maps/level7/text_input/88.txt b/blocks/task4/maps/level7/text_input/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a871881e72f75481919c792d62d946493222635 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/88.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(purple,blue) +3. move(yellow,table) +4. move(orange,green) +5. move(purple,yellow) +6. move(green,purple) +7. move(blue,green) diff --git a/blocks/task4/maps/level7/text_input/89.txt b/blocks/task4/maps/level7/text_input/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..c23d3074ab5c6f9a7bce7b097029d592e098b098 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/89.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(red,table) +3. move(orange,table) +4. move(green,table) +5. move(blue,yellow) +6. move(green,blue) +7. move(red,green) diff --git a/blocks/task4/maps/level7/text_input/9.txt b/blocks/task4/maps/level7/text_input/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..b964d9cc2aee861af8f0462bb201ae208301eb0b --- /dev/null +++ b/blocks/task4/maps/level7/text_input/9.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(green,table) +3. move(red,table) +4. move(orange,table) +5. move(yellow,orange) +6. move(purple,red) +7. move(green,purple) diff --git a/blocks/task4/maps/level7/text_input/90.txt b/blocks/task4/maps/level7/text_input/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..f66ef93364a39526168dd9023fb040b4b095eefb --- /dev/null +++ b/blocks/task4/maps/level7/text_input/90.txt @@ -0,0 +1,7 @@ +1. move(green,table) +2. move(purple,table) +3. move(blue,table) +4. move(orange,table) +5. move(blue,red) +6. move(green,blue) +7. move(purple,green) diff --git a/blocks/task4/maps/level7/text_input/91.txt b/blocks/task4/maps/level7/text_input/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d8ce9525aa2c48c50d55ff931c676d6e977c514 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/91.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(yellow,table) +3. move(red,blue) +4. move(green,blue) +5. move(green,yellow) +6. move(red,green) +7. move(purple,red) diff --git a/blocks/task4/maps/level7/text_input/92.txt b/blocks/task4/maps/level7/text_input/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6c7868d88043cc8ef34beb51e1445dd21f008ef --- /dev/null +++ b/blocks/task4/maps/level7/text_input/92.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,table) +3. move(blue,table) +4. move(purple,green) +5. move(orange,purple) +6. move(red,orange) +7. move(orange,table) diff --git a/blocks/task4/maps/level7/text_input/93.txt b/blocks/task4/maps/level7/text_input/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..eee094c9c576b5a0248d6bc63301bd11283a68a5 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/93.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(red,table) +3. move(yellow,table) +4. move(blue,table) +5. move(purple,blue) +6. move(yellow,purple) +7. move(orange,yellow) diff --git a/blocks/task4/maps/level7/text_input/94.txt b/blocks/task4/maps/level7/text_input/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..209d904e10f61b5621dbb94599b2a9fa59cc8fe8 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/94.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(green,table) +3. move(orange,table) +4. move(yellow,blue) +5. move(red,table) +6. move(green,red) +7. move(purple,green) diff --git a/blocks/task4/maps/level7/text_input/95.txt b/blocks/task4/maps/level7/text_input/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdb3f48b35091410aa0b3025a1039409eac5b4dd --- /dev/null +++ b/blocks/task4/maps/level7/text_input/95.txt @@ -0,0 +1,7 @@ +1. move(blue,table) +2. move(red,table) +3. move(orange,table) +4. move(green,orange) +5. move(blue,yellow) +6. move(green,blue) +7. move(green,purple) diff --git a/blocks/task4/maps/level7/text_input/96.txt b/blocks/task4/maps/level7/text_input/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..1657bdfef75f8b469236b7ccb17edcce51e8a407 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/96.txt @@ -0,0 +1,7 @@ +1. move(green,table) +2. move(yellow,green) +3. move(purple,table) +4. move(blue,purple) +5. move(orange,table) +6. move(blue,red) +7. move(green,blue) diff --git a/blocks/task4/maps/level7/text_input/97.txt b/blocks/task4/maps/level7/text_input/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb06d9e322871d4edaad8a9a6885a41599fb5d02 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/97.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(red,green) +3. move(red,table) +4. move(yellow,red) +5. move(blue,table) +6. move(purple,blue) +7. move(yellow,purple) diff --git a/blocks/task4/maps/level7/text_input/98.txt b/blocks/task4/maps/level7/text_input/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcc5b4266351131169b34d59ff4cb447ab16b36b --- /dev/null +++ b/blocks/task4/maps/level7/text_input/98.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(blue,table) +3. move(orange,blue) +4. move(green,table) +5. move(orange,purple) +6. move(yellow,orange) +7. move(red,yellow) diff --git a/blocks/task4/maps/level7/text_input/99.txt b/blocks/task4/maps/level7/text_input/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..035d4ff5057773a4daeca7fa96fd62330f819107 --- /dev/null +++ b/blocks/task4/maps/level7/text_input/99.txt @@ -0,0 +1,7 @@ +1. move(yellow,table) +2. move(blue,table) +3. move(orange,table) +4. move(green,table) +5. move(orange,purple) +6. move(yellow,orange) +7. move(blue,yellow) diff --git a/blocks/task4/prompt-text/prompt-text.txt b/blocks/task4/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..65ed8acdb4a28f010c63f7c72cde250dc6894cce --- /dev/null +++ b/blocks/task4/prompt-text/prompt-text.txt @@ -0,0 +1,54 @@ +You are a robot that sorts and organizes colored blocks by adding and removing them to stacks. +You can move them between stacks to produce a desired end state. + +In this task, you will see a photo of blocks. This photo shows the beginning state of the blocks. You will see a photo of blocks. This photo shows the beginning state of the blocks. Meanwhile, you will be provided an action sequence about moving blocks. Your task is to determine if the provided action plan can be successfully executed. Since coding is not within your skill set, your approach relies on logical reasoning of the map. + +## Game Setup +- The block configuration is presented in the image. You must view and interpret the image in order to determine which blocks are in which stack and determine the consequence of moving. +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. +- A valid action can only move the top block of any stacks. Attempting to move lower blocks is considered an invalid move. +- For the destination, a valid move can either (a) move the top block to the top of another stack, or (b) place the top block on the table, creating a new stack with just one block. + +We provide an example to further illustrate the rules: + + + +The sequence of actions provided is: +1. move(red,table) +2. move(green,table) + +In this example, there are four blocks in three stacks. The stacks are: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block +It is valid to move the purple block, the blue block, and the red block, since they are at the top of a stack. It is invalid to move the orange block since it is not at the top of a stack (because it is covered by the red block). +Each move can place the block on top of another stack or on the table (creating a new stack of one). For instance, you could move the red block to either the blue stack or the table. + +## Procedure and Output +Your output should follow this format: +1. First, briefly analyze the block configuration, and check each action step by step to see if the provided step is valid as shown above. +2. Then, answer the question with the format " Yes" or " No" to indicate if the action sequence is valid. + +Here is an example for the output: + In the image, there are three stacks: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block +The first action "move(red,table)" is valid, because the red block is on top of a stack (stack 3 in this case), and the target is "table". After the first action, the state will become: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: Orange block (alone) +- Stack 4: Red block (alone) +The second action "move(green,table)" is invalid, because there is no green block. +Therefore, the provided action sequence is invalid. + No + +Now please determine if the provided action sequence is valid given the following input state: + + + +The action sequence is: + + + diff --git a/blocks/task4/prompt-visual-images/example0.jpg b/blocks/task4/prompt-visual-images/example0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00441c1e743435ca733644c169ff6a8c55def2e6 --- /dev/null +++ b/blocks/task4/prompt-visual-images/example0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556d22008dc07ec6cc3025494315bceb6eab830c2f66ffe43ae21b1152e45769 +size 10171 diff --git a/blocks/task4/test.py b/blocks/task4/test.py new file mode 100644 index 0000000000000000000000000000000000000000..883cb12a2a36b308b63fe9a5ee649f1c5b038c64 --- /dev/null +++ b/blocks/task4/test.py @@ -0,0 +1,163 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +from IPython.display import display +from IPython.display import Markdown + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) + # torch.manual_seed(seed) + # torch.cuda.manual_seed(seed) + # torch.backends.cudnn.deterministic = True + # env.seed(seed) +seed_everything(1) + +levels = [1,3,5,7] +in_context_example_num = 0 # 0, 1, 2, 4, 8 + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +EXAMPLE_DICT = { + 1: [], + 3: [], + 5: [], + 7: [], +} + +# Prepare examples +for level in levels: + for example_id in range(8): + curr_example_pack = {} + curr_example_pack["image_path"] = "example/level%d/image_input/%d.jpg"%(level, example_id) + with open("example/level%d/text_input/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["question"] = f.read() + with open("example/level%d/answer/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["answer"] = f.read() + EXAMPLE_DICT[level].append(curr_example_pack) + +# import ipdb; ipdb.set_trace() +example_img = PIL.Image.open('prompt-visual-images/example0.jpg') +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + input_img_path = "level%d/image_input/"%(level) + input_txt_path = "level%d/text_input/"%(level) + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + prompt_input_1 = ''' +You are a robot that sorts and organizes colored blocks by adding and removing them to stacks. +You can move them between stacks to produce a desired end state. + +In this task, you will see a photo of blocks. This photo shows the beginning state of the blocks. You will see a photo of blocks. This photo shows the beginning state of the blocks. Meanwhile, you will be provided an action sequence about moving blocks. Your task is to determine if the provided action plan can be successfully executed. Since coding is not within your skill set, your approach relies on logical reasoning of the map. + +## Game Setup +- The block configuration is presented in the image. You must view and interpret the image in order to determine which blocks are in which stack and determine the consequence of moving. +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. +- A valid action can only move the top block of any stacks. Attempting to move lower blocks is considered an invalid move. +- For the destination, a valid move can either (a) move the top block to the top of another stack, or (b) place the top block on the table, creating a new stack with just one block. +''' + + prompt_input_2 = ''' +We provide an example to further illustrate the rules: +''' + + prompt_input_3 = ''' +The sequence of actions provided is: +1. move(red,table) +2. move(green,table) + +In this example, there are four blocks in three stacks. The stacks are: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block +It is valid to move the purple block, the blue block, and the red block, since they are at the top of a stack. It is invalid to move the orange block since it is not at the top of a stack (because it is covered by the red block). +Each move can place the block on top of another stack or on the table (creating a new stack of one). For instance, you could move the red block to either the blue stack or the table. + +## Procedure and Output +Your output should follow this format: +1. First, briefly analyze the block configuration, and check each action step by step to see if the provided step is valid as shown above. +2. Then, answer the question with the format " Yes" or " No" to indicate if the action sequence is valid. + +Here is an example for the output: + In the image, there are three stacks: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block +The first action "move(red,table)" is valid, because the red block is on top of a stack (stack 3 in this case), and the target is "table". After the first action, the state will become: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: Orange block (alone) +- Stack 4: Red block (alone) +The second action "move(green,table)" is invalid, because there is no green block. +Therefore, the provided action sequence is invalid. + No +''' + prompt_examples = [] + image_examples = [] + if in_context_example_num > 0: + prompt_examples.append("## Example:\n") + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + image_examples.append(PIL.Image.open(this_example["image_path"])) + prompt_examples.append("\nThe action sequence is:\n" + this_example["question"] + "\n" + this_example["answer"] + "\n") + prompt_input_4 = "\n\nNow please determine if the provided action sequence is valid given the following input state:" + prompt_input_5 = "\nThe action sequence is:\n" + begin_img = PIL.Image.open('level%d/image_input/%d.jpg'%(level, curr_id)) + with open(input_txt_path + "%d.txt"%(curr_id), 'r') as f: + question = f.read() + model_input_seq = [prompt_input_1, prompt_input_2, example_img, prompt_input_3] + if in_context_example_num > 0: + assert len(prompt_examples) == len(image_examples) + 1 + assert len(prompt_examples) == in_context_example_num + 1 + model_input_seq.append(prompt_examples[0]) + for example_index in range(in_context_example_num): + model_input_seq.append(image_examples[example_index]) + model_input_seq.append(prompt_examples[example_index+1]) + model_input_seq += [prompt_input_4, begin_img, prompt_input_5, question] + + response = model.generate_content(model_input_seq) + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass + + + diff --git a/blocks/task5/.DS_Store b/blocks/task5/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..3063816c5ab9c2b0680abc314be5977374884f11 Binary files /dev/null and b/blocks/task5/.DS_Store differ diff --git a/blocks/task5/eval.py b/blocks/task5/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..72a15a39fc9947d24e4c81bfac8892c852d9de59 --- /dev/null +++ b/blocks/task5/eval.py @@ -0,0 +1,163 @@ +# input: actions, begin state, end state +# output: judge whether reach the end state + +import csv +import os +import copy + +def move(input_s, action): + # one action consequence + elems = action[len("move("):-1].split(',') + action_from = elems[0][0] + action_to = elems[1] + action_from = action_from.lstrip() + action_from = action_from.rstrip() + action_to = action_to.lstrip() + action_to = action_to.rstrip() + if action_to != "table": + action_to = action_to[0] + # if no stack having "action_from" at top -> invalid move. Else, remove the stack "action_from" + FOUND_FROM_BLOCK = False + for stack_id, each_stack in enumerate(input_s): + if len(each_stack) == 0: + continue + if each_stack[-1] == action_from.upper(): + FOUND_FROM_BLOCK = True + break + if not FOUND_FROM_BLOCK: + return False + input_s[stack_id] = input_s[stack_id][:-1] + # if no stack having "action_to" at top and the "action_to" is "table" -> invalid move + FOUND_TO_BLOCK = False + if action_to == "table": + FOUND_TO_BLOCK = True + for stack_id, each_stack in enumerate(input_s): + if len(each_stack) != 0 and each_stack[-1] == action_to.upper(): + FOUND_TO_BLOCK = True + to_stack_id = stack_id + break + if not FOUND_TO_BLOCK: + return False + # actual move + if action_to == "table": + for stack_id, each_stack in enumerate(input_s): + if len(each_stack) == 0: + each_stack.append(action_from.upper()) + break + else: + input_s[to_stack_id].append(action_from.upper()) + return input_s + + +def equivalence(stacks_1, stacks_2): + # determine if two stacks are equivalent. + stack2_ids = [] + for each_stack_1 in stacks_1: + if len(each_stack_1) == 0: + continue + FOUND_CURR_STACK = False + curr_checking_block = each_stack_1[-1] + for stack2_id, each_stack_2 in enumerate(stacks_2): + if len(each_stack_2) == 0: + continue + if each_stack_2[-1] != curr_checking_block: + continue + while True: + if len(each_stack_1) == 0 or len(each_stack_2) == 0 or each_stack_1[:-1] != each_stack_2[:-1]: + break + each_stack_1 = each_stack_1[:-1] + each_stack_2 = each_stack_2[:-1] + if len(each_stack_1) == len(each_stack_2) and len(each_stack_1) == 0: + FOUND_CURR_STACK = True + stack2_ids.append(stack2_id) + break + if not FOUND_CURR_STACK: + return False + for stack2_id, each_stack_2 in enumerate(stacks_2): + if stack2_id not in stack2_ids and len(each_stack_2) != 0: + return False + return True + + +def eval(input_s, output_s, actions): + # read input_s+output_s, convert it into a bunch of stacks + # input_s example G00000-R00000-P00000-YB0000-000000-000000-000000 + stacks = [] + target_stacks = [] + input_stack = input_s.split("-") + target_stack = output_s.split('-') + for each_stack in input_stack: + curr_stack = [] + for each_block in each_stack: + if each_block != "0": + curr_stack.append(each_block) + stacks.append(curr_stack) + for each_stack in target_stack: + curr_stack = [] + for each_block in each_stack: + if each_block != "0": + curr_stack.append(each_block) + target_stacks.append(curr_stack) + # assert len(stacks) == 7 + # determine if the action can bring stacks to target_stacks + # action example ['move(y,table,0)', 'move(g,table,1)', 'move(o,g,2)'] + # actions = actions.split(' ') + # import ipdb; ipdb.set_trace() + for each_action in actions: + if each_action == "": + continue + new_stacks = move(copy.deepcopy(stacks), each_action) + if not new_stacks: # invalid move + pass + else: + stacks = new_stacks + return equivalence(stacks, target_stacks) + + +# small test +import ipdb; ipdb.set_trace() +count_corr = [0,0,0,0] +invalid = [0,0,0,0] +for level in [1,3,5,7]: + with open("../level%d/info.txt"%(level), "r") as f: + gt_records = f.read().split('\n')[:-1] + for test_id in range(100): + try: + curr_record = gt_records[test_id].split('\t') + input_state = curr_record[0] + output_state = curr_record[2] + with open("output-old/output_img/level%d/%d.txt"%(level, test_id), "r") as f: + answer = f.read() + plan_answer_index = answer.find("") + plans = answer[plan_answer_index+len("\n"):] + # plan_answer_index = answer.find("* Plan") + # plans = answer[plan_answer_index+len("* Plan\n"):] + plans = plans.split('\n') + for plan_id, plan in enumerate(plans): + plan = plan[2:] + plan = plan.replace('"', '') + plan = plan.replace("'", '') + plan = plan.replace("\n", '') + plan = plan.replace(".", '') + plan = plan.lstrip() + plan = plan.rstrip() + if plan[:4] != "move": + plans[plan_id] = '' + else: + plans[plan_id] = plan + + # print(plans) + result = eval(input_state, output_state, plans) + if result: + count_corr[level//2] += 1 + # print(test_id) + except: + invalid[level//2] += 1 + # import ipdb; ipdb.set_trace() + # print(plans, test_id) +print(count_corr) +print(invalid) +# import ipdb; ipdb.set_trace() +# pass + +print("") diff --git a/blocks/task5/example/level1/analysis0.txt b/blocks/task5/example/level1/analysis0.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d1f49e4470bb18b157285e78fb20046044befe4 --- /dev/null +++ b/blocks/task5/example/level1/analysis0.txt @@ -0,0 +1,12 @@ + +Starting state: there are 5 stacks: +- Stack 1: orange block (alone) +- Stack 2: purple block (alone) +- Stack 3: green block (alone) +- Stack 4: yellow block (alone) +- Stack 5: blue block (alone) +Ending state: there are 4 stacks: +- Stack 1: blue block (alone) +- Stack 2: green block (alone) +- Stack 3: orange block (alone) +- Stack 4: purple block, yellow block, from bottom to top diff --git a/blocks/task5/example/level1/analysis1.txt b/blocks/task5/example/level1/analysis1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf75b026de17fbb85bb8b52685f521ab63fcac54 --- /dev/null +++ b/blocks/task5/example/level1/analysis1.txt @@ -0,0 +1,12 @@ + +Starting state: there are 4 stacks: +- Stack 1: green block (alone) +- Stack 2: blue block (alone) +- Stack 3: purple block (alone) +- Stack 4: red block, yellow block, from bottom to top +Ending state: there are 5 stacks: +- Stack 1: yellow block (alone) +- Stack 2: red block (alone) +- Stack 3: purple block (alone) +- Stack 4: blue block (alone) +- Stack 5: green block (alone) diff --git a/blocks/task5/example/level1/analysis2.txt b/blocks/task5/example/level1/analysis2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c423dda5ad88bfc3bafb07686c6cc40cf012d88d --- /dev/null +++ b/blocks/task5/example/level1/analysis2.txt @@ -0,0 +1,12 @@ + +Starting state: there are 5 stacks: +- Stack 1: blue block (alone) +- Stack 2: red block (alone) +- Stack 3: green block (alone) +- Stack 4: orange block (alone) +- Stack 5: purple block (alone) +Ending state: there are 4 stacks: +- Stack 1: orange block (alone) +- Stack 2: green block (alone) +- Stack 3: red block (alone) +- Stack 4: purple block, blue block, from bottom to top diff --git a/blocks/task5/example/level1/analysis3.txt b/blocks/task5/example/level1/analysis3.txt new file mode 100644 index 0000000000000000000000000000000000000000..abee2b50b8015cd47103e5c5e59002811671cd9e --- /dev/null +++ b/blocks/task5/example/level1/analysis3.txt @@ -0,0 +1,11 @@ + +Starting state: there are 4 stacks: +- Stack 1: green block (alone) +- Stack 2: blue block (alone) +- Stack 3: orange block (alone) +- Stack 4: purple block, red block, from bottom to top +Ending state: there are 4 stacks: +- Stack 1: blue block (alone) +- Stack 2: purple block (alone) +- Stack 3: green block (alone) +- Stack 4: orange block, red block, from bottom to top diff --git a/blocks/task5/example/level1/analysis4.txt b/blocks/task5/example/level1/analysis4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b3eb4ae012eb82ca0d7be798674cfeff1b9e500 --- /dev/null +++ b/blocks/task5/example/level1/analysis4.txt @@ -0,0 +1,12 @@ + +Starting state: there are 4 stacks: +- Stack 1: green block (alone) +- Stack 2: purple block (alone) +- Stack 3: blue block (alone) +- Stack 4: yellow block, red block, from bottom to top +Ending state: there are 5 stacks: +- Stack 1: yellow block (alone) +- Stack 2: green block (alone) +- Stack 3: red block (alone) +- Stack 4: blue block (alone) +- Stack 5: purple block (alone) diff --git a/blocks/task5/example/level1/analysis5.txt b/blocks/task5/example/level1/analysis5.txt new file mode 100644 index 0000000000000000000000000000000000000000..db145bc7df989ad434a3b88afdae071a30cd5924 --- /dev/null +++ b/blocks/task5/example/level1/analysis5.txt @@ -0,0 +1,10 @@ + +Starting state: there are 3 stacks: +- Stack 1: blue block (alone) +- Stack 2: yellow block, red block, from bottom to top +- Stack 3: green block, orange block, from bottom to top +Ending state: there are 4 stacks: +- Stack 1: yellow block (alone) +- Stack 2: red block (alone) +- Stack 3: blue block (alone) +- Stack 4: green block, orange block, from bottom to top diff --git a/blocks/task5/example/level1/analysis6.txt b/blocks/task5/example/level1/analysis6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bb268175a7744c8067dd96bc910c06a01236ae8 --- /dev/null +++ b/blocks/task5/example/level1/analysis6.txt @@ -0,0 +1,12 @@ + +Starting state: there are 4 stacks: +- Stack 1: purple block (alone) +- Stack 2: green block (alone) +- Stack 3: orange block (alone) +- Stack 4: yellow block, red block, from bottom to top +Ending state: there are 5 stacks: +- Stack 1: red block (alone) +- Stack 2: green block (alone) +- Stack 3: yellow block (alone) +- Stack 4: orange block (alone) +- Stack 5: purple block (alone) diff --git a/blocks/task5/example/level1/analysis7.txt b/blocks/task5/example/level1/analysis7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf97aeb65db7b0ce595df51b2da78c7c2a6592d0 --- /dev/null +++ b/blocks/task5/example/level1/analysis7.txt @@ -0,0 +1,12 @@ + +Starting state: there are 5 stacks: +- Stack 1: purple block (alone) +- Stack 2: green block (alone) +- Stack 3: orange block (alone) +- Stack 4: yellow block (alone) +- Stack 5: blue block (alone) +Ending state: there are 4 stacks: +- Stack 1: purple block (alone) +- Stack 2: green block (alone) +- Stack 3: blue block (alone) +- Stack 4: yellow block, orange block, from bottom to top diff --git a/blocks/task5/example/level1/begin/0.jpg b/blocks/task5/example/level1/begin/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04c98d7019c0c372a6d6641db4fea3e51dfb83c7 --- /dev/null +++ b/blocks/task5/example/level1/begin/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca097e7856a76816d6d4de5ac50c14c765bc171859b09ea68faf4012e93e2bc +size 11682 diff --git a/blocks/task5/example/level1/begin/1.jpg b/blocks/task5/example/level1/begin/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61f27c79c5edc7f3212bec45e70036cb7d1d183e --- /dev/null +++ b/blocks/task5/example/level1/begin/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ab038263d8a505453b4163d3e1c1d7e60ac0887314e8c61692cc71312cb25c +size 10706 diff --git a/blocks/task5/example/level1/begin/2.jpg b/blocks/task5/example/level1/begin/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2efa21fa5f71ef0f2d213c833ccf52fdd203351b --- /dev/null +++ b/blocks/task5/example/level1/begin/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42470cf4bb74d8aa031edb958b092a44c072ff96a7f5cd533fff769f9f1ec13e +size 11634 diff --git a/blocks/task5/example/level1/begin/3.jpg b/blocks/task5/example/level1/begin/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..991d84a0f68726d3b4accd57628982a35e37e167 --- /dev/null +++ b/blocks/task5/example/level1/begin/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5890d60ba28aea43f3da9b8a865970bbb4401c9fb608f5f429228efd0df425 +size 10881 diff --git a/blocks/task5/example/level1/begin/4.jpg b/blocks/task5/example/level1/begin/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8db5ff46e46c040065528e69c69a0c60ddc3571 --- /dev/null +++ b/blocks/task5/example/level1/begin/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90d60266d37c89e0fada43b412f1af6504063a449c36ec24f4ad201a27884df +size 11321 diff --git a/blocks/task5/example/level1/begin/5.jpg b/blocks/task5/example/level1/begin/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd8736312b7e6e69190b1a0d1870dd9d96f39470 --- /dev/null +++ b/blocks/task5/example/level1/begin/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c25787314d647a3fea9faafe6dcd6bfaf21630f9cf424e114e2f3f21c13226 +size 10352 diff --git a/blocks/task5/example/level1/begin/6.jpg b/blocks/task5/example/level1/begin/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6a61d66cde521cbcc50706be53c0a6333274901 --- /dev/null +++ b/blocks/task5/example/level1/begin/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea92efc500d89a30169436e30c3ae528035cefbe3e0ca289facd46ecf7ff3721 +size 10710 diff --git a/blocks/task5/example/level1/begin/7.jpg b/blocks/task5/example/level1/begin/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43653184b0ae6a4be066f503d74fb3f27cf8be55 --- /dev/null +++ b/blocks/task5/example/level1/begin/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b2e887d8bb67f9f51e6ecfc5d79a693e8e4e749dd6e1a970c2a921266b5701 +size 11093 diff --git a/blocks/task5/example/level1/end/0.jpg b/blocks/task5/example/level1/end/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c2715c33dd918f0d054d549247bbf66ddbb47b6 --- /dev/null +++ b/blocks/task5/example/level1/end/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20847100c036b4fe370e455e98e5efe0dfca757c811e421ecc8ce1024fe2273d +size 10363 diff --git a/blocks/task5/example/level1/end/1.jpg b/blocks/task5/example/level1/end/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6395df7829e6cb30bc9c86081ff5cad3e767574 --- /dev/null +++ b/blocks/task5/example/level1/end/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f6ea7f1e8ec1faba31c57d2e2ec9de3fc51a518933bae1678a4ca8777c3c2b7 +size 11384 diff --git a/blocks/task5/example/level1/end/2.jpg b/blocks/task5/example/level1/end/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b63847db5c581870d76e5fd62efd38b91ec7f113 --- /dev/null +++ b/blocks/task5/example/level1/end/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2d2c89590a38ff9765daaf49a2b5885be84f1b480c7a1c99be51541868eb28 +size 11407 diff --git a/blocks/task5/example/level1/end/3.jpg b/blocks/task5/example/level1/end/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..870ce4ad2a9b5b7a4294da3a89f18640fb397253 --- /dev/null +++ b/blocks/task5/example/level1/end/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e55378b6b9b87e8c159c180b77e74c6cd700b4b30615bb5ed0e90001c290739 +size 9839 diff --git a/blocks/task5/example/level1/end/4.jpg b/blocks/task5/example/level1/end/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..727d267b2c0ed8794aa6858b28fc3d57558065e9 --- /dev/null +++ b/blocks/task5/example/level1/end/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da33e2e16707998263362b7195c8e5886d3ec9f12399a7278a8e21d4739716d9 +size 11406 diff --git a/blocks/task5/example/level1/end/5.jpg b/blocks/task5/example/level1/end/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a27a42a0dfd3a41540ba5f6fd03d6359a8d418af --- /dev/null +++ b/blocks/task5/example/level1/end/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb56850df848bfe5f98a834523e1409c5dda8d0c886600d610decef41d8d535f +size 10291 diff --git a/blocks/task5/example/level1/end/6.jpg b/blocks/task5/example/level1/end/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46513f470ef24ab60e1b031d9868db08b34dd382 --- /dev/null +++ b/blocks/task5/example/level1/end/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0558934936ed4638247e83a635cc10bd565bd8a8f65b3a3ac6765d6a1466cec +size 12299 diff --git a/blocks/task5/example/level1/end/7.jpg b/blocks/task5/example/level1/end/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1afa13c0d705b8fb41080803e468b1e1d046cec9 --- /dev/null +++ b/blocks/task5/example/level1/end/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90116fc21e897b13fe4974e6d39301e699cc54a8897df96cfb79bae60314c146 +size 11016 diff --git a/blocks/task5/example/level1/question0.txt b/blocks/task5/example/level1/question0.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b839156e552fc8a1642c4bc5ccbefefdaf460c2 --- /dev/null +++ b/blocks/task5/example/level1/question0.txt @@ -0,0 +1,12 @@ +Please generate the moving plan. The beginning state is: +- Stack with orange block +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with blue block + +The end state is: +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task5/example/level1/question1.txt b/blocks/task5/example/level1/question1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ace692fdd2b860753b8a31e6288b26b11aec3ca --- /dev/null +++ b/blocks/task5/example/level1/question1.txt @@ -0,0 +1,12 @@ +Please generate the moving plan. The beginning state is: +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with red block, yellow block, from bottom to top + +The end state is: +- Stack with yellow block +- Stack with red block +- Stack with purple block +- Stack with blue block +- Stack with green block diff --git a/blocks/task5/example/level1/question2.txt b/blocks/task5/example/level1/question2.txt new file mode 100644 index 0000000000000000000000000000000000000000..647a911261f50628bd17b53982f5f5f8b68e7405 --- /dev/null +++ b/blocks/task5/example/level1/question2.txt @@ -0,0 +1,12 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block +- Stack with red block +- Stack with green block +- Stack with orange block +- Stack with purple block + +The end state is: +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task5/example/level1/question3.txt b/blocks/task5/example/level1/question3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f32d595462e144d68895bd4a99f233a8865ad6d --- /dev/null +++ b/blocks/task5/example/level1/question3.txt @@ -0,0 +1,11 @@ +Please generate the moving plan. The beginning state is: +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with purple block, red block, from bottom to top + +The end state is: +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/example/level1/question4.txt b/blocks/task5/example/level1/question4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d27db0de8b2dd2207d0950e965fc97f88f85344b --- /dev/null +++ b/blocks/task5/example/level1/question4.txt @@ -0,0 +1,12 @@ +Please generate the moving plan. The beginning state is: +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with yellow block, red block, from bottom to top + +The end state is: +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task5/example/level1/question5.txt b/blocks/task5/example/level1/question5.txt new file mode 100644 index 0000000000000000000000000000000000000000..9564c313e89a84024d41ba2447b47744fd5f1b5b --- /dev/null +++ b/blocks/task5/example/level1/question5.txt @@ -0,0 +1,10 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block +- Stack with yellow block, red block, from bottom to top +- Stack with green block, orange block, from bottom to top + +The end state is: +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task5/example/level1/question6.txt b/blocks/task5/example/level1/question6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ab65f33992e584d615ccd7c8258d76064d39e2a --- /dev/null +++ b/blocks/task5/example/level1/question6.txt @@ -0,0 +1,12 @@ +Please generate the moving plan. The beginning state is: +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block, red block, from bottom to top + +The end state is: +- Stack with red block +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with purple block diff --git a/blocks/task5/example/level1/question7.txt b/blocks/task5/example/level1/question7.txt new file mode 100644 index 0000000000000000000000000000000000000000..67e269899f96e3fdd5419d83ea7a72709e65c4c8 --- /dev/null +++ b/blocks/task5/example/level1/question7.txt @@ -0,0 +1,12 @@ +Please generate the moving plan. The beginning state is: +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with blue block + +The end state is: +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task5/example/level1/sol_0.txt b/blocks/task5/example/level1/sol_0.txt new file mode 100644 index 0000000000000000000000000000000000000000..23b334af461e2c6779449ca3e5a4b39bb9bec56f --- /dev/null +++ b/blocks/task5/example/level1/sol_0.txt @@ -0,0 +1 @@ +1. move(yellow,purple) diff --git a/blocks/task5/example/level1/sol_1.txt b/blocks/task5/example/level1/sol_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d856c5cbf1c7fa697354440e80404fa1ff9763a8 --- /dev/null +++ b/blocks/task5/example/level1/sol_1.txt @@ -0,0 +1 @@ +1. move(yellow,table) diff --git a/blocks/task5/example/level1/sol_2.txt b/blocks/task5/example/level1/sol_2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e12bacf4b4f6dfd9ae73beec10a837b9416341ad --- /dev/null +++ b/blocks/task5/example/level1/sol_2.txt @@ -0,0 +1 @@ +1. move(blue,purple) diff --git a/blocks/task5/example/level1/sol_3.txt b/blocks/task5/example/level1/sol_3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5a270ca73f853de9952a82db606928e3499da7d --- /dev/null +++ b/blocks/task5/example/level1/sol_3.txt @@ -0,0 +1 @@ +1. move(red,orange) diff --git a/blocks/task5/example/level1/sol_4.txt b/blocks/task5/example/level1/sol_4.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task5/example/level1/sol_4.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task5/example/level1/sol_5.txt b/blocks/task5/example/level1/sol_5.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task5/example/level1/sol_5.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task5/example/level1/sol_6.txt b/blocks/task5/example/level1/sol_6.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1d9de01470c9cc51a0a128ef332d9b4cd6d996 --- /dev/null +++ b/blocks/task5/example/level1/sol_6.txt @@ -0,0 +1 @@ +1. move(red,table) diff --git a/blocks/task5/example/level1/sol_7.txt b/blocks/task5/example/level1/sol_7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0789f0b2e2ae4b4f8f0975580272f5e9c3e2a224 --- /dev/null +++ b/blocks/task5/example/level1/sol_7.txt @@ -0,0 +1 @@ +1. move(orange,yellow) diff --git a/blocks/task5/example/level3/analysis0.txt b/blocks/task5/example/level3/analysis0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1947d12f0bad48f18546b597c3c1c2cbdef4f32a --- /dev/null +++ b/blocks/task5/example/level3/analysis0.txt @@ -0,0 +1,8 @@ + +Starting state: there are 3 stacks: +- Stack 1: yellow block (alone) +- Stack 2: red block, purple block, from bottom to top +- Stack 3: orange block, blue block, from bottom to top +Ending state: there are 2 stacks: +- Stack 1: orange block, blue block, from bottom to top +- Stack 2: purple block, red block, yellow block, from bottom to top diff --git a/blocks/task5/example/level3/analysis1.txt b/blocks/task5/example/level3/analysis1.txt new file mode 100644 index 0000000000000000000000000000000000000000..de30900471e2b42b444df3cb15566aab2704c43c --- /dev/null +++ b/blocks/task5/example/level3/analysis1.txt @@ -0,0 +1,10 @@ + +Starting state: there are 5 stacks: +- Stack 1: blue block (alone) +- Stack 2: red block (alone) +- Stack 3: orange block (alone) +- Stack 4: green block (alone) +- Stack 5: purple block (alone) +Ending state: there are 2 stacks: +- Stack 1: orange block, purple block, from bottom to top +- Stack 2: blue block, green block, red block, from bottom to top diff --git a/blocks/task5/example/level3/analysis2.txt b/blocks/task5/example/level3/analysis2.txt new file mode 100644 index 0000000000000000000000000000000000000000..10acedb5485bcf15e085b425eda7f31e062a2fc8 --- /dev/null +++ b/blocks/task5/example/level3/analysis2.txt @@ -0,0 +1,10 @@ + +Starting state: there are 5 stacks: +- Stack 1: orange block (alone) +- Stack 2: green block (alone) +- Stack 3: red block (alone) +- Stack 4: blue block (alone) +- Stack 5: purple block (alone) +Ending state: there are 2 stacks: +- Stack 1: green block, purple block, from bottom to top +- Stack 2: orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/example/level3/analysis3.txt b/blocks/task5/example/level3/analysis3.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9447d3386817de467f1ffb57d332348be44ece4 --- /dev/null +++ b/blocks/task5/example/level3/analysis3.txt @@ -0,0 +1,10 @@ + +Starting state: there are 5 stacks: +- Stack 1: blue block (alone) +- Stack 2: green block (alone) +- Stack 3: purple block (alone) +- Stack 4: orange block (alone) +- Stack 5: yellow block (alone) +Ending state: there are 2 stacks: +- Stack 1: green block, purple block, from bottom to top +- Stack 2: orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/example/level3/analysis4.txt b/blocks/task5/example/level3/analysis4.txt new file mode 100644 index 0000000000000000000000000000000000000000..106e332de0216c9b92688c7496e76835eb56ab66 --- /dev/null +++ b/blocks/task5/example/level3/analysis4.txt @@ -0,0 +1,6 @@ + +Starting state: there are 2 stacks: +- Stack 1: purple block (alone) +- Stack 2: red block, orange block, green block, from bottom to top +Ending state: there are 1 stacks: +- Stack 1: purple block, green block, orange block, red block, from bottom to top diff --git a/blocks/task5/example/level3/analysis5.txt b/blocks/task5/example/level3/analysis5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7128d5874bf60390ec8b6879cb57bbb34517e28 --- /dev/null +++ b/blocks/task5/example/level3/analysis5.txt @@ -0,0 +1,10 @@ + +Starting state: there are 2 stacks: +- Stack 1: blue block, yellow block, from bottom to top +- Stack 2: green block, orange block, purple block, from bottom to top +Ending state: there are 5 stacks: +- Stack 1: orange block (alone) +- Stack 2: purple block (alone) +- Stack 3: blue block (alone) +- Stack 4: green block (alone) +- Stack 5: yellow block (alone) diff --git a/blocks/task5/example/level3/analysis6.txt b/blocks/task5/example/level3/analysis6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a356fdb61ef085c402a536c56c63c7f28e737c5f --- /dev/null +++ b/blocks/task5/example/level3/analysis6.txt @@ -0,0 +1,8 @@ + +Starting state: there are 3 stacks: +- Stack 1: purple block (alone) +- Stack 2: red block (alone) +- Stack 3: orange block, blue block, yellow block, from bottom to top +Ending state: there are 2 stacks: +- Stack 1: purple block (alone) +- Stack 2: orange block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task5/example/level3/analysis7.txt b/blocks/task5/example/level3/analysis7.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7db07791d42943b892b04f8c10c524f53d8680b --- /dev/null +++ b/blocks/task5/example/level3/analysis7.txt @@ -0,0 +1,10 @@ + +Starting state: there are 5 stacks: +- Stack 1: red block (alone) +- Stack 2: yellow block (alone) +- Stack 3: blue block (alone) +- Stack 4: purple block (alone) +- Stack 5: green block (alone) +Ending state: there are 2 stacks: +- Stack 1: blue block, red block, from bottom to top +- Stack 2: green block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/example/level3/begin/0.jpg b/blocks/task5/example/level3/begin/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3205dc059aa9bd7b58b0dbe190fb057f51eeff9c --- /dev/null +++ b/blocks/task5/example/level3/begin/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b46910374389cbec5be78866b1b9009ec57860d057788abfb133be408847b0 +size 10905 diff --git a/blocks/task5/example/level3/begin/1.jpg b/blocks/task5/example/level3/begin/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77697423bd57d5108b96868f650c6cd2f12b4efa --- /dev/null +++ b/blocks/task5/example/level3/begin/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:586247da5a44264fe747c80d2a535f55d5a10d387e42cfa7788168f70e77c068 +size 11845 diff --git a/blocks/task5/example/level3/begin/2.jpg b/blocks/task5/example/level3/begin/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8384ee4d334524c30ebae088949b8a06c60a5247 --- /dev/null +++ b/blocks/task5/example/level3/begin/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4d03005dce66f51d2e9f0f0c2c235cd220bbd057315a2fae3b30b2b68dbc17 +size 11289 diff --git a/blocks/task5/example/level3/begin/3.jpg b/blocks/task5/example/level3/begin/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..789e7b6499fef7fc311f71a752b695cbb9e5e757 --- /dev/null +++ b/blocks/task5/example/level3/begin/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbd0f7a84851325dbe51b947df97690064a8794b8bed52f530cd33a67645a4f +size 11675 diff --git a/blocks/task5/example/level3/begin/4.jpg b/blocks/task5/example/level3/begin/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..697867330a461163a8f8398c592c8b73a0223be9 --- /dev/null +++ b/blocks/task5/example/level3/begin/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627ec3b2ee7c943970d517f15afb632811dcd9ad7349881d3ff7a862618226c +size 10138 diff --git a/blocks/task5/example/level3/begin/5.jpg b/blocks/task5/example/level3/begin/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c813530a83fb1c27c654b9909b213635ac7cf240 --- /dev/null +++ b/blocks/task5/example/level3/begin/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a2f3cd5e33ee425ac72b9cb2d350200e4ac2aab1ad4fe1c96b815699fae474 +size 10261 diff --git a/blocks/task5/example/level3/begin/6.jpg b/blocks/task5/example/level3/begin/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d829fb5aea23f599737a5db41e6e816e3949299f --- /dev/null +++ b/blocks/task5/example/level3/begin/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbbfa3627fa637385ef1c9c3967bc3534b4b7890092a762936c6d54a9885d68c +size 10758 diff --git a/blocks/task5/example/level3/begin/7.jpg b/blocks/task5/example/level3/begin/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0417a237de3a02362d8dbc75bbde6ffc925e4dcf --- /dev/null +++ b/blocks/task5/example/level3/begin/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8f35ff1b5d85beae9702c936a262afa999fef73dc8961630afc0e33d8d46b68 +size 11133 diff --git a/blocks/task5/example/level3/end/0.jpg b/blocks/task5/example/level3/end/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cbec2eec992a9873c8e5e9d6355060963438a41 --- /dev/null +++ b/blocks/task5/example/level3/end/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e372a689c37b0ccaf39ee6d4916b564a4fc79bc294f196c867675e217bf96494 +size 10525 diff --git a/blocks/task5/example/level3/end/1.jpg b/blocks/task5/example/level3/end/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61f92764f4959ec6ecbf56ceef2dbfe8e64e8fd5 --- /dev/null +++ b/blocks/task5/example/level3/end/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ba7e78b1e1435f7854127ce7131ee290def5ea227c63ea58f3a2da3647e945 +size 11164 diff --git a/blocks/task5/example/level3/end/2.jpg b/blocks/task5/example/level3/end/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bd824aea323a98d1c86cafeb18fafea73a7ac16 --- /dev/null +++ b/blocks/task5/example/level3/end/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a0ee7aff26f5e8796581c18c310ca1729c778bfc32952608c0135940d8c0e7 +size 10789 diff --git a/blocks/task5/example/level3/end/3.jpg b/blocks/task5/example/level3/end/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11af91f2b26b3289775a497bcd8b85dc6ff8da7e --- /dev/null +++ b/blocks/task5/example/level3/end/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ec8e30f3b15e24c77679887bc2fec59ff05a9ddbbab2f708c3ace90b79a48f +size 11292 diff --git a/blocks/task5/example/level3/end/4.jpg b/blocks/task5/example/level3/end/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5648e8452fcff1233b0411dda25dadf44c99ca54 --- /dev/null +++ b/blocks/task5/example/level3/end/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ed3c5f5aa969f7fa0420ab0aaf6cc1c1cd79c2d29ca522a3be1331381a47cf +size 8947 diff --git a/blocks/task5/example/level3/end/5.jpg b/blocks/task5/example/level3/end/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a757658dc4ba0c02151d02a83ea343c7de038ca --- /dev/null +++ b/blocks/task5/example/level3/end/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974c02aeb3a57a03273ab8d7e68fea6c50b9e9733dc8c28dea2ae60cac409a67 +size 10550 diff --git a/blocks/task5/example/level3/end/6.jpg b/blocks/task5/example/level3/end/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd76b72a45af7c662674e6a37054c631a96e75a9 --- /dev/null +++ b/blocks/task5/example/level3/end/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b79be64bcee204e29f3cc6c605ec042dd3f10f9a5d0d74a81916da8053b3cc +size 11257 diff --git a/blocks/task5/example/level3/end/7.jpg b/blocks/task5/example/level3/end/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d0c916f0bfb203880e69043834c46ab11cdd1ac --- /dev/null +++ b/blocks/task5/example/level3/end/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce23e5a451d46a6cba6f8a9c2d912b746192868bebfe8c4622134f1e256fe51 +size 10822 diff --git a/blocks/task5/example/level3/question0.txt b/blocks/task5/example/level3/question0.txt new file mode 100644 index 0000000000000000000000000000000000000000..08ffcb4a48c7543b4469b22b3b24ac33ef5f1ca2 --- /dev/null +++ b/blocks/task5/example/level3/question0.txt @@ -0,0 +1,8 @@ +Please generate the moving plan. The beginning state is: +- Stack with yellow block +- Stack with red block, purple block, from bottom to top +- Stack with orange block, blue block, from bottom to top + +The end state is: +- Stack with orange block, blue block, from bottom to top +- Stack with purple block, red block, yellow block, from bottom to top diff --git a/blocks/task5/example/level3/question1.txt b/blocks/task5/example/level3/question1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c905a288b3f91b5a8b248e3dadfec6bbd92bbf2b --- /dev/null +++ b/blocks/task5/example/level3/question1.txt @@ -0,0 +1,10 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with green block +- Stack with purple block + +The end state is: +- Stack with orange block, purple block, from bottom to top +- Stack with blue block, green block, red block, from bottom to top diff --git a/blocks/task5/example/level3/question2.txt b/blocks/task5/example/level3/question2.txt new file mode 100644 index 0000000000000000000000000000000000000000..668faf9be120574232f5d188e953734cee3dee8e --- /dev/null +++ b/blocks/task5/example/level3/question2.txt @@ -0,0 +1,10 @@ +Please generate the moving plan. The beginning state is: +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with blue block +- Stack with purple block + +The end state is: +- Stack with green block, purple block, from bottom to top +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/example/level3/question3.txt b/blocks/task5/example/level3/question3.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca30b551a381a4639e8107ffb89b0b45a56b6ad8 --- /dev/null +++ b/blocks/task5/example/level3/question3.txt @@ -0,0 +1,10 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with yellow block + +The end state is: +- Stack with green block, purple block, from bottom to top +- Stack with orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/example/level3/question4.txt b/blocks/task5/example/level3/question4.txt new file mode 100644 index 0000000000000000000000000000000000000000..118a94c2b181fd98dd6d4831ff99a5252298f4ec --- /dev/null +++ b/blocks/task5/example/level3/question4.txt @@ -0,0 +1,6 @@ +Please generate the moving plan. The beginning state is: +- Stack with purple block +- Stack with red block, orange block, green block, from bottom to top + +The end state is: +- Stack with purple block, green block, orange block, red block, from bottom to top diff --git a/blocks/task5/example/level3/question5.txt b/blocks/task5/example/level3/question5.txt new file mode 100644 index 0000000000000000000000000000000000000000..53ca687cf6e48b0951fe2b89f1f5e66100cd095e --- /dev/null +++ b/blocks/task5/example/level3/question5.txt @@ -0,0 +1,10 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block, yellow block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top + +The end state is: +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with green block +- Stack with yellow block diff --git a/blocks/task5/example/level3/question6.txt b/blocks/task5/example/level3/question6.txt new file mode 100644 index 0000000000000000000000000000000000000000..05d001f8dbcb260bfd188caabe93b134502619cf --- /dev/null +++ b/blocks/task5/example/level3/question6.txt @@ -0,0 +1,8 @@ +Please generate the moving plan. The beginning state is: +- Stack with purple block +- Stack with red block +- Stack with orange block, blue block, yellow block, from bottom to top + +The end state is: +- Stack with purple block +- Stack with orange block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task5/example/level3/question7.txt b/blocks/task5/example/level3/question7.txt new file mode 100644 index 0000000000000000000000000000000000000000..941bf0df01b9d7d2d07e783fe6462e0250b023fd --- /dev/null +++ b/blocks/task5/example/level3/question7.txt @@ -0,0 +1,10 @@ +Please generate the moving plan. The beginning state is: +- Stack with red block +- Stack with yellow block +- Stack with blue block +- Stack with purple block +- Stack with green block + +The end state is: +- Stack with blue block, red block, from bottom to top +- Stack with green block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/example/level3/sol_0.txt b/blocks/task5/example/level3/sol_0.txt new file mode 100644 index 0000000000000000000000000000000000000000..70bc22a005a74f58cc79caae56d2e37727997944 --- /dev/null +++ b/blocks/task5/example/level3/sol_0.txt @@ -0,0 +1,3 @@ +1. move(purple,table) +2. move(red,purple) +3. move(yellow,red) diff --git a/blocks/task5/example/level3/sol_1.txt b/blocks/task5/example/level3/sol_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d76da6d1da4802420ee141bc681332da6bd4724c --- /dev/null +++ b/blocks/task5/example/level3/sol_1.txt @@ -0,0 +1,3 @@ +1. move(purple,orange) +2. move(green,blue) +3. move(red,green) diff --git a/blocks/task5/example/level3/sol_2.txt b/blocks/task5/example/level3/sol_2.txt new file mode 100644 index 0000000000000000000000000000000000000000..805f6c0b3354c5cc9ed3b6122cc43955cae17097 --- /dev/null +++ b/blocks/task5/example/level3/sol_2.txt @@ -0,0 +1,3 @@ +1. move(purple,green) +2. move(red,orange) +3. move(blue,red) diff --git a/blocks/task5/example/level3/sol_3.txt b/blocks/task5/example/level3/sol_3.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ad7f9c2cc3512f0dce65b21fd5c1e02a18ee07d --- /dev/null +++ b/blocks/task5/example/level3/sol_3.txt @@ -0,0 +1,3 @@ +1. move(blue,orange) +2. move(purple,green) +3. move(yellow,blue) diff --git a/blocks/task5/example/level3/sol_4.txt b/blocks/task5/example/level3/sol_4.txt new file mode 100644 index 0000000000000000000000000000000000000000..33a25ed8adcd4f5cab31367786c6dba0ad4d092c --- /dev/null +++ b/blocks/task5/example/level3/sol_4.txt @@ -0,0 +1,3 @@ +1. move(green,purple) +2. move(orange,green) +3. move(red,orange) diff --git a/blocks/task5/example/level3/sol_5.txt b/blocks/task5/example/level3/sol_5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3ad7830f474e687fa8bc4aec6752d609fdf699f --- /dev/null +++ b/blocks/task5/example/level3/sol_5.txt @@ -0,0 +1,3 @@ +1. move(purple,table) +2. move(orange,table) +3. move(yellow,table) diff --git a/blocks/task5/example/level3/sol_6.txt b/blocks/task5/example/level3/sol_6.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd8d0d52101bb6383ebf6583bd4489fd5513dde9 --- /dev/null +++ b/blocks/task5/example/level3/sol_6.txt @@ -0,0 +1,3 @@ +1. move(yellow,table) +2. move(red,blue) +3. move(yellow,red) diff --git a/blocks/task5/example/level3/sol_7.txt b/blocks/task5/example/level3/sol_7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e97e345ae8ee6d55e29b7f4625ee88ef6278e72 --- /dev/null +++ b/blocks/task5/example/level3/sol_7.txt @@ -0,0 +1,3 @@ +1. move(red,blue) +2. move(yellow,green) +3. move(purple,yellow) diff --git a/blocks/task5/example/level5/analysis0.txt b/blocks/task5/example/level5/analysis0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2925bc052973a00962d8f90676ba168f67c5e0b5 --- /dev/null +++ b/blocks/task5/example/level5/analysis0.txt @@ -0,0 +1,8 @@ + +Starting state: there are 1 stacks: +- Stack 1: orange block, green block, purple block, yellow block, red block, from bottom to top +Ending state: there are 4 stacks: +- Stack 1: orange block (alone) +- Stack 2: green block (alone) +- Stack 3: red block (alone) +- Stack 4: purple block, yellow block, from bottom to top diff --git a/blocks/task5/example/level5/analysis1.txt b/blocks/task5/example/level5/analysis1.txt new file mode 100644 index 0000000000000000000000000000000000000000..83143dcd55341a915b687c687690d73796e6343c --- /dev/null +++ b/blocks/task5/example/level5/analysis1.txt @@ -0,0 +1,8 @@ + +Starting state: there are 1 stacks: +- Stack 1: yellow block, green block, blue block, purple block, orange block, from bottom to top +Ending state: there are 4 stacks: +- Stack 1: orange block (alone) +- Stack 2: yellow block (alone) +- Stack 3: green block (alone) +- Stack 4: blue block, purple block, from bottom to top diff --git a/blocks/task5/example/level5/analysis2.txt b/blocks/task5/example/level5/analysis2.txt new file mode 100644 index 0000000000000000000000000000000000000000..53b49e22994fd2254ef138c046be90e587926beb --- /dev/null +++ b/blocks/task5/example/level5/analysis2.txt @@ -0,0 +1,7 @@ + +Starting state: there are 3 stacks: +- Stack 1: blue block (alone) +- Stack 2: orange block, purple block, from bottom to top +- Stack 3: red block, green block, from bottom to top +Ending state: there are 1 stacks: +- Stack 1: red block, purple block, blue block, green block, orange block, from bottom to top diff --git a/blocks/task5/example/level5/analysis3.txt b/blocks/task5/example/level5/analysis3.txt new file mode 100644 index 0000000000000000000000000000000000000000..20fb5d2335d33684186947d8ffdf93e65f5b9bd4 --- /dev/null +++ b/blocks/task5/example/level5/analysis3.txt @@ -0,0 +1,8 @@ + +Starting state: there are 4 stacks: +- Stack 1: blue block (alone) +- Stack 2: red block (alone) +- Stack 3: orange block (alone) +- Stack 4: green block, purple block, from bottom to top +Ending state: there are 1 stacks: +- Stack 1: red block, green block, blue block, orange block, purple block, from bottom to top diff --git a/blocks/task5/example/level5/analysis4.txt b/blocks/task5/example/level5/analysis4.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2024d7658332c7fa30ac68ea709fa1badc2a483 --- /dev/null +++ b/blocks/task5/example/level5/analysis4.txt @@ -0,0 +1,8 @@ + +Starting state: there are 2 stacks: +- Stack 1: purple block (alone) +- Stack 2: green block, orange block, red block, yellow block, from bottom to top +Ending state: there are 3 stacks: +- Stack 1: purple block (alone) +- Stack 2: orange block, yellow block, from bottom to top +- Stack 3: green block, red block, from bottom to top diff --git a/blocks/task5/example/level5/analysis5.txt b/blocks/task5/example/level5/analysis5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c2f30c997246033faf45de36b2599a8b1aecc36 --- /dev/null +++ b/blocks/task5/example/level5/analysis5.txt @@ -0,0 +1,6 @@ + +Starting state: there are 1 stacks: +- Stack 1: blue block, red block, purple block, yellow block, from bottom to top +Ending state: there are 2 stacks: +- Stack 1: red block, purple block, from bottom to top +- Stack 2: blue block, yellow block, from bottom to top diff --git a/blocks/task5/example/level5/analysis6.txt b/blocks/task5/example/level5/analysis6.txt new file mode 100644 index 0000000000000000000000000000000000000000..757332498266c6704dbf1f48ba2263a9d077b138 --- /dev/null +++ b/blocks/task5/example/level5/analysis6.txt @@ -0,0 +1,7 @@ + +Starting state: there are 3 stacks: +- Stack 1: purple block (alone) +- Stack 2: orange block, green block, from bottom to top +- Stack 3: blue block, yellow block, from bottom to top +Ending state: there are 1 stacks: +- Stack 1: purple block, yellow block, blue block, orange block, green block, from bottom to top diff --git a/blocks/task5/example/level5/analysis7.txt b/blocks/task5/example/level5/analysis7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6d40f812628f9796229108951cd80e3a2c1b140 --- /dev/null +++ b/blocks/task5/example/level5/analysis7.txt @@ -0,0 +1,7 @@ + +Starting state: there are 2 stacks: +- Stack 1: blue block (alone) +- Stack 2: yellow block, orange block, purple block, red block, from bottom to top +Ending state: there are 2 stacks: +- Stack 1: purple block (alone) +- Stack 2: blue block, orange block, yellow block, red block, from bottom to top diff --git a/blocks/task5/example/level5/begin/0.jpg b/blocks/task5/example/level5/begin/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e53c1b4471f29b7903a670398fecc2f2167ef2f --- /dev/null +++ b/blocks/task5/example/level5/begin/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55d36a900e017f7751b1a5db8c17d26ba33fac56446dbb1be22138ea034d97f4 +size 9327 diff --git a/blocks/task5/example/level5/begin/1.jpg b/blocks/task5/example/level5/begin/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b04b366ce4fbed84a3aee39d2cbd7af6c003f1aa --- /dev/null +++ b/blocks/task5/example/level5/begin/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a9f858debe46dc5bf966788283e2f0825c199879b3ce29664728af2247242f +size 10093 diff --git a/blocks/task5/example/level5/begin/2.jpg b/blocks/task5/example/level5/begin/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8e349169b3303e867376637ba933fb1638c372d --- /dev/null +++ b/blocks/task5/example/level5/begin/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324544729a94efdb1d9df74059e97145b442d5ca7f0756bcd89c132192105fd6 +size 10090 diff --git a/blocks/task5/example/level5/begin/3.jpg b/blocks/task5/example/level5/begin/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1180ab68c26bb2f083bba8643fb962c60526fa3 --- /dev/null +++ b/blocks/task5/example/level5/begin/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b23b902ad7c3ac335f56d03ce8213cbb39f7c229d4164da0cd6b050ab151f0 +size 10215 diff --git a/blocks/task5/example/level5/begin/4.jpg b/blocks/task5/example/level5/begin/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efd5e4bd4533a87656ab784d226c3d70176c22d1 --- /dev/null +++ b/blocks/task5/example/level5/begin/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adbde4157abd33834efb8ee849b93966f79be93d4598714e9957565bd753809f +size 11764 diff --git a/blocks/task5/example/level5/begin/5.jpg b/blocks/task5/example/level5/begin/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e752a07137d22a5a2eff39c0c014c6eff95c683 --- /dev/null +++ b/blocks/task5/example/level5/begin/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175b7047e71ca6e9822f23eba5cf50274878d849042e7ed254cb9c103f213eb9 +size 9315 diff --git a/blocks/task5/example/level5/begin/6.jpg b/blocks/task5/example/level5/begin/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5def92ef6ed9389ac8eaa8b5e999db5111a0d2f6 --- /dev/null +++ b/blocks/task5/example/level5/begin/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a880ed361dea4b991b3f9d08881d41e01af618741046a61c2b2df2879d964555 +size 10745 diff --git a/blocks/task5/example/level5/begin/7.jpg b/blocks/task5/example/level5/begin/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f4e5ab354dee7b9b5bd73c370d1f4c79bae8f2a --- /dev/null +++ b/blocks/task5/example/level5/begin/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aee7b7d4a88312e393a2b9b109ada33f28dc5fad5ec6853cbf9cf66f59a2e57 +size 11925 diff --git a/blocks/task5/example/level5/end/0.jpg b/blocks/task5/example/level5/end/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8db70f68f43b4813fc5c5aee193e7faceda3f611 --- /dev/null +++ b/blocks/task5/example/level5/end/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f28dc1346493dc9b81841c192629f38b38a95f4adba8d45dc6d5e4c8d8db07b +size 11068 diff --git a/blocks/task5/example/level5/end/1.jpg b/blocks/task5/example/level5/end/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ce6dd4af5890971b40bfea68d2ba70a392c083d --- /dev/null +++ b/blocks/task5/example/level5/end/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8d690fd44c61f431ad48c843d5c55391b86dcda230393da9a068f40fe013c4 +size 10802 diff --git a/blocks/task5/example/level5/end/2.jpg b/blocks/task5/example/level5/end/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f342e98be27ab1b5e309c4e8d6a906e16c0f5ff3 --- /dev/null +++ b/blocks/task5/example/level5/end/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a82b272b613564a91b30612a3b3d6da3979392763a83cd0c8458a3d51f47a526 +size 10587 diff --git a/blocks/task5/example/level5/end/3.jpg b/blocks/task5/example/level5/end/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a53ef8ed031e7ec217ff6d77580ae563ef5286e0 --- /dev/null +++ b/blocks/task5/example/level5/end/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a914bb8f48e4cf7c572b0e855c1674879ca399e23afee4065d3e3723113c3d6 +size 11640 diff --git a/blocks/task5/example/level5/end/4.jpg b/blocks/task5/example/level5/end/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..723355838ba767d2e1a9ebe530b80c70172ddd0e --- /dev/null +++ b/blocks/task5/example/level5/end/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bbb6dbf8e8b936927e6e512eccf4ade8002bdee33cbbe3593af9f273b4b7a7a +size 10597 diff --git a/blocks/task5/example/level5/end/5.jpg b/blocks/task5/example/level5/end/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..075d78cf10672a7dee480c39ea26294b237d7ed3 --- /dev/null +++ b/blocks/task5/example/level5/end/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce81886c21329c02bcadca3226f558a7e14be5636e35d1dc7e0746f5326fa5be +size 10523 diff --git a/blocks/task5/example/level5/end/6.jpg b/blocks/task5/example/level5/end/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0696771961602acfcedcb2fbe0f287971492940b --- /dev/null +++ b/blocks/task5/example/level5/end/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:753d0afc35aed129570e1ef60fe5e16fbf2b4f20837aaaf594c3660e9356b948 +size 10873 diff --git a/blocks/task5/example/level5/end/7.jpg b/blocks/task5/example/level5/end/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6109946d0bd5fd78ddb2805f3b507ae9fea48709 --- /dev/null +++ b/blocks/task5/example/level5/end/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2ca3598b248fa40945cce0fb75d21d64b205d91ac050b7d5ddc6b4a3eb5349 +size 11767 diff --git a/blocks/task5/example/level5/question0.txt b/blocks/task5/example/level5/question0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed153aaaf1a5a6e5609de66bf709878e8c8b5fad --- /dev/null +++ b/blocks/task5/example/level5/question0.txt @@ -0,0 +1,8 @@ +Please generate the moving plan. The beginning state is: +- Stack with orange block, green block, purple block, yellow block, red block, from bottom to top + +The end state is: +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task5/example/level5/question1.txt b/blocks/task5/example/level5/question1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1735d875e2596e15772b5a7ff78b1e3ea3a8324c --- /dev/null +++ b/blocks/task5/example/level5/question1.txt @@ -0,0 +1,8 @@ +Please generate the moving plan. The beginning state is: +- Stack with yellow block, green block, blue block, purple block, orange block, from bottom to top + +The end state is: +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task5/example/level5/question2.txt b/blocks/task5/example/level5/question2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3d8a831ab2f7fbd56ccbb5fedccb43bd8d1cc03 --- /dev/null +++ b/blocks/task5/example/level5/question2.txt @@ -0,0 +1,7 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block +- Stack with orange block, purple block, from bottom to top +- Stack with red block, green block, from bottom to top + +The end state is: +- Stack with red block, purple block, blue block, green block, orange block, from bottom to top diff --git a/blocks/task5/example/level5/question3.txt b/blocks/task5/example/level5/question3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f54d54b585a01b70576a018960c338563657e82 --- /dev/null +++ b/blocks/task5/example/level5/question3.txt @@ -0,0 +1,8 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with green block, purple block, from bottom to top + +The end state is: +- Stack with red block, green block, blue block, orange block, purple block, from bottom to top diff --git a/blocks/task5/example/level5/question4.txt b/blocks/task5/example/level5/question4.txt new file mode 100644 index 0000000000000000000000000000000000000000..838d141499b56529fd8b0610a0fa0f6a88ea7d56 --- /dev/null +++ b/blocks/task5/example/level5/question4.txt @@ -0,0 +1,8 @@ +Please generate the moving plan. The beginning state is: +- Stack with purple block +- Stack with green block, orange block, red block, yellow block, from bottom to top + +The end state is: +- Stack with purple block +- Stack with orange block, yellow block, from bottom to top +- Stack with green block, red block, from bottom to top diff --git a/blocks/task5/example/level5/question5.txt b/blocks/task5/example/level5/question5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68b623871e05f8c19ce5476f26651997e000ae5d --- /dev/null +++ b/blocks/task5/example/level5/question5.txt @@ -0,0 +1,6 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block, red block, purple block, yellow block, from bottom to top + +The end state is: +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task5/example/level5/question6.txt b/blocks/task5/example/level5/question6.txt new file mode 100644 index 0000000000000000000000000000000000000000..07531e0a52f787454f2172a8d56ccc9b0f5bb07a --- /dev/null +++ b/blocks/task5/example/level5/question6.txt @@ -0,0 +1,7 @@ +Please generate the moving plan. The beginning state is: +- Stack with purple block +- Stack with orange block, green block, from bottom to top +- Stack with blue block, yellow block, from bottom to top + +The end state is: +- Stack with purple block, yellow block, blue block, orange block, green block, from bottom to top diff --git a/blocks/task5/example/level5/question7.txt b/blocks/task5/example/level5/question7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3adaa3aa27577e74a942f28933ad541172ebe7e --- /dev/null +++ b/blocks/task5/example/level5/question7.txt @@ -0,0 +1,7 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block +- Stack with yellow block, orange block, purple block, red block, from bottom to top + +The end state is: +- Stack with purple block +- Stack with blue block, orange block, yellow block, red block, from bottom to top diff --git a/blocks/task5/example/level5/sol_0.txt b/blocks/task5/example/level5/sol_0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ac0814444c3cd08c3a7e365f51a866f243fa684 --- /dev/null +++ b/blocks/task5/example/level5/sol_0.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(yellow,table) +3. move(purple,table) +4. move(green,table) +5. move(yellow,purple) diff --git a/blocks/task5/example/level5/sol_1.txt b/blocks/task5/example/level5/sol_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d091d5c91540196a42ed8f21e59090750142aa20 --- /dev/null +++ b/blocks/task5/example/level5/sol_1.txt @@ -0,0 +1,5 @@ +1. move(orange,table) +2. move(purple,table) +3. move(blue,table) +4. move(green,table) +5. move(purple,blue) diff --git a/blocks/task5/example/level5/sol_2.txt b/blocks/task5/example/level5/sol_2.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cb266e3179a8817d77bd97dd3c88c2fcad1fd0a --- /dev/null +++ b/blocks/task5/example/level5/sol_2.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(purple,red) +3. move(blue,purple) +4. move(green,blue) +5. move(orange,green) diff --git a/blocks/task5/example/level5/sol_3.txt b/blocks/task5/example/level5/sol_3.txt new file mode 100644 index 0000000000000000000000000000000000000000..709c9e05cfb535a062df83402c59c4e3b6ab5199 --- /dev/null +++ b/blocks/task5/example/level5/sol_3.txt @@ -0,0 +1,5 @@ +1. move(purple,table) +2. move(green,red) +3. move(blue,green) +4. move(orange,blue) +5. move(purple,orange) diff --git a/blocks/task5/example/level5/sol_4.txt b/blocks/task5/example/level5/sol_4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9f5e41a03a6802383ebb15a2dd349ed787a08fb --- /dev/null +++ b/blocks/task5/example/level5/sol_4.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(red,table) +3. move(orange,table) +4. move(red,green) +5. move(yellow,orange) diff --git a/blocks/task5/example/level5/sol_5.txt b/blocks/task5/example/level5/sol_5.txt new file mode 100644 index 0000000000000000000000000000000000000000..38f7b1f7c0852335b84cf3fb40ceb716c886aebc --- /dev/null +++ b/blocks/task5/example/level5/sol_5.txt @@ -0,0 +1,5 @@ +1. move(yellow,table) +2. move(purple,table) +3. move(red,table) +4. move(yellow,blue) +5. move(purple,red) diff --git a/blocks/task5/example/level5/sol_6.txt b/blocks/task5/example/level5/sol_6.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe2dc308b57bf78c19f7370f822ab44f440bb3d7 --- /dev/null +++ b/blocks/task5/example/level5/sol_6.txt @@ -0,0 +1,5 @@ +1. move(green,table) +2. move(yellow,purple) +3. move(blue,yellow) +4. move(orange,blue) +5. move(green,orange) diff --git a/blocks/task5/example/level5/sol_7.txt b/blocks/task5/example/level5/sol_7.txt new file mode 100644 index 0000000000000000000000000000000000000000..06401baac01e1e6dd0afb68218f7241d719733bf --- /dev/null +++ b/blocks/task5/example/level5/sol_7.txt @@ -0,0 +1,5 @@ +1. move(red,table) +2. move(purple,table) +3. move(orange,blue) +4. move(yellow,orange) +5. move(red,yellow) diff --git a/blocks/task5/example/level7/analysis0.txt b/blocks/task5/example/level7/analysis0.txt new file mode 100644 index 0000000000000000000000000000000000000000..321fcb1224fb596732a64259ea969de57ba9362a --- /dev/null +++ b/blocks/task5/example/level7/analysis0.txt @@ -0,0 +1,6 @@ + +Starting state: there are 2 stacks: +- Stack 1: yellow block (alone) +- Stack 2: red block, green block, blue block, orange block, from bottom to top +Ending state: there are 1 stacks: +- Stack 1: green block, orange block, blue block, yellow block, red block, from bottom to top diff --git a/blocks/task5/example/level7/analysis1.txt b/blocks/task5/example/level7/analysis1.txt new file mode 100644 index 0000000000000000000000000000000000000000..808e17a3f42a85b98ab2bb49c3530f459e0b9875 --- /dev/null +++ b/blocks/task5/example/level7/analysis1.txt @@ -0,0 +1,6 @@ + +Starting state: there are 2 stacks: +- Stack 1: yellow block, green block, from bottom to top +- Stack 2: orange block, purple block, red block, from bottom to top +Ending state: there are 1 stacks: +- Stack 1: purple block, yellow block, orange block, green block, red block, from bottom to top diff --git a/blocks/task5/example/level7/analysis2.txt b/blocks/task5/example/level7/analysis2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad3343f02f62512c8abba380ce705679461ac28a --- /dev/null +++ b/blocks/task5/example/level7/analysis2.txt @@ -0,0 +1,6 @@ + +Starting state: there are 1 stacks: +- Stack 1: yellow block, green block, orange block, purple block, red block, from bottom to top +Ending state: there are 2 stacks: +- Stack 1: green block, red block, from bottom to top +- Stack 2: orange block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/example/level7/analysis3.txt b/blocks/task5/example/level7/analysis3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a875c00a23dd56dd1fc50b71c8f579770ba7addf --- /dev/null +++ b/blocks/task5/example/level7/analysis3.txt @@ -0,0 +1,6 @@ + +Starting state: there are 2 stacks: +- Stack 1: blue block, purple block, from bottom to top +- Stack 2: orange block, yellow block, red block, from bottom to top +Ending state: there are 1 stacks: +- Stack 1: purple block, orange block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task5/example/level7/analysis4.txt b/blocks/task5/example/level7/analysis4.txt new file mode 100644 index 0000000000000000000000000000000000000000..8315be26d762bc5de5147bfb152e135a6b34c8d3 --- /dev/null +++ b/blocks/task5/example/level7/analysis4.txt @@ -0,0 +1,6 @@ + +Starting state: there are 1 stacks: +- Stack 1: red block, purple block, green block, blue block, orange block, from bottom to top +Ending state: there are 2 stacks: +- Stack 1: red block, blue block, from bottom to top +- Stack 2: purple block, orange block, green block, from bottom to top diff --git a/blocks/task5/example/level7/analysis5.txt b/blocks/task5/example/level7/analysis5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d62fcba724c0d08fc534cc57f5a0c59965794bea --- /dev/null +++ b/blocks/task5/example/level7/analysis5.txt @@ -0,0 +1,6 @@ + +Starting state: there are 1 stacks: +- Stack 1: yellow block, orange block, red block, green block, purple block, from bottom to top +Ending state: there are 2 stacks: +- Stack 1: orange block, yellow block, from bottom to top +- Stack 2: red block, purple block, green block, from bottom to top diff --git a/blocks/task5/example/level7/analysis6.txt b/blocks/task5/example/level7/analysis6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a044d2b8a61e2e95b3dca2558f0216b15ca727c7 --- /dev/null +++ b/blocks/task5/example/level7/analysis6.txt @@ -0,0 +1,6 @@ + +Starting state: there are 1 stacks: +- Stack 1: blue block, orange block, purple block, green block, red block, from bottom to top +Ending state: there are 2 stacks: +- Stack 1: red block (alone) +- Stack 2: blue block, green block, orange block, purple block, from bottom to top diff --git a/blocks/task5/example/level7/analysis7.txt b/blocks/task5/example/level7/analysis7.txt new file mode 100644 index 0000000000000000000000000000000000000000..3548846d3509ceee50b2113a37aab282660c0dd2 --- /dev/null +++ b/blocks/task5/example/level7/analysis7.txt @@ -0,0 +1,5 @@ + +Starting state: there are 1 stacks: +- Stack 1: orange block, red block, blue block, green block, purple block, from bottom to top +Ending state: there are 1 stacks: +- Stack 1: blue block, red block, orange block, green block, purple block, from bottom to top diff --git a/blocks/task5/example/level7/begin/0.jpg b/blocks/task5/example/level7/begin/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdb167c09d9b93b0f1efc9637329b3cc5f8aa93d --- /dev/null +++ b/blocks/task5/example/level7/begin/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a516d545cd646e4fab6520bbf894e6784ba44fdfceb42e3c2ebba273a38d3fe +size 11527 diff --git a/blocks/task5/example/level7/begin/1.jpg b/blocks/task5/example/level7/begin/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0eaed422fe20e6de6ce3afc99258dc92bf6306f8 --- /dev/null +++ b/blocks/task5/example/level7/begin/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8baaa89e60b3a2770e752b84b9655fe65fa21fa2c224469ccf435295cf2f3ac +size 10156 diff --git a/blocks/task5/example/level7/begin/2.jpg b/blocks/task5/example/level7/begin/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08fda8904dc54be41711fd928bbf40f9e9cfd326 --- /dev/null +++ b/blocks/task5/example/level7/begin/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84d2d13eecf6b6ccf0162f7d626b7e17b04300c48a07f10d318eb9b4ca9e873 +size 10770 diff --git a/blocks/task5/example/level7/begin/3.jpg b/blocks/task5/example/level7/begin/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c03a2d1443dfd8c646978cc4d6e939fd5347c2ca --- /dev/null +++ b/blocks/task5/example/level7/begin/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:333a05ed05b1a0373cc9b67c99d08def504f136a8b5b7448f25957d7a68afd23 +size 10749 diff --git a/blocks/task5/example/level7/begin/4.jpg b/blocks/task5/example/level7/begin/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..288db37a8974a798ced27e24473223ee73e8c2ec --- /dev/null +++ b/blocks/task5/example/level7/begin/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e516d723e5da617ea636d7658db451afc6bdcf4aa662d42f6cbe50ca1fd8f04 +size 11152 diff --git a/blocks/task5/example/level7/begin/5.jpg b/blocks/task5/example/level7/begin/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65675ef4e9c220ea74ef063253a8348df5787690 --- /dev/null +++ b/blocks/task5/example/level7/begin/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07d05c84175968662da29f82ef47c9f6c7bd6fb0c91fdc0b023a88552d76cf +size 9257 diff --git a/blocks/task5/example/level7/begin/6.jpg b/blocks/task5/example/level7/begin/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efe5d983379989c6653f4a8ce6645f3dc2b681ad --- /dev/null +++ b/blocks/task5/example/level7/begin/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60b045fdd0e56560b449b753fe6ceecfeac8dc7b40110b1b158014b4eba7a28 +size 9810 diff --git a/blocks/task5/example/level7/begin/7.jpg b/blocks/task5/example/level7/begin/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40a4f434905822510986f5e1841d08498c9b5fd9 --- /dev/null +++ b/blocks/task5/example/level7/begin/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723341149a4698d991c40931accda49dd7cf35bcf5c4541a7fdd5e20fa259ac8 +size 10329 diff --git a/blocks/task5/example/level7/end/0.jpg b/blocks/task5/example/level7/end/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9696410d93d15b14528ba6ae2ee15972ed0a0687 --- /dev/null +++ b/blocks/task5/example/level7/end/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55f10e9c08fbdf45f03c1cba206de100bf94483b4a7ed5146d9d5c3a87c6a453 +size 10347 diff --git a/blocks/task5/example/level7/end/1.jpg b/blocks/task5/example/level7/end/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6e1fd0f91363d3947c66364808550f1d7a109fe --- /dev/null +++ b/blocks/task5/example/level7/end/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa91ab544ff373f4fd18c94489db566405781fbca48f1a3a6df5e376bc612ab +size 11182 diff --git a/blocks/task5/example/level7/end/2.jpg b/blocks/task5/example/level7/end/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c8c2fefa3ac25f5d294fa0cc434e6eaab03c6fe --- /dev/null +++ b/blocks/task5/example/level7/end/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8710530018e982ec0e0dfc92c46c1f4fc402c65f40426efd192f8aef85d68ff +size 10275 diff --git a/blocks/task5/example/level7/end/3.jpg b/blocks/task5/example/level7/end/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..559384febba7071eba7193a88ce2fc3f7a577c68 --- /dev/null +++ b/blocks/task5/example/level7/end/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6927af8170e81cee45b079bcff2aa56d2930c7a4655ebda85777ea42d52beaeb +size 9903 diff --git a/blocks/task5/example/level7/end/4.jpg b/blocks/task5/example/level7/end/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cf435fd56c07fdc92b9354a62ac8d2826603307 --- /dev/null +++ b/blocks/task5/example/level7/end/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d6c315372be21ec84bc89623070906801b7532331ab340629c0dbdcc161157 +size 11768 diff --git a/blocks/task5/example/level7/end/5.jpg b/blocks/task5/example/level7/end/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce4ba3216639e827d2c910ff5851c8f771475882 --- /dev/null +++ b/blocks/task5/example/level7/end/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b0c0d4009a625d882193de5300a1eaf8b0b9a4b7e3e77572300cec278d9a213 +size 11134 diff --git a/blocks/task5/example/level7/end/6.jpg b/blocks/task5/example/level7/end/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e20c4a4aa793058c6e84f897d467d153d3fdc6f5 --- /dev/null +++ b/blocks/task5/example/level7/end/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266206cf827133dd9cba218a699efe7145bb7f3f7bae50cc4b4f317337b7c314 +size 10361 diff --git a/blocks/task5/example/level7/end/7.jpg b/blocks/task5/example/level7/end/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3422c04c5e7c5cc404aed624e4ef61e3c2083374 --- /dev/null +++ b/blocks/task5/example/level7/end/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efeb656485fc5e2163eb4da81f424e2a45e0cb8fb009b445ae8db5c102c33e0e +size 10145 diff --git a/blocks/task5/example/level7/question0.txt b/blocks/task5/example/level7/question0.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc1752c167b63bff5eeea1f476b10eeaea9c88ca --- /dev/null +++ b/blocks/task5/example/level7/question0.txt @@ -0,0 +1,6 @@ +Please generate the moving plan. The beginning state is: +- Stack with yellow block +- Stack with red block, green block, blue block, orange block, from bottom to top + +The end state is: +- Stack with green block, orange block, blue block, yellow block, red block, from bottom to top diff --git a/blocks/task5/example/level7/question1.txt b/blocks/task5/example/level7/question1.txt new file mode 100644 index 0000000000000000000000000000000000000000..29c28b6b9885d30cf38e6b35c08cee735ea3ae84 --- /dev/null +++ b/blocks/task5/example/level7/question1.txt @@ -0,0 +1,6 @@ +Please generate the moving plan. The beginning state is: +- Stack with yellow block, green block, from bottom to top +- Stack with orange block, purple block, red block, from bottom to top + +The end state is: +- Stack with purple block, yellow block, orange block, green block, red block, from bottom to top diff --git a/blocks/task5/example/level7/question2.txt b/blocks/task5/example/level7/question2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e92e62a6e9b654c1cb999db9ab9dab7032dd50b5 --- /dev/null +++ b/blocks/task5/example/level7/question2.txt @@ -0,0 +1,6 @@ +Please generate the moving plan. The beginning state is: +- Stack with yellow block, green block, orange block, purple block, red block, from bottom to top + +The end state is: +- Stack with green block, red block, from bottom to top +- Stack with orange block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/example/level7/question3.txt b/blocks/task5/example/level7/question3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a959ea61ff899a9453cca3eee55e3556593053b7 --- /dev/null +++ b/blocks/task5/example/level7/question3.txt @@ -0,0 +1,6 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, yellow block, red block, from bottom to top + +The end state is: +- Stack with purple block, orange block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task5/example/level7/question4.txt b/blocks/task5/example/level7/question4.txt new file mode 100644 index 0000000000000000000000000000000000000000..81a6de20b698a03b23503da6e738a5966a11d37d --- /dev/null +++ b/blocks/task5/example/level7/question4.txt @@ -0,0 +1,6 @@ +Please generate the moving plan. The beginning state is: +- Stack with red block, purple block, green block, blue block, orange block, from bottom to top + +The end state is: +- Stack with red block, blue block, from bottom to top +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task5/example/level7/question5.txt b/blocks/task5/example/level7/question5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5bc0bb4ee92fe4719c9fe90f6423b1569b64076e --- /dev/null +++ b/blocks/task5/example/level7/question5.txt @@ -0,0 +1,6 @@ +Please generate the moving plan. The beginning state is: +- Stack with yellow block, orange block, red block, green block, purple block, from bottom to top + +The end state is: +- Stack with orange block, yellow block, from bottom to top +- Stack with red block, purple block, green block, from bottom to top diff --git a/blocks/task5/example/level7/question6.txt b/blocks/task5/example/level7/question6.txt new file mode 100644 index 0000000000000000000000000000000000000000..e506b1bfca13b67cbf89e38613e8878eae752b90 --- /dev/null +++ b/blocks/task5/example/level7/question6.txt @@ -0,0 +1,6 @@ +Please generate the moving plan. The beginning state is: +- Stack with blue block, orange block, purple block, green block, red block, from bottom to top + +The end state is: +- Stack with red block +- Stack with blue block, green block, orange block, purple block, from bottom to top diff --git a/blocks/task5/example/level7/question7.txt b/blocks/task5/example/level7/question7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b25d326747752cf25f80e118a5d605af671a1ab3 --- /dev/null +++ b/blocks/task5/example/level7/question7.txt @@ -0,0 +1,5 @@ +Please generate the moving plan. The beginning state is: +- Stack with orange block, red block, blue block, green block, purple block, from bottom to top + +The end state is: +- Stack with blue block, red block, orange block, green block, purple block, from bottom to top diff --git a/blocks/task5/example/level7/sol_0.txt b/blocks/task5/example/level7/sol_0.txt new file mode 100644 index 0000000000000000000000000000000000000000..13691f205cd9853c165da95b004159b58ab9dd75 --- /dev/null +++ b/blocks/task5/example/level7/sol_0.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(blue,table) +3. move(green,table) +4. move(orange,green) +5. move(blue,orange) +6. move(yellow,blue) +7. move(red,yellow) diff --git a/blocks/task5/example/level7/sol_1.txt b/blocks/task5/example/level7/sol_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..7540237182c8900aabc22ee9b10bbe629f145f82 --- /dev/null +++ b/blocks/task5/example/level7/sol_1.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,red) +3. move(purple,table) +4. move(yellow,purple) +5. move(orange,yellow) +6. move(green,orange) +7. move(red,green) diff --git a/blocks/task5/example/level7/sol_2.txt b/blocks/task5/example/level7/sol_2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6e650e5f41a27c4be296b625524342401ff2bfc --- /dev/null +++ b/blocks/task5/example/level7/sol_2.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(purple,table) +3. move(orange,table) +4. move(green,table) +5. move(red,green) +6. move(purple,orange) +7. move(yellow,purple) diff --git a/blocks/task5/example/level7/sol_3.txt b/blocks/task5/example/level7/sol_3.txt new file mode 100644 index 0000000000000000000000000000000000000000..d867cf076ac8b4990d0d57bbba08c935b8f64d55 --- /dev/null +++ b/blocks/task5/example/level7/sol_3.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(yellow,table) +3. move(purple,table) +4. move(orange,purple) +5. move(blue,orange) +6. move(red,blue) +7. move(yellow,red) diff --git a/blocks/task5/example/level7/sol_4.txt b/blocks/task5/example/level7/sol_4.txt new file mode 100644 index 0000000000000000000000000000000000000000..60d3d26ae1c69de64616dd404804c8bcbc30e5bd --- /dev/null +++ b/blocks/task5/example/level7/sol_4.txt @@ -0,0 +1,7 @@ +1. move(orange,table) +2. move(blue,table) +3. move(green,table) +4. move(purple,table) +5. move(blue,red) +6. move(orange,purple) +7. move(green,orange) diff --git a/blocks/task5/example/level7/sol_5.txt b/blocks/task5/example/level7/sol_5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b964d9cc2aee861af8f0462bb201ae208301eb0b --- /dev/null +++ b/blocks/task5/example/level7/sol_5.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(green,table) +3. move(red,table) +4. move(orange,table) +5. move(yellow,orange) +6. move(purple,red) +7. move(green,purple) diff --git a/blocks/task5/example/level7/sol_6.txt b/blocks/task5/example/level7/sol_6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1303719abd0af112c7338725e9582278c0007431 --- /dev/null +++ b/blocks/task5/example/level7/sol_6.txt @@ -0,0 +1,7 @@ +1. move(red,table) +2. move(green,table) +3. move(purple,table) +4. move(orange,table) +5. move(green,blue) +6. move(orange,green) +7. move(purple,orange) diff --git a/blocks/task5/example/level7/sol_7.txt b/blocks/task5/example/level7/sol_7.txt new file mode 100644 index 0000000000000000000000000000000000000000..af258f55247439f2059915d3508a795ebd7aa2e8 --- /dev/null +++ b/blocks/task5/example/level7/sol_7.txt @@ -0,0 +1,7 @@ +1. move(purple,table) +2. move(green,table) +3. move(blue,table) +4. move(red,blue) +5. move(orange,red) +6. move(green,orange) +7. move(purple,green) diff --git a/blocks/task5/maps/.DS_Store b/blocks/task5/maps/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..f097a3db4c0f5ba977c3b3dcbbff59789ffcbe3e Binary files /dev/null and b/blocks/task5/maps/.DS_Store differ diff --git a/blocks/task5/maps/level1/.DS_Store b/blocks/task5/maps/level1/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..bcb95995fa50937486adde3b5f82e6ceb8844dbb Binary files /dev/null and b/blocks/task5/maps/level1/.DS_Store differ diff --git a/blocks/task5/maps/level1/info.txt b/blocks/task5/maps/level1/info.txt new file mode 100644 index 0000000000000000000000000000000000000000..e23de9bec0d7922a61cf115aeceb874a0cecbd2b --- /dev/null +++ b/blocks/task5/maps/level1/info.txt @@ -0,0 +1,100 @@ +Y00000-P00000-B00000-OR0000-000000-000000-000000 4Towers/1112 R00000-P00000-B00000-O00000-Y00000-000000-000000 5Towers/11111 1 move(r,table,0) +B00000-PY0000-GR0000-000000-000000-000000-000000 3Towers/122 G00000-B00000-PYR000-000000-000000-000000-000000 3Towers/113 1 move(r,y,0) +B00000-P00000-O00000-GR0000-000000-000000-000000 4Towers/1112 B00000-P00000-GRO000-000000-000000-000000-000000 3Towers/113 1 move(o,r,0) +G00000-P00000-O00000-B00000-Y00000-000000-000000 5Towers/11111 P00000-O00000-Y00000-GB0000-000000-000000-000000 4Towers/1112 1 move(b,g,0) +R00000-Y00000-G00000-BO0000-000000-000000-000000 4Towers/1112 B00000-G00000-O00000-Y00000-R00000-000000-000000 5Towers/11111 1 move(o,table,0) +B00000-G00000-O00000-PY0000-000000-000000-000000 4Towers/1112 O00000-Y00000-B00000-G00000-P00000-000000-000000 5Towers/11111 1 move(y,table,0) +P00000-G00000-O00000-Y00000-B00000-000000-000000 5Towers/11111 B00000-P00000-Y00000-OG0000-000000-000000-000000 4Towers/1112 1 move(g,o,0) +Y00000-O00000-PBG000-000000-000000-000000-000000 3Towers/113 O00000-Y00000-G00000-PB0000-000000-000000-000000 4Towers/1112 1 move(g,table,0) +B00000-P00000-R00000-YO0000-000000-000000-000000 4Towers/1112 R00000-Y00000-B00000-PO0000-000000-000000-000000 4Towers/1112 1 move(o,p,0) +R00000-Y00000-PO0000-000000-000000-000000-000000 3Towers/112 R00000-O00000-Y00000-P00000-000000-000000-000000 4Towers/1111 1 move(o,table,0) +G00000-Y00000-O00000-BR0000-000000-000000-000000 4Towers/1112 B00000-G00000-R00000-Y00000-O00000-000000-000000 5Towers/11111 1 move(r,table,0) +O00000-Y00000-P00000-GR0000-000000-000000-000000 4Towers/1112 O00000-Y00000-G00000-PR0000-000000-000000-000000 4Towers/1112 1 move(r,p,0) +Y00000-RB0000-OG0000-000000-000000-000000-000000 3Towers/122 G00000-Y00000-O00000-RB0000-000000-000000-000000 4Towers/1112 1 move(g,table,0) +P00000-O00000-R00000-YG0000-000000-000000-000000 4Towers/1112 Y00000-P00000-O00000-G00000-R00000-000000-000000 5Towers/11111 1 move(g,table,0) +YP0000-BRG000-000000-000000-000000-000000-000000 2Towers/23 G00000-YP0000-BR0000-000000-000000-000000-000000 3Towers/122 1 move(g,table,0) +B00000-Y00000-G00000-RP0000-000000-000000-000000 4Towers/1112 G00000-P00000-B00000-Y00000-R00000-000000-000000 5Towers/11111 1 move(p,table,0) +Y00000-R00000-G00000-P00000-O00000-000000-000000 5Towers/11111 G00000-Y00000-O00000-PR0000-000000-000000-000000 4Towers/1112 1 move(r,p,0) +P00000-G00000-Y00000-O00000-B00000-000000-000000 5Towers/11111 G00000-Y00000-B00000-OP0000-000000-000000-000000 4Towers/1112 1 move(p,o,0) +O00000-G00000-P00000-BY0000-000000-000000-000000 4Towers/1112 G00000-P00000-Y00000-O00000-B00000-000000-000000 5Towers/11111 1 move(y,table,0) +G00000-B00000-P00000-R00000-Y00000-000000-000000 5Towers/11111 Y00000-G00000-B00000-RP0000-000000-000000-000000 4Towers/1112 1 move(p,r,0) +P00000-G00000-B00000-R00000-O00000-000000-000000 5Towers/11111 G00000-B00000-R00000-OP0000-000000-000000-000000 4Towers/1112 1 move(p,o,0) +Y00000-G00000-O00000-PR0000-000000-000000-000000 4Towers/1112 O00000-P00000-G00000-Y00000-R00000-000000-000000 5Towers/11111 1 move(r,table,0) +P00000-Y00000-B00000-OG0000-000000-000000-000000 4Towers/1112 Y00000-B00000-O00000-PG0000-000000-000000-000000 4Towers/1112 1 move(g,p,0) +Y00000-O00000-P00000-R00000-G00000-000000-000000 5Towers/11111 G00000-O00000-R00000-YP0000-000000-000000-000000 4Towers/1112 1 move(p,y,0) +R00000-O00000-P00000-Y00000-G00000-000000-000000 5Towers/11111 Y00000-G00000-R00000-PO0000-000000-000000-000000 4Towers/1112 1 move(o,p,0) +P00000-O00000-B00000-RG0000-000000-000000-000000 4Towers/1112 B00000-P00000-R00000-OG0000-000000-000000-000000 4Towers/1112 1 move(g,o,0) +P00000-O00000-R00000-B00000-000000-000000-000000 4Towers/1111 P00000-B00000-OR0000-000000-000000-000000-000000 3Towers/112 1 move(r,o,0) +B00000-P00000-R00000-OY0000-000000-000000-000000 4Towers/1112 P00000-B00000-R00000-Y00000-O00000-000000-000000 5Towers/11111 1 move(y,table,0) +O00000-Y00000-P00000-BG0000-000000-000000-000000 4Towers/1112 P00000-G00000-B00000-O00000-Y00000-000000-000000 5Towers/11111 1 move(g,table,0) +Y00000-R00000-P00000-BO0000-000000-000000-000000 4Towers/1112 P00000-O00000-Y00000-B00000-R00000-000000-000000 5Towers/11111 1 move(o,table,0) +G00000-O00000-B00000-YP0000-000000-000000-000000 4Towers/1112 Y00000-P00000-B00000-O00000-G00000-000000-000000 5Towers/11111 1 move(p,table,0) +P00000-O00000-G00000-YB0000-000000-000000-000000 4Towers/1112 G00000-P00000-YBO000-000000-000000-000000-000000 3Towers/113 1 move(o,b,0) +B00000-GP0000-YR0000-000000-000000-000000-000000 3Towers/122 R00000-Y00000-B00000-GP0000-000000-000000-000000 4Towers/1112 1 move(r,table,0) +R00000-O00000-Y00000-P00000-G00000-000000-000000 5Towers/11111 Y00000-G00000-P00000-OR0000-000000-000000-000000 4Towers/1112 1 move(r,o,0) +P00000-O00000-Y00000-RG0000-000000-000000-000000 4Towers/1112 O00000-P00000-Y00000-R00000-G00000-000000-000000 5Towers/11111 1 move(g,table,0) +R00000-Y00000-B00000-G00000-O00000-000000-000000 5Towers/11111 B00000-G00000-O00000-YR0000-000000-000000-000000 4Towers/1112 1 move(r,y,0) +R00000-O00000-P00000-BG0000-000000-000000-000000 4Towers/1112 R00000-G00000-O00000-B00000-P00000-000000-000000 5Towers/11111 1 move(g,table,0) +O00000-Y00000-G00000-B00000-P00000-000000-000000 5Towers/11111 Y00000-G00000-B00000-OP0000-000000-000000-000000 4Towers/1112 1 move(p,o,0) +R00000-B00000-P00000-OY0000-000000-000000-000000 4Towers/1112 O00000-B00000-Y00000-P00000-R00000-000000-000000 5Towers/11111 1 move(y,table,0) +O00000-G00000-R00000-B00000-P00000-000000-000000 5Towers/11111 P00000-R00000-B00000-GO0000-000000-000000-000000 4Towers/1112 1 move(o,g,0) +G00000-Y00000-O00000-R00000-B00000-000000-000000 5Towers/11111 R00000-B00000-Y00000-OG0000-000000-000000-000000 4Towers/1112 1 move(g,o,0) +O00000-G00000-P00000-BR0000-000000-000000-000000 4Towers/1112 R00000-B00000-P00000-G00000-O00000-000000-000000 5Towers/11111 1 move(r,table,0) +G00000-R00000-Y00000-PB0000-000000-000000-000000 4Towers/1112 P00000-Y00000-R00000-G00000-B00000-000000-000000 5Towers/11111 1 move(b,table,0) +P00000-R00000-G00000-B00000-Y00000-000000-000000 5Towers/11111 G00000-P00000-Y00000-BR0000-000000-000000-000000 4Towers/1112 1 move(r,b,0) +B00000-R00000-Y00000-P00000-G00000-000000-000000 5Towers/11111 G00000-B00000-R00000-YP0000-000000-000000-000000 4Towers/1112 1 move(p,y,0) +Y00000-B00000-O00000-G00000-P00000-000000-000000 5Towers/11111 G00000-B00000-Y00000-PO0000-000000-000000-000000 4Towers/1112 1 move(o,p,0) +P00000-G00000-B00000-O00000-Y00000-000000-000000 5Towers/11111 P00000-O00000-B00000-YG0000-000000-000000-000000 4Towers/1112 1 move(g,y,0) +Y00000-G00000-P00000-OR0000-000000-000000-000000 4Towers/1112 O00000-P00000-Y00000-G00000-R00000-000000-000000 5Towers/11111 1 move(r,table,0) +O00000-PR0000-YB0000-000000-000000-000000-000000 3Towers/122 B00000-Y00000-O00000-PR0000-000000-000000-000000 4Towers/1112 1 move(b,table,0) +O00000-YRGB00-000000-000000-000000-000000-000000 2Towers/14 YRGBO0-000000-000000-000000-000000-000000-000000 1Towers/5 1 move(o,b,0) +R00000-B00000-P00000-G00000-O00000-000000-000000 5Towers/11111 B00000-O00000-P00000-RG0000-000000-000000-000000 4Towers/1112 1 move(g,r,0) +P00000-BO0000-GY0000-000000-000000-000000-000000 3Towers/122 G00000-P00000-BOY000-000000-000000-000000-000000 3Towers/113 1 move(y,o,0) +B00000-G00000-P00000-OR0000-000000-000000-000000 4Towers/1112 G00000-P00000-ORB000-000000-000000-000000-000000 3Towers/113 1 move(b,r,0) +Y00000-B00000-O00000-R00000-G00000-000000-000000 5Towers/11111 Y00000-R00000-G00000-OB0000-000000-000000-000000 4Towers/1112 1 move(b,o,0) +O00000-Y00000-G00000-RP0000-000000-000000-000000 4Towers/1112 G00000-Y00000-O00000-R00000-P00000-000000-000000 5Towers/11111 1 move(p,table,0) +P00000-Y00000-R00000-GO0000-000000-000000-000000 4Towers/1112 Y00000-O00000-G00000-P00000-R00000-000000-000000 5Towers/11111 1 move(o,table,0) +G00000-Y00000-P00000-RO0000-000000-000000-000000 4Towers/1112 O00000-Y00000-G00000-R00000-P00000-000000-000000 5Towers/11111 1 move(o,table,0) +R00000-O00000-YBG000-000000-000000-000000-000000 3Towers/113 OR0000-YBG000-000000-000000-000000-000000-000000 2Towers/23 1 move(r,o,0) +G00000-P00000-B00000-O00000-Y00000-000000-000000 5Towers/11111 O00000-B00000-G00000-PY0000-000000-000000-000000 4Towers/1112 1 move(y,p,0) +O00000-B00000-R00000-GP0000-000000-000000-000000 4Towers/1112 B00000-G00000-O00000-RP0000-000000-000000-000000 4Towers/1112 1 move(p,r,0) +R00000-G00000-Y00000-P00000-O00000-000000-000000 5Towers/11111 P00000-R00000-O00000-GY0000-000000-000000-000000 4Towers/1112 1 move(y,g,0) +R00000-G00000-O00000-PY0000-000000-000000-000000 4Towers/1112 O00000-RG0000-PY0000-000000-000000-000000-000000 3Towers/122 1 move(g,r,0) +Y00000-BR0000-PG0000-000000-000000-000000-000000 3Towers/122 Y00000-R00000-B00000-PG0000-000000-000000-000000 4Towers/1112 1 move(r,table,0) +B00000-R00000-O00000-P00000-Y00000-000000-000000 5Towers/11111 Y00000-P00000-R00000-OB0000-000000-000000-000000 4Towers/1112 1 move(b,o,0) +O00000-B00000-P00000-GR0000-000000-000000-000000 4Towers/1112 G00000-O00000-R00000-P00000-B00000-000000-000000 5Towers/11111 1 move(r,table,0) +P00000-O00000-Y00000-GB0000-000000-000000-000000 4Towers/1112 G00000-Y00000-O00000-P00000-B00000-000000-000000 5Towers/11111 1 move(b,table,0) +P00000-Y00000-B00000-GR0000-000000-000000-000000 4Towers/1112 Y00000-B00000-GRP000-000000-000000-000000-000000 3Towers/113 1 move(p,r,0) +B00000-P00000-Y00000-GR0000-000000-000000-000000 4Towers/1112 R00000-G00000-P00000-Y00000-B00000-000000-000000 5Towers/11111 1 move(r,table,0) +R00000-P00000-G00000-B00000-Y00000-000000-000000 5Towers/11111 Y00000-R00000-P00000-BG0000-000000-000000-000000 4Towers/1112 1 move(g,b,0) +G00000-RO0000-000000-000000-000000-000000-000000 2Towers/12 R00000-G00000-O00000-000000-000000-000000-000000 3Towers/111 1 move(o,table,0) +P00000-BOY000-000000-000000-000000-000000-000000 2Towers/13 Y00000-P00000-BO0000-000000-000000-000000-000000 3Towers/112 1 move(y,table,0) +G00000-RY0000-OB0000-000000-000000-000000-000000 3Towers/122 G00000-R00000-OBY000-000000-000000-000000-000000 3Towers/113 1 move(y,b,0) +B00000-P00000-O00000-YG0000-000000-000000-000000 4Towers/1112 G00000-P00000-O00000-B00000-Y00000-000000-000000 5Towers/11111 1 move(g,table,0) +G00000-O00000-BY0000-000000-000000-000000-000000 3Towers/112 G00000-B00000-OY0000-000000-000000-000000-000000 3Towers/112 1 move(y,o,0) +O00000-Y00000-P00000-BG0000-000000-000000-000000 4Towers/1112 B00000-G00000-P00000-Y00000-O00000-000000-000000 5Towers/11111 1 move(g,table,0) +G00000-B00000-O00000-YP0000-000000-000000-000000 4Towers/1112 B00000-G00000-P00000-Y00000-O00000-000000-000000 5Towers/11111 1 move(p,table,0) +P00000-B00000-O00000-R00000-Y00000-000000-000000 5Towers/11111 R00000-B00000-O00000-YP0000-000000-000000-000000 4Towers/1112 1 move(p,y,0) +Y00000-G00000-P00000-OR0000-000000-000000-000000 4Towers/1112 R00000-P00000-O00000-Y00000-G00000-000000-000000 5Towers/11111 1 move(r,table,0) +R00000-O00000-Y00000-P00000-B00000-000000-000000 5Towers/11111 B00000-O00000-Y00000-RP0000-000000-000000-000000 4Towers/1112 1 move(p,r,0) +G00000-Y00000-BP0000-000000-000000-000000-000000 3Towers/112 YG0000-BP0000-000000-000000-000000-000000-000000 2Towers/22 1 move(g,y,0) +Y00000-O00000-R00000-B00000-P00000-000000-000000 5Towers/11111 O00000-Y00000-B00000-PR0000-000000-000000-000000 4Towers/1112 1 move(r,p,0) +Y00000-BPO000-000000-000000-000000-000000-000000 2Towers/13 Y00000-O00000-BP0000-000000-000000-000000-000000 3Towers/112 1 move(o,table,0) +B00000-R00000-O00000-PG0000-000000-000000-000000 4Towers/1112 B00000-P00000-O00000-RG0000-000000-000000-000000 4Towers/1112 1 move(g,r,0) +P00000-Y00000-R00000-B00000-O00000-000000-000000 5Towers/11111 P00000-Y00000-R00000-OB0000-000000-000000-000000 4Towers/1112 1 move(b,o,0) +G00000-Y00000-B00000-P00000-O00000-000000-000000 5Towers/11111 O00000-P00000-G00000-BY0000-000000-000000-000000 4Towers/1112 1 move(y,b,0) +B00000-G00000-O00000-PR0000-000000-000000-000000 4Towers/1112 O00000-P00000-R00000-B00000-G00000-000000-000000 5Towers/11111 1 move(r,table,0) +Y00000-R00000-B00000-G00000-O00000-000000-000000 5Towers/11111 R00000-O00000-Y00000-BG0000-000000-000000-000000 4Towers/1112 1 move(g,b,0) +YO0000-GPB000-000000-000000-000000-000000-000000 2Towers/23 GP0000-YOB000-000000-000000-000000-000000-000000 2Towers/23 1 move(b,o,0) +O00000-P00000-G00000-YB0000-000000-000000-000000 4Towers/1112 P00000-OG0000-YB0000-000000-000000-000000-000000 3Towers/122 1 move(g,o,0) +G00000-Y00000-B00000-R00000-P00000-000000-000000 5Towers/11111 Y00000-R00000-P00000-GB0000-000000-000000-000000 4Towers/1112 1 move(b,g,0) +B00000-G00000-Y00000-P00000-R00000-000000-000000 5Towers/11111 G00000-R00000-P00000-YB0000-000000-000000-000000 4Towers/1112 1 move(b,y,0) +G00000-O00000-BY0000-000000-000000-000000-000000 3Towers/112 Y00000-G00000-O00000-B00000-000000-000000-000000 4Towers/1111 1 move(y,table,0) +R00000-O00000-Y00000-G00000-B00000-000000-000000 5Towers/11111 Y00000-O00000-R00000-GB0000-000000-000000-000000 4Towers/1112 1 move(b,g,0) +O00000-P00000-G00000-BR0000-000000-000000-000000 4Towers/1112 P00000-OG0000-BR0000-000000-000000-000000-000000 3Towers/122 1 move(g,o,0) +P00000-OBR000-000000-000000-000000-000000-000000 2Towers/13 P00000-R00000-OB0000-000000-000000-000000-000000 3Towers/112 1 move(r,table,0) +G00000-Y00000-R00000-BO0000-000000-000000-000000 4Towers/1112 Y00000-G00000-B00000-RO0000-000000-000000-000000 4Towers/1112 1 move(o,r,0) +G00000-P00000-YB0000-000000-000000-000000-000000 3Towers/112 P00000-Y00000-G00000-B00000-000000-000000-000000 4Towers/1111 1 move(b,table,0) +R00000-B00000-G00000-O00000-P00000-000000-000000 5Towers/11111 O00000-R00000-B00000-GP0000-000000-000000-000000 4Towers/1112 1 move(p,g,0) +G00000-R00000-P00000-YB0000-000000-000000-000000 4Towers/1112 R00000-YB0000-GP0000-000000-000000-000000-000000 3Towers/122 1 move(p,g,0) +B00000-G00000-R00000-PY0000-000000-000000-000000 4Towers/1112 Y00000-P00000-B00000-R00000-G00000-000000-000000 5Towers/11111 1 move(y,table,0) diff --git a/blocks/task5/maps/level1/input_img/0.jpg b/blocks/task5/maps/level1/input_img/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..262fa55281c1e9e938cb4364264d1038f7534627 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bd78fdad99831bdaffabbda270518ab74f1e5a94add15385b64471f8f972ce4 +size 10297 diff --git a/blocks/task5/maps/level1/input_img/1.jpg b/blocks/task5/maps/level1/input_img/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7885d12fb4a2a37e92bc839fcb6158e3425e1ff4 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149b8fbb3deac43a9f5c73a788bcd8063e5472bf512953160e9f2d540dfb7312 +size 10266 diff --git a/blocks/task5/maps/level1/input_img/10.jpg b/blocks/task5/maps/level1/input_img/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18643afccd1eab5c8d3e1d4697a0c00444b5f22d --- /dev/null +++ b/blocks/task5/maps/level1/input_img/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b08ca8f90da9284fd4705b7cb8790fd31d002f9cf72e66af9d7cef98949069 +size 11039 diff --git a/blocks/task5/maps/level1/input_img/11.jpg b/blocks/task5/maps/level1/input_img/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa1dceef68db42332ce7b6063895ec32e9eb11fb --- /dev/null +++ b/blocks/task5/maps/level1/input_img/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ccf42563b2e534e9223731f03ef842cf8ca7dafff01ada0cf129670e5267c47 +size 11126 diff --git a/blocks/task5/maps/level1/input_img/12.jpg b/blocks/task5/maps/level1/input_img/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5a8ff517e9abea6f33bcfd4f5845cf8488e3b6b --- /dev/null +++ b/blocks/task5/maps/level1/input_img/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a0902b2490e99fe475a3fe7ceb583ee4203b356275f6d7daef6976e12a4fcd +size 10732 diff --git a/blocks/task5/maps/level1/input_img/13.jpg b/blocks/task5/maps/level1/input_img/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a221110c43ec29e75e146729a432be30679a1aa7 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59dde66e8516927b34f593bd4489716e3af1e1380527bd8f37cd806e2f7f4e2c +size 11187 diff --git a/blocks/task5/maps/level1/input_img/14.jpg b/blocks/task5/maps/level1/input_img/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87072fee971f4fa68e9b381940b1bedb656f4f92 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03208d582c6d52bab3204d82aa78c649a36b1403515087cf5430a39d8ecbe2b7 +size 9825 diff --git a/blocks/task5/maps/level1/input_img/15.jpg b/blocks/task5/maps/level1/input_img/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e5c4da1101128db101243f0debe27d540c178ec --- /dev/null +++ b/blocks/task5/maps/level1/input_img/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4a8413d28cc4929f56b31e7074c696583505281d535464b2e1eb9e759fdd41 +size 10159 diff --git a/blocks/task5/maps/level1/input_img/16.jpg b/blocks/task5/maps/level1/input_img/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6413e1571e491ba215769a060ab5ceb58ae991c --- /dev/null +++ b/blocks/task5/maps/level1/input_img/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af23eaa3394c2cb9546823eabed5ddd335be6c9c4e1a9e8696cfc335f915624b +size 11067 diff --git a/blocks/task5/maps/level1/input_img/17.jpg b/blocks/task5/maps/level1/input_img/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06d7d1b258a0d25f8bea75b068626c82624e0d03 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9042c9207df52b9e6db8bdc09797b273706b0b8088f9389f09f31c64382647e9 +size 11671 diff --git a/blocks/task5/maps/level1/input_img/18.jpg b/blocks/task5/maps/level1/input_img/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c56f6aa6bfc3d666461284137ddb780e76b64f12 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6795ebba0504dd3b50a3c25dc6756c33403f75949a32cd45c761b469371c638 +size 11371 diff --git a/blocks/task5/maps/level1/input_img/19.jpg b/blocks/task5/maps/level1/input_img/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69ac1a1ff5462379e77a178fc8c0fbb67063bb18 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc61952bfd86abe9c0c720316e1065d7f3821c146d278ea2ed350531c94aabf6 +size 11358 diff --git a/blocks/task5/maps/level1/input_img/2.jpg b/blocks/task5/maps/level1/input_img/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29977b3d71d1517620b2ca3d6114e2671b53d5ce --- /dev/null +++ b/blocks/task5/maps/level1/input_img/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4535c05c3209d97fb6bbccec1341fde9838bdc37d9bdd75bd6a2dd151f5260db +size 11221 diff --git a/blocks/task5/maps/level1/input_img/20.jpg b/blocks/task5/maps/level1/input_img/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71d7844366e7656541f8b1c68bbd34c84bb7e556 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44671f36debca346d67dec6408d80105a4eb1d1c4a72af016773490bdf02243 +size 11579 diff --git a/blocks/task5/maps/level1/input_img/21.jpg b/blocks/task5/maps/level1/input_img/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a84e2a45918ce4116f2ded653ef603a39876b36 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a82ac04c746e1401502e08256401433a88c071a9b77708bc1a745e23a21cbb +size 10127 diff --git a/blocks/task5/maps/level1/input_img/22.jpg b/blocks/task5/maps/level1/input_img/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ec724aa1dede75cec6214a313e9d613304ba43f --- /dev/null +++ b/blocks/task5/maps/level1/input_img/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3089008b1549fbe1fa1b3090addb973d5f9137589768ab114985a537ee4687 +size 10970 diff --git a/blocks/task5/maps/level1/input_img/23.jpg b/blocks/task5/maps/level1/input_img/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bec2073766dd26753397aa40b585a04ea55c7d9a --- /dev/null +++ b/blocks/task5/maps/level1/input_img/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065c533d356e8572e8c9c8d7b1e76c479320baac16d955e17cc092942e81a17a +size 11152 diff --git a/blocks/task5/maps/level1/input_img/24.jpg b/blocks/task5/maps/level1/input_img/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b53def4dc082b001e4a0242b74d5f103153c4523 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7211b70b4b68be10e7d7206a651a6a6aa277207facbcd811dd8c047f37c9c4e4 +size 11145 diff --git a/blocks/task5/maps/level1/input_img/25.jpg b/blocks/task5/maps/level1/input_img/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e085a07ecd642a8bf07ff1b2617d395670dfbaa --- /dev/null +++ b/blocks/task5/maps/level1/input_img/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757443042e5406466702dde9f0d23f72b0cabbf30926f9e57d7a66cf48f4a07f +size 11117 diff --git a/blocks/task5/maps/level1/input_img/26.jpg b/blocks/task5/maps/level1/input_img/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..732bece7ed1acda52a51bc22fc35feb5799d252c --- /dev/null +++ b/blocks/task5/maps/level1/input_img/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43d8f38b21b7345f50b99bafd8562b321c467c420539b4d1ebb08e4a6cf9e2b +size 10565 diff --git a/blocks/task5/maps/level1/input_img/27.jpg b/blocks/task5/maps/level1/input_img/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3acf274ad4696e8e99e0899b22cd157ebf0577ee --- /dev/null +++ b/blocks/task5/maps/level1/input_img/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366eb8897c35efcf8984150b4443999b262d05101fa60de644b1b2dc01bdea98 +size 10513 diff --git a/blocks/task5/maps/level1/input_img/28.jpg b/blocks/task5/maps/level1/input_img/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..940535afe197bbaff2161833a61d4c69f0f5046e --- /dev/null +++ b/blocks/task5/maps/level1/input_img/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a065954e949b18526df0b5200ea082a2bfb872ad4f891c2de492ec7f261f96e +size 11068 diff --git a/blocks/task5/maps/level1/input_img/29.jpg b/blocks/task5/maps/level1/input_img/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf045344c0d744d3fbca37a54590a3a4fca4d10d --- /dev/null +++ b/blocks/task5/maps/level1/input_img/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82a9180a9eb25d05279723dad34ccef850d64fed9c8efddd42e492f9ac5bf9a +size 10401 diff --git a/blocks/task5/maps/level1/input_img/3.jpg b/blocks/task5/maps/level1/input_img/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2f2335ba1980ad72b498c36304df023cb880aae --- /dev/null +++ b/blocks/task5/maps/level1/input_img/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08e6b2b29895fae0bc0ca837b4f073fae2fa11e076a57aa4a5a600f2f9dd1e2 +size 11276 diff --git a/blocks/task5/maps/level1/input_img/30.jpg b/blocks/task5/maps/level1/input_img/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3623389c3d9dd9bb93f4fbf5acc7ef37e67fe447 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d5f66343a098a77b96e8b692f1c04301f7ababbec7721e882ad4c12e78f6e8 +size 11093 diff --git a/blocks/task5/maps/level1/input_img/31.jpg b/blocks/task5/maps/level1/input_img/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aeb69f9c2ab616f002a82701857add5108198ed0 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffde6377e75549fc20c964a3d07cf8b33055a8742461dc19e5ad1ba02b52310 +size 11131 diff --git a/blocks/task5/maps/level1/input_img/32.jpg b/blocks/task5/maps/level1/input_img/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8661a82f945cf9c77bbdfd90e79c85b3d6e6117e --- /dev/null +++ b/blocks/task5/maps/level1/input_img/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d318d441e0c030b9db57321c1b2c1edf7470b3f55f740120c5be30c54629c5c +size 10320 diff --git a/blocks/task5/maps/level1/input_img/33.jpg b/blocks/task5/maps/level1/input_img/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e274b2095386265864dba8f9a1d687bc00d02bf --- /dev/null +++ b/blocks/task5/maps/level1/input_img/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1d83146686afde7b1b1adf9dd7053327c5936044ef37c3c62ea6652426e722 +size 10903 diff --git a/blocks/task5/maps/level1/input_img/34.jpg b/blocks/task5/maps/level1/input_img/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35730bb887af68a957e64339be3d351af7bb7228 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfb0ec58609d24a645a5131fe0e34d3e4dfc4f0dc0c04fda816bc7773873bde +size 11098 diff --git a/blocks/task5/maps/level1/input_img/35.jpg b/blocks/task5/maps/level1/input_img/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cea62bba18d2ee7152597c6fe424fc40eb180c11 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d9b621a5a4b2f890f3bdffc8d7d290bacfdbe7eaf48543d74cc5dfc583126c +size 10787 diff --git a/blocks/task5/maps/level1/input_img/36.jpg b/blocks/task5/maps/level1/input_img/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7d0fa624cf9609352f789f1621d9d16ff179353 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dffac788bba4f6f47b277f633078f984583a24ab601dd66e80ff47e255c3f14 +size 10637 diff --git a/blocks/task5/maps/level1/input_img/37.jpg b/blocks/task5/maps/level1/input_img/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e3f858c9afbe41c344d2c06cf1a4b98c4761f67 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9626e7c5f6e45783c42682ad7c16ef9faaa15980bab5cd4ce1cc4799b919a22f +size 10857 diff --git a/blocks/task5/maps/level1/input_img/38.jpg b/blocks/task5/maps/level1/input_img/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d2a130f8b611b1d912c9e8e0b05e442c81dace1 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2ef68d2f887c7a0ab931cc1f95c1c686d3eaae3ef4c8362413da3f8eea9198 +size 10627 diff --git a/blocks/task5/maps/level1/input_img/39.jpg b/blocks/task5/maps/level1/input_img/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8384ee4d334524c30ebae088949b8a06c60a5247 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4d03005dce66f51d2e9f0f0c2c235cd220bbd057315a2fae3b30b2b68dbc17 +size 11289 diff --git a/blocks/task5/maps/level1/input_img/4.jpg b/blocks/task5/maps/level1/input_img/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e89d527c92f6ddc1dffdded9425dbef96e35cbec --- /dev/null +++ b/blocks/task5/maps/level1/input_img/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc636e58df1d8473a2d56826937c6fe76af7ec39b6d4e7a7e09deaef3b8d7aeb +size 10834 diff --git a/blocks/task5/maps/level1/input_img/40.jpg b/blocks/task5/maps/level1/input_img/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5607f093c0f16abb81ee6d826ca6c9674414f27a --- /dev/null +++ b/blocks/task5/maps/level1/input_img/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1443a9ef6b28331197a6726c8b07c4778f7312dd0b6de8f97fd307637591aa00 +size 11610 diff --git a/blocks/task5/maps/level1/input_img/41.jpg b/blocks/task5/maps/level1/input_img/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7af5ad34b6f5ae0ccb3bceed211cf1f061b13931 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1479e737bf59c52b585c22c18fd95b53ebd17ee5e39427b06d4abe20fcf1b688 +size 11714 diff --git a/blocks/task5/maps/level1/input_img/42.jpg b/blocks/task5/maps/level1/input_img/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..372d889ac6a197f0f614670ffbe37c60dcc13986 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:561450ddf1c9dee57974ef15d1bcde1b7746c40c0f4f24b453239cb7e0c204ee +size 10826 diff --git a/blocks/task5/maps/level1/input_img/43.jpg b/blocks/task5/maps/level1/input_img/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d435b196f5b29f46bcb2e2265b3a05da10cc480a --- /dev/null +++ b/blocks/task5/maps/level1/input_img/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49592c37363d4bc311b28807e5d13c746118f008478b5046f272f6a85d6e841f +size 12882 diff --git a/blocks/task5/maps/level1/input_img/44.jpg b/blocks/task5/maps/level1/input_img/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e69f75df06fd7d0e8f7f8fd5f255ecab2cf7c647 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa3f205064e8570d8ed957f6d380e77ff8e0206af27f328170d4780e1234371 +size 11924 diff --git a/blocks/task5/maps/level1/input_img/45.jpg b/blocks/task5/maps/level1/input_img/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd6fe43d67362f0b89da952f8945eff627f7d6da --- /dev/null +++ b/blocks/task5/maps/level1/input_img/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c464ffd29f15842cbf7413a778bf2f5af903bfc13da5277adb4ffe2b0cedb8 +size 11470 diff --git a/blocks/task5/maps/level1/input_img/46.jpg b/blocks/task5/maps/level1/input_img/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec9692fdfbf6aaf559eb2d02fe026a9aa9acb78c --- /dev/null +++ b/blocks/task5/maps/level1/input_img/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8cc7531b5d30cc7116550aecdc24f6efb4fe3307dfcb4baa71733174068d60 +size 11340 diff --git a/blocks/task5/maps/level1/input_img/47.jpg b/blocks/task5/maps/level1/input_img/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41c7d647abe7185b11f96b7376aa3440986492b6 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6edd702f1b676172d7acea57ba553ab00423f817982fdd88ac44103bb989759d +size 10146 diff --git a/blocks/task5/maps/level1/input_img/48.jpg b/blocks/task5/maps/level1/input_img/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c364e09c79c686de5b7c53bda08a00c2564fa1b0 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b084e92acfc2d6ba94b358485497aa281d62e08b29228e41dce15ab44f5ff6e +size 11355 diff --git a/blocks/task5/maps/level1/input_img/49.jpg b/blocks/task5/maps/level1/input_img/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df3434f8d940b0b3c4d28c2e35ec4fed6f43376c --- /dev/null +++ b/blocks/task5/maps/level1/input_img/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ca10a9f2c506c1cf0bfeaf43dbf6b765e379378105bb339e5f78a51a04fb73 +size 11421 diff --git a/blocks/task5/maps/level1/input_img/5.jpg b/blocks/task5/maps/level1/input_img/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c2715c33dd918f0d054d549247bbf66ddbb47b6 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20847100c036b4fe370e455e98e5efe0dfca757c811e421ecc8ce1024fe2273d +size 10363 diff --git a/blocks/task5/maps/level1/input_img/50.jpg b/blocks/task5/maps/level1/input_img/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6744586e71048a8f1d19fa9f513b8ed70980497 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33865153a4ee5b45d811132bc6bb763c6d7a7a624aaaf037ec71b81e1acc622e +size 11454 diff --git a/blocks/task5/maps/level1/input_img/51.jpg b/blocks/task5/maps/level1/input_img/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d13212707111f70fdea3bfbb6e6228822be82fa3 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a29264f8c7e2d281bfd16d13701534eff350a158073323d51be7e156a222dc50 +size 10812 diff --git a/blocks/task5/maps/level1/input_img/52.jpg b/blocks/task5/maps/level1/input_img/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dff7bb36d0705ac4ee743dcf7dcb8fb3db0852f --- /dev/null +++ b/blocks/task5/maps/level1/input_img/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d412d8d0b5724cb9357766018d39d89be187c1c9815e4572793c5aaa3919e6f +size 10171 diff --git a/blocks/task5/maps/level1/input_img/53.jpg b/blocks/task5/maps/level1/input_img/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58c9e23d87264e364ad7135c31c4e196979d33e0 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:004fe7a970ca88cb361db05a0d00ae8b2c2bbb28ec6b59f007fe2d0af6bb9878 +size 11389 diff --git a/blocks/task5/maps/level1/input_img/54.jpg b/blocks/task5/maps/level1/input_img/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a167592d3afc4ff32787c241dd619fd4e141e05 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc0a0dab1f1cf6685106a08b63c42ea966a255f40779c464fd078b4daca99fd +size 11376 diff --git a/blocks/task5/maps/level1/input_img/55.jpg b/blocks/task5/maps/level1/input_img/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d0416738d77d4d8761eca874b78e2507c25a3bb --- /dev/null +++ b/blocks/task5/maps/level1/input_img/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9851b6b3449109779537ca61e695139086ef42241af068f6437459b9e2f2f2 +size 10994 diff --git a/blocks/task5/maps/level1/input_img/56.jpg b/blocks/task5/maps/level1/input_img/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e6d79596c9bb74fd079ba282b8f7b2dea690d01 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5abe420e2dbeb667752bd448c6c6d74bef3b89b3abe26efc4323af79aadc66e5 +size 11294 diff --git a/blocks/task5/maps/level1/input_img/57.jpg b/blocks/task5/maps/level1/input_img/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84f28f3dd65310b3a2d6f783158109eed0b7a695 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b318f6644e41e89d1a0d91e46527c33c16c8e787fd0863c474fbffb4daf8a7 +size 10526 diff --git a/blocks/task5/maps/level1/input_img/58.jpg b/blocks/task5/maps/level1/input_img/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95adb62a28907bfc5a3656f0494982116114bf33 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b68c76bc12330a61a5096e20a4316f155cafefd7997207878293ce06ad1bac +size 11180 diff --git a/blocks/task5/maps/level1/input_img/59.jpg b/blocks/task5/maps/level1/input_img/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..136aca0fdb3fa2b1991ac60eced29cc99bd41b4f --- /dev/null +++ b/blocks/task5/maps/level1/input_img/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e2dd56fdc7ac24d04fef9bf190ba512769ab418766d53de19b6e9828dc9e68 +size 11945 diff --git a/blocks/task5/maps/level1/input_img/6.jpg b/blocks/task5/maps/level1/input_img/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43653184b0ae6a4be066f503d74fb3f27cf8be55 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b2e887d8bb67f9f51e6ecfc5d79a693e8e4e749dd6e1a970c2a921266b5701 +size 11093 diff --git a/blocks/task5/maps/level1/input_img/60.jpg b/blocks/task5/maps/level1/input_img/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f1232cae2df016a2c892f67dd770b05cd6e4e51 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fee1c12e62234fbea0d0853f6447e1fe29b3168de6b2dfe25632d59661563b +size 11982 diff --git a/blocks/task5/maps/level1/input_img/61.jpg b/blocks/task5/maps/level1/input_img/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b32de8c0f229e5f5ee3195100c008a396d95f4a --- /dev/null +++ b/blocks/task5/maps/level1/input_img/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6bd26ac7ef9ea9a0c4fec58c06f2b41da9fe638eaed2a6d135d48742e066ad +size 10872 diff --git a/blocks/task5/maps/level1/input_img/62.jpg b/blocks/task5/maps/level1/input_img/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d17162b9983c764bdfa07bdbba212c0fe8be7e8b --- /dev/null +++ b/blocks/task5/maps/level1/input_img/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b34978f5d649922d60eb6f728e5cca171124dc1a96944b95c40d664724278fed +size 10362 diff --git a/blocks/task5/maps/level1/input_img/63.jpg b/blocks/task5/maps/level1/input_img/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8669ff6237702b5942c5182bb445a2e832cfb2db --- /dev/null +++ b/blocks/task5/maps/level1/input_img/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d175b9b6947b669c20e1a1f6241dc43b0d42e7f6f42a24879f5236049670e60d +size 11617 diff --git a/blocks/task5/maps/level1/input_img/64.jpg b/blocks/task5/maps/level1/input_img/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e95e80c45ca41a426b2152ab8915bad889ba092e --- /dev/null +++ b/blocks/task5/maps/level1/input_img/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3770367b17b309b2a0f3ef87bbf35765da67269c332d978a00e26715195e033f +size 11839 diff --git a/blocks/task5/maps/level1/input_img/65.jpg b/blocks/task5/maps/level1/input_img/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d0f8249f459e4682f233fcd1f99a41931c10f2f --- /dev/null +++ b/blocks/task5/maps/level1/input_img/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ad386f0029962ee1041bc66b646542fcc42790c206320832d9bdbcd1f678c6 +size 10973 diff --git a/blocks/task5/maps/level1/input_img/66.jpg b/blocks/task5/maps/level1/input_img/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbc2fea156bef2b75c967538a67c84483a28f8eb --- /dev/null +++ b/blocks/task5/maps/level1/input_img/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85d45696254c0b07a4fc53beb59677fb899927f3362cb9ab18bcdd81a53b77f +size 11263 diff --git a/blocks/task5/maps/level1/input_img/67.jpg b/blocks/task5/maps/level1/input_img/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6bed707460442eef9f97f3b73e2d80830ddd031 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69cea05c601254602f6d7ffa45b39583cf4e2a09860579934893085e0ebf472 +size 9890 diff --git a/blocks/task5/maps/level1/input_img/68.jpg b/blocks/task5/maps/level1/input_img/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19afef323f7daf5011b2eb1b59bd119a2730bdc4 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6bf6e39a905bd65cfcb347a0b372795f3172b5f12d519a6e5ce9a37836ed1d +size 11338 diff --git a/blocks/task5/maps/level1/input_img/69.jpg b/blocks/task5/maps/level1/input_img/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..863ff6d50a0142e8caee8473c983b11119f4d649 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5d6278d1b459e1534b52ac96064c4ad8396cfd2c9bf2d5835ff6d88d364ca3 +size 10175 diff --git a/blocks/task5/maps/level1/input_img/7.jpg b/blocks/task5/maps/level1/input_img/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa8f816168c643c5d103fb4842e33e3770408418 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28ee9d55ac863d7e96ccb6cd26ddb753ecc8ee98f6db0e17876bca05caf5551 +size 10731 diff --git a/blocks/task5/maps/level1/input_img/70.jpg b/blocks/task5/maps/level1/input_img/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79518fc1cbe3db759f7236d5c6d6e043a9f3b16d --- /dev/null +++ b/blocks/task5/maps/level1/input_img/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd192188963538d0611a16bc5bebb040451467ffa32ad30b1b6e0baf06fbd8f +size 9762 diff --git a/blocks/task5/maps/level1/input_img/71.jpg b/blocks/task5/maps/level1/input_img/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e019e15615321316d1600e809a720f93582e7d06 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c200774da07c0ca93b31916d71d33714cd373121214f5a4d1d1c3bf87aaba1 +size 10546 diff --git a/blocks/task5/maps/level1/input_img/72.jpg b/blocks/task5/maps/level1/input_img/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a46c262aa72a826b27f76371a62c1394f5703520 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3c296787b27b708b2a5ea1c649f345aad053801968c9272cfd5a00cdfb62ae +size 11108 diff --git a/blocks/task5/maps/level1/input_img/73.jpg b/blocks/task5/maps/level1/input_img/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c8947b3a0f216e60391c1e9c8dc7fd1eec53cc5 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b954be343545e48b37e735fabf3e5672b57029aa4cb87c3cfb88c90d5883cd4e +size 10011 diff --git a/blocks/task5/maps/level1/input_img/74.jpg b/blocks/task5/maps/level1/input_img/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..940535afe197bbaff2161833a61d4c69f0f5046e --- /dev/null +++ b/blocks/task5/maps/level1/input_img/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a065954e949b18526df0b5200ea082a2bfb872ad4f891c2de492ec7f261f96e +size 11068 diff --git a/blocks/task5/maps/level1/input_img/75.jpg b/blocks/task5/maps/level1/input_img/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be12ca1a38a9819d8fb89af13ed4c7ae0f18cd63 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00aebc87a3895eb524a74f6410336862fbc9c40457449e9d73feefb6e094fb23 +size 10576 diff --git a/blocks/task5/maps/level1/input_img/76.jpg b/blocks/task5/maps/level1/input_img/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..859567fbd30fe3d01162dc2cd3d0698ce3eb8476 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f81ad684c69088f7ed5efeb7eefd55195af61bd2b66318fefc585be4758ded +size 10656 diff --git a/blocks/task5/maps/level1/input_img/77.jpg b/blocks/task5/maps/level1/input_img/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41c7d647abe7185b11f96b7376aa3440986492b6 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6edd702f1b676172d7acea57ba553ab00423f817982fdd88ac44103bb989759d +size 10146 diff --git a/blocks/task5/maps/level1/input_img/78.jpg b/blocks/task5/maps/level1/input_img/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48dbd6aca87949f3be262012b9efe90eaae49ef9 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b690740be2413601f6ee507b7d6cdac1cd3c8fe9313d1185451f6410ccc995e +size 10840 diff --git a/blocks/task5/maps/level1/input_img/79.jpg b/blocks/task5/maps/level1/input_img/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebf24652175f1952173679cc20e09cfeee1457ad --- /dev/null +++ b/blocks/task5/maps/level1/input_img/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389536bad0d23d3fc7a1cd69f8914605b23b0f558d3723b5a9e3fd8084eff215 +size 9658 diff --git a/blocks/task5/maps/level1/input_img/8.jpg b/blocks/task5/maps/level1/input_img/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..068054de1ebb084c1f2cfff5558dcaa6e52ba62d --- /dev/null +++ b/blocks/task5/maps/level1/input_img/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94e0a1aa43c5212046caba3b65f24563c3d3606f797da0cebec9eabc85b9d7c7 +size 10392 diff --git a/blocks/task5/maps/level1/input_img/80.jpg b/blocks/task5/maps/level1/input_img/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbfe29f28cc1237d0a6776ca1abd8c4b68d2b506 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d19bc9717a11cc07df5c308b6cbd129c4c1695f83c80a9172689e9ac222e3b4 +size 10815 diff --git a/blocks/task5/maps/level1/input_img/81.jpg b/blocks/task5/maps/level1/input_img/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..590390389d73e37cd55d7e956d6cb639bcfda530 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93d40cd2d227bccbda7d5625c6d6b541998d70587325865e2e48d79643266cb +size 9949 diff --git a/blocks/task5/maps/level1/input_img/82.jpg b/blocks/task5/maps/level1/input_img/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38ec1266dd2f73781125027b8cf2c4688d308748 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd75e4089eed0056925bb93021b6553dea9458dd4eba27a98ed971ffe9ffeee2 +size 10658 diff --git a/blocks/task5/maps/level1/input_img/83.jpg b/blocks/task5/maps/level1/input_img/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fa49d6a443024fb6fb20bae736938d2876acb2f --- /dev/null +++ b/blocks/task5/maps/level1/input_img/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a5f6ea0f094ec24102659f4261e1b8936ded6482aabe60281005e7c1844df1 +size 11625 diff --git a/blocks/task5/maps/level1/input_img/84.jpg b/blocks/task5/maps/level1/input_img/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..079f9c024775d2f1018b701ed6338a7a2f55a478 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:807225a96278051ee682a92236917a6694627a8c08fd03a78540b3b7391a6fea +size 11758 diff --git a/blocks/task5/maps/level1/input_img/85.jpg b/blocks/task5/maps/level1/input_img/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca9bd439600ab06f62768383f0ac222c682253c7 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e41cb351ab4e5cd0a7c848ee3c00509f63b1a4f49d9ffd2ada8f9747192faf1 +size 10263 diff --git a/blocks/task5/maps/level1/input_img/86.jpg b/blocks/task5/maps/level1/input_img/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1874dc00cd21edd83a73713a29d9f4b4aa55c534 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18e47593d8ace017cc2066ba9abe38e5f7c83e4239ffa0530c82203527fbfa55 +size 11362 diff --git a/blocks/task5/maps/level1/input_img/87.jpg b/blocks/task5/maps/level1/input_img/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7b7fb2cce84aeddbd8a3b9764f672ec6aead369 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0ee574ecfc6401d3d0a8bae4dab65e3afd83679faff6e08ca2dbb542c6545d +size 9921 diff --git a/blocks/task5/maps/level1/input_img/88.jpg b/blocks/task5/maps/level1/input_img/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddee90a44a21db9b623f5a7c3c68009f3fbf97a8 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7e7c75b48d1015126b537d75dee60b4edff4894e40cf16f1440e86119bb84a +size 11428 diff --git a/blocks/task5/maps/level1/input_img/89.jpg b/blocks/task5/maps/level1/input_img/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d5de237bada0e30479ba217033c03e316a95a43 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933c354a1c6f30eb3ffcf080cc09cc5c2e1b811018332215208c367e959510dd +size 11559 diff --git a/blocks/task5/maps/level1/input_img/9.jpg b/blocks/task5/maps/level1/input_img/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0bd3ed64e7a696befbfb0e3ab4d02f98a72a6d4 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525aade3a8fea5fd5297fba39170a2d5249184ee4cb24d202aa94c0b84d9ca54 +size 9962 diff --git a/blocks/task5/maps/level1/input_img/90.jpg b/blocks/task5/maps/level1/input_img/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62bc66d685f3af6fe5a0036753ac6fb8f28de24c --- /dev/null +++ b/blocks/task5/maps/level1/input_img/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c234eab89c2b6426a08a499005a3e448b46268bc437285844da2ba6ec5b98e2d +size 11815 diff --git a/blocks/task5/maps/level1/input_img/91.jpg b/blocks/task5/maps/level1/input_img/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c8947b3a0f216e60391c1e9c8dc7fd1eec53cc5 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b954be343545e48b37e735fabf3e5672b57029aa4cb87c3cfb88c90d5883cd4e +size 10011 diff --git a/blocks/task5/maps/level1/input_img/92.jpg b/blocks/task5/maps/level1/input_img/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3628b32ec733a094dee528a76993375c4589daf6 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43647e0710bb3cc49f2155321ef3d497dce51abc7cb8fae5ce9d25c17dde908 +size 11144 diff --git a/blocks/task5/maps/level1/input_img/93.jpg b/blocks/task5/maps/level1/input_img/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af59638598b2204e7de04b2c1f3779635865a9cb --- /dev/null +++ b/blocks/task5/maps/level1/input_img/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f85f098e859221eea3173e8e5e82149968a217adc24d92fde7ca7edd089110 +size 11566 diff --git a/blocks/task5/maps/level1/input_img/94.jpg b/blocks/task5/maps/level1/input_img/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..145ee78962a08cd6d133d520fc10f78022089ac9 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1cc21f3d7b4a45a37c955464cef521ad656fffd111aa482d8aa1e05740c6196 +size 10458 diff --git a/blocks/task5/maps/level1/input_img/95.jpg b/blocks/task5/maps/level1/input_img/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bc7f8b6becb0a4e1afd76f4a8dde84cd066ff75 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbce9bd2f7704759b0ec0e6d131d6380c7bccfa8073bd648b3f12aa7bb8e8418 +size 10986 diff --git a/blocks/task5/maps/level1/input_img/96.jpg b/blocks/task5/maps/level1/input_img/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0de6fe578265952d72cb2869219c05bb26be0793 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2363f1a31796881a93a334162e2ae21ee171bbe57b05ed7bd6948bc218c80c92 +size 10081 diff --git a/blocks/task5/maps/level1/input_img/97.jpg b/blocks/task5/maps/level1/input_img/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7d152f4217d98a053ac509dfc043562d6a498ee --- /dev/null +++ b/blocks/task5/maps/level1/input_img/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4679dc84010bb0249570457108657dd9a37f2fa374551c5723b4906ddb7f08d7 +size 11060 diff --git a/blocks/task5/maps/level1/input_img/98.jpg b/blocks/task5/maps/level1/input_img/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7d9f8f6659ceca5f6fdf3604acfff4681500563 --- /dev/null +++ b/blocks/task5/maps/level1/input_img/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3ba95a4225e7d145a7aa4a84e40b6bb283c851b96840ab0be1aa8556112fe5e +size 11445 diff --git a/blocks/task5/maps/level1/input_img/99.jpg b/blocks/task5/maps/level1/input_img/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ef878b18e99492bcea59b046cbc7befbc8b275e --- /dev/null +++ b/blocks/task5/maps/level1/input_img/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8654d74728e7be253d17fe2e3ba665306d1380bc4c01dff73136696f32e94c33 +size 10324 diff --git a/blocks/task5/maps/level1/input_table/0.txt b/blocks/task5/maps/level1/input_table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1455c3803db154a9ea8269a2a92e566711a42e0e --- /dev/null +++ b/blocks/task5/maps/level1/input_table/0.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | purple | blue | orange | diff --git a/blocks/task5/maps/level1/input_table/1.txt b/blocks/task5/maps/level1/input_table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c14bcf04945c846858eb5bfd501cbf36aa43b02b --- /dev/null +++ b/blocks/task5/maps/level1/input_table/1.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | red | +Level 1 | blue | purple | green | diff --git a/blocks/task5/maps/level1/input_table/10.txt b/blocks/task5/maps/level1/input_table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1ad2f3c818911bdf0aa7ae9ac0f10d2c60cab4d --- /dev/null +++ b/blocks/task5/maps/level1/input_table/10.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | yellow | orange | blue | diff --git a/blocks/task5/maps/level1/input_table/11.txt b/blocks/task5/maps/level1/input_table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a252ab61dedd9f6ef56b4f0ef6ec62d14a168db --- /dev/null +++ b/blocks/task5/maps/level1/input_table/11.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | orange | yellow | purple | green | diff --git a/blocks/task5/maps/level1/input_table/12.txt b/blocks/task5/maps/level1/input_table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..48557a24c3d33411997e82de50c7dd5b1ba05870 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/12.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | green | +Level 1 | yellow | red | orange | diff --git a/blocks/task5/maps/level1/input_table/13.txt b/blocks/task5/maps/level1/input_table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cd8a7f79a61b38c2916492581abcde6d9762c01 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/13.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | purple | orange | red | yellow | diff --git a/blocks/task5/maps/level1/input_table/14.txt b/blocks/task5/maps/level1/input_table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b6a9148b63024b463499c7834c121c142fc18ee --- /dev/null +++ b/blocks/task5/maps/level1/input_table/14.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | purple | red | +Level 1 | yellow | blue | diff --git a/blocks/task5/maps/level1/input_table/15.txt b/blocks/task5/maps/level1/input_table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e6fb29beccd1360d9a29c4487b29aff3abab415 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/15.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | blue | yellow | green | red | diff --git a/blocks/task5/maps/level1/input_table/16.txt b/blocks/task5/maps/level1/input_table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..8097488879dce45d8775c8dae176e8829f21498c --- /dev/null +++ b/blocks/task5/maps/level1/input_table/16.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | red | green | purple | orange | diff --git a/blocks/task5/maps/level1/input_table/17.txt b/blocks/task5/maps/level1/input_table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..677be9b750e8110aac91fbc90f1dcf4360f49406 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/17.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | green | yellow | orange | blue | diff --git a/blocks/task5/maps/level1/input_table/18.txt b/blocks/task5/maps/level1/input_table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d0cf0405382a5d5fa07c1bbafedecf7d6f4199f --- /dev/null +++ b/blocks/task5/maps/level1/input_table/18.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | green | purple | blue | diff --git a/blocks/task5/maps/level1/input_table/19.txt b/blocks/task5/maps/level1/input_table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..16d177ab0e92c88dd5339f235b653fd3d70e464f --- /dev/null +++ b/blocks/task5/maps/level1/input_table/19.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | blue | purple | red | yellow | diff --git a/blocks/task5/maps/level1/input_table/2.txt b/blocks/task5/maps/level1/input_table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..490d18fa8a249ffe3935b5ecf758fe7c884433dd --- /dev/null +++ b/blocks/task5/maps/level1/input_table/2.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | purple | orange | green | diff --git a/blocks/task5/maps/level1/input_table/20.txt b/blocks/task5/maps/level1/input_table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..d349e7b6a9760677f7f0826a0740940b2051779f --- /dev/null +++ b/blocks/task5/maps/level1/input_table/20.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | green | blue | red | orange | diff --git a/blocks/task5/maps/level1/input_table/21.txt b/blocks/task5/maps/level1/input_table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d436420f5af58d2ff12e3bb83cbda9f5c624021 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/21.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | green | orange | purple | diff --git a/blocks/task5/maps/level1/input_table/22.txt b/blocks/task5/maps/level1/input_table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..95eb8f75ad315c5793b50dab78743ce6934d539e --- /dev/null +++ b/blocks/task5/maps/level1/input_table/22.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | purple | yellow | blue | orange | diff --git a/blocks/task5/maps/level1/input_table/23.txt b/blocks/task5/maps/level1/input_table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d29e677335c4f016c8d6e3679d5810b38bdabc5 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/23.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | orange | purple | red | green | diff --git a/blocks/task5/maps/level1/input_table/24.txt b/blocks/task5/maps/level1/input_table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..354629189f4b4330b552aeb79566cd5ab0bfbe58 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/24.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | orange | purple | yellow | green | diff --git a/blocks/task5/maps/level1/input_table/25.txt b/blocks/task5/maps/level1/input_table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e551722c58ed0a3539d36453e7602e388ec99c1 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/25.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | purple | orange | blue | red | diff --git a/blocks/task5/maps/level1/input_table/26.txt b/blocks/task5/maps/level1/input_table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8c820b21afb0912672c7a7a2100237c1aad42c1 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/26.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | purple | orange | red | blue | diff --git a/blocks/task5/maps/level1/input_table/27.txt b/blocks/task5/maps/level1/input_table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..caf173601886602f99e345ed18ef32be8f7e8f62 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/27.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | blue | purple | red | orange | diff --git a/blocks/task5/maps/level1/input_table/28.txt b/blocks/task5/maps/level1/input_table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..76184a5d6fc06be7bb23729f6c56b27387ad3d5f --- /dev/null +++ b/blocks/task5/maps/level1/input_table/28.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | orange | yellow | purple | blue | diff --git a/blocks/task5/maps/level1/input_table/29.txt b/blocks/task5/maps/level1/input_table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e31abae27833b44dc59f81da80a8ee611b08064 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/29.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | red | purple | blue | diff --git a/blocks/task5/maps/level1/input_table/3.txt b/blocks/task5/maps/level1/input_table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d1be8eba85d97bad17d64a96ba87cf02b56a393 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/3.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | purple | orange | blue | yellow | diff --git a/blocks/task5/maps/level1/input_table/30.txt b/blocks/task5/maps/level1/input_table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..24d5821c390d6a084f8e1e58565378b8e97abec2 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/30.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | green | orange | blue | yellow | diff --git a/blocks/task5/maps/level1/input_table/31.txt b/blocks/task5/maps/level1/input_table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..74a44c34fb5f1d68923360da3abc9847c74429a1 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/31.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | orange | green | yellow | diff --git a/blocks/task5/maps/level1/input_table/32.txt b/blocks/task5/maps/level1/input_table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..b86e5c3656fa608a27293085da58861f5b248593 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/32.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | red | +Level 1 | blue | green | yellow | diff --git a/blocks/task5/maps/level1/input_table/33.txt b/blocks/task5/maps/level1/input_table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b1f8e9d470320e811868ad6f948b8e083bf642b --- /dev/null +++ b/blocks/task5/maps/level1/input_table/33.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | orange | yellow | purple | green | diff --git a/blocks/task5/maps/level1/input_table/34.txt b/blocks/task5/maps/level1/input_table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6a730d174bb84c2db6822673c45a7ea11b6ac9c --- /dev/null +++ b/blocks/task5/maps/level1/input_table/34.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | purple | orange | yellow | red | diff --git a/blocks/task5/maps/level1/input_table/35.txt b/blocks/task5/maps/level1/input_table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..f981ec76ed0f98cf62c13fa19c26b8ad1672d604 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/35.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | yellow | blue | green | orange | diff --git a/blocks/task5/maps/level1/input_table/36.txt b/blocks/task5/maps/level1/input_table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..6af5e2ce199ae435661ad24c9beab003e6bd0b60 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/36.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | orange | purple | blue | diff --git a/blocks/task5/maps/level1/input_table/37.txt b/blocks/task5/maps/level1/input_table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5f04136544a67adfb49bd43424bb7d8fa37f41c --- /dev/null +++ b/blocks/task5/maps/level1/input_table/37.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | yellow | green | blue | purple | diff --git a/blocks/task5/maps/level1/input_table/38.txt b/blocks/task5/maps/level1/input_table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e4baa5cd345de438ae4d8bc4b248565a6993569 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/38.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | red | blue | purple | orange | diff --git a/blocks/task5/maps/level1/input_table/39.txt b/blocks/task5/maps/level1/input_table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..dece99fe7c833c541db6ffcaa4082e3831e1d647 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/39.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | green | red | blue | purple | diff --git a/blocks/task5/maps/level1/input_table/4.txt b/blocks/task5/maps/level1/input_table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c7d5096166601fb778031412e2805a9b228ef4f --- /dev/null +++ b/blocks/task5/maps/level1/input_table/4.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | red | yellow | green | blue | diff --git a/blocks/task5/maps/level1/input_table/40.txt b/blocks/task5/maps/level1/input_table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1c257aa9cf05314ff3e74a8d1c8e827358bc48a --- /dev/null +++ b/blocks/task5/maps/level1/input_table/40.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | yellow | orange | red | blue | diff --git a/blocks/task5/maps/level1/input_table/41.txt b/blocks/task5/maps/level1/input_table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..6597656e59e5c441dbe4cc2e6cd7fb0a239f1ece --- /dev/null +++ b/blocks/task5/maps/level1/input_table/41.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | orange | green | purple | blue | diff --git a/blocks/task5/maps/level1/input_table/42.txt b/blocks/task5/maps/level1/input_table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..517dab51b4385d4f725a7685b7c4b3ac15fe0a85 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/42.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | red | yellow | purple | diff --git a/blocks/task5/maps/level1/input_table/43.txt b/blocks/task5/maps/level1/input_table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..b52c6a44edc731024b5c234efb888b8ddf176aa4 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/43.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | red | green | blue | yellow | diff --git a/blocks/task5/maps/level1/input_table/44.txt b/blocks/task5/maps/level1/input_table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1643ac5a6ba768cb825531ca77252fce482ddf2 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/44.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | red | yellow | purple | green | diff --git a/blocks/task5/maps/level1/input_table/45.txt b/blocks/task5/maps/level1/input_table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..6002fb98da33a1871684b50eadc379312807a2a0 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/45.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | blue | orange | green | purple | diff --git a/blocks/task5/maps/level1/input_table/46.txt b/blocks/task5/maps/level1/input_table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..990eec454ae6a6be3807fbe9e5d5f92caff8aacc --- /dev/null +++ b/blocks/task5/maps/level1/input_table/46.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | green | blue | orange | yellow | diff --git a/blocks/task5/maps/level1/input_table/47.txt b/blocks/task5/maps/level1/input_table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dccee9d90897c06fe0d7637cdf1bc3c16359bcf --- /dev/null +++ b/blocks/task5/maps/level1/input_table/47.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | green | purple | orange | diff --git a/blocks/task5/maps/level1/input_table/48.txt b/blocks/task5/maps/level1/input_table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..da735f20d85a06dbafbeaafe155a643273bd5344 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/48.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | blue | +Level 1 | orange | purple | yellow | diff --git a/blocks/task5/maps/level1/input_table/49.txt b/blocks/task5/maps/level1/input_table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d908fa62ae84bfd77a4ace05185a3b45861f9ce --- /dev/null +++ b/blocks/task5/maps/level1/input_table/49.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | green | +Level 2 | | red | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level1/input_table/5.txt b/blocks/task5/maps/level1/input_table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..90a00ce85d8c4b932900828b4656bdadc0cac1c5 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/5.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | blue | green | orange | purple | diff --git a/blocks/task5/maps/level1/input_table/50.txt b/blocks/task5/maps/level1/input_table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..1509f14ef458b21320b0d04e1f332cf3cfb1ebb1 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/50.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | blue | purple | green | orange | diff --git a/blocks/task5/maps/level1/input_table/51.txt b/blocks/task5/maps/level1/input_table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd10277b03b5a3a9614ac124233c3813f116f965 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/51.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | yellow | +Level 1 | purple | blue | green | diff --git a/blocks/task5/maps/level1/input_table/52.txt b/blocks/task5/maps/level1/input_table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..958615a71ead2673d5fcef55eeacf3b4703f9d9e --- /dev/null +++ b/blocks/task5/maps/level1/input_table/52.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | green | purple | orange | diff --git a/blocks/task5/maps/level1/input_table/53.txt b/blocks/task5/maps/level1/input_table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..1250e53fab42abd4fceaaffd34253d1e3f9f6c31 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/53.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | blue | orange | red | green | diff --git a/blocks/task5/maps/level1/input_table/54.txt b/blocks/task5/maps/level1/input_table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dfbe5f547f3049ba3f5e1578a17e3d183fcc344 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/54.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | orange | yellow | green | red | diff --git a/blocks/task5/maps/level1/input_table/55.txt b/blocks/task5/maps/level1/input_table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6fea3b1689be8303d8307f9507b0143d9078bb3 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/55.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | purple | yellow | red | green | diff --git a/blocks/task5/maps/level1/input_table/56.txt b/blocks/task5/maps/level1/input_table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2b10479723a1d4be5ce6fec3432b36380ae03a --- /dev/null +++ b/blocks/task5/maps/level1/input_table/56.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | green | yellow | purple | red | diff --git a/blocks/task5/maps/level1/input_table/57.txt b/blocks/task5/maps/level1/input_table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0f3aa5d3089615393e87be1e4d518b5adeb966f --- /dev/null +++ b/blocks/task5/maps/level1/input_table/57.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | blue | +Level 1 | red | orange | yellow | diff --git a/blocks/task5/maps/level1/input_table/58.txt b/blocks/task5/maps/level1/input_table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe6746840e75edb25922d418174b8ec21e048020 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/58.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | purple | blue | orange | yellow | diff --git a/blocks/task5/maps/level1/input_table/59.txt b/blocks/task5/maps/level1/input_table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..48c28ad9fc21bc9b1c317dda58a68f6a9f55c899 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/59.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | orange | blue | red | green | diff --git a/blocks/task5/maps/level1/input_table/6.txt b/blocks/task5/maps/level1/input_table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..78992ab0f822d5b31b391c8f65ed60d32952cde2 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/6.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | green | orange | yellow | blue | diff --git a/blocks/task5/maps/level1/input_table/60.txt b/blocks/task5/maps/level1/input_table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a8007ae21c4edd0263e0cecd397efa9ad259725 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/60.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | green | yellow | purple | orange | diff --git a/blocks/task5/maps/level1/input_table/61.txt b/blocks/task5/maps/level1/input_table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdf38ae485b729674d2ecd1f784462054043f126 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/61.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | red | green | orange | purple | diff --git a/blocks/task5/maps/level1/input_table/62.txt b/blocks/task5/maps/level1/input_table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3e81665a638dc29be542ff27990d3a5aac2624a --- /dev/null +++ b/blocks/task5/maps/level1/input_table/62.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | green | +Level 1 | yellow | blue | purple | diff --git a/blocks/task5/maps/level1/input_table/63.txt b/blocks/task5/maps/level1/input_table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..7edd9ee8655835a5b94436c51f69ed2eee829809 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/63.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | red | orange | purple | yellow | diff --git a/blocks/task5/maps/level1/input_table/64.txt b/blocks/task5/maps/level1/input_table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..183b0119a47e0a3ee4251af6e54a6554eb7397b0 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/64.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | orange | blue | purple | green | diff --git a/blocks/task5/maps/level1/input_table/65.txt b/blocks/task5/maps/level1/input_table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed326a0f002668f1f907b9f6d981602fb2f89c0d --- /dev/null +++ b/blocks/task5/maps/level1/input_table/65.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | orange | yellow | green | diff --git a/blocks/task5/maps/level1/input_table/66.txt b/blocks/task5/maps/level1/input_table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc301072d8769f7d63d3d9a374e1ec8ed6cac89a --- /dev/null +++ b/blocks/task5/maps/level1/input_table/66.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | yellow | blue | green | diff --git a/blocks/task5/maps/level1/input_table/67.txt b/blocks/task5/maps/level1/input_table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..f10fe7e67eddf1df41a81edf19990348276cfb1a --- /dev/null +++ b/blocks/task5/maps/level1/input_table/67.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | purple | yellow | green | diff --git a/blocks/task5/maps/level1/input_table/68.txt b/blocks/task5/maps/level1/input_table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..9580e5a0a428d7ab79ebefb2d5da8ddcd341f06a --- /dev/null +++ b/blocks/task5/maps/level1/input_table/68.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | purple | green | blue | yellow | diff --git a/blocks/task5/maps/level1/input_table/69.txt b/blocks/task5/maps/level1/input_table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4e4d09e4607ac368fb9d81a36f41ff23ca7a5df --- /dev/null +++ b/blocks/task5/maps/level1/input_table/69.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | | orange | +Level 1 | green | red | diff --git a/blocks/task5/maps/level1/input_table/7.txt b/blocks/task5/maps/level1/input_table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d02c612cc01b8597bfd06bd1232634cf016b3c99 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/7.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | blue | +Level 1 | yellow | orange | purple | diff --git a/blocks/task5/maps/level1/input_table/70.txt b/blocks/task5/maps/level1/input_table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..8affb05c89eb7646ca49c70459651abc7381f317 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/70.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level1/input_table/71.txt b/blocks/task5/maps/level1/input_table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..d96e861b80768e97180f59d420d89572739c74eb --- /dev/null +++ b/blocks/task5/maps/level1/input_table/71.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | blue | +Level 1 | green | red | orange | diff --git a/blocks/task5/maps/level1/input_table/72.txt b/blocks/task5/maps/level1/input_table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ffa40a3cd6c34e1c49452655af50dcd82865f43 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/72.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | blue | purple | orange | yellow | diff --git a/blocks/task5/maps/level1/input_table/73.txt b/blocks/task5/maps/level1/input_table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ee8a91cf7538453e11e622eca69b8a19b6fc9f2 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/73.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | yellow | +Level 1 | green | orange | blue | diff --git a/blocks/task5/maps/level1/input_table/74.txt b/blocks/task5/maps/level1/input_table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..76184a5d6fc06be7bb23729f6c56b27387ad3d5f --- /dev/null +++ b/blocks/task5/maps/level1/input_table/74.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | orange | yellow | purple | blue | diff --git a/blocks/task5/maps/level1/input_table/75.txt b/blocks/task5/maps/level1/input_table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccb339ecea15edfcdfd7817a42eaf9ef3870b41f --- /dev/null +++ b/blocks/task5/maps/level1/input_table/75.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | green | blue | orange | yellow | diff --git a/blocks/task5/maps/level1/input_table/76.txt b/blocks/task5/maps/level1/input_table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc7940f963a82587845d61255bdba6fc40296aba --- /dev/null +++ b/blocks/task5/maps/level1/input_table/76.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | blue | orange | red | yellow | diff --git a/blocks/task5/maps/level1/input_table/77.txt b/blocks/task5/maps/level1/input_table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dccee9d90897c06fe0d7637cdf1bc3c16359bcf --- /dev/null +++ b/blocks/task5/maps/level1/input_table/77.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | green | purple | orange | diff --git a/blocks/task5/maps/level1/input_table/78.txt b/blocks/task5/maps/level1/input_table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..662b1028d40206c06d8c07057d4e18945d006d91 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/78.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | orange | yellow | purple | blue | diff --git a/blocks/task5/maps/level1/input_table/79.txt b/blocks/task5/maps/level1/input_table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..31dc349a3170d34b3cc985d813e98b0094f495e0 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/79.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | green | yellow | blue | diff --git a/blocks/task5/maps/level1/input_table/8.txt b/blocks/task5/maps/level1/input_table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9a7152460f00955bb5124e8a33de3d822a824c2 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/8.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | purple | red | yellow | diff --git a/blocks/task5/maps/level1/input_table/80.txt b/blocks/task5/maps/level1/input_table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c159452f88ec0ec437d54089f9c9d629db4ed468 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/80.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | orange | red | blue | purple | diff --git a/blocks/task5/maps/level1/input_table/81.txt b/blocks/task5/maps/level1/input_table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..3355da60edc2440d7db17ec33aaf14581d373cd0 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/81.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | | purple | +Level 1 | yellow | blue | diff --git a/blocks/task5/maps/level1/input_table/82.txt b/blocks/task5/maps/level1/input_table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea451b835d7dbfa30a4fa54adc2f46bdb5816d88 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/82.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | blue | red | orange | purple | diff --git a/blocks/task5/maps/level1/input_table/83.txt b/blocks/task5/maps/level1/input_table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a01ac3536c05e7d2cfd141eaeb15d58d2243ff --- /dev/null +++ b/blocks/task5/maps/level1/input_table/83.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | yellow | red | blue | orange | diff --git a/blocks/task5/maps/level1/input_table/84.txt b/blocks/task5/maps/level1/input_table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..eceaaceb834831519bda50fc49d0eaa913c6c58d --- /dev/null +++ b/blocks/task5/maps/level1/input_table/84.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | yellow | blue | purple | orange | diff --git a/blocks/task5/maps/level1/input_table/85.txt b/blocks/task5/maps/level1/input_table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..375ad5b5c2cca8749b7c035d28a71f2643d090bf --- /dev/null +++ b/blocks/task5/maps/level1/input_table/85.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | green | orange | purple | diff --git a/blocks/task5/maps/level1/input_table/86.txt b/blocks/task5/maps/level1/input_table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..509707942e0c7932dd03ee8b3e458752bc2487c3 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/86.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | red | blue | green | orange | diff --git a/blocks/task5/maps/level1/input_table/87.txt b/blocks/task5/maps/level1/input_table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..31481042b097e4cefaa98b373cc08d5fb4c82eb6 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/87.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | orange | purple | +Level 1 | yellow | green | diff --git a/blocks/task5/maps/level1/input_table/88.txt b/blocks/task5/maps/level1/input_table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..2839781a07747185a9ffc08885c40947889bf10f --- /dev/null +++ b/blocks/task5/maps/level1/input_table/88.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | orange | purple | green | yellow | diff --git a/blocks/task5/maps/level1/input_table/89.txt b/blocks/task5/maps/level1/input_table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..9184f284e1a10acf71cc440a7bf09746b54228a5 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/89.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | yellow | blue | red | purple | diff --git a/blocks/task5/maps/level1/input_table/9.txt b/blocks/task5/maps/level1/input_table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..26d709f4e1b0bbdaebd9ec9e9630f3d1c6222bcd --- /dev/null +++ b/blocks/task5/maps/level1/input_table/9.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | red | yellow | purple | diff --git a/blocks/task5/maps/level1/input_table/90.txt b/blocks/task5/maps/level1/input_table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..d533c187ed1fe67f6e465c2e5faa639f38d53efa --- /dev/null +++ b/blocks/task5/maps/level1/input_table/90.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | yellow | purple | red | diff --git a/blocks/task5/maps/level1/input_table/91.txt b/blocks/task5/maps/level1/input_table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ee8a91cf7538453e11e622eca69b8a19b6fc9f2 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/91.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | yellow | +Level 1 | green | orange | blue | diff --git a/blocks/task5/maps/level1/input_table/92.txt b/blocks/task5/maps/level1/input_table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6c36f5ec6e379755498ca03ac5bb7bd42734c36 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/92.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | orange | yellow | green | blue | diff --git a/blocks/task5/maps/level1/input_table/93.txt b/blocks/task5/maps/level1/input_table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f42a46e4f9768bf049573cc95267b3f027c5121 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/93.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | orange | purple | green | blue | diff --git a/blocks/task5/maps/level1/input_table/94.txt b/blocks/task5/maps/level1/input_table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..09e100ebdf1e9d5b2c19bec72992e3c67a206175 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/94.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | | blue | +Level 1 | purple | orange | diff --git a/blocks/task5/maps/level1/input_table/95.txt b/blocks/task5/maps/level1/input_table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..f64823fe40cf9e147e003dabdcd609010a12db54 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/95.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | green | yellow | red | blue | diff --git a/blocks/task5/maps/level1/input_table/96.txt b/blocks/task5/maps/level1/input_table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c1867d33f9c1901c104316b5f95beefcefc870b --- /dev/null +++ b/blocks/task5/maps/level1/input_table/96.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | green | purple | yellow | diff --git a/blocks/task5/maps/level1/input_table/97.txt b/blocks/task5/maps/level1/input_table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0a4840b4528319f1a6042203348ea87a4af0ac4 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/97.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | blue | green | orange | purple | diff --git a/blocks/task5/maps/level1/input_table/98.txt b/blocks/task5/maps/level1/input_table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..6552c9bb748306845d33b34ecd86d0ef45913a43 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/98.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | red | purple | yellow | diff --git a/blocks/task5/maps/level1/input_table/99.txt b/blocks/task5/maps/level1/input_table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..1421fa67b1247a115cf24b7035d567e4b6982508 --- /dev/null +++ b/blocks/task5/maps/level1/input_table/99.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | blue | green | red | purple | diff --git a/blocks/task5/maps/level1/input_text/0.txt b/blocks/task5/maps/level1/input_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..011455c2b8d32d0e86e3e44d8be70b9a0ddef025 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/0.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/1.txt b/blocks/task5/maps/level1/input_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb77d52110e2fa756063ed57779ba656669e7626 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/1.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/10.txt b/blocks/task5/maps/level1/input_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..e340103b65e6ab8f725a8b97e1d15b5edf1589dd --- /dev/null +++ b/blocks/task5/maps/level1/input_text/10.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/11.txt b/blocks/task5/maps/level1/input_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9e8e5ef2f89fbd167d95e33cbfa6626c1cdde1f --- /dev/null +++ b/blocks/task5/maps/level1/input_text/11.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with purple block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/12.txt b/blocks/task5/maps/level1/input_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c77a1372b08b3ad2c3a7b2b1f54eee90fd126d7 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/12.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block, blue block, from bottom to top +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/13.txt b/blocks/task5/maps/level1/input_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bbfae23459647ac669cf3a7aa88fb0ad0adacbf --- /dev/null +++ b/blocks/task5/maps/level1/input_text/13.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with red block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/14.txt b/blocks/task5/maps/level1/input_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..259f7055c1ad200553b76e9a63805856f49f7ac2 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/14.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/15.txt b/blocks/task5/maps/level1/input_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fda0fc90e74f930d6604eb2a58a282eb1dc12b5 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/15.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/16.txt b/blocks/task5/maps/level1/input_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..e72e93d583b60053cc048c3fcae1cdf1ff1f3adf --- /dev/null +++ b/blocks/task5/maps/level1/input_text/16.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with purple block +- Stack with orange block diff --git a/blocks/task5/maps/level1/input_text/17.txt b/blocks/task5/maps/level1/input_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f6ce73f6134be5af273e0bc431e8be2d6a3eefc --- /dev/null +++ b/blocks/task5/maps/level1/input_text/17.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task5/maps/level1/input_text/18.txt b/blocks/task5/maps/level1/input_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..711196529d9ecbf7e24b25d7c1da4ea116e21bdd --- /dev/null +++ b/blocks/task5/maps/level1/input_text/18.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/19.txt b/blocks/task5/maps/level1/input_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..842bc92e5d105929419dcdc6415a0772c69459ba --- /dev/null +++ b/blocks/task5/maps/level1/input_text/19.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with red block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/input_text/2.txt b/blocks/task5/maps/level1/input_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4154648c19f2b604fa83c0fca0be307abc8ad82a --- /dev/null +++ b/blocks/task5/maps/level1/input_text/2.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/20.txt b/blocks/task5/maps/level1/input_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff1e8f9e106f512a97e18356bca2224184e31166 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/20.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with red block +- Stack with orange block diff --git a/blocks/task5/maps/level1/input_text/21.txt b/blocks/task5/maps/level1/input_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..81e3803191703671a5e89ef1a2aa7f11a3dae56a --- /dev/null +++ b/blocks/task5/maps/level1/input_text/21.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/22.txt b/blocks/task5/maps/level1/input_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..685c54728b92c90bbcab4bbda4d337145ce09e71 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/22.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/23.txt b/blocks/task5/maps/level1/input_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bf21428dcc2e8e298a47fa5257b3b8704f0aab9 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/23.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with red block +- Stack with green block diff --git a/blocks/task5/maps/level1/input_text/24.txt b/blocks/task5/maps/level1/input_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0bce1c459063f2610aec498a2c15d68518fea10 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/24.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with orange block +- Stack with purple block +- Stack with yellow block +- Stack with green block diff --git a/blocks/task5/maps/level1/input_text/25.txt b/blocks/task5/maps/level1/input_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..22d13674b0b6f6a4f7304b77e181f241f9ce4541 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/25.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/26.txt b/blocks/task5/maps/level1/input_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..d05cccaa8289930b1f689d6ced2f7a01c804edf5 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/26.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with red block +- Stack with blue block diff --git a/blocks/task5/maps/level1/input_text/27.txt b/blocks/task5/maps/level1/input_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..7228a61a2ed4dd8cdebe59df078bee174fe87512 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/27.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with red block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/28.txt b/blocks/task5/maps/level1/input_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f42c9d510b746b65ac2796def5cf00289285447 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/28.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with purple block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/29.txt b/blocks/task5/maps/level1/input_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4664f3afae9b28e0f48373f04850b9ab7c7820b --- /dev/null +++ b/blocks/task5/maps/level1/input_text/29.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with purple block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/3.txt b/blocks/task5/maps/level1/input_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e09364ff623968fd72a3e9616bc820db163f1c52 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/3.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/input_text/30.txt b/blocks/task5/maps/level1/input_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..320ab0a8c26070d2e7b2104b0c4ffa09d5098b08 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/30.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with orange block +- Stack with blue block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/31.txt b/blocks/task5/maps/level1/input_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ea2beb43c1de1b0eae87941503284e7f3cb26d8 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/31.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with green block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/32.txt b/blocks/task5/maps/level1/input_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..775cca83e2b69d73ecc217b031d1f3967a7d01f5 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/32.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with green block, purple block, from bottom to top +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/33.txt b/blocks/task5/maps/level1/input_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..31fb79fb7274bdca78e4127ea6ba6ebefc45eb47 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/33.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with purple block +- Stack with green block diff --git a/blocks/task5/maps/level1/input_text/34.txt b/blocks/task5/maps/level1/input_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9a40df4591a1f5f89ea96ab647e8a9d8c227b2a --- /dev/null +++ b/blocks/task5/maps/level1/input_text/34.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/35.txt b/blocks/task5/maps/level1/input_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..c762e78394970cb81b189dce7202be046312e602 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/35.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with yellow block +- Stack with blue block +- Stack with green block +- Stack with orange block diff --git a/blocks/task5/maps/level1/input_text/36.txt b/blocks/task5/maps/level1/input_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..704dddfb0c884bf75e95bc99075102e25965a574 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/36.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with orange block +- Stack with purple block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/37.txt b/blocks/task5/maps/level1/input_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..92d352997ac8690347559760b7edfb82d2575dc7 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/37.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task5/maps/level1/input_text/38.txt b/blocks/task5/maps/level1/input_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..01dae0ae523999574915924ed918fd3a4cda99dc --- /dev/null +++ b/blocks/task5/maps/level1/input_text/38.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/39.txt b/blocks/task5/maps/level1/input_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..4150b68cc5dc7860c3738ee8167d2f1ac3bdab44 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/39.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with green block +- Stack with red block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task5/maps/level1/input_text/4.txt b/blocks/task5/maps/level1/input_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..4145c6c7598c919e16148cce784a03b8f9a9f890 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/4.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/40.txt b/blocks/task5/maps/level1/input_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff78dd18805532bf187373a3c651e3b64078075b --- /dev/null +++ b/blocks/task5/maps/level1/input_text/40.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with red block +- Stack with blue block diff --git a/blocks/task5/maps/level1/input_text/41.txt b/blocks/task5/maps/level1/input_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3938774e31d82fc6e15eb26ccca471243517c64 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/41.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/42.txt b/blocks/task5/maps/level1/input_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bb9a1ee51112b8b1deb329b7e99bd8c11376228 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/42.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/43.txt b/blocks/task5/maps/level1/input_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..507ed123a97e447c07787f6e7ce48a2801183474 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/43.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with red block +- Stack with green block +- Stack with blue block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/input_text/44.txt b/blocks/task5/maps/level1/input_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..906a5b5a3805a887e91030b947a3a5f67cc3b17a --- /dev/null +++ b/blocks/task5/maps/level1/input_text/44.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with green block diff --git a/blocks/task5/maps/level1/input_text/45.txt b/blocks/task5/maps/level1/input_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa0cc45d24eefd9b33d0129c5b3b738be54b5ec6 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/45.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with green block +- Stack with purple block diff --git a/blocks/task5/maps/level1/input_text/46.txt b/blocks/task5/maps/level1/input_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e28dcc06ef0f5647fbf7fd43296e9e16f52f2cb --- /dev/null +++ b/blocks/task5/maps/level1/input_text/46.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/input_text/47.txt b/blocks/task5/maps/level1/input_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..da904dc8cc2a58c677f9fb0ed188d7143f8406ae --- /dev/null +++ b/blocks/task5/maps/level1/input_text/47.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/48.txt b/blocks/task5/maps/level1/input_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..ade4dd28eb6ee9a4ba5eb03ee08a8d0bfeab5980 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/48.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block, red block, from bottom to top +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/49.txt b/blocks/task5/maps/level1/input_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..1134c2099c32e290329f4883986b43d23f432428 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/49.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, red block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/5.txt b/blocks/task5/maps/level1/input_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c59c9ce9d361508b4c04befd72daf7c25c351e23 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/5.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/50.txt b/blocks/task5/maps/level1/input_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c35c4617766031a192310ff5b39e93144b078a0 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/50.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with orange block diff --git a/blocks/task5/maps/level1/input_text/51.txt b/blocks/task5/maps/level1/input_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..510826e9d56554c8e508972f9b61efa0ceba5819 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/51.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block, orange block, from bottom to top +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/52.txt b/blocks/task5/maps/level1/input_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3e3d31ab701c8cee88d43ba36ba9d35a41683cb --- /dev/null +++ b/blocks/task5/maps/level1/input_text/52.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/53.txt b/blocks/task5/maps/level1/input_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e70a6cb8967798980faadc4a8c2f630fad02871 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/53.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with red block +- Stack with green block diff --git a/blocks/task5/maps/level1/input_text/54.txt b/blocks/task5/maps/level1/input_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..33a2cf5c971f9cfca3d7319ad7cda94012323218 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/54.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/55.txt b/blocks/task5/maps/level1/input_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c83ee41bdc667f4603cffbe9b10517b77370608 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/55.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/56.txt b/blocks/task5/maps/level1/input_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..559bf1931d3b8190a02dde0f6bae08467148c014 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/56.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/57.txt b/blocks/task5/maps/level1/input_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fbb52d2af71789b85bf02630debc050dc7d608 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/57.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/58.txt b/blocks/task5/maps/level1/input_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..85bcd9eb90566cbe342acd28f4a7144bd132b017 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/58.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/input_text/59.txt b/blocks/task5/maps/level1/input_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..c03c75c38700da0fff171591c1399f0c36b81431 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/59.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with red block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/6.txt b/blocks/task5/maps/level1/input_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ad3c0037634883187b4bb0456d46747b51fe7b --- /dev/null +++ b/blocks/task5/maps/level1/input_text/6.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task5/maps/level1/input_text/60.txt b/blocks/task5/maps/level1/input_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb7f4c9ac0f7f579ffbf595c3242b5aeb083cd78 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/60.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with green block +- Stack with yellow block +- Stack with purple block +- Stack with orange block diff --git a/blocks/task5/maps/level1/input_text/61.txt b/blocks/task5/maps/level1/input_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b84c9a9dff966b171e1aa7f199508a60197bc20 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/61.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with green block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/62.txt b/blocks/task5/maps/level1/input_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..b59f4f44717c5b91a7843bb48b5e05ec46e2fc3e --- /dev/null +++ b/blocks/task5/maps/level1/input_text/62.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, red block, from bottom to top +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/63.txt b/blocks/task5/maps/level1/input_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd7df24dfb5736968750a32156d94388d730c5a5 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/63.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/input_text/64.txt b/blocks/task5/maps/level1/input_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..b01540d0b998470b27f0a69e2df3f0de2a18c6a6 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/64.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/65.txt b/blocks/task5/maps/level1/input_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..20c5b58237645da49694e95845d73789f3e80206 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/65.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/66.txt b/blocks/task5/maps/level1/input_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..93a42ea6760578e39bdb765758bd807c0f666a17 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/66.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/67.txt b/blocks/task5/maps/level1/input_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3558c692697ff572fb848884b445fc4f0558680 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/67.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with green block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/68.txt b/blocks/task5/maps/level1/input_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9156b1cdeac587c7b87631430a750c254523876 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/68.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/input_text/69.txt b/blocks/task5/maps/level1/input_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..937106be87ac001a16066b33db969a577f2ccc47 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/69.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/7.txt b/blocks/task5/maps/level1/input_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..18f5cfc0704263cee72f3fe1924138470c4612ca --- /dev/null +++ b/blocks/task5/maps/level1/input_text/7.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with purple block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/70.txt b/blocks/task5/maps/level1/input_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..cec5040964151030ac76b3780719bea36cc525b3 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/70.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/71.txt b/blocks/task5/maps/level1/input_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a14d61850844ca493f99d7c2acceecc728a26e9 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/71.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/72.txt b/blocks/task5/maps/level1/input_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfb601c77b9ab389c15210f1656a0daee2a055c3 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/72.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/73.txt b/blocks/task5/maps/level1/input_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1e73c0d219b422c155735cdbba5e67252f0a711 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/73.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/74.txt b/blocks/task5/maps/level1/input_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f42c9d510b746b65ac2796def5cf00289285447 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/74.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with purple block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/75.txt b/blocks/task5/maps/level1/input_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..8168fbab8074d7caba35a96f404c56c15c7db300 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/75.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/76.txt b/blocks/task5/maps/level1/input_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..44d8ff8371d1d5928406ba99ad8be9e3f98b510a --- /dev/null +++ b/blocks/task5/maps/level1/input_text/76.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with blue block +- Stack with orange block +- Stack with red block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/input_text/77.txt b/blocks/task5/maps/level1/input_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..da904dc8cc2a58c677f9fb0ed188d7143f8406ae --- /dev/null +++ b/blocks/task5/maps/level1/input_text/77.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/78.txt b/blocks/task5/maps/level1/input_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..77f121442c90b58650a468e7e6a17e79f6b50e53 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/78.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with purple block +- Stack with blue block diff --git a/blocks/task5/maps/level1/input_text/79.txt b/blocks/task5/maps/level1/input_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..af5418343de9fa2f4a9cb542c21444fda0c7515d --- /dev/null +++ b/blocks/task5/maps/level1/input_text/79.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/8.txt b/blocks/task5/maps/level1/input_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..afcb25985d53f26388df790ce0cf7137dbf98dbf --- /dev/null +++ b/blocks/task5/maps/level1/input_text/8.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with red block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/80.txt b/blocks/task5/maps/level1/input_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..3314f31d39c082cc1a2b7ab094c75c6b91935290 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/80.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with orange block +- Stack with red block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task5/maps/level1/input_text/81.txt b/blocks/task5/maps/level1/input_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed73620bfb1983596da50bad5db352d62b54084f --- /dev/null +++ b/blocks/task5/maps/level1/input_text/81.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/82.txt b/blocks/task5/maps/level1/input_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..46b6bb9024ac1212319c23a8bc813efb57e6f72d --- /dev/null +++ b/blocks/task5/maps/level1/input_text/82.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/83.txt b/blocks/task5/maps/level1/input_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6a879f7814821c351780bcc157478a1e94bdb7f --- /dev/null +++ b/blocks/task5/maps/level1/input_text/83.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with orange block diff --git a/blocks/task5/maps/level1/input_text/84.txt b/blocks/task5/maps/level1/input_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..9133227c22d8de71872ab7866e504ead370ee5ce --- /dev/null +++ b/blocks/task5/maps/level1/input_text/84.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with yellow block +- Stack with blue block +- Stack with purple block +- Stack with orange block diff --git a/blocks/task5/maps/level1/input_text/85.txt b/blocks/task5/maps/level1/input_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..96acdd303b922980d0a5d5ef941c93f8b9e071cd --- /dev/null +++ b/blocks/task5/maps/level1/input_text/85.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/86.txt b/blocks/task5/maps/level1/input_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f090e18d4b4508924b54d9fe745fa2d20b0b753 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/86.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with green block +- Stack with orange block diff --git a/blocks/task5/maps/level1/input_text/87.txt b/blocks/task5/maps/level1/input_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..62dbcc5f598bce164f00a20c98c1f6dd453092b0 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/87.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/88.txt b/blocks/task5/maps/level1/input_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a2de6735145d37b74f4bc3016ec3061468a0e82 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/88.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with purple block +- Stack with green block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/89.txt b/blocks/task5/maps/level1/input_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7d82d3aad47578e2d7b3beaf0374b356e115914 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/89.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with yellow block +- Stack with blue block +- Stack with red block +- Stack with purple block diff --git a/blocks/task5/maps/level1/input_text/9.txt b/blocks/task5/maps/level1/input_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a4cce9dee06f2705c200b3b92d343dae46c82b6 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/9.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/90.txt b/blocks/task5/maps/level1/input_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..81356653c66f459cd854371eb7f8229097168cc2 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/90.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with yellow block +- Stack with purple block +- Stack with red block diff --git a/blocks/task5/maps/level1/input_text/91.txt b/blocks/task5/maps/level1/input_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1e73c0d219b422c155735cdbba5e67252f0a711 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/91.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/92.txt b/blocks/task5/maps/level1/input_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..334a5abcb1e52d449b2869e2d37a56306f99a906 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/92.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block diff --git a/blocks/task5/maps/level1/input_text/93.txt b/blocks/task5/maps/level1/input_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..94a81559e017a0c39b61012a96e3425f2eaeff1a --- /dev/null +++ b/blocks/task5/maps/level1/input_text/93.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with purple block +- Stack with green block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/94.txt b/blocks/task5/maps/level1/input_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..c572c7be28c96a831d828a057f4fde301c942aee --- /dev/null +++ b/blocks/task5/maps/level1/input_text/94.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/95.txt b/blocks/task5/maps/level1/input_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdf5600b649251d9b7db6257756de361a44f2086 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/95.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/96.txt b/blocks/task5/maps/level1/input_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbeb0fdd91970ad029afeabc607629a5a1769130 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/96.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/97.txt b/blocks/task5/maps/level1/input_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fe49bc9bd28aa25f04351cbbaecd9674887c282 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/97.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block diff --git a/blocks/task5/maps/level1/input_text/98.txt b/blocks/task5/maps/level1/input_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..380ab3afd06f2d4e51b248e4d6210d9a7e5b8494 --- /dev/null +++ b/blocks/task5/maps/level1/input_text/98.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with red block +- Stack with purple block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/input_text/99.txt b/blocks/task5/maps/level1/input_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac34009381aff2572d087ffc31ac2087dd12fbdf --- /dev/null +++ b/blocks/task5/maps/level1/input_text/99.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with red block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/output_img/0.jpg b/blocks/task5/maps/level1/output_img/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..335d13fb49ce2ca4822f0ea07ce26598b91fdeed --- /dev/null +++ b/blocks/task5/maps/level1/output_img/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c213901b51f06e8d42807a5b2e11c2fe555a1681f8e6b72310488a64fc8e9c4 +size 11043 diff --git a/blocks/task5/maps/level1/output_img/1.jpg b/blocks/task5/maps/level1/output_img/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81371cfeb931d8a2fc1ad30fafdf1b29a08694ec --- /dev/null +++ b/blocks/task5/maps/level1/output_img/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c3459f080d6d3ab0946086cadaec41b406a9a59790ec7313ca464b7ee636dc0 +size 11080 diff --git a/blocks/task5/maps/level1/output_img/10.jpg b/blocks/task5/maps/level1/output_img/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..660b87b7e209f262c18237c56938bfc8fcfa0475 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b557336c958fdcb48c7080bc17ea60ef7749620c1c6b87a0c9207a693a5d6be1 +size 11260 diff --git a/blocks/task5/maps/level1/output_img/11.jpg b/blocks/task5/maps/level1/output_img/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5500670147084c74d2183b018575aa840564cace --- /dev/null +++ b/blocks/task5/maps/level1/output_img/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7ffeba651086341f867382089abc8de587afa79e4ec98973b07b996783c1931 +size 11096 diff --git a/blocks/task5/maps/level1/output_img/12.jpg b/blocks/task5/maps/level1/output_img/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3545819e6118f21bd337873d5194c2fdef9378f3 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99165d94bc6964241c929c71d4cf01297f5bc61b23f19ce45164b20cb8979bae +size 10771 diff --git a/blocks/task5/maps/level1/output_img/13.jpg b/blocks/task5/maps/level1/output_img/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5525458352b35de8bd2c87a0e4b79329ceaf5504 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa51ae55fd4ce654dfae9d48bb9b0abf95f645cdfd5f8f806b9232f5bff6740 +size 10906 diff --git a/blocks/task5/maps/level1/output_img/14.jpg b/blocks/task5/maps/level1/output_img/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d2116481d67d20543a0ad3c98d96afc102bd4b4 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1553a829eeec04b53123684acce141bd59155b65b1bece558a1d5d863d07c8 +size 10546 diff --git a/blocks/task5/maps/level1/output_img/15.jpg b/blocks/task5/maps/level1/output_img/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2c8e0cde5af874682e9dfc0a5a763afae94d45f --- /dev/null +++ b/blocks/task5/maps/level1/output_img/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8438edc91c9f976911dd6c5ae9dfb47ad150e67607831d92e91b95c06581e971 +size 11524 diff --git a/blocks/task5/maps/level1/output_img/16.jpg b/blocks/task5/maps/level1/output_img/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9eab56f371df845c6cc4483409e7fc12c22e698 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca74456b26ebb20f258180cd6489086dde6dcb85c3872179a332c7a5665b8963 +size 10794 diff --git a/blocks/task5/maps/level1/output_img/17.jpg b/blocks/task5/maps/level1/output_img/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa36516ba7b8b3db5c74b2555cf4bed321e02dff --- /dev/null +++ b/blocks/task5/maps/level1/output_img/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f3e7b58ff0bb1d5a53b100595f66d080c2bd6a4b15306cfec7ff2405c965d5 +size 10828 diff --git a/blocks/task5/maps/level1/output_img/18.jpg b/blocks/task5/maps/level1/output_img/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f84ca1e598a18270f6dfca6815aaaa160ccf275e --- /dev/null +++ b/blocks/task5/maps/level1/output_img/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d0d5a3991b4c6dbfeacc1038ea272726afd51d3388aa7a19a73abf5ff3fb8c +size 11451 diff --git a/blocks/task5/maps/level1/output_img/19.jpg b/blocks/task5/maps/level1/output_img/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46e0309b692ebfc7f2a5d27a5c52e3d32bbffa82 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a15c719c15bea1369c2a99563774e7daba672378167ad841e42ae240465a051 +size 10142 diff --git a/blocks/task5/maps/level1/output_img/2.jpg b/blocks/task5/maps/level1/output_img/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc009033dbf2d6a6ba2f995889966a14faa8b3dc --- /dev/null +++ b/blocks/task5/maps/level1/output_img/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa00c16cfc0a2fb1d358ddd7af6b6a6bf3af2537a270341648ef5d1755910251 +size 11518 diff --git a/blocks/task5/maps/level1/output_img/20.jpg b/blocks/task5/maps/level1/output_img/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ee8400fc9236af20a39113bf46419e7a7e05659 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6bfe31173bc5c0a458b3a15bed364a8e679f04249793ef9a0a58b9566f6b0c +size 11245 diff --git a/blocks/task5/maps/level1/output_img/21.jpg b/blocks/task5/maps/level1/output_img/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2203a3a2e9f0374b135ddb5144596374920caffc --- /dev/null +++ b/blocks/task5/maps/level1/output_img/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e3ca3fc5072aec24983bd9f2fac64c3e0527bdd179d4a1d9d4629432b9bd21 +size 11279 diff --git a/blocks/task5/maps/level1/output_img/22.jpg b/blocks/task5/maps/level1/output_img/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3621b1b4e17a917718ce905a35c87f8bee01bdc5 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a89f16b2646bb21dba65e9eb8ca6cb4199511cb5861526c224bcc8dfc752af +size 10293 diff --git a/blocks/task5/maps/level1/output_img/23.jpg b/blocks/task5/maps/level1/output_img/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6efc4c0ed6b405602aad2bc5feb80b278d48a98 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468fc5949c18eab57f9310c77bd60437548c0e26c81df6f12a9b41d1fd84e153 +size 11729 diff --git a/blocks/task5/maps/level1/output_img/24.jpg b/blocks/task5/maps/level1/output_img/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2dade13378c5e476646fbec80cb0fdad41299d6e --- /dev/null +++ b/blocks/task5/maps/level1/output_img/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:addc629b7f8554b09da23d64ccdf741c82bc664d44b9b14a32b585c79699919e +size 9996 diff --git a/blocks/task5/maps/level1/output_img/25.jpg b/blocks/task5/maps/level1/output_img/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83794c8e533072d5cf689dd9ba01ffccbb223e29 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f65dfd30085baaff7dd3ed231a53f9865f0e1bbff4d8b342fe840336f5b27a8 +size 10491 diff --git a/blocks/task5/maps/level1/output_img/26.jpg b/blocks/task5/maps/level1/output_img/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00441c1e743435ca733644c169ff6a8c55def2e6 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556d22008dc07ec6cc3025494315bceb6eab830c2f66ffe43ae21b1152e45769 +size 10171 diff --git a/blocks/task5/maps/level1/output_img/27.jpg b/blocks/task5/maps/level1/output_img/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0708035d9e4dd690864abded8c81bfb347fd6d2 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f447b94aba1814059923ceeba8141e8b2082ced2a863d7a020b4a798d87aa31 +size 9904 diff --git a/blocks/task5/maps/level1/output_img/28.jpg b/blocks/task5/maps/level1/output_img/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec9692fdfbf6aaf559eb2d02fe026a9aa9acb78c --- /dev/null +++ b/blocks/task5/maps/level1/output_img/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8cc7531b5d30cc7116550aecdc24f6efb4fe3307dfcb4baa71733174068d60 +size 11340 diff --git a/blocks/task5/maps/level1/output_img/29.jpg b/blocks/task5/maps/level1/output_img/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ded69ce3c3c4557b2e03cfa914593d454d473fc5 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff405ea29e316444546c2bc3a1452ca6571c91a8e70710f01ceef6cea52d686 +size 11244 diff --git a/blocks/task5/maps/level1/output_img/3.jpg b/blocks/task5/maps/level1/output_img/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d0f8249f459e4682f233fcd1f99a41931c10f2f --- /dev/null +++ b/blocks/task5/maps/level1/output_img/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ad386f0029962ee1041bc66b646542fcc42790c206320832d9bdbcd1f678c6 +size 10973 diff --git a/blocks/task5/maps/level1/output_img/30.jpg b/blocks/task5/maps/level1/output_img/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cdb1e3d36f074d1a49d0a17e5de32b0065a66bc --- /dev/null +++ b/blocks/task5/maps/level1/output_img/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cbe0aeef8b58d5b12fbe1590f8f05458ec2d3c80f95143c1f0417798cedf58f +size 11414 diff --git a/blocks/task5/maps/level1/output_img/31.jpg b/blocks/task5/maps/level1/output_img/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58d23e8c9a6badd6d46850d84806d578994fe224 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31da2b7af76b07af95d2c8978dee3c6752a9a7e41d893fd16169171e62a61aaa +size 10733 diff --git a/blocks/task5/maps/level1/output_img/32.jpg b/blocks/task5/maps/level1/output_img/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0eba562461806557c11d503b8b8808e58b844d4c --- /dev/null +++ b/blocks/task5/maps/level1/output_img/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2635fbea914f26133f7ac261a5149642cf6630bd23d1d29e44ea0fc31a436fa +size 10581 diff --git a/blocks/task5/maps/level1/output_img/33.jpg b/blocks/task5/maps/level1/output_img/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41c7d647abe7185b11f96b7376aa3440986492b6 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6edd702f1b676172d7acea57ba553ab00423f817982fdd88ac44103bb989759d +size 10146 diff --git a/blocks/task5/maps/level1/output_img/34.jpg b/blocks/task5/maps/level1/output_img/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f1d6df542dba2aaa1ec90c1dd429e1efa226745 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc3444c0ad99460d9ed3044409288d8cd48b9abcc2729505ee98e3f9c492c07 +size 11053 diff --git a/blocks/task5/maps/level1/output_img/35.jpg b/blocks/task5/maps/level1/output_img/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..044a18efa0efedec96ed5f3626bd723a20dc6b0b --- /dev/null +++ b/blocks/task5/maps/level1/output_img/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cdcc0562b20b715d922227869dbcbad08fb01ad3f6f7f897d7c2c6a045ac42 +size 10088 diff --git a/blocks/task5/maps/level1/output_img/36.jpg b/blocks/task5/maps/level1/output_img/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7804cd6396512069ef6eedbaac5aa936121c113b --- /dev/null +++ b/blocks/task5/maps/level1/output_img/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09926252196b405d3688508c8115bbc1d921e3677f395a7b94ba4b3fdd5dc51 +size 11266 diff --git a/blocks/task5/maps/level1/output_img/37.jpg b/blocks/task5/maps/level1/output_img/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6f8209f4690b6be67e9b4728fd4ba0c80299450 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483c51b4f94e0bf6a8e56f7ee71eb604be575917e197b4a34aead4b26a569a66 +size 10486 diff --git a/blocks/task5/maps/level1/output_img/38.jpg b/blocks/task5/maps/level1/output_img/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1852c654ca4557f5aae6e766a409fabc431f95c2 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd192836b6c7636a3158d8f470d59d1eff3eb3a1548d9d6203259be1c0df3e8a +size 10867 diff --git a/blocks/task5/maps/level1/output_img/39.jpg b/blocks/task5/maps/level1/output_img/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b30bbd05392a20c798228e7c3d1622615853db28 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399dc092528649b08605ab35365d7903f37bfee094fd0e9b25af443b26c052dc +size 11595 diff --git a/blocks/task5/maps/level1/output_img/4.jpg b/blocks/task5/maps/level1/output_img/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb28248701c99ab68b586231b58531717aab3313 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc9ca0087e46decde79de924987fc65b3f9f4544c80de3cba594d39f7523162 +size 11520 diff --git a/blocks/task5/maps/level1/output_img/40.jpg b/blocks/task5/maps/level1/output_img/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0031320f848117930d105c82775384908c5cf34 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd33171febd747587e569493657246c5341de41823d79e9ba99beeb95747c1ee +size 11017 diff --git a/blocks/task5/maps/level1/output_img/41.jpg b/blocks/task5/maps/level1/output_img/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6744586e71048a8f1d19fa9f513b8ed70980497 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33865153a4ee5b45d811132bc6bb763c6d7a7a624aaaf037ec71b81e1acc622e +size 11454 diff --git a/blocks/task5/maps/level1/output_img/42.jpg b/blocks/task5/maps/level1/output_img/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5efa81aeff7dcde005b61f8ba6508b47e22e084d --- /dev/null +++ b/blocks/task5/maps/level1/output_img/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8752d597e5feb9553ab72839f51ea85fbfa2e3ac6f3e5f59091c29957ea1ae0e +size 11737 diff --git a/blocks/task5/maps/level1/output_img/43.jpg b/blocks/task5/maps/level1/output_img/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1528b88c331059d36bf4b0c6d7e43ba6b022d4d5 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9b21ad105146fbac751159833930f9202ee8503d252b48085ab66f6839b9a8 +size 11356 diff --git a/blocks/task5/maps/level1/output_img/44.jpg b/blocks/task5/maps/level1/output_img/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04d546724d4cf9294378a9c09c42b5e66b9f06df --- /dev/null +++ b/blocks/task5/maps/level1/output_img/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f07092f1090e94a499dc62208bfbf9e7dc96b9fbe9689761f1ae6de43073f0d +size 10968 diff --git a/blocks/task5/maps/level1/output_img/45.jpg b/blocks/task5/maps/level1/output_img/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..adb7c0d6e0381f1eb711183f9938ff017bfb6d56 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ba0c0f8e99b492e1f2a745457392764801ba3b570cf0b393440c37a482eeb1 +size 10817 diff --git a/blocks/task5/maps/level1/output_img/46.jpg b/blocks/task5/maps/level1/output_img/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4576e6cd335f1f05f762d607707de879acda1bc8 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfff42fe9d0598b191dc1155dd1f44c9e93f5025de6fef2c220e05591333515 +size 11095 diff --git a/blocks/task5/maps/level1/output_img/47.jpg b/blocks/task5/maps/level1/output_img/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5333c3afb4acf4955a3890341cc182936c9ab665 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f14cac3d17714568a4b53397f7b438a758ab0657cd4bfa432484f237bc7439bd +size 10976 diff --git a/blocks/task5/maps/level1/output_img/48.jpg b/blocks/task5/maps/level1/output_img/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..920efb9b326d6a430fed78067bc4835e2994ea1c --- /dev/null +++ b/blocks/task5/maps/level1/output_img/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4796925334a8f90bf6017d38ac2d9e9d2b4ce6bd79398b3c61112c2d2e451885 +size 10126 diff --git a/blocks/task5/maps/level1/output_img/49.jpg b/blocks/task5/maps/level1/output_img/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..506e2adcd0f320c284ca6d26c35ce9dcd757a241 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c27339287c36cfcf2b42b9eb05d531d7f95ef6d19f51c336c12b378ac3c5fb1 +size 10535 diff --git a/blocks/task5/maps/level1/output_img/5.jpg b/blocks/task5/maps/level1/output_img/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce6987f77c5eee3c7e24a00af1466a907558bc4f --- /dev/null +++ b/blocks/task5/maps/level1/output_img/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ae139c69669b5668c79584992309fb4158225d68d6b3c3c6274b92f326aadc +size 10559 diff --git a/blocks/task5/maps/level1/output_img/50.jpg b/blocks/task5/maps/level1/output_img/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbd83b81f7f8ad20344d905607c73b4dcdc4ea00 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba7dc4316040dfc48c089354ac5ab08c56b1a829feecf52d5deb7dddb6c8f03 +size 10836 diff --git a/blocks/task5/maps/level1/output_img/51.jpg b/blocks/task5/maps/level1/output_img/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48dc4d9537f64265adadfa040c5153dacf7ed9c5 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9274b81f9440c4769ee8aaef103bb8c1505a9be37b7e0da4aaae62950a057dfb +size 10804 diff --git a/blocks/task5/maps/level1/output_img/52.jpg b/blocks/task5/maps/level1/output_img/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..550e4ef7731b499926388e817aee50ccc7f3646d --- /dev/null +++ b/blocks/task5/maps/level1/output_img/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff444f7cb36e632a9a36d2eab39a95c210f682c91de42d0eb1747f068a3e4a74 +size 10920 diff --git a/blocks/task5/maps/level1/output_img/53.jpg b/blocks/task5/maps/level1/output_img/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43e2d582560f2c96ee7be738d9c243168d01e4cf --- /dev/null +++ b/blocks/task5/maps/level1/output_img/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da22d2b8ea77a8e03cd1ae24a92ce3421d6df51a7ccd61a7b9926cc2efca4219 +size 9989 diff --git a/blocks/task5/maps/level1/output_img/54.jpg b/blocks/task5/maps/level1/output_img/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..143b59fb3c332898e2ea466bb124dc110dd13cb0 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be1449c47668d6a0d978d417fd194e3284c36e7d437dd257e3e54065ac1a54a3 +size 11270 diff --git a/blocks/task5/maps/level1/output_img/55.jpg b/blocks/task5/maps/level1/output_img/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a390fc8ae2b3b4248f5020b408fd5d90d86bdc4b --- /dev/null +++ b/blocks/task5/maps/level1/output_img/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f452c350dad9201c1ed82b6119cff224fc108d1f0f75fe004e27dd6d360ea3 +size 11062 diff --git a/blocks/task5/maps/level1/output_img/56.jpg b/blocks/task5/maps/level1/output_img/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5237feed5f36710ba9f5245c8be1d82472b3281f --- /dev/null +++ b/blocks/task5/maps/level1/output_img/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab8561ce157819f37f287b0a287166a9443b22fc43afd0e09fd6e4e200c141d +size 11169 diff --git a/blocks/task5/maps/level1/output_img/57.jpg b/blocks/task5/maps/level1/output_img/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..518666480d260a3d1c8b9958194c6c30a61e5b4f --- /dev/null +++ b/blocks/task5/maps/level1/output_img/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62c32eb47be291e14b93bc05035f59508f6184b08db56e7de8607123be0c9628 +size 10410 diff --git a/blocks/task5/maps/level1/output_img/58.jpg b/blocks/task5/maps/level1/output_img/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a843f6a0ccb6abe0ca15f0b6841b412ebe5bbb51 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf30e7863e44019e0ea9a6e81a27557201bc3cb47109703f13582e0662207be9 +size 11691 diff --git a/blocks/task5/maps/level1/output_img/59.jpg b/blocks/task5/maps/level1/output_img/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0113ab775cce73528a581ed7cbdfe6988e3598d9 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a15c28bc22b78d0141d4dc4e3736bb2451c9754464c775e963e83d0ffb6ee8a0 +size 11745 diff --git a/blocks/task5/maps/level1/output_img/6.jpg b/blocks/task5/maps/level1/output_img/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9b44fc2ff117f17211e540011bdbb86f03373e1 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c38cd9141e577813562f3797aae3e532fcdd585bdc8797e510e47be6a0f19bd +size 10978 diff --git a/blocks/task5/maps/level1/output_img/60.jpg b/blocks/task5/maps/level1/output_img/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3378fa4516b267c76c8f5fbb7f1cd86ceaaab4d9 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214c92536c718fb80db1c2caf6c8c264af1813579d76332b0dc9bda5e9e0ec86 +size 11439 diff --git a/blocks/task5/maps/level1/output_img/61.jpg b/blocks/task5/maps/level1/output_img/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e611489feeb90e2043c1e6667dac7efb55139cd2 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0db8b509888dce0c1e139d9f492906f7e9cab3d4994df0236aacfde1b3970 +size 11320 diff --git a/blocks/task5/maps/level1/output_img/62.jpg b/blocks/task5/maps/level1/output_img/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85da174d3e96becd4e4e4d2d732e9b13b50373c1 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a589f6b1b42fdfae2299a502b4dc56b2b5522ce4cf377d7ea7f3fb3f3078721 +size 10635 diff --git a/blocks/task5/maps/level1/output_img/63.jpg b/blocks/task5/maps/level1/output_img/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0de8ed031a819f4a0273ae32b1d17e5132bffd55 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:571f83c800686940677be24d96cfa5e8bc09e69319bdd50aa3d251936ac6b58f +size 10303 diff --git a/blocks/task5/maps/level1/output_img/64.jpg b/blocks/task5/maps/level1/output_img/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b62e96eac2a91add01011ecf78c35b066d225232 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41470c0cbb21aa374e22169a460a916906e78b1cb51dd752ca2a41e1df4e6a8a +size 11549 diff --git a/blocks/task5/maps/level1/output_img/65.jpg b/blocks/task5/maps/level1/output_img/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b96b81882266dd6a9bd89870f49f61988922ad1c --- /dev/null +++ b/blocks/task5/maps/level1/output_img/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3bd1cf68f777b70c3d05c88e05a1e1827d93a4d215f49544679d635427d992f +size 10999 diff --git a/blocks/task5/maps/level1/output_img/66.jpg b/blocks/task5/maps/level1/output_img/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10da0823c505e659ca24365d0af32ec80f779617 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741315c561008b94ac4edf1f956550ea2550a92f053381d8d5141bf89ad3bc1c +size 10400 diff --git a/blocks/task5/maps/level1/output_img/67.jpg b/blocks/task5/maps/level1/output_img/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0c49f8bbb249a475841ddf3c5e7daddb1cedcb7 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ee8ed30b8dea722437239f42ec6b301696c57a20fe9f46c555b89e5ea3d4dc +size 11622 diff --git a/blocks/task5/maps/level1/output_img/68.jpg b/blocks/task5/maps/level1/output_img/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b387bb8ecfdb85e97b08e93a7130392231310427 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820eb31a6224a093fa6ecdf8703d78c7b102bf7d1c06cbc93f6b1757b2a04c55 +size 9994 diff --git a/blocks/task5/maps/level1/output_img/69.jpg b/blocks/task5/maps/level1/output_img/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf3e602cc3bfb0b4d50356939b14651b644f22fd --- /dev/null +++ b/blocks/task5/maps/level1/output_img/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94aaacc682b86adecfd88f36ca49d622ebcfabab823e7c8db574c6be2073867 +size 10104 diff --git a/blocks/task5/maps/level1/output_img/7.jpg b/blocks/task5/maps/level1/output_img/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0e12fc6915e7874086efdd348df518a9e55ddaf --- /dev/null +++ b/blocks/task5/maps/level1/output_img/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9235adddf66a72c09fd7c00cb39191e88b3380cacabbbd6c0660d17aa074e9af +size 10945 diff --git a/blocks/task5/maps/level1/output_img/70.jpg b/blocks/task5/maps/level1/output_img/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87e8c3a81fa72fe31a0d80ad11a19b1d242f91a2 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0c365ef3270ec70d9a7024e6868a16a9f93b049bd5a2275cabad603e7c42f0 +size 9864 diff --git a/blocks/task5/maps/level1/output_img/71.jpg b/blocks/task5/maps/level1/output_img/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e8aef260116b3fd482a451980bcde3e022fa40e --- /dev/null +++ b/blocks/task5/maps/level1/output_img/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c1ed8da7b322bcbae88e6e145895bc6acf9e8f6764f5d3a1bbf52eaa193537 +size 10823 diff --git a/blocks/task5/maps/level1/output_img/72.jpg b/blocks/task5/maps/level1/output_img/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2f2335ba1980ad72b498c36304df023cb880aae --- /dev/null +++ b/blocks/task5/maps/level1/output_img/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08e6b2b29895fae0bc0ca837b4f073fae2fa11e076a57aa4a5a600f2f9dd1e2 +size 11276 diff --git a/blocks/task5/maps/level1/output_img/73.jpg b/blocks/task5/maps/level1/output_img/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97046aee4abf46b6b629c4df857fc123b36895c6 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8221b797f06f6f407facff4eef8bcb3462a5be1eca1b9292f89eb5606b958576 +size 9950 diff --git a/blocks/task5/maps/level1/output_img/74.jpg b/blocks/task5/maps/level1/output_img/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3fc888d64cde10b82be976c9b90ddba3c75b44b --- /dev/null +++ b/blocks/task5/maps/level1/output_img/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f524d900cdc9104c9b74986d158cfdb30a3914e0daec5a2c220b8b41b374ec88 +size 11695 diff --git a/blocks/task5/maps/level1/output_img/75.jpg b/blocks/task5/maps/level1/output_img/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3fc888d64cde10b82be976c9b90ddba3c75b44b --- /dev/null +++ b/blocks/task5/maps/level1/output_img/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f524d900cdc9104c9b74986d158cfdb30a3914e0daec5a2c220b8b41b374ec88 +size 11695 diff --git a/blocks/task5/maps/level1/output_img/76.jpg b/blocks/task5/maps/level1/output_img/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c89facb1462898211b6cff84c4135328d86284b5 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a5374ba9edbf2d50fa42e68074bb89edb69af9a80e11e55882756c66cadfc1 +size 10816 diff --git a/blocks/task5/maps/level1/output_img/77.jpg b/blocks/task5/maps/level1/output_img/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c237ffd12f660d9eb83a8738df225aafbd871b84 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:671788501324eac640cb8db61205e3c6f88d0cace988e1884f38fd926ad356c7 +size 11086 diff --git a/blocks/task5/maps/level1/output_img/78.jpg b/blocks/task5/maps/level1/output_img/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2591589d47477374dbc06edf3422857538a222b --- /dev/null +++ b/blocks/task5/maps/level1/output_img/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9278391d97f4a6329925148ab56154125d867dbebeed0b61bb90b30fb40c8371 +size 10559 diff --git a/blocks/task5/maps/level1/output_img/79.jpg b/blocks/task5/maps/level1/output_img/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c3ec7fd557640626ecde9283c09eea46860ce89 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f280126cb37f28a560af0a82af0cddccfe05f3748491e94b58b3014471f05ccb +size 11585 diff --git a/blocks/task5/maps/level1/output_img/8.jpg b/blocks/task5/maps/level1/output_img/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..145ffe29f416c56d588f888453015f7c7caa2747 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2619eb761b35b8ed8e410973ff6fe92b1fd6606e2f582389a7115f5d615671b7 +size 11106 diff --git a/blocks/task5/maps/level1/output_img/80.jpg b/blocks/task5/maps/level1/output_img/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fa154e4a5b5b707e2d94877caa1736e15d51768 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17aa6540857cc93c781b2878b545539431869841ec8d41adf41a06c60479765 +size 11192 diff --git a/blocks/task5/maps/level1/output_img/81.jpg b/blocks/task5/maps/level1/output_img/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bd5ed5d42de135f78eb49f7774ef71b7ae1ee58 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8ea71b358c0c429d075e1066a1966730a107967b29ef05ea55b8d900864417 +size 9727 diff --git a/blocks/task5/maps/level1/output_img/82.jpg b/blocks/task5/maps/level1/output_img/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c317ee83a7c774531f894209e5978b36515907ef --- /dev/null +++ b/blocks/task5/maps/level1/output_img/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e4b2156462fdd42dc02be0ac18f66492ac3ab16b4c654ba9b9fa81afb74a48 +size 11310 diff --git a/blocks/task5/maps/level1/output_img/83.jpg b/blocks/task5/maps/level1/output_img/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55fdeaf73fa273f0ee8ca4dd6160d0d7accd48b4 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7c080019ca6dbef9a4f24c93f3e82db4319451b8943caf21abbc71adb5f808 +size 11078 diff --git a/blocks/task5/maps/level1/output_img/84.jpg b/blocks/task5/maps/level1/output_img/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ff3c95b984182759f2070338854484747612dc8 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1bf80dfd24c34ed254c117c5741a35f9fafc082bb7de3f1eb8aedc69dca0e3 +size 11231 diff --git a/blocks/task5/maps/level1/output_img/85.jpg b/blocks/task5/maps/level1/output_img/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e12f6f13a4d1e23bb877e5085e943e7ebec6e88 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074303f0591925860f434e989050ac2793a02c44f4eed33b4be9865ba3d56b7d +size 11824 diff --git a/blocks/task5/maps/level1/output_img/86.jpg b/blocks/task5/maps/level1/output_img/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..864a1b002db3c3d18e78631bd08a0e76cf4ed557 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80cda52690322d64481d0e5e27d75473b901eda59bfbbd97444c69176ff5bc2f +size 10381 diff --git a/blocks/task5/maps/level1/output_img/87.jpg b/blocks/task5/maps/level1/output_img/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62c308b72d5dc7f56e2b44d1f6215387f4668753 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892f764b1a256106306db49aab9313dca985797efa4cf8e0558e0a84a03777ce +size 11119 diff --git a/blocks/task5/maps/level1/output_img/88.jpg b/blocks/task5/maps/level1/output_img/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6952c6479a2f27d82e6f354da6f9b6c14292d985 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd3f416a17206380c9d0f5626e9713bf119e0fabf75d6e88fc03d3f80a918c01 +size 10680 diff --git a/blocks/task5/maps/level1/output_img/89.jpg b/blocks/task5/maps/level1/output_img/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edb05b5d879d1e8d974e3c5061c4699b392e5c51 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a85fb061d8441ae3afc424b68bc0c6e147ba96246e5c39ca7bd2bcf810ceac +size 10620 diff --git a/blocks/task5/maps/level1/output_img/9.jpg b/blocks/task5/maps/level1/output_img/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02690e6a5fa7528bb1f8d47adc2ab0b03d556f89 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13af7d2359d447e668c395a54b6370a9e113e610c3cd370f7a76c8c86050a030 +size 9884 diff --git a/blocks/task5/maps/level1/output_img/90.jpg b/blocks/task5/maps/level1/output_img/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7d9f8f6659ceca5f6fdf3604acfff4681500563 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3ba95a4225e7d145a7aa4a84e40b6bb283c851b96840ab0be1aa8556112fe5e +size 11445 diff --git a/blocks/task5/maps/level1/output_img/91.jpg b/blocks/task5/maps/level1/output_img/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a931d42261c10379a3bb489a433a912725981133 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98453a4aced0d4131a58fd7cf438ff74cd4a391edadd73f5b14a98422eb88c83 +size 10749 diff --git a/blocks/task5/maps/level1/output_img/92.jpg b/blocks/task5/maps/level1/output_img/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35073d49981df28b1afe1d9f1d1bb41063ec845a --- /dev/null +++ b/blocks/task5/maps/level1/output_img/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679967288362709d3ec96483b276fc8cc3e9523753943dabe4895afb0eabc2b +size 11439 diff --git a/blocks/task5/maps/level1/output_img/93.jpg b/blocks/task5/maps/level1/output_img/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af7c6a474b7a7e0188c1ce57cfe3def876d79880 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2e62b77eee726b18f2dd8fd59fbe9047afbfb1f204b0aa30cded938317ca36 +size 10820 diff --git a/blocks/task5/maps/level1/output_img/94.jpg b/blocks/task5/maps/level1/output_img/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d448c5db04fe2db64a5ade23a1b8a453f98eff1 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67cd570de89769bdc1d17f95755c272368465d00774fc64d78b1d334fcb30e59 +size 10198 diff --git a/blocks/task5/maps/level1/output_img/95.jpg b/blocks/task5/maps/level1/output_img/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b143b5fe0a6828d7291dac242e8d7c6dd59ab467 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734b7507415d5def8912a76645b7d94baf4bb42b5ee786e0b81c4d4f4df35952 +size 10050 diff --git a/blocks/task5/maps/level1/output_img/96.jpg b/blocks/task5/maps/level1/output_img/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f92c2f8fc2418d4d2f1ed28c78c3ab8e65c7291 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0817f88aa819a48338d223e6923801f10cc58669a59e4ec5d2f334da1db2f4b6 +size 10650 diff --git a/blocks/task5/maps/level1/output_img/97.jpg b/blocks/task5/maps/level1/output_img/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65ada0d9c1ff5369d5009a496567db6918479321 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19650d9c2004c8ccda9f328ad39027feff97ddf39d6ac7b7437eee7b0c75e781 +size 11340 diff --git a/blocks/task5/maps/level1/output_img/98.jpg b/blocks/task5/maps/level1/output_img/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94ba87c8e1db11204b3375eefd3ea163b07ee9f6 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c520a8865709119a2d30314da1d0f267856da2a75a1703a48e665b4fdd90cc4 +size 11382 diff --git a/blocks/task5/maps/level1/output_img/99.jpg b/blocks/task5/maps/level1/output_img/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d2faf21de09d04d71079197d68edbfc61816d05 --- /dev/null +++ b/blocks/task5/maps/level1/output_img/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38b1260973d3c8ddec6949cb5b5d38bb5f2b9d8b5aa032c8bc2faf07942f74d +size 11360 diff --git a/blocks/task5/maps/level1/output_table/0.txt b/blocks/task5/maps/level1/output_table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..67dbd2eeeb565af338782b4d6b32fa86ef15cb24 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/0.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | purple | blue | orange | yellow | diff --git a/blocks/task5/maps/level1/output_table/1.txt b/blocks/task5/maps/level1/output_table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1e4c715f01e24c85488decc4c897948531d7db9 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/1.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | yellow | +Level 1 | green | blue | purple | diff --git a/blocks/task5/maps/level1/output_table/10.txt b/blocks/task5/maps/level1/output_table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..77bf792d94e1952e0529131ea4326ca7dde7283d --- /dev/null +++ b/blocks/task5/maps/level1/output_table/10.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | red | yellow | orange | diff --git a/blocks/task5/maps/level1/output_table/11.txt b/blocks/task5/maps/level1/output_table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..51852718fa9211d5c210b7a71d13f9a588314f33 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/11.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | orange | yellow | green | purple | diff --git a/blocks/task5/maps/level1/output_table/12.txt b/blocks/task5/maps/level1/output_table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c0460d59f58d1020dc749e37309371156fa874d --- /dev/null +++ b/blocks/task5/maps/level1/output_table/12.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | yellow | orange | red | diff --git a/blocks/task5/maps/level1/output_table/13.txt b/blocks/task5/maps/level1/output_table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..d854d36caf47d50c9fffd15787382f1baa1799ea --- /dev/null +++ b/blocks/task5/maps/level1/output_table/13.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | orange | green | red | diff --git a/blocks/task5/maps/level1/output_table/14.txt b/blocks/task5/maps/level1/output_table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..17d44c89efcc1de25dac7fa6e6e17f773a8af11e --- /dev/null +++ b/blocks/task5/maps/level1/output_table/14.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | red | +Level 1 | green | yellow | blue | diff --git a/blocks/task5/maps/level1/output_table/15.txt b/blocks/task5/maps/level1/output_table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b5eac2feb31b84eb4bbf5f0b8b32e0fe8edcdb2 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/15.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | purple | blue | yellow | red | diff --git a/blocks/task5/maps/level1/output_table/16.txt b/blocks/task5/maps/level1/output_table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2978d1eb253b554417bc9c120601527b4c2b1c5 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/16.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | yellow | orange | purple | diff --git a/blocks/task5/maps/level1/output_table/17.txt b/blocks/task5/maps/level1/output_table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..d50570153e3361fc8442bd913f429fadcc02f378 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/17.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | green | yellow | blue | orange | diff --git a/blocks/task5/maps/level1/output_table/18.txt b/blocks/task5/maps/level1/output_table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bc18c898d0c2f51dc4bbb394c5cc580eef5b03 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/18.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | purple | yellow | orange | blue | diff --git a/blocks/task5/maps/level1/output_table/19.txt b/blocks/task5/maps/level1/output_table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..c62e3789ef9dd57b8c2d492c8ad2ec5a22e934e9 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/19.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | yellow | green | blue | red | diff --git a/blocks/task5/maps/level1/output_table/2.txt b/blocks/task5/maps/level1/output_table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..192c1169cde609cce6520f14b6e0a8e6583ebb71 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/2.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | red | +Level 1 | blue | purple | green | diff --git a/blocks/task5/maps/level1/output_table/20.txt b/blocks/task5/maps/level1/output_table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c6037392236efb586ff491a60dc9d6c17d04ae7 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/20.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | green | blue | red | orange | diff --git a/blocks/task5/maps/level1/output_table/21.txt b/blocks/task5/maps/level1/output_table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..9926287feb18d415240a8456f8de51c02fa99126 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/21.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | purple | green | yellow | red | diff --git a/blocks/task5/maps/level1/output_table/22.txt b/blocks/task5/maps/level1/output_table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9096685b9d83912001ebad276ab9cac2219558f --- /dev/null +++ b/blocks/task5/maps/level1/output_table/22.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | yellow | blue | orange | purple | diff --git a/blocks/task5/maps/level1/output_table/23.txt b/blocks/task5/maps/level1/output_table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..235f3c2c0bd75c2f18f3ff7240aaaf91db451069 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/23.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | green | orange | red | yellow | diff --git a/blocks/task5/maps/level1/output_table/24.txt b/blocks/task5/maps/level1/output_table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..1375f173673f344691f467fcb52e8576304d8be9 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/24.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | green | red | purple | diff --git a/blocks/task5/maps/level1/output_table/25.txt b/blocks/task5/maps/level1/output_table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e9483710d2bfd4cd7d51f7918a4277f47dd6b29 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/25.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | blue | purple | red | orange | diff --git a/blocks/task5/maps/level1/output_table/26.txt b/blocks/task5/maps/level1/output_table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7aacd28351a1d8ea81ba1014023bfc0d9dc1b43f --- /dev/null +++ b/blocks/task5/maps/level1/output_table/26.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | red | +Level 1 | purple | blue | orange | diff --git a/blocks/task5/maps/level1/output_table/27.txt b/blocks/task5/maps/level1/output_table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..68bf77a0c0e77d23bdd0c908932ae58b49120652 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/27.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | blue | red | yellow | orange | diff --git a/blocks/task5/maps/level1/output_table/28.txt b/blocks/task5/maps/level1/output_table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..990eec454ae6a6be3807fbe9e5d5f92caff8aacc --- /dev/null +++ b/blocks/task5/maps/level1/output_table/28.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | green | blue | orange | yellow | diff --git a/blocks/task5/maps/level1/output_table/29.txt b/blocks/task5/maps/level1/output_table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..a13cf2cd8c9256b896e9fb54f68922c1a221bc04 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/29.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | orange | yellow | blue | red | diff --git a/blocks/task5/maps/level1/output_table/3.txt b/blocks/task5/maps/level1/output_table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed326a0f002668f1f907b9f6d981602fb2f89c0d --- /dev/null +++ b/blocks/task5/maps/level1/output_table/3.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | orange | yellow | green | diff --git a/blocks/task5/maps/level1/output_table/30.txt b/blocks/task5/maps/level1/output_table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd9b65cc3ab637fdde1fdb016248609b7ea448eb --- /dev/null +++ b/blocks/task5/maps/level1/output_table/30.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | blue | orange | green | diff --git a/blocks/task5/maps/level1/output_table/31.txt b/blocks/task5/maps/level1/output_table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..321806349c5737b209ebce17c6da8ca1b16314a6 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/31.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | blue | +Level 1 | green | purple | yellow | diff --git a/blocks/task5/maps/level1/output_table/32.txt b/blocks/task5/maps/level1/output_table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9deba5566b55d64c18c0ff868466584ddeb6073 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/32.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | red | yellow | blue | green | diff --git a/blocks/task5/maps/level1/output_table/33.txt b/blocks/task5/maps/level1/output_table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dccee9d90897c06fe0d7637cdf1bc3c16359bcf --- /dev/null +++ b/blocks/task5/maps/level1/output_table/33.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | green | purple | orange | diff --git a/blocks/task5/maps/level1/output_table/34.txt b/blocks/task5/maps/level1/output_table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce60b78242a26f8d50597040b4805586df960892 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/34.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | purple | yellow | red | green | diff --git a/blocks/task5/maps/level1/output_table/35.txt b/blocks/task5/maps/level1/output_table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..5949ed1bf9605cc08f575ef0699ef00d4c44fdd1 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/35.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | green | orange | yellow | diff --git a/blocks/task5/maps/level1/output_table/36.txt b/blocks/task5/maps/level1/output_table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..d186804590b63aabbded152af2929868550fb80a --- /dev/null +++ b/blocks/task5/maps/level1/output_table/36.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | green | orange | blue | purple | diff --git a/blocks/task5/maps/level1/output_table/37.txt b/blocks/task5/maps/level1/output_table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a43e49e208cac1a50d47e79430f81b08ee25d0c --- /dev/null +++ b/blocks/task5/maps/level1/output_table/37.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | yellow | green | blue | orange | diff --git a/blocks/task5/maps/level1/output_table/38.txt b/blocks/task5/maps/level1/output_table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0dff76b0863914407382f39f0128cd501e80bef --- /dev/null +++ b/blocks/task5/maps/level1/output_table/38.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | blue | yellow | purple | red | diff --git a/blocks/task5/maps/level1/output_table/39.txt b/blocks/task5/maps/level1/output_table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..188db05458d837f2c87650ded8646217b75adde4 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/39.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | purple | red | blue | green | diff --git a/blocks/task5/maps/level1/output_table/4.txt b/blocks/task5/maps/level1/output_table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..586df9dfb8b0162546c943c33264a4924b50b55c --- /dev/null +++ b/blocks/task5/maps/level1/output_table/4.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | orange | yellow | red | diff --git a/blocks/task5/maps/level1/output_table/40.txt b/blocks/task5/maps/level1/output_table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa4c28643f0e4441b0bdd02c8ff72e4f798ee287 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/40.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | blue | yellow | orange | diff --git a/blocks/task5/maps/level1/output_table/41.txt b/blocks/task5/maps/level1/output_table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..1509f14ef458b21320b0d04e1f332cf3cfb1ebb1 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/41.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | blue | purple | green | orange | diff --git a/blocks/task5/maps/level1/output_table/42.txt b/blocks/task5/maps/level1/output_table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b0965d80ae673ca88977d5be319ccff09490959 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/42.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | yellow | red | green | blue | diff --git a/blocks/task5/maps/level1/output_table/43.txt b/blocks/task5/maps/level1/output_table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..c25576367231f965ddfa75bbcf8939b7abf251d3 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/43.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | purple | yellow | blue | diff --git a/blocks/task5/maps/level1/output_table/44.txt b/blocks/task5/maps/level1/output_table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..cca9da38eb3d238d9321571657c272bd300ed91e --- /dev/null +++ b/blocks/task5/maps/level1/output_table/44.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | green | blue | red | yellow | diff --git a/blocks/task5/maps/level1/output_table/45.txt b/blocks/task5/maps/level1/output_table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d0e8a389e215b2e6a5235c551f653ba350f14da --- /dev/null +++ b/blocks/task5/maps/level1/output_table/45.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | green | blue | yellow | purple | diff --git a/blocks/task5/maps/level1/output_table/46.txt b/blocks/task5/maps/level1/output_table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..e93654dd375b144879c147c6e056ded768d0bf36 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/46.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | purple | orange | blue | yellow | diff --git a/blocks/task5/maps/level1/output_table/47.txt b/blocks/task5/maps/level1/output_table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..93bd8a3d4b13c711bff8967db66a321c7575c32c --- /dev/null +++ b/blocks/task5/maps/level1/output_table/47.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | purple | yellow | green | red | diff --git a/blocks/task5/maps/level1/output_table/48.txt b/blocks/task5/maps/level1/output_table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eb6a75ced05554fbbd4bdbaa6c18597fed27594 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/48.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | yellow | orange | purple | diff --git a/blocks/task5/maps/level1/output_table/49.txt b/blocks/task5/maps/level1/output_table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..716cf1d8221ff39ce5583cd84ffde9054ff97570 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/49.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | blue | +Level 3 | green | +Level 2 | red | +Level 1 | yellow | diff --git a/blocks/task5/maps/level1/output_table/5.txt b/blocks/task5/maps/level1/output_table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef8147d1ea1041b4d059b35c4088e47943b06833 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/5.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | yellow | blue | green | purple | diff --git a/blocks/task5/maps/level1/output_table/50.txt b/blocks/task5/maps/level1/output_table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b5409bdcc91769e2dacb4a9cee1d4db80e68488 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/50.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | blue | orange | purple | red | diff --git a/blocks/task5/maps/level1/output_table/51.txt b/blocks/task5/maps/level1/output_table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd2340c8fa7d27fa7ce739cc1fc76e79e7d75d9d --- /dev/null +++ b/blocks/task5/maps/level1/output_table/51.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | orange | +Level 1 | green | purple | blue | diff --git a/blocks/task5/maps/level1/output_table/52.txt b/blocks/task5/maps/level1/output_table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..5486521c740d0c6ea44c1886b6fcc2d328f48a7c --- /dev/null +++ b/blocks/task5/maps/level1/output_table/52.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | green | purple | orange | diff --git a/blocks/task5/maps/level1/output_table/53.txt b/blocks/task5/maps/level1/output_table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f9d14004cad99336ec7bcb05375f78249098863 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/53.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | yellow | red | green | orange | diff --git a/blocks/task5/maps/level1/output_table/54.txt b/blocks/task5/maps/level1/output_table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dc62bfaa40a2a69beeb0bf928e57eef5ea508e4 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/54.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | yellow | orange | red | purple | diff --git a/blocks/task5/maps/level1/output_table/55.txt b/blocks/task5/maps/level1/output_table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..a38c6087cbcb817be2ceaddaf3fe1a6326cbfd3f --- /dev/null +++ b/blocks/task5/maps/level1/output_table/55.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | orange | green | purple | red | diff --git a/blocks/task5/maps/level1/output_table/56.txt b/blocks/task5/maps/level1/output_table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4d02bc1122a8efd960c93afa3ba45c970ffd41c --- /dev/null +++ b/blocks/task5/maps/level1/output_table/56.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | yellow | green | red | purple | diff --git a/blocks/task5/maps/level1/output_table/57.txt b/blocks/task5/maps/level1/output_table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..365e049a1202498ec3e9d96fbfaa5cd320ee88c3 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/57.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | blue | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level1/output_table/58.txt b/blocks/task5/maps/level1/output_table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f458e3773b941d82d9e9db7792bee4b69290092 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/58.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | blue | green | purple | diff --git a/blocks/task5/maps/level1/output_table/59.txt b/blocks/task5/maps/level1/output_table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..aab4f91c285a89507fd9ef28a1ead660b7a64d76 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/59.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | blue | green | orange | red | diff --git a/blocks/task5/maps/level1/output_table/6.txt b/blocks/task5/maps/level1/output_table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..00a671f540f179f73056ebe0e84a0db1b9439818 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/6.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | blue | purple | yellow | orange | diff --git a/blocks/task5/maps/level1/output_table/60.txt b/blocks/task5/maps/level1/output_table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0cc2903d7012514cb64aded977c8ece11533b20 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/60.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | purple | red | orange | green | diff --git a/blocks/task5/maps/level1/output_table/61.txt b/blocks/task5/maps/level1/output_table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6b7504c81275f265e871b831c11d39eaeba1c25 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/61.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | yellow | +Level 1 | orange | red | purple | diff --git a/blocks/task5/maps/level1/output_table/62.txt b/blocks/task5/maps/level1/output_table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a843efd279b9500a216cc5522f227f364977e53 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/62.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | yellow | red | blue | purple | diff --git a/blocks/task5/maps/level1/output_table/63.txt b/blocks/task5/maps/level1/output_table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a12dbcb54c2ba716b593aefc50ad1ecfc416e39 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/63.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | yellow | purple | red | orange | diff --git a/blocks/task5/maps/level1/output_table/64.txt b/blocks/task5/maps/level1/output_table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f2bc92acb7daf9dcff10b083746b73a6d683db9 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/64.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | orange | red | purple | blue | diff --git a/blocks/task5/maps/level1/output_table/65.txt b/blocks/task5/maps/level1/output_table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa8770783c2e5387ed70021b2ac5900b99d9d3c5 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/65.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | yellow | orange | purple | blue | diff --git a/blocks/task5/maps/level1/output_table/66.txt b/blocks/task5/maps/level1/output_table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..3feffc799303cada43f2aa27ac41f2b2cf86afed --- /dev/null +++ b/blocks/task5/maps/level1/output_table/66.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | red | +Level 1 | yellow | blue | green | diff --git a/blocks/task5/maps/level1/output_table/67.txt b/blocks/task5/maps/level1/output_table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..de0f446d393993bdc14155cec7786d5d247329bf --- /dev/null +++ b/blocks/task5/maps/level1/output_table/67.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | green | purple | yellow | blue | diff --git a/blocks/task5/maps/level1/output_table/68.txt b/blocks/task5/maps/level1/output_table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5a663e6242443ae781c02dada51a96a5c346720 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/68.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | yellow | red | purple | blue | diff --git a/blocks/task5/maps/level1/output_table/69.txt b/blocks/task5/maps/level1/output_table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c3168dd1ed226a883ad6351d0281dbec3522f99 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/69.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 1 | red | green | orange | diff --git a/blocks/task5/maps/level1/output_table/7.txt b/blocks/task5/maps/level1/output_table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..95d44eaa714d1c0c8ea118445669a37dfd46f1c0 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/7.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | orange | yellow | green | purple | diff --git a/blocks/task5/maps/level1/output_table/70.txt b/blocks/task5/maps/level1/output_table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..e06838084cf24e164bb6cb132e72c26173efc11f --- /dev/null +++ b/blocks/task5/maps/level1/output_table/70.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | orange | +Level 1 | yellow | purple | blue | diff --git a/blocks/task5/maps/level1/output_table/71.txt b/blocks/task5/maps/level1/output_table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..d19cf41aa1433089557c60119cb0b72f7363d04f --- /dev/null +++ b/blocks/task5/maps/level1/output_table/71.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | blue | +Level 1 | green | red | orange | diff --git a/blocks/task5/maps/level1/output_table/72.txt b/blocks/task5/maps/level1/output_table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d1be8eba85d97bad17d64a96ba87cf02b56a393 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/72.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | purple | orange | blue | yellow | diff --git a/blocks/task5/maps/level1/output_table/73.txt b/blocks/task5/maps/level1/output_table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a2f5a16c0ad77d0f3e81f18a669b751c4e00ebc --- /dev/null +++ b/blocks/task5/maps/level1/output_table/73.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | yellow | +Level 1 | green | blue | orange | diff --git a/blocks/task5/maps/level1/output_table/74.txt b/blocks/task5/maps/level1/output_table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..061539b3271669e51eb2e70f954a9806a6c0e3d3 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/74.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | purple | yellow | orange | diff --git a/blocks/task5/maps/level1/output_table/75.txt b/blocks/task5/maps/level1/output_table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..061539b3271669e51eb2e70f954a9806a6c0e3d3 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/75.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | purple | yellow | orange | diff --git a/blocks/task5/maps/level1/output_table/76.txt b/blocks/task5/maps/level1/output_table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..436241eff885c3f9f276d72b6bbfd90b686e6170 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/76.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | red | blue | orange | yellow | diff --git a/blocks/task5/maps/level1/output_table/77.txt b/blocks/task5/maps/level1/output_table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..1206b8798063d7387d5bad0ed8efc5ff7d3aa45d --- /dev/null +++ b/blocks/task5/maps/level1/output_table/77.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | purple | orange | yellow | green | diff --git a/blocks/task5/maps/level1/output_table/78.txt b/blocks/task5/maps/level1/output_table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..0551f061fdefe17158539a670ee80c9c0f0a1e98 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/78.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | blue | orange | yellow | red | diff --git a/blocks/task5/maps/level1/output_table/79.txt b/blocks/task5/maps/level1/output_table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3041c7d3ce9366eed13d0a7e2c937aef4b4e3f7 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/79.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | green | purple | +Level 1 | yellow | blue | diff --git a/blocks/task5/maps/level1/output_table/8.txt b/blocks/task5/maps/level1/output_table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..148027476ac129d240a6c59f525fa357394a1998 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/8.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | red | yellow | blue | purple | diff --git a/blocks/task5/maps/level1/output_table/80.txt b/blocks/task5/maps/level1/output_table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..327b072ec5152402ee96d3e1c4efef62aa194741 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/80.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | orange | yellow | blue | purple | diff --git a/blocks/task5/maps/level1/output_table/81.txt b/blocks/task5/maps/level1/output_table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..f078099208391f4759d2dd213ff9501fff12aa94 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/81.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | purple | +Level 1 | yellow | orange | blue | diff --git a/blocks/task5/maps/level1/output_table/82.txt b/blocks/task5/maps/level1/output_table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e7c48510a069023416cc4eb3dc67c44095cd217 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/82.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | blue | purple | orange | red | diff --git a/blocks/task5/maps/level1/output_table/83.txt b/blocks/task5/maps/level1/output_table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..4be7bc59453443c2838ee097d86e7ea10aaf9c3b --- /dev/null +++ b/blocks/task5/maps/level1/output_table/83.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | yellow | red | orange | diff --git a/blocks/task5/maps/level1/output_table/84.txt b/blocks/task5/maps/level1/output_table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..579069055a83310e241b774e725bdd8b2af15db6 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/84.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | purple | green | blue | diff --git a/blocks/task5/maps/level1/output_table/85.txt b/blocks/task5/maps/level1/output_table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f6eb235746daec2f00e37386a9c07572bb7e0e3 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/85.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | purple | red | blue | green | diff --git a/blocks/task5/maps/level1/output_table/86.txt b/blocks/task5/maps/level1/output_table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..c33c197f0275f0e0c79afcf7b9343b4175d410eb --- /dev/null +++ b/blocks/task5/maps/level1/output_table/86.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | orange | yellow | blue | diff --git a/blocks/task5/maps/level1/output_table/87.txt b/blocks/task5/maps/level1/output_table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..9263773aeaa60d84e21939392760f1da6198cba3 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/87.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | purple | orange | +Level 1 | green | yellow | diff --git a/blocks/task5/maps/level1/output_table/88.txt b/blocks/task5/maps/level1/output_table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..d70cfab73c31da0f90dbcb2519441d811db9337f --- /dev/null +++ b/blocks/task5/maps/level1/output_table/88.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | blue | +Level 1 | purple | orange | yellow | diff --git a/blocks/task5/maps/level1/output_table/89.txt b/blocks/task5/maps/level1/output_table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..61f48912ddbeff371b30501509462657ff3b14fd --- /dev/null +++ b/blocks/task5/maps/level1/output_table/89.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | yellow | red | purple | green | diff --git a/blocks/task5/maps/level1/output_table/9.txt b/blocks/task5/maps/level1/output_table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3ec582a979c439e3f03d9d2121a4ef3951334ed --- /dev/null +++ b/blocks/task5/maps/level1/output_table/9.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | red | orange | yellow | purple | diff --git a/blocks/task5/maps/level1/output_table/90.txt b/blocks/task5/maps/level1/output_table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..6552c9bb748306845d33b34ecd86d0ef45913a43 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/90.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | red | purple | yellow | diff --git a/blocks/task5/maps/level1/output_table/91.txt b/blocks/task5/maps/level1/output_table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d427c87d4bd77773b917b255be74e29f46c81fd --- /dev/null +++ b/blocks/task5/maps/level1/output_table/91.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | yellow | green | orange | blue | diff --git a/blocks/task5/maps/level1/output_table/92.txt b/blocks/task5/maps/level1/output_table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2878381457c775a61832bd7acbd38be4fafdabd --- /dev/null +++ b/blocks/task5/maps/level1/output_table/92.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | yellow | orange | red | green | diff --git a/blocks/task5/maps/level1/output_table/93.txt b/blocks/task5/maps/level1/output_table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..b87382a7d6d50a76e68498800e0ef30eadc606c0 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/93.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | red | +Level 1 | purple | orange | blue | diff --git a/blocks/task5/maps/level1/output_table/94.txt b/blocks/task5/maps/level1/output_table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e4be1239dc1c382c059708741ea57c662459bd8 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/94.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | purple | red | orange | diff --git a/blocks/task5/maps/level1/output_table/95.txt b/blocks/task5/maps/level1/output_table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f38ee87eaaa48aab2b30235ee23a51404689791 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/95.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | green | blue | red | diff --git a/blocks/task5/maps/level1/output_table/96.txt b/blocks/task5/maps/level1/output_table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bf22c3310db57a957820e165610f57580654ee1 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/96.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 1 | purple | yellow | green | blue | diff --git a/blocks/task5/maps/level1/output_table/97.txt b/blocks/task5/maps/level1/output_table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..024d728617f0384a858a528d9f31de67742ec03a --- /dev/null +++ b/blocks/task5/maps/level1/output_table/97.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | orange | red | blue | green | diff --git a/blocks/task5/maps/level1/output_table/98.txt b/blocks/task5/maps/level1/output_table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bb6cda0a8bcaba9b1c1963ec45b42a9bd05f8c --- /dev/null +++ b/blocks/task5/maps/level1/output_table/98.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | purple | +Level 1 | red | yellow | green | diff --git a/blocks/task5/maps/level1/output_table/99.txt b/blocks/task5/maps/level1/output_table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..03734f71025b4f54f6d164fcb84fef0e8772f5c2 --- /dev/null +++ b/blocks/task5/maps/level1/output_table/99.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | blue | red | green | diff --git a/blocks/task5/maps/level1/output_text/0.txt b/blocks/task5/maps/level1/output_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..f04195e7ec43bede491cb0a7c288686a68e1f4fe --- /dev/null +++ b/blocks/task5/maps/level1/output_text/0.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/output_text/1.txt b/blocks/task5/maps/level1/output_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..7021907345739202ffc6c23a57fdc77d573ee20b --- /dev/null +++ b/blocks/task5/maps/level1/output_text/1.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with blue block +- Stack with purple block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/10.txt b/blocks/task5/maps/level1/output_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..845d768af9989f54c642211b2d68cedd066980e5 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/10.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with orange block diff --git a/blocks/task5/maps/level1/output_text/11.txt b/blocks/task5/maps/level1/output_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..11454cf73530dc1df8b7475c07200102bc10b0fd --- /dev/null +++ b/blocks/task5/maps/level1/output_text/11.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/12.txt b/blocks/task5/maps/level1/output_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..7117c8a35f2aac7bd283dc0352d30e0e2b5d24ed --- /dev/null +++ b/blocks/task5/maps/level1/output_text/12.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/13.txt b/blocks/task5/maps/level1/output_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e35bdb225c512f25936cf42d1ac11462c673d4e --- /dev/null +++ b/blocks/task5/maps/level1/output_text/13.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with orange block +- Stack with green block +- Stack with red block diff --git a/blocks/task5/maps/level1/output_text/14.txt b/blocks/task5/maps/level1/output_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..df049ecabedc37a86b0ea62d6d49d1cbb099ff25 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/14.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/15.txt b/blocks/task5/maps/level1/output_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e225862b73a23bbc239d2be8bab1f8616c53cc5 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/15.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with yellow block +- Stack with red block diff --git a/blocks/task5/maps/level1/output_text/16.txt b/blocks/task5/maps/level1/output_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..653c19263a8d78fd500c1664e17022ca02770208 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/16.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/17.txt b/blocks/task5/maps/level1/output_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6f7456e20c24ee96539c064b9fb7da6f039c3e1 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/17.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with blue block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/18.txt b/blocks/task5/maps/level1/output_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc09781ff4d0b8463852f9cc4d19db4d1a6b9be8 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/18.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task5/maps/level1/output_text/19.txt b/blocks/task5/maps/level1/output_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..cba6676a6d0323b7820ef76b3f00cfbc309dda01 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/19.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with blue block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/2.txt b/blocks/task5/maps/level1/output_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..02e9c9d9e1e01b844c60f4f7a9f67d37f1d14b0c --- /dev/null +++ b/blocks/task5/maps/level1/output_text/2.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with purple block +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/20.txt b/blocks/task5/maps/level1/output_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..58b44021eded68be566ca69611e6d4f5b113f019 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/20.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with red block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/21.txt b/blocks/task5/maps/level1/output_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e2aac4a14abba13ab65ac6be4e795608d88a33 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/21.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with red block diff --git a/blocks/task5/maps/level1/output_text/22.txt b/blocks/task5/maps/level1/output_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..550d20f1aa2e1ec3cdd6f0ed5a3f071959037dd2 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/22.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with blue block +- Stack with orange block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/23.txt b/blocks/task5/maps/level1/output_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3eac592b677183d668c4e8a184a69163f12213db --- /dev/null +++ b/blocks/task5/maps/level1/output_text/23.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with orange block +- Stack with red block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/24.txt b/blocks/task5/maps/level1/output_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..d43501039ca661be22f97972a93ad054dd78be81 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/24.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/25.txt b/blocks/task5/maps/level1/output_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f99fdefb3f05de7d46f723781e594d33b4f23f3 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/25.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with red block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/26.txt b/blocks/task5/maps/level1/output_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..68f0a2d6f2144f447d40efd16ce675b9df907b75 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/26.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/27.txt b/blocks/task5/maps/level1/output_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..39187e224c42d02f6770e5bcad8237dd112b70f9 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/27.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with yellow block +- Stack with orange block diff --git a/blocks/task5/maps/level1/output_text/28.txt b/blocks/task5/maps/level1/output_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e28dcc06ef0f5647fbf7fd43296e9e16f52f2cb --- /dev/null +++ b/blocks/task5/maps/level1/output_text/28.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/output_text/29.txt b/blocks/task5/maps/level1/output_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..6892668093f3926533f749fe2f2df96e13b194ec --- /dev/null +++ b/blocks/task5/maps/level1/output_text/29.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with blue block +- Stack with red block diff --git a/blocks/task5/maps/level1/output_text/3.txt b/blocks/task5/maps/level1/output_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..20c5b58237645da49694e95845d73789f3e80206 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/3.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/30.txt b/blocks/task5/maps/level1/output_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..01ce191bbc232cf9ddbbefcffddad0c431434caa --- /dev/null +++ b/blocks/task5/maps/level1/output_text/30.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with orange block +- Stack with green block diff --git a/blocks/task5/maps/level1/output_text/31.txt b/blocks/task5/maps/level1/output_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e437b7acab19a37bc1330718b1d531fb6ceadae --- /dev/null +++ b/blocks/task5/maps/level1/output_text/31.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with yellow block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/32.txt b/blocks/task5/maps/level1/output_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d29b9f9731dde6c0527e5833af825a02534e7c5 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/32.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with yellow block +- Stack with blue block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/33.txt b/blocks/task5/maps/level1/output_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..da904dc8cc2a58c677f9fb0ed188d7143f8406ae --- /dev/null +++ b/blocks/task5/maps/level1/output_text/33.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/34.txt b/blocks/task5/maps/level1/output_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..e73e70dc5ca060d5d794d51d842a2331f42398d5 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/34.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with green block diff --git a/blocks/task5/maps/level1/output_text/35.txt b/blocks/task5/maps/level1/output_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..90e694a979a9ad362c3e4f94782816898779903b --- /dev/null +++ b/blocks/task5/maps/level1/output_text/35.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/36.txt b/blocks/task5/maps/level1/output_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..927fad51e4e5e563688c3f870a8eba265faf3c31 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/36.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with green block +- Stack with orange block +- Stack with blue block +- Stack with purple block diff --git a/blocks/task5/maps/level1/output_text/37.txt b/blocks/task5/maps/level1/output_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..d41eb53eed96eb2545cd8567866e6f61645dbf00 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/37.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with blue block +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/38.txt b/blocks/task5/maps/level1/output_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..6859739f7a5af4e56a09e6b3cc21982abffae105 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/38.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with red block diff --git a/blocks/task5/maps/level1/output_text/39.txt b/blocks/task5/maps/level1/output_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..93f849e29b56ad51639e850a4d3e9299292533dd --- /dev/null +++ b/blocks/task5/maps/level1/output_text/39.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with red block +- Stack with blue block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/4.txt b/blocks/task5/maps/level1/output_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..010e3ef7c989b41ed336c5981b4c1bf3104390cb --- /dev/null +++ b/blocks/task5/maps/level1/output_text/4.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with yellow block +- Stack with red block diff --git a/blocks/task5/maps/level1/output_text/40.txt b/blocks/task5/maps/level1/output_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec52d86686e0d79cee111e4e2bf914f3b88fae98 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/40.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with yellow block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/41.txt b/blocks/task5/maps/level1/output_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c35c4617766031a192310ff5b39e93144b078a0 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/41.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with orange block diff --git a/blocks/task5/maps/level1/output_text/42.txt b/blocks/task5/maps/level1/output_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbb35d8525bf30b92b8eef62058655fd4d81345b --- /dev/null +++ b/blocks/task5/maps/level1/output_text/42.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with blue block diff --git a/blocks/task5/maps/level1/output_text/43.txt b/blocks/task5/maps/level1/output_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f38d9e1264572ab120c73d100c34954d3ed8c91 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/43.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/44.txt b/blocks/task5/maps/level1/output_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..da6d5fdee2e5357770f507feef7e1b245f5424b0 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/44.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with red block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/45.txt b/blocks/task5/maps/level1/output_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..83c134c0d3a110b7c1d01443aeb99da2b1e19c5c --- /dev/null +++ b/blocks/task5/maps/level1/output_text/45.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with yellow block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/46.txt b/blocks/task5/maps/level1/output_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf31d1f8a48b7ef95e7bdab81b3c9947f58bfbc5 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/46.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/47.txt b/blocks/task5/maps/level1/output_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..325e7293cf61e73e756d5cfc762311b1efa68d2c --- /dev/null +++ b/blocks/task5/maps/level1/output_text/47.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with purple block +- Stack with yellow block +- Stack with green block +- Stack with red block diff --git a/blocks/task5/maps/level1/output_text/48.txt b/blocks/task5/maps/level1/output_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..af11e601063d813eb449a2ee0e0301815cc916a5 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/48.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with yellow block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/49.txt b/blocks/task5/maps/level1/output_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..53d84f86db3c95e21ff3b4352ff9fa5a97bb2c25 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/49.txt @@ -0,0 +1 @@ +- Stack with yellow block, red block, green block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/5.txt b/blocks/task5/maps/level1/output_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4147350dc613c923d39e24a18814de985f35c53a --- /dev/null +++ b/blocks/task5/maps/level1/output_text/5.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with yellow block +- Stack with blue block +- Stack with green block +- Stack with purple block diff --git a/blocks/task5/maps/level1/output_text/50.txt b/blocks/task5/maps/level1/output_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..01d29ee50748ea056c7cd79554aa3ed77c0dd220 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/50.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/51.txt b/blocks/task5/maps/level1/output_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b2b96cc70725286a582c584c5ee5fb54cfba1bc --- /dev/null +++ b/blocks/task5/maps/level1/output_text/51.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/52.txt b/blocks/task5/maps/level1/output_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..165fd863ad2b0ef974fa7d4a19d4d9b45e8b75cc --- /dev/null +++ b/blocks/task5/maps/level1/output_text/52.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/53.txt b/blocks/task5/maps/level1/output_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a2294599d206ff1003679e4eaa7e29f2e681bfc --- /dev/null +++ b/blocks/task5/maps/level1/output_text/53.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/54.txt b/blocks/task5/maps/level1/output_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4911ad7655cb037314c3a633b459563ff7f8076 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/54.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with red block +- Stack with purple block diff --git a/blocks/task5/maps/level1/output_text/55.txt b/blocks/task5/maps/level1/output_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..bac57be758bd7ee99f56644b9daf02da6124e06a --- /dev/null +++ b/blocks/task5/maps/level1/output_text/55.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with red block diff --git a/blocks/task5/maps/level1/output_text/56.txt b/blocks/task5/maps/level1/output_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..b27b0b36589995a37b098b29b8deed4b442ee2f0 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/56.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with purple block diff --git a/blocks/task5/maps/level1/output_text/57.txt b/blocks/task5/maps/level1/output_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6dbc69cffc74a67c45dd6e2f0cefa1d7b5ca9dd --- /dev/null +++ b/blocks/task5/maps/level1/output_text/57.txt @@ -0,0 +1,2 @@ +- Stack with orange block, red block, from bottom to top +- Stack with yellow block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/58.txt b/blocks/task5/maps/level1/output_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d4558f2ce39389baf08b71fde8ccd385d27c013 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/58.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/59.txt b/blocks/task5/maps/level1/output_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..f96e8e377269a3103ce197cc605b91a2239efac7 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/59.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/6.txt b/blocks/task5/maps/level1/output_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fe18fc6c9d0d978240121bc6aa5e9d3e31dd2a2 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/6.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/60.txt b/blocks/task5/maps/level1/output_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf1f13881b1107445ce98c2061f957caacf022a0 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/60.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with red block +- Stack with orange block +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/61.txt b/blocks/task5/maps/level1/output_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..94ec40afea7cf1419e76be0b65adc097b1f9678e --- /dev/null +++ b/blocks/task5/maps/level1/output_text/61.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block, green block, from bottom to top +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/62.txt b/blocks/task5/maps/level1/output_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..f66f570e0ec896895a72031fc178a67c51457092 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/62.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/63.txt b/blocks/task5/maps/level1/output_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ef60ab059ba954ffd9ac02b719224713695639b --- /dev/null +++ b/blocks/task5/maps/level1/output_text/63.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with purple block +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/64.txt b/blocks/task5/maps/level1/output_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e15cdf7a2167cd43aa541eac92fe950989b8cf7a --- /dev/null +++ b/blocks/task5/maps/level1/output_text/64.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with orange block +- Stack with red block +- Stack with purple block +- Stack with blue block diff --git a/blocks/task5/maps/level1/output_text/65.txt b/blocks/task5/maps/level1/output_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3d0c730cf35eb6e3d935e15d10e0c5f6315076b --- /dev/null +++ b/blocks/task5/maps/level1/output_text/65.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with blue block diff --git a/blocks/task5/maps/level1/output_text/66.txt b/blocks/task5/maps/level1/output_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f650f8f27f7c94cb706805b7cb7b5980522e88f --- /dev/null +++ b/blocks/task5/maps/level1/output_text/66.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block +- Stack with green block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/67.txt b/blocks/task5/maps/level1/output_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0a3ef7ef3287e259b018845c8f685918e57ef07 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/67.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block diff --git a/blocks/task5/maps/level1/output_text/68.txt b/blocks/task5/maps/level1/output_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0d68393d5c19106ebe716e6a5c14437032b8317 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/68.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with purple block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/69.txt b/blocks/task5/maps/level1/output_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..85f443a962b4448fdd7645c9563134f38b1c5ef5 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/69.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block +- Stack with orange block diff --git a/blocks/task5/maps/level1/output_text/7.txt b/blocks/task5/maps/level1/output_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..da83b94301b2630afb46871baec3929c00d56076 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/7.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/70.txt b/blocks/task5/maps/level1/output_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb587689b97e301f3c66e09d0c82adc1ef7b30d2 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/70.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/71.txt b/blocks/task5/maps/level1/output_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbd77f54547079cec5857b6e09334e1e17742710 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/71.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/72.txt b/blocks/task5/maps/level1/output_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..e09364ff623968fd72a3e9616bc820db163f1c52 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/72.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with blue block +- Stack with yellow block diff --git a/blocks/task5/maps/level1/output_text/73.txt b/blocks/task5/maps/level1/output_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..87be5b817e2a19c1b4a1bdb16fdf7be1725a9b16 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/73.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/74.txt b/blocks/task5/maps/level1/output_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa7d07df7a3952ec4abc5c36df081cc69197a94c --- /dev/null +++ b/blocks/task5/maps/level1/output_text/74.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with orange block diff --git a/blocks/task5/maps/level1/output_text/75.txt b/blocks/task5/maps/level1/output_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa7d07df7a3952ec4abc5c36df081cc69197a94c --- /dev/null +++ b/blocks/task5/maps/level1/output_text/75.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with orange block diff --git a/blocks/task5/maps/level1/output_text/76.txt b/blocks/task5/maps/level1/output_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..299c3b66bdda88b4945baa7b769d5afddd173da6 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/76.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with orange block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/77.txt b/blocks/task5/maps/level1/output_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..18bae04349919fe32ac8eb04ad3192ba5502617a --- /dev/null +++ b/blocks/task5/maps/level1/output_text/77.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with green block diff --git a/blocks/task5/maps/level1/output_text/78.txt b/blocks/task5/maps/level1/output_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf8a66c0898f9f17f41985941a489fe139436fb0 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/78.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/79.txt b/blocks/task5/maps/level1/output_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..57aa039d2796f86f7ac3d11ae3edd28672281e28 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/79.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, green block, from bottom to top +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/8.txt b/blocks/task5/maps/level1/output_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..08adfc8e6525f5838a6ac7cdc4e0bd9f370c72ab --- /dev/null +++ b/blocks/task5/maps/level1/output_text/8.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with yellow block +- Stack with blue block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/80.txt b/blocks/task5/maps/level1/output_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..72f2c9a17b01ba9715c178bef41be1f6ce8eaeec --- /dev/null +++ b/blocks/task5/maps/level1/output_text/80.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with blue block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/81.txt b/blocks/task5/maps/level1/output_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..67096dbf82289edbb6e9d94d206ed3b4effa6b42 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/81.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/82.txt b/blocks/task5/maps/level1/output_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..eedaae7fca6fdff08f5eb38b7bbf1d1cf756dc7e --- /dev/null +++ b/blocks/task5/maps/level1/output_text/82.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with orange block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/83.txt b/blocks/task5/maps/level1/output_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..b217ed53cbded62c98ee1ef754f19e0ec31f2051 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/83.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/84.txt b/blocks/task5/maps/level1/output_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dca2b819f2ca6be8c38c56ad2f9e6c6a71f3f35 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/84.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with purple block +- Stack with green block +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/85.txt b/blocks/task5/maps/level1/output_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7fab9c3e4f9efebec7666dbd8e384217fe0c7c1 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/85.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with purple block +- Stack with red block +- Stack with blue block +- Stack with green block diff --git a/blocks/task5/maps/level1/output_text/86.txt b/blocks/task5/maps/level1/output_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..040f9737b03ae966e3b3e027f1bf90aac8ad15f0 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/86.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/87.txt b/blocks/task5/maps/level1/output_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e6aaae699fe02427bdce0d9fcc6d77e8ddbc203 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/87.txt @@ -0,0 +1,2 @@ +- Stack with green block, purple block, from bottom to top +- Stack with yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/88.txt b/blocks/task5/maps/level1/output_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecca81654a8a940d5c363a6904efa9d172cea15e --- /dev/null +++ b/blocks/task5/maps/level1/output_text/88.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block, green block, from bottom to top +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/89.txt b/blocks/task5/maps/level1/output_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..74c25374d82e04afc86ca83deb7377b42bb53680 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/89.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with purple block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/9.txt b/blocks/task5/maps/level1/output_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..76e3911a6cb5694895df937d55a637dfdffc9856 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/9.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with purple block diff --git a/blocks/task5/maps/level1/output_text/90.txt b/blocks/task5/maps/level1/output_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..380ab3afd06f2d4e51b248e4d6210d9a7e5b8494 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/90.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with red block +- Stack with purple block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/91.txt b/blocks/task5/maps/level1/output_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d0a6fad16de2b897f35c0dbe77e2de3cc41bf02 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/91.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task5/maps/level1/output_text/92.txt b/blocks/task5/maps/level1/output_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..58bfd64d76b6d8775a5b672b9f08281aee451243 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/92.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with orange block +- Stack with red block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/93.txt b/blocks/task5/maps/level1/output_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fad85e1d55b736a74bbf703fc4c0cb815037e5a --- /dev/null +++ b/blocks/task5/maps/level1/output_text/93.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block, green block, from bottom to top +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/94.txt b/blocks/task5/maps/level1/output_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..160f3772614349fbd3b83f9e3459c2d90b7630f8 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/94.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/95.txt b/blocks/task5/maps/level1/output_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9a424e616ab8e5cb153686b851a8ade870ec288 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/95.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with blue block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/96.txt b/blocks/task5/maps/level1/output_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..cacc81501097e8a1bc822083853e06d5d7db149e --- /dev/null +++ b/blocks/task5/maps/level1/output_text/96.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with green block +- Stack with blue block diff --git a/blocks/task5/maps/level1/output_text/97.txt b/blocks/task5/maps/level1/output_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d9e58b44edff9bc866d07c7fa6d1c2289e9e551 --- /dev/null +++ b/blocks/task5/maps/level1/output_text/97.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with red block +- Stack with blue block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/98.txt b/blocks/task5/maps/level1/output_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..119aaf3686a9e4ca7b7cba656fd561348f4ddadb --- /dev/null +++ b/blocks/task5/maps/level1/output_text/98.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level1/output_text/99.txt b/blocks/task5/maps/level1/output_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad38c8e7f525bda5b80ff40b2fd4e893e0e2010f --- /dev/null +++ b/blocks/task5/maps/level1/output_text/99.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with red block +- Stack with green block diff --git a/blocks/task5/maps/level3/info.txt b/blocks/task5/maps/level3/info.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad68e23140c330eb64916fb2f8be1f684179ca7c --- /dev/null +++ b/blocks/task5/maps/level3/info.txt @@ -0,0 +1,100 @@ +B00000-P00000-Y00000-RO0000-000000-000000-000000 4Towers/1112 PR0000-YOB000-000000-000000-000000-000000-000000 2Towers/23 3 move(o,y,0) move(b,o,1) move(r,p,2) move(o,y,0) move(r,p,1) move(b,o,2) +P00000-YGB000-000000-000000-000000-000000-000000 2Towers/13 P00000-Y00000-GB0000-000000-000000-000000-000000 3Towers/112 3 move(b,table,0) move(g,table,1) move(b,g,2) move(b,p,0) move(g,table,1) move(b,g,2) +B00000-P00000-Y00000-O00000-G00000-000000-000000 5Towers/11111 O00000-YGBP00-000000-000000-000000-000000-000000 2Towers/14 3 move(g,y,0) move(b,g,1) move(p,b,2) +PB0000-YOR000-000000-000000-000000-000000-000000 2Towers/23 R00000-Y00000-P00000-O00000-B00000-000000-000000 5Towers/11111 3 move(b,table,0) move(r,table,1) move(o,table,2) move(r,table,0) move(o,table,1) move(b,table,2) move(r,table,0) move(b,table,1) move(o,table,2) +RY0000-OPG000-000000-000000-000000-000000-000000 2Towers/23 P00000-O00000-Y00000-RG0000-000000-000000-000000 4Towers/1112 3 move(y,table,0) move(g,r,1) move(p,table,2) +YO0000-GBR000-000000-000000-000000-000000-000000 2Towers/23 O00000-Y00000-R00000-B00000-G00000-000000-000000 5Towers/11111 3 move(o,table,0) move(r,table,1) move(b,table,2) move(r,table,0) move(b,table,1) move(o,table,2) move(r,table,0) move(o,table,1) move(b,table,2) +OP0000-GRY000-000000-000000-000000-000000-000000 2Towers/23 GR0000-OYP000-000000-000000-000000-000000-000000 2Towers/23 3 move(p,table,0) move(y,o,1) move(p,y,2) +B00000-R00000-P00000-GO0000-000000-000000-000000 4Towers/1112 R00000-O00000-BPG000-000000-000000-000000-000000 3Towers/113 3 move(o,table,0) move(p,b,1) move(g,p,2) move(p,b,0) move(o,table,1) move(g,p,2) +BP0000-GRO000-000000-000000-000000-000000-000000 2Towers/23 OB0000-GRP000-000000-000000-000000-000000-000000 2Towers/23 3 move(o,table,0) move(p,r,1) move(b,o,2) +R00000-GPBY00-000000-000000-000000-000000-000000 2Towers/14 B00000-P00000-G00000-RY0000-000000-000000-000000 4Towers/1112 3 move(y,r,0) move(b,table,1) move(p,table,2) +O00000-P00000-B00000-GY0000-000000-000000-000000 4Towers/1112 GB0000-OPY000-000000-000000-000000-000000-000000 2Towers/23 3 move(p,o,0) move(y,p,1) move(b,g,2) +B00000-OGPY00-000000-000000-000000-000000-000000 2Towers/14 O00000-P00000-B00000-G00000-Y00000-000000-000000 5Towers/11111 3 move(y,table,0) move(p,table,1) move(g,table,2) +R00000-O00000-B00000-Y00000-G00000-000000-000000 5Towers/11111 BO0000-GYR000-000000-000000-000000-000000-000000 2Towers/23 3 move(y,g,0) move(r,y,1) move(o,b,2) move(y,g,0) move(o,b,1) move(r,y,2) move(o,b,0) move(y,g,1) move(r,y,2) +RP0000-OGB000-000000-000000-000000-000000-000000 2Towers/23 R00000-G00000-P00000-O00000-B00000-000000-000000 5Towers/11111 3 move(p,table,0) move(b,table,1) move(g,table,2) move(b,table,0) move(p,table,1) move(g,table,2) move(b,table,0) move(g,table,1) move(p,table,2) +GB0000-PYO000-000000-000000-000000-000000-000000 2Towers/23 G00000-B00000-O00000-P00000-Y00000-000000-000000 5Towers/11111 3 move(o,table,0) move(b,table,1) move(y,table,2) move(o,table,0) move(y,table,1) move(b,table,2) move(b,table,0) move(o,table,1) move(y,table,2) +B00000-Y00000-P00000-RO0000-000000-000000-000000 4Towers/1112 B00000-O00000-YRP000-000000-000000-000000-000000 3Towers/113 3 move(o,table,0) move(r,y,1) move(p,r,2) +RG0000-YBO000-000000-000000-000000-000000-000000 2Towers/23 G00000-OR0000-YB0000-000000-000000-000000-000000 3Towers/122 3 move(o,table,0) move(g,table,1) move(r,o,2) move(g,table,0) move(o,table,1) move(r,o,2) +R00000-GO0000-YB0000-000000-000000-000000-000000 3Towers/122 Y00000-BO0000-GR0000-000000-000000-000000-000000 3Towers/122 3 move(b,table,0) move(o,b,1) move(r,g,2) +O00000-G00000-B00000-P00000-Y00000-000000-000000 5Towers/11111 P00000-BYGO00-000000-000000-000000-000000-000000 2Towers/14 3 move(y,b,0) move(g,y,1) move(o,g,2) +O00000-R00000-Y00000-P00000-G00000-000000-000000 5Towers/11111 Y00000-RGOP00-000000-000000-000000-000000-000000 2Towers/14 3 move(g,r,0) move(o,g,1) move(p,o,2) +P00000-G00000-B00000-OY0000-000000-000000-000000 4Towers/1112 Y00000-GB0000-PO0000-000000-000000-000000-000000 3Towers/122 3 move(y,table,0) move(b,g,1) move(o,p,2) move(b,g,0) move(y,table,1) move(o,p,2) move(y,table,0) move(o,p,1) move(b,g,2) +R00000-O00000-BPG000-000000-000000-000000-000000 3Towers/113 B00000-G00000-O00000-PR0000-000000-000000-000000 4Towers/1112 3 move(g,table,0) move(p,table,1) move(r,p,2) +B00000-G00000-R00000-P00000-Y00000-000000-000000 5Towers/11111 Y00000-RGPB00-000000-000000-000000-000000-000000 2Towers/14 3 move(g,r,0) move(p,g,1) move(b,p,2) +PR0000-YOB000-000000-000000-000000-000000-000000 2Towers/23 P00000-Y00000-B00000-R00000-O00000-000000-000000 5Towers/11111 3 move(b,table,0) move(r,table,1) move(o,table,2) move(b,table,0) move(o,table,1) move(r,table,2) move(r,table,0) move(b,table,1) move(o,table,2) +G00000-OPBR00-000000-000000-000000-000000-000000 2Towers/14 R00000-G00000-O00000-P00000-B00000-000000-000000 5Towers/11111 3 move(r,table,0) move(b,table,1) move(p,table,2) +R00000-B00000-O00000-YG0000-000000-000000-000000 4Towers/1112 G00000-OY0000-BR0000-000000-000000-000000-000000 3Towers/122 3 move(g,table,0) move(r,b,1) move(y,o,2) move(r,b,0) move(g,table,1) move(y,o,2) move(g,table,0) move(y,o,1) move(r,b,2) +O00000-YG0000-BR0000-000000-000000-000000-000000 3Towers/122 R00000-G00000-B00000-YO0000-000000-000000-000000 4Towers/1112 3 move(r,table,0) move(g,table,1) move(o,y,2) move(g,table,0) move(r,table,1) move(o,y,2) move(g,table,0) move(o,y,1) move(r,table,2) +GB0000-ROY000-000000-000000-000000-000000-000000 2Towers/23 G00000-B00000-R00000-Y00000-O00000-000000-000000 5Towers/11111 3 move(y,table,0) move(b,table,1) move(o,table,2) move(y,table,0) move(o,table,1) move(b,table,2) move(b,table,0) move(y,table,1) move(o,table,2) +R00000-O00000-Y00000-G00000-B00000-000000-000000 5Towers/11111 B00000-GYRO00-000000-000000-000000-000000-000000 2Towers/14 3 move(y,g,0) move(r,y,1) move(o,r,2) +RO0000-BGP000-000000-000000-000000-000000-000000 2Towers/23 B00000-R00000-PGO000-000000-000000-000000-000000 3Towers/113 3 move(p,table,0) move(g,p,1) move(o,g,2) +G00000-YB0000-RO0000-000000-000000-000000-000000 3Towers/122 R00000-GO0000-BY0000-000000-000000-000000-000000 3Towers/122 3 move(b,table,0) move(o,g,1) move(y,b,2) move(o,g,0) move(b,table,1) move(y,b,2) move(b,table,0) move(y,b,1) move(o,g,2) +P00000-BRYG00-000000-000000-000000-000000-000000 2Towers/14 Y00000-P00000-G00000-R00000-B00000-000000-000000 5Towers/11111 3 move(g,table,0) move(y,table,1) move(r,table,2) +P00000-GY0000-OR0000-000000-000000-000000-000000 3Towers/122 P00000-O00000-Y00000-RG0000-000000-000000-000000 4Towers/1112 3 move(r,table,0) move(y,table,1) move(g,r,2) move(y,table,0) move(r,table,1) move(g,r,2) +RP0000-OBY000-000000-000000-000000-000000-000000 2Towers/23 R00000-Y00000-P00000-O00000-B00000-000000-000000 5Towers/11111 3 move(p,table,0) move(y,table,1) move(b,table,2) move(y,table,0) move(p,table,1) move(b,table,2) move(y,table,0) move(b,table,1) move(p,table,2) +PO0000-BYR000-000000-000000-000000-000000-000000 2Towers/23 R00000-Y00000-POB000-000000-000000-000000-000000 3Towers/113 3 move(r,table,0) move(y,table,1) move(b,o,2) +B00000-YGPO00-000000-000000-000000-000000-000000 2Towers/14 P00000-B00000-Y00000-O00000-G00000-000000-000000 5Towers/11111 3 move(o,table,0) move(p,table,1) move(g,table,2) +YP0000-OBG000-000000-000000-000000-000000-000000 2Towers/23 Y00000-P00000-B00000-O00000-G00000-000000-000000 5Towers/11111 3 move(p,table,0) move(g,table,1) move(b,table,2) move(g,table,0) move(b,table,1) move(p,table,2) move(g,table,0) move(p,table,1) move(b,table,2) +R00000-G00000-B00000-YP0000-000000-000000-000000 4Towers/1112 YG0000-BRP000-000000-000000-000000-000000-000000 2Towers/23 3 move(r,b,0) move(p,r,1) move(g,y,2) +R00000-P00000-B00000-YO0000-000000-000000-000000 4Towers/1112 Y00000-ROPB00-000000-000000-000000-000000-000000 2Towers/14 3 move(o,r,0) move(p,o,1) move(b,p,2) +BO0000-YGP000-000000-000000-000000-000000-000000 2Towers/23 P00000-G00000-O00000-B00000-Y00000-000000-000000 5Towers/11111 3 move(p,table,0) move(g,table,1) move(o,table,2) move(p,table,0) move(o,table,1) move(g,table,2) move(o,table,0) move(p,table,1) move(g,table,2) +R00000-Y00000-O00000-P00000-B00000-000000-000000 5Towers/11111 P00000-BROY00-000000-000000-000000-000000-000000 2Towers/14 3 move(r,b,0) move(o,r,1) move(y,o,2) +G00000-R00000-Y00000-P00000-O00000-000000-000000 5Towers/11111 G00000-PRYO00-000000-000000-000000-000000-000000 2Towers/14 3 move(r,p,0) move(y,r,1) move(o,y,2) +R00000-Y00000-GOP000-000000-000000-000000-000000 3Towers/113 Y00000-PO0000-RG0000-000000-000000-000000-000000 3Towers/122 3 move(p,table,0) move(o,p,1) move(g,r,2) +Y00000-G00000-ORB000-000000-000000-000000-000000 3Towers/113 Y00000-O00000-G00000-RB0000-000000-000000-000000 4Towers/1112 3 move(b,table,0) move(r,table,1) move(b,r,2) move(b,g,0) move(r,table,1) move(b,r,2) move(b,y,0) move(r,table,1) move(b,r,2) +B00000-O00000-P00000-R00000-Y00000-000000-000000 5Towers/11111 R00000-OBPY00-000000-000000-000000-000000-000000 2Towers/14 3 move(b,o,0) move(p,b,1) move(y,p,2) +B00000-O00000-YGR000-000000-000000-000000-000000 3Towers/113 Y00000-R00000-G00000-BO0000-000000-000000-000000 4Towers/1112 3 move(r,table,0) move(g,table,1) move(o,b,2) move(r,table,0) move(o,b,1) move(g,table,2) move(o,b,0) move(r,table,1) move(g,table,2) +OG0000-YRB000-000000-000000-000000-000000-000000 2Towers/23 O00000-B00000-G00000-Y00000-R00000-000000-000000 5Towers/11111 3 move(b,table,0) move(g,table,1) move(r,table,2) move(b,table,0) move(r,table,1) move(g,table,2) move(g,table,0) move(b,table,1) move(r,table,2) +B00000-OY0000-PG0000-000000-000000-000000-000000 3Towers/122 P00000-OG0000-YB0000-000000-000000-000000-000000 3Towers/122 3 move(y,table,0) move(g,o,1) move(b,y,2) move(y,table,0) move(b,y,1) move(g,o,2) +B00000-Y00000-G00000-R00000-P00000-000000-000000 5Towers/11111 BY0000-PGR000-000000-000000-000000-000000-000000 2Towers/23 3 move(g,p,0) move(y,b,1) move(r,g,2) move(y,b,0) move(g,p,1) move(r,g,2) move(g,p,0) move(r,g,1) move(y,b,2) +R00000-P00000-Y00000-OG0000-000000-000000-000000 4Towers/1112 O00000-RPYG00-000000-000000-000000-000000-000000 2Towers/14 3 move(p,r,0) move(y,p,1) move(g,y,2) +R00000-P00000-Y00000-BG0000-000000-000000-000000 4Towers/1112 R00000-GB0000-YP0000-000000-000000-000000-000000 3Towers/122 3 move(g,table,0) move(p,y,1) move(b,g,2) move(p,y,0) move(g,table,1) move(b,g,2) move(g,table,0) move(b,g,1) move(p,y,2) +P00000-OGYR00-000000-000000-000000-000000-000000 2Towers/14 PY0000-OGR000-000000-000000-000000-000000-000000 2Towers/23 3 move(r,table,0) move(y,p,1) move(r,g,2) +G00000-R00000-O00000-PY0000-000000-000000-000000 4Towers/1112 O00000-YG0000-RP0000-000000-000000-000000-000000 3Towers/122 3 move(y,table,0) move(g,y,1) move(p,r,2) move(y,table,0) move(p,r,1) move(g,y,2) +G00000-RP0000-BY0000-000000-000000-000000-000000 3Towers/122 G00000-P00000-R00000-YB0000-000000-000000-000000 4Towers/1112 3 move(p,table,0) move(y,table,1) move(b,y,2) move(y,table,0) move(p,table,1) move(b,y,2) move(y,table,0) move(b,y,1) move(p,table,2) +G00000-R00000-P00000-Y00000-O00000-000000-000000 5Towers/11111 YP0000-RGO000-000000-000000-000000-000000-000000 2Towers/23 3 move(p,y,0) move(g,r,1) move(o,g,2) move(g,r,0) move(p,y,1) move(o,g,2) move(g,r,0) move(o,g,1) move(p,y,2) +O00000-B00000-P00000-YG0000-000000-000000-000000 4Towers/1112 P00000-GY0000-BO0000-000000-000000-000000-000000 3Towers/122 3 move(g,table,0) move(o,b,1) move(y,g,2) move(o,b,0) move(g,table,1) move(y,g,2) move(g,table,0) move(y,g,1) move(o,b,2) +B00000-PY0000-GO0000-000000-000000-000000-000000 3Towers/122 P00000-B00000-YOG000-000000-000000-000000-000000 3Towers/113 3 move(y,table,0) move(o,y,1) move(g,o,2) +Y00000-BP0000-RG0000-000000-000000-000000-000000 3Towers/122 Y00000-PR0000-BG0000-000000-000000-000000-000000 3Towers/122 3 move(p,table,0) move(g,b,1) move(r,p,2) +Y00000-P00000-R00000-O00000-B00000-000000-000000 5Towers/11111 RB0000-POY000-000000-000000-000000-000000-000000 2Towers/23 3 move(o,p,0) move(b,r,1) move(y,o,2) move(b,r,0) move(o,p,1) move(y,o,2) move(o,p,0) move(y,o,1) move(b,r,2) +Y00000-RG0000-OP0000-000000-000000-000000-000000 3Towers/122 Y00000-G00000-P00000-RO0000-000000-000000-000000 4Towers/1112 3 move(p,table,0) move(g,table,1) move(o,r,2) move(g,table,0) move(p,table,1) move(o,r,2) +P00000-R00000-GOY000-000000-000000-000000-000000 3Towers/113 Y00000-O00000-P00000-RG0000-000000-000000-000000 4Towers/1112 3 move(y,table,0) move(o,table,1) move(g,r,2) +P00000-R00000-Y00000-O00000-B00000-000000-000000 5Towers/11111 OB0000-YRP000-000000-000000-000000-000000-000000 2Towers/23 3 move(r,y,0) move(p,r,1) move(b,o,2) move(r,y,0) move(b,o,1) move(p,r,2) move(b,o,0) move(r,y,1) move(p,r,2) +G00000-YO0000-RP0000-000000-000000-000000-000000 3Towers/122 Y00000-G00000-P00000-OR0000-000000-000000-000000 4Towers/1112 3 move(o,table,0) move(p,table,1) move(r,o,2) move(p,table,0) move(o,table,1) move(r,o,2) +R00000-G00000-Y00000-O00000-P00000-000000-000000 5Towers/11111 Y00000-RGOP00-000000-000000-000000-000000-000000 2Towers/14 3 move(g,r,0) move(o,g,1) move(p,o,2) +Y00000-G00000-B00000-PO0000-000000-000000-000000 4Towers/1112 Y00000-GP0000-OB0000-000000-000000-000000-000000 3Towers/122 3 move(o,table,0) move(b,o,1) move(p,g,2) move(o,table,0) move(p,g,1) move(b,o,2) +Y00000-BR0000-GO0000-000000-000000-000000-000000 3Towers/122 O00000-R00000-B00000-YG0000-000000-000000-000000 4Towers/1112 3 move(o,table,0) move(r,table,1) move(g,y,2) move(r,table,0) move(o,table,1) move(g,y,2) move(o,table,0) move(g,y,1) move(r,table,2) +G00000-O00000-YBR000-000000-000000-000000-000000 3Towers/113 O00000-YR0000-GB0000-000000-000000-000000-000000 3Towers/122 3 move(r,table,0) move(b,g,1) move(r,y,2) move(r,o,0) move(b,g,1) move(r,y,2) +G00000-P00000-ORB000-000000-000000-000000-000000 3Towers/113 G00000-P00000-R00000-BO0000-000000-000000-000000 4Towers/1112 3 move(b,table,0) move(r,table,1) move(o,b,2) +Y00000-B00000-GOP000-000000-000000-000000-000000 3Towers/113 G00000-P00000-O00000-BY0000-000000-000000-000000 4Towers/1112 3 move(p,table,0) move(o,table,1) move(y,b,2) move(p,table,0) move(y,b,1) move(o,table,2) move(y,b,0) move(p,table,1) move(o,table,2) +R00000-YP0000-BO0000-000000-000000-000000-000000 3Towers/122 R00000-BOYP00-000000-000000-000000-000000-000000 2Towers/14 3 move(p,table,0) move(y,o,1) move(p,y,2) move(p,r,0) move(y,o,1) move(p,y,2) +YO0000-RGP000-000000-000000-000000-000000-000000 2Towers/23 R00000-O00000-Y00000-G00000-P00000-000000-000000 5Towers/11111 3 move(p,table,0) move(g,table,1) move(o,table,2) move(p,table,0) move(o,table,1) move(g,table,2) move(o,table,0) move(p,table,1) move(g,table,2) +B00000-RY0000-PG0000-000000-000000-000000-000000 3Towers/122 P00000-R00000-YBG000-000000-000000-000000-000000 3Towers/113 3 move(y,table,0) move(b,y,1) move(g,b,2) +R00000-P00000-B00000-G00000-O00000-000000-000000 5Towers/11111 R00000-GOBP00-000000-000000-000000-000000-000000 2Towers/14 3 move(o,g,0) move(b,o,1) move(p,b,2) +Y00000-G00000-BPO000-000000-000000-000000-000000 3Towers/113 G00000-P00000-Y00000-BO0000-000000-000000-000000 4Towers/1112 3 move(o,table,0) move(p,table,1) move(o,b,2) move(o,g,0) move(p,table,1) move(o,b,2) move(o,y,0) move(p,table,1) move(o,b,2) +P00000-O00000-G00000-RY0000-000000-000000-000000 4Towers/1112 Y00000-P00000-ORG000-000000-000000-000000-000000 3Towers/113 3 move(y,table,0) move(r,o,1) move(g,r,2) +B00000-RO0000-GP0000-000000-000000-000000-000000 3Towers/122 B00000-P00000-G00000-OR0000-000000-000000-000000 4Towers/1112 3 move(o,table,0) move(p,table,1) move(r,o,2) move(p,table,0) move(o,table,1) move(r,o,2) move(o,table,0) move(r,o,1) move(p,table,2) +Y00000-PG0000-OB0000-000000-000000-000000-000000 3Towers/122 Y00000-B00000-G00000-PO0000-000000-000000-000000 4Towers/1112 3 move(g,table,0) move(b,table,1) move(o,p,2) move(b,table,0) move(g,table,1) move(o,p,2) +GP0000-ROY000-000000-000000-000000-000000-000000 2Towers/23 G00000-O00000-R00000-P00000-Y00000-000000-000000 5Towers/11111 3 move(p,table,0) move(y,table,1) move(o,table,2) move(y,table,0) move(p,table,1) move(o,table,2) move(y,table,0) move(o,table,1) move(p,table,2) +P00000-O00000-G00000-RY0000-000000-000000-000000 4Towers/1112 GO0000-PYR000-000000-000000-000000-000000-000000 2Towers/23 3 move(o,g,0) move(y,p,1) move(r,y,2) move(y,p,0) move(o,g,1) move(r,y,2) move(y,p,0) move(r,y,1) move(o,g,2) +PY0000-BGR000-000000-000000-000000-000000-000000 2Towers/23 P00000-Y00000-R00000-B00000-G00000-000000-000000 5Towers/11111 3 move(y,table,0) move(r,table,1) move(g,table,2) move(r,table,0) move(g,table,1) move(y,table,2) move(r,table,0) move(y,table,1) move(g,table,2) +B00000-O00000-Y00000-GP0000-000000-000000-000000 4Towers/1112 Y00000-P00000-OBG000-000000-000000-000000-000000 3Towers/113 3 move(p,table,0) move(b,o,1) move(g,b,2) move(b,o,0) move(p,table,1) move(g,b,2) +R00000-OG0000-PB0000-000000-000000-000000-000000 3Towers/122 R00000-B00000-O00000-GP0000-000000-000000-000000 4Towers/1112 3 move(g,table,0) move(b,table,1) move(p,g,2) move(b,table,0) move(g,table,1) move(p,g,2) +B00000-Y00000-G00000-P00000-R00000-000000-000000 5Towers/11111 R00000-PGYB00-000000-000000-000000-000000-000000 2Towers/14 3 move(g,p,0) move(y,g,1) move(b,y,2) +G00000-YR0000-BO0000-000000-000000-000000-000000 3Towers/122 Y00000-B00000-R00000-OG0000-000000-000000-000000 4Towers/1112 3 move(o,table,0) move(r,table,1) move(g,o,2) move(r,table,0) move(o,table,1) move(g,o,2) move(o,table,0) move(g,o,1) move(r,table,2) +B00000-P00000-Y00000-G00000-O00000-000000-000000 5Towers/11111 G00000-OBPY00-000000-000000-000000-000000-000000 2Towers/14 3 move(b,o,0) move(p,b,1) move(y,p,2) +P00000-YGBR00-000000-000000-000000-000000-000000 2Towers/14 B00000-G00000-P00000-Y00000-R00000-000000-000000 5Towers/11111 3 move(r,table,0) move(b,table,1) move(g,table,2) +PG0000-RBO000-000000-000000-000000-000000-000000 2Towers/23 O00000-G00000-P00000-B00000-R00000-000000-000000 5Towers/11111 3 move(o,table,0) move(g,table,1) move(b,table,2) move(o,table,0) move(b,table,1) move(g,table,2) move(g,table,0) move(o,table,1) move(b,table,2) +P00000-R00000-BGY000-000000-000000-000000-000000 3Towers/113 R00000-B00000-Y00000-GP0000-000000-000000-000000 4Towers/1112 3 move(y,table,0) move(g,table,1) move(p,g,2) +B00000-R00000-GYP000-000000-000000-000000-000000 3Towers/113 P00000-Y00000-G00000-RB0000-000000-000000-000000 4Towers/1112 3 move(p,table,0) move(y,table,1) move(b,r,2) move(p,table,0) move(b,r,1) move(y,table,2) move(b,r,0) move(p,table,1) move(y,table,2) +O00000-PYBR00-000000-000000-000000-000000-000000 2Towers/14 R00000-B00000-O00000-P00000-Y00000-000000-000000 5Towers/11111 3 move(r,table,0) move(b,table,1) move(y,table,2) +R00000-BO0000-YG0000-000000-000000-000000-000000 3Towers/122 R00000-Y00000-G00000-OB0000-000000-000000-000000 4Towers/1112 3 move(o,table,0) move(g,table,1) move(b,o,2) move(g,table,0) move(o,table,1) move(b,o,2) move(o,table,0) move(b,o,1) move(g,table,2) +G00000-P00000-O00000-R00000-B00000-000000-000000 5Towers/11111 R00000-GOPB00-000000-000000-000000-000000-000000 2Towers/14 3 move(o,g,0) move(p,o,1) move(b,p,2) +G00000-B00000-O00000-YR0000-000000-000000-000000 4Towers/1112 R00000-O00000-BGY000-000000-000000-000000-000000 3Towers/113 3 move(r,table,0) move(g,b,1) move(y,g,2) move(g,b,0) move(r,table,1) move(y,g,2) +Y00000-BP0000-OG0000-000000-000000-000000-000000 3Towers/122 P00000-G00000-Y00000-OB0000-000000-000000-000000 4Towers/1112 3 move(p,table,0) move(g,table,1) move(b,o,2) move(g,table,0) move(p,table,1) move(b,o,2) +B00000-P00000-G00000-R00000-O00000-000000-000000 5Towers/11111 RP0000-GBO000-000000-000000-000000-000000-000000 2Towers/23 3 move(b,g,0) move(p,r,1) move(o,b,2) move(p,r,0) move(b,g,1) move(o,b,2) move(b,g,0) move(o,b,1) move(p,r,2) +G00000-O00000-P00000-BR0000-000000-000000-000000 4Towers/1112 B00000-RG0000-OP0000-000000-000000-000000-000000 3Towers/122 3 move(r,table,0) move(g,r,1) move(p,o,2) move(r,table,0) move(p,o,1) move(g,r,2) move(p,o,0) move(r,table,1) move(g,r,2) +OG0000-YRB000-000000-000000-000000-000000-000000 2Towers/23 O00000-Y00000-G00000-B00000-R00000-000000-000000 5Towers/11111 3 move(b,table,0) move(g,table,1) move(r,table,2) move(b,table,0) move(r,table,1) move(g,table,2) move(g,table,0) move(b,table,1) move(r,table,2) +BY0000-PGO000-000000-000000-000000-000000-000000 2Towers/23 Y00000-P00000-B00000-O00000-G00000-000000-000000 5Towers/11111 3 move(y,table,0) move(o,table,1) move(g,table,2) move(o,table,0) move(y,table,1) move(g,table,2) move(o,table,0) move(g,table,1) move(y,table,2) +O00000-P00000-RB0000-000000-000000-000000-000000 3Towers/112 BO0000-RP0000-000000-000000-000000-000000-000000 2Towers/22 3 move(b,table,0) move(p,r,1) move(o,b,2) move(b,table,0) move(o,b,1) move(p,r,2) +G00000-Y00000-P00000-OR0000-000000-000000-000000 4Towers/1112 GR0000-OYP000-000000-000000-000000-000000-000000 2Towers/23 3 move(r,g,0) move(y,o,1) move(p,y,2) diff --git a/blocks/task5/maps/level3/input_img/0.jpg b/blocks/task5/maps/level3/input_img/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8aadabadc85c185dfc92a2c9ef22f2fc0004837a --- /dev/null +++ b/blocks/task5/maps/level3/input_img/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a8d145b7b40fcf7ad4e015138270279ed2fe1f0835f26efc3b1ffef0d25731 +size 9957 diff --git a/blocks/task5/maps/level3/input_img/1.jpg b/blocks/task5/maps/level3/input_img/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ac8fac5296346eb6f9c42b7f13efbc16385316b --- /dev/null +++ b/blocks/task5/maps/level3/input_img/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f2caf0bdbf87ca2da5e671667b5d36221d658b8fe06c2ac87f0a651d15f19e +size 10034 diff --git a/blocks/task5/maps/level3/input_img/10.jpg b/blocks/task5/maps/level3/input_img/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bd369dad1aaf350246c4b39aed93207b9aca140 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d252e811dc2ea17248fe9db066ea901a8a80295df4b79f34f991524614ad8e5f +size 11008 diff --git a/blocks/task5/maps/level3/input_img/11.jpg b/blocks/task5/maps/level3/input_img/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18a9bea0318e29697841654af0d9ada34b9f16a4 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eda002bb105d01ff82a87990dd8c90b2ac93feaae91afa69bb94fa6220acedf +size 12447 diff --git a/blocks/task5/maps/level3/input_img/12.jpg b/blocks/task5/maps/level3/input_img/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2afcfeeabc6eec696c7bfdf41ddfe4f72c4da10d --- /dev/null +++ b/blocks/task5/maps/level3/input_img/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a62122921455534302e52fe702913c07d6b61413b9d8fb3cd9c6fb388b59545 +size 10936 diff --git a/blocks/task5/maps/level3/input_img/13.jpg b/blocks/task5/maps/level3/input_img/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bec6bed7c370780787691b028e14d6256d0bc495 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1004c0edb15534cf75c1b518e3dda5aab4a9d24c7291ef71bc7db472f670e5aa +size 10380 diff --git a/blocks/task5/maps/level3/input_img/14.jpg b/blocks/task5/maps/level3/input_img/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc8079300a878ce2bc51b39dc7d8f45c8765c294 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a948706ffe1a4c1355a1314be504d4a38c9a7bb35bde49316c89d1037ca747a5 +size 10580 diff --git a/blocks/task5/maps/level3/input_img/15.jpg b/blocks/task5/maps/level3/input_img/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f361c880340e05d0dd1037adfe1c6362f63024a8 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d15e65a553b5120505145a65442f6bcd4997a5f08fc97865d23dc044a4b91e4 +size 10409 diff --git a/blocks/task5/maps/level3/input_img/16.jpg b/blocks/task5/maps/level3/input_img/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbe8994513b5f5cd34059fe6c0c23e91f3776c8d --- /dev/null +++ b/blocks/task5/maps/level3/input_img/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c03b2b881046f2de8777b42999aac1830b1a39b19c82bebd22f18a250c1d2c8 +size 11912 diff --git a/blocks/task5/maps/level3/input_img/17.jpg b/blocks/task5/maps/level3/input_img/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9658c03e91d7a39e7ef2f909b6b0de48bb42e402 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a0f1623b0c2ab3034796b77dd6831f5ca956cb1463e38cced82520be7fe245 +size 11101 diff --git a/blocks/task5/maps/level3/input_img/18.jpg b/blocks/task5/maps/level3/input_img/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fca5aaf741e5b9724299973e5bdaaf1e0495451 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb02e57a5ebaab249474d31f9ee9e108f79d1946d7351da9e4cd6b12b1248be +size 10614 diff --git a/blocks/task5/maps/level3/input_img/19.jpg b/blocks/task5/maps/level3/input_img/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f37651a3aebcd229a0484d929155e9ec9ba2f33d --- /dev/null +++ b/blocks/task5/maps/level3/input_img/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db5eb849580273a4c68428c96c0e1b4d9de138a836406ab6ea8104ad7238567 +size 11119 diff --git a/blocks/task5/maps/level3/input_img/2.jpg b/blocks/task5/maps/level3/input_img/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..840a6936f70064c3e9dee42bf517978b4c0db68f --- /dev/null +++ b/blocks/task5/maps/level3/input_img/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621727245a0039711bd211194900b58f88240e671c853e4772b3f415a854fab2 +size 12103 diff --git a/blocks/task5/maps/level3/input_img/20.jpg b/blocks/task5/maps/level3/input_img/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f37e33140f03b3972318d231737bebb46b9042a --- /dev/null +++ b/blocks/task5/maps/level3/input_img/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88161f81e4757573db71726197802a2db1aba30473738330cf6cd84a4ed04390 +size 10978 diff --git a/blocks/task5/maps/level3/input_img/21.jpg b/blocks/task5/maps/level3/input_img/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d2a9ffe8eafab0137e92695d478b640a02e1d7d --- /dev/null +++ b/blocks/task5/maps/level3/input_img/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae62643a9b812a416465c26bc19b9675d9c1decdef39378c1bb93c4aba620a1 +size 10834 diff --git a/blocks/task5/maps/level3/input_img/22.jpg b/blocks/task5/maps/level3/input_img/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db5bf00db178a0e886878d84ef8bba16140302c1 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0fecf1b6ed117260c7acec9b1657ee1fd6a0cf6dfc17d82191dda5e9d174d55 +size 11424 diff --git a/blocks/task5/maps/level3/input_img/23.jpg b/blocks/task5/maps/level3/input_img/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..137d52fbc6aa128f05822daea4404cfd9c482f59 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccece4680402649c6a8f7604868fbb9609b0d386320d586dcaac687235ce6817 +size 9801 diff --git a/blocks/task5/maps/level3/input_img/24.jpg b/blocks/task5/maps/level3/input_img/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3895bd3d8a9c09a485210cde9feb5951bf726e29 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23738076ca509e4b00019900a9f394777436ea41281470b50e664657ff0759a6 +size 11794 diff --git a/blocks/task5/maps/level3/input_img/25.jpg b/blocks/task5/maps/level3/input_img/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d3a4a191f249d03bbce713cbeccfec7d3b483cc --- /dev/null +++ b/blocks/task5/maps/level3/input_img/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883f500454a1eefd010655c14f561131e6fbbc96bb5b051918f70f4d405b1e6c +size 10914 diff --git a/blocks/task5/maps/level3/input_img/26.jpg b/blocks/task5/maps/level3/input_img/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c55ab5db9aee48a41555615f7e8a3d0feb30e8c9 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e39d4b2d6bde243af7f39b49f77ec17b86dd175acdfe0a6153784a875faa8f +size 11362 diff --git a/blocks/task5/maps/level3/input_img/27.jpg b/blocks/task5/maps/level3/input_img/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c50c98d350137f6e610f3d9f6a42d9a02479d9c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d49d6fce5b814c54841d53b62885e269057f7d1a1fc0bf0791f735729b4d02e +size 10293 diff --git a/blocks/task5/maps/level3/input_img/28.jpg b/blocks/task5/maps/level3/input_img/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3628b32ec733a094dee528a76993375c4589daf6 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43647e0710bb3cc49f2155321ef3d497dce51abc7cb8fae5ce9d25c17dde908 +size 11144 diff --git a/blocks/task5/maps/level3/input_img/29.jpg b/blocks/task5/maps/level3/input_img/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2033e195c1fcc60464dce6b41060f00be26ce8f2 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385389fc2beb6d9e4ca6a647fe207f3381d162a049e5f72b60db1106f34df277 +size 10551 diff --git a/blocks/task5/maps/level3/input_img/3.jpg b/blocks/task5/maps/level3/input_img/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f33ddedc54b9e8c73bcec485b683edf5544264d7 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385d5483c8a68b85caed95ce2b878122f9d00bb8858785ec55e712445f280c97 +size 9887 diff --git a/blocks/task5/maps/level3/input_img/30.jpg b/blocks/task5/maps/level3/input_img/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95cd3117398758879c681cbcb4932490dc992aa1 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5b651196c03989dd18b876f8615964cd2497e85a1e4dce99132a86046d40ed +size 10633 diff --git a/blocks/task5/maps/level3/input_img/31.jpg b/blocks/task5/maps/level3/input_img/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd9d1c73c43d40dc7c23033f5057a0cb5bd2e958 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be88fd81a5aebdaeb9be76a5c5a5bdb2b469f2ddaf72d10145e849f050eccea +size 12305 diff --git a/blocks/task5/maps/level3/input_img/32.jpg b/blocks/task5/maps/level3/input_img/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75c7a6fd4b4b8959c1e797271d038a1e90f40e5c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e8898da6fa611b0233ff9227bffbe8872d124bc55f4a6a810306ea7f74cb403 +size 10684 diff --git a/blocks/task5/maps/level3/input_img/33.jpg b/blocks/task5/maps/level3/input_img/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a444767f1697ba50d908414485fdfed700b1b856 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98bc06dcf8d59944144446b7b84995344cccacb60d67fd8bb926429b6efc597 +size 10335 diff --git a/blocks/task5/maps/level3/input_img/34.jpg b/blocks/task5/maps/level3/input_img/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84ce3178a80ce3116996f889fdd5bb774b752a34 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c93eff4b552898d9a7256343ddc4fc1956148f64a65c42258f0ba90c75dcc9e +size 10565 diff --git a/blocks/task5/maps/level3/input_img/35.jpg b/blocks/task5/maps/level3/input_img/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce2246bd75fe83a33cc0527a5b5adb51c666912a --- /dev/null +++ b/blocks/task5/maps/level3/input_img/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ec1ca8067d2766cd19d56857b0d26daae0f6999db09ffc053242d13e3857eb +size 12157 diff --git a/blocks/task5/maps/level3/input_img/36.jpg b/blocks/task5/maps/level3/input_img/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bb475ce51532491b639e72ff3892651604558d1 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a55758d86099eb8db0c90731253d2a79ddd5859f8f88bedf70032f5487696547 +size 9826 diff --git a/blocks/task5/maps/level3/input_img/37.jpg b/blocks/task5/maps/level3/input_img/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cdfa3a7aa58779f4b6b137291e6801d9b94a083 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d76c790388ed82872bb383cd112a464ab144fb51dc494d7065a4fcf5b7cfac +size 10504 diff --git a/blocks/task5/maps/level3/input_img/38.jpg b/blocks/task5/maps/level3/input_img/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0495d207d4cc6c17dfc6d638f964fa888169d64e --- /dev/null +++ b/blocks/task5/maps/level3/input_img/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd24dcfca31fa091bc95a10a80133e089cb2acddb7cd1d31e24133f2567040f +size 10918 diff --git a/blocks/task5/maps/level3/input_img/39.jpg b/blocks/task5/maps/level3/input_img/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..395dcc18dea41bf594b64c300df8b5ac350834d8 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2276b4a4befc4f69dbfa38edaf68a002343fdaf338b00ab916f834ec4253e2 +size 10702 diff --git a/blocks/task5/maps/level3/input_img/4.jpg b/blocks/task5/maps/level3/input_img/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c8eb1688fe6f9011f087006a47c2ce400cdad93 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f075f158806f4dddd45aa9aeb075bc20491d3211f41368fe24a1c8ce5f16abe +size 11412 diff --git a/blocks/task5/maps/level3/input_img/40.jpg b/blocks/task5/maps/level3/input_img/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..506ebc297cd7ab8cebd0a6d25fa56976edbf435c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8382cb4517419d06ae24ada58bb4bd5f31c78eaec66f1f06b50f357705cfbf38 +size 11045 diff --git a/blocks/task5/maps/level3/input_img/41.jpg b/blocks/task5/maps/level3/input_img/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e4d9596f896412d6c900218a2049aafddc2213c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae1535f3a88cad4f43064309292ed8d1b514178d85891c1cb7ef44ea08d0b7d +size 11395 diff --git a/blocks/task5/maps/level3/input_img/42.jpg b/blocks/task5/maps/level3/input_img/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..766b4e9e2971a3fa718c10eace3543dce166c160 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c502f8d9626ef6c10790791eeb8c2b6225395d29eede182ee97055a4754c6be +size 10490 diff --git a/blocks/task5/maps/level3/input_img/43.jpg b/blocks/task5/maps/level3/input_img/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a743e06d79a2eb8ac8bb3bb97c47f76a0a95dbcf --- /dev/null +++ b/blocks/task5/maps/level3/input_img/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bd549b22c5807f9fcb150307deff32617b8bea040fbadb73c39143f71d6b92 +size 10991 diff --git a/blocks/task5/maps/level3/input_img/44.jpg b/blocks/task5/maps/level3/input_img/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a9fbbc5b9d25eb8dac6d0b7da706cff0cd27e07 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adff9057e1afb2bd1f5b52fb7713314e4b0ef3d5f6eb58cc7e26812a39628d70 +size 9982 diff --git a/blocks/task5/maps/level3/input_img/45.jpg b/blocks/task5/maps/level3/input_img/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68e92d77ab155b853aa4b914a4f549a3095e788c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e73597edc93b0dc7c456268283e2414ccdd9442b8c2fbf152836e1ccd84c7f +size 10961 diff --git a/blocks/task5/maps/level3/input_img/46.jpg b/blocks/task5/maps/level3/input_img/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d932a773442c54309cbea8ac3d4a7a3d12bf7068 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84233c9b14ad2b709345ea3850106b256e904d81ea449c3eed5b28f071a8ca2 +size 10449 diff --git a/blocks/task5/maps/level3/input_img/47.jpg b/blocks/task5/maps/level3/input_img/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ddccacac1072c9205fd1b59ca5373b61b1826d6 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9f3056a4cebf97e42449823ee6288e8b56bcd6a8e89e2ad7bddb655cb27ee6 +size 10218 diff --git a/blocks/task5/maps/level3/input_img/48.jpg b/blocks/task5/maps/level3/input_img/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78fa02822bbe015be72fa9e390b68e53326eeac0 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a119e4784aa83a7a25418c762e97b27f4a2d56756185f4d08fd0e4525c7386b9 +size 11996 diff --git a/blocks/task5/maps/level3/input_img/49.jpg b/blocks/task5/maps/level3/input_img/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..623ce56e46c6e305593fe248c76f10669255c70c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848e7ebd8770d25b3dd3850849ddff99b2eb0ea19d608718f596ea1874fbd37e +size 10675 diff --git a/blocks/task5/maps/level3/input_img/5.jpg b/blocks/task5/maps/level3/input_img/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf4a3e0d9b371484a33487983ee892b38bc81f21 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f12d4ad66fa419840ba345906376fc54f2f24457acd09fcf00b4b912fedfcc +size 10003 diff --git a/blocks/task5/maps/level3/input_img/50.jpg b/blocks/task5/maps/level3/input_img/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ac3602326b1f4afc750e0d44d9f8404e5856300 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70bd9de2beec944ae96cf3b962c396a6e3a2ec9da93d4496801138a6565a756 +size 10208 diff --git a/blocks/task5/maps/level3/input_img/51.jpg b/blocks/task5/maps/level3/input_img/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49b9a2222ed59ac67f10b077fb12567ea4a3512c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3f92c7f45714336528c2f2fe778aa9c56e5be300c0e08ee0649f0fe8ea2f21 +size 11280 diff --git a/blocks/task5/maps/level3/input_img/52.jpg b/blocks/task5/maps/level3/input_img/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1e2e44263d44f857ad56b238dcb51cca92624bc --- /dev/null +++ b/blocks/task5/maps/level3/input_img/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08110c0d5448a9f810a2c1348893e0fd85e080952e529582be8a0c44cf73fb9d +size 11174 diff --git a/blocks/task5/maps/level3/input_img/53.jpg b/blocks/task5/maps/level3/input_img/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49404c3002ae2f20f839669099cccca4b3f85646 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f64ad1f1ff130b1a2106944d038b0942497debe3ee1f5d45480f999c4f8e16 +size 10896 diff --git a/blocks/task5/maps/level3/input_img/54.jpg b/blocks/task5/maps/level3/input_img/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe4d786aee6b9e440e78e179eca2993704e7d69b --- /dev/null +++ b/blocks/task5/maps/level3/input_img/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca43aafe6ab51672422b04e9dfc09c8187158e224ddf16f7150709f449995fa +size 10993 diff --git a/blocks/task5/maps/level3/input_img/55.jpg b/blocks/task5/maps/level3/input_img/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02f9bde00e2c5a3ab14493f9d1626fbc275cacdd --- /dev/null +++ b/blocks/task5/maps/level3/input_img/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501db541aae09ff14288317fe8ae6959befd59822cb6ef6bfc482365f89a6dc1 +size 11640 diff --git a/blocks/task5/maps/level3/input_img/56.jpg b/blocks/task5/maps/level3/input_img/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0075f561afeca247664e826ae244a3f10679a563 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3306db90811426993c0dde0418ee143ba5f49470e882832ef721c7e52b6186f7 +size 10150 diff --git a/blocks/task5/maps/level3/input_img/57.jpg b/blocks/task5/maps/level3/input_img/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea369feb742b073de34048c4823633aac0ed856d --- /dev/null +++ b/blocks/task5/maps/level3/input_img/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f8448167056a14b11c785c9a4ed8292789fc5f5880152f9206a5b650ddf059a +size 10411 diff --git a/blocks/task5/maps/level3/input_img/58.jpg b/blocks/task5/maps/level3/input_img/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09b69795261f0999c87d1b7d3c470ae3a0be7324 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788ebc5f22d1c704f97f990e587971165aad7d98c82a62e31798d7a42696bd70 +size 11914 diff --git a/blocks/task5/maps/level3/input_img/59.jpg b/blocks/task5/maps/level3/input_img/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..318bcc9dbd4cee5ec98c438faa2262a13ec4cad9 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f4acaf810e0bcfe8672d6c8e94766a9c3f88bd6c2a22636881dde5e8b2d4a1 +size 10962 diff --git a/blocks/task5/maps/level3/input_img/6.jpg b/blocks/task5/maps/level3/input_img/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd26a1da13934b28872b812d142063e127ec6777 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e397ea3d4aaada01b056ea07b216d4a77af1a5565858dd3deef7b6aba249eb +size 10596 diff --git a/blocks/task5/maps/level3/input_img/60.jpg b/blocks/task5/maps/level3/input_img/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4c3ded2ec782fbbbaf28d52ad599afc9f6a460c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f690d28d443fc75640734425f2387ae639d52a148c856bae798466c6490c957c +size 10801 diff --git a/blocks/task5/maps/level3/input_img/61.jpg b/blocks/task5/maps/level3/input_img/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8e85da81db03168f2573fff5ede372999c4d3ca --- /dev/null +++ b/blocks/task5/maps/level3/input_img/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960379b0c66c03582e26ad2313b58d4e130637901f78336b629b737d1f54de73 +size 10915 diff --git a/blocks/task5/maps/level3/input_img/62.jpg b/blocks/task5/maps/level3/input_img/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45b5c684cf360a482b52c2b6d0ebda37e03f3b08 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d730d3bb45e4133db2cd8b54076ccd4b47b62f1fa60528dba0a4057e3132c78 +size 10430 diff --git a/blocks/task5/maps/level3/input_img/63.jpg b/blocks/task5/maps/level3/input_img/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46513f470ef24ab60e1b031d9868db08b34dd382 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0558934936ed4638247e83a635cc10bd565bd8a8f65b3a3ac6765d6a1466cec +size 12299 diff --git a/blocks/task5/maps/level3/input_img/64.jpg b/blocks/task5/maps/level3/input_img/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8c0f7e446bf62074e7c5c8665a315082d5afef9 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da388f1840152ef6bdd32c93b14de1ccdbe4e84593f8f0422e2097acf6fedcd +size 10032 diff --git a/blocks/task5/maps/level3/input_img/65.jpg b/blocks/task5/maps/level3/input_img/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c02bddef0e23eec6b8fb6903bb5a54d8381c26a8 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:665ac08edacbc5b17fe782464f8c7503c98bcc7d93ca9f3c69b50f3e0c50c285 +size 10610 diff --git a/blocks/task5/maps/level3/input_img/66.jpg b/blocks/task5/maps/level3/input_img/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44a1b650a97235243e609fc32e7cffa7cf33c099 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8224b5ef3927cc78b65c9e5e92b03593581176baeeddba07a3cf6760c39d7236 +size 11023 diff --git a/blocks/task5/maps/level3/input_img/67.jpg b/blocks/task5/maps/level3/input_img/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..550e4ef7731b499926388e817aee50ccc7f3646d --- /dev/null +++ b/blocks/task5/maps/level3/input_img/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff444f7cb36e632a9a36d2eab39a95c210f682c91de42d0eb1747f068a3e4a74 +size 10920 diff --git a/blocks/task5/maps/level3/input_img/68.jpg b/blocks/task5/maps/level3/input_img/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc0b83cad636baf754502905574bb3f3834167b8 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a64d256db9483fb35bb6dc85426d0f933a14398bc1f1ee7f20a9dcb7d3e2879e +size 10676 diff --git a/blocks/task5/maps/level3/input_img/69.jpg b/blocks/task5/maps/level3/input_img/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a273567cad1580c3707c485abc642bad3969ccd --- /dev/null +++ b/blocks/task5/maps/level3/input_img/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d88353b5c03a32fc40e1a2ca1731959bd4ea887db8d3949a459a839d3b5e8b7 +size 11018 diff --git a/blocks/task5/maps/level3/input_img/7.jpg b/blocks/task5/maps/level3/input_img/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96270786bbe8eeae956f6c12a4a22d3d08779153 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1bbe63d11c7c01307ea270bcd95355dd54ae7307d882733cd035dd183d50e94 +size 10796 diff --git a/blocks/task5/maps/level3/input_img/70.jpg b/blocks/task5/maps/level3/input_img/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad3a655bd22caf6c81a63d0522becedf6b7670b3 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b43b73a0e0a1391b775941deb14f6ba568d85c83dcb42f61d84fdf61833ce4 +size 9844 diff --git a/blocks/task5/maps/level3/input_img/71.jpg b/blocks/task5/maps/level3/input_img/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..873b20fa7c85b0f9e0058ea3ce3b44995ecef554 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b3b71344c9639abd0061ad333892ad95a80f886419853a83b52cddebe8f35d0 +size 10298 diff --git a/blocks/task5/maps/level3/input_img/72.jpg b/blocks/task5/maps/level3/input_img/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4effbf64977fd69703451ea56e09183ea72df60 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f51f57f49d4420ac73d2a483180cc140f41d6521836fe99ad9d2e70dd0e5a06d +size 10878 diff --git a/blocks/task5/maps/level3/input_img/73.jpg b/blocks/task5/maps/level3/input_img/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..148e2dd671e30435c8745e1fc3225694fc6ae540 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80b4073227773b6f4d63dcb458db25c3727eaede95965b0b918d6433aac3b23 +size 10405 diff --git a/blocks/task5/maps/level3/input_img/74.jpg b/blocks/task5/maps/level3/input_img/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc6e8fc2c069eb76540070db9ee5664082c1a259 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1127aaa3568b2dcca73e7247eee4d2dd140f44fa7313be02f15df937f77dc55e +size 10993 diff --git a/blocks/task5/maps/level3/input_img/75.jpg b/blocks/task5/maps/level3/input_img/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e91da1feb4e35724a259ce3cae6c5796037eb001 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6ba06ed93af2950b3863f3f934afbb73a20739110f45156fb7c94a556c3b21 +size 10199 diff --git a/blocks/task5/maps/level3/input_img/76.jpg b/blocks/task5/maps/level3/input_img/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f591ce99cc03c07f520b270beec03fbd49474782 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a350bf192e524d3e7efbc3434cac99161c118b9253e4804a9e0c50da0f076ca +size 10816 diff --git a/blocks/task5/maps/level3/input_img/77.jpg b/blocks/task5/maps/level3/input_img/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6d1f490161a3e1cba353d0bd1572291663db597 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5f9e86ba10c9fd7fa88e9385a2d1c1b9feb7740403d10adebb6a0b73447009 +size 10308 diff --git a/blocks/task5/maps/level3/input_img/78.jpg b/blocks/task5/maps/level3/input_img/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc6e8fc2c069eb76540070db9ee5664082c1a259 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1127aaa3568b2dcca73e7247eee4d2dd140f44fa7313be02f15df937f77dc55e +size 10993 diff --git a/blocks/task5/maps/level3/input_img/79.jpg b/blocks/task5/maps/level3/input_img/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b2148190279fc07bc2da0f97f70b6d2347df6b3 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5869a741555fa77461d116e390d15053e12d45b9ecdcd8534d1dcee94f6c9bf5 +size 9792 diff --git a/blocks/task5/maps/level3/input_img/8.jpg b/blocks/task5/maps/level3/input_img/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c36c020649d5d4f2b96972caa1b7e2042352607 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0901204cee6d4981a73a7af76ffd15d6b8deadc8ad90f0d27161e66b645e5ab +size 11129 diff --git a/blocks/task5/maps/level3/input_img/80.jpg b/blocks/task5/maps/level3/input_img/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d9cf5d7a009e181080ab12a72c3c04a02f6ce6f --- /dev/null +++ b/blocks/task5/maps/level3/input_img/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb945043284dd8f24f36e01d866c78d8b2fbbdc342f60d40277e9a1ec0bf7e3a +size 10760 diff --git a/blocks/task5/maps/level3/input_img/81.jpg b/blocks/task5/maps/level3/input_img/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21cd0510232c832ff132e150d4b4a1ffc0822277 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7952a94da8cf068d3be45b011cc247c6f3f99e056d3d58e6edf56a8d2ccae81a +size 10788 diff --git a/blocks/task5/maps/level3/input_img/82.jpg b/blocks/task5/maps/level3/input_img/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a723bd0e9c777564e5cf0aaf59db161117bfcf6b --- /dev/null +++ b/blocks/task5/maps/level3/input_img/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77112ae41107fa8a8caf1fd651196f6161137cf2b665099e4c1a7ebf69f9a2d +size 11830 diff --git a/blocks/task5/maps/level3/input_img/83.jpg b/blocks/task5/maps/level3/input_img/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37343ce1f70b2639bc3fb74b61ca4517811005bc --- /dev/null +++ b/blocks/task5/maps/level3/input_img/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8627b3ab82581b144898a0331539e356da8a65d8357a000a8fc15810ffb46b79 +size 10638 diff --git a/blocks/task5/maps/level3/input_img/84.jpg b/blocks/task5/maps/level3/input_img/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..796578306507fedfc048e9bbd7a01d47c7125c0a --- /dev/null +++ b/blocks/task5/maps/level3/input_img/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bacdecc5dd45da255ba1d738358159a149f42956ed5c2fd103f3c0113d7d7e1 +size 11637 diff --git a/blocks/task5/maps/level3/input_img/85.jpg b/blocks/task5/maps/level3/input_img/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2754853efc7591d36c9fe190bde1cb0915f219f --- /dev/null +++ b/blocks/task5/maps/level3/input_img/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:158013e4846e60435205e7c07e4b5414a820d4ea0a8e460de56cbbc24fc613e3 +size 11317 diff --git a/blocks/task5/maps/level3/input_img/86.jpg b/blocks/task5/maps/level3/input_img/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c90879a99c6a0fb8d844c3fe720074bd64e031e --- /dev/null +++ b/blocks/task5/maps/level3/input_img/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c5ba252d644b0e1244e3b2487dce7279fe43b65519e4827f9d9003a20dbf1d +size 10282 diff --git a/blocks/task5/maps/level3/input_img/87.jpg b/blocks/task5/maps/level3/input_img/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb9f36a0abb45adf97bcbcf96a10fa6e0d79ba49 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f56ffcd95c998db88662fa48cb370947f2de55034c3f1839e16504adf2488ac6 +size 10952 diff --git a/blocks/task5/maps/level3/input_img/88.jpg b/blocks/task5/maps/level3/input_img/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cfa220652b7bc2e380c604b385aebfde7019631 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffbef46324d1b6bf63baf1861e53c6d969b09d7cc32fff5ec561c51613bbfc58 +size 11449 diff --git a/blocks/task5/maps/level3/input_img/89.jpg b/blocks/task5/maps/level3/input_img/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ed86886c9ab1a1b5e739e52f085d4d638f4694c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fc021f4fcd93fba1bf3d82056a9196e3fca05d5c55d3cb17e4b4458f53b3987 +size 12070 diff --git a/blocks/task5/maps/level3/input_img/9.jpg b/blocks/task5/maps/level3/input_img/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cb589bc55aba1f90246ba3e8543adda5a778065 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d07c9da662b2de52ae613d1bc452ff1da4f509358182eb41a20cc2b15a10e2f +size 10322 diff --git a/blocks/task5/maps/level3/input_img/90.jpg b/blocks/task5/maps/level3/input_img/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4545b3dcd3ec4dec91b62324c568e16417601f85 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ca12b60e9af4d75e95de84a5159bd30b5e36072b923329e2e3e8cddb35807b +size 10885 diff --git a/blocks/task5/maps/level3/input_img/91.jpg b/blocks/task5/maps/level3/input_img/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78a8c67887201c33dbb6dea4e94d7415df299aaa --- /dev/null +++ b/blocks/task5/maps/level3/input_img/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2263262b533b367babad4c10070241b889b4f5aa17615ecf7626c6cf3627f8 +size 11535 diff --git a/blocks/task5/maps/level3/input_img/92.jpg b/blocks/task5/maps/level3/input_img/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd19fce0aaa9eafee93a1367cfb0f8c08708a5b9 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa72c335738a3d52a9f610820999b6b20538c361a13f849282461fe099337086 +size 11003 diff --git a/blocks/task5/maps/level3/input_img/93.jpg b/blocks/task5/maps/level3/input_img/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a33972cba53ca13695e3fa489c75332cadb01fd --- /dev/null +++ b/blocks/task5/maps/level3/input_img/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4079afd0816515a8badfac10cba39a42cd2f97badfd3e3eb4dc227eed8462fb5 +size 10650 diff --git a/blocks/task5/maps/level3/input_img/94.jpg b/blocks/task5/maps/level3/input_img/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41bb06e15f261f4ba9291e154e973b43a490ca45 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b56d9eaf9be7a72b66e3e38a232a4e63356eee7fe9b704594f5803eefc823a +size 12151 diff --git a/blocks/task5/maps/level3/input_img/95.jpg b/blocks/task5/maps/level3/input_img/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b40aac64210fa6d67f720a2f79aca0899ae108c3 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0cd0ed149f57fd11c0f2f7df44ceb1f9a7e21c69fd1ad2463a0abbfcdbf072f +size 11193 diff --git a/blocks/task5/maps/level3/input_img/96.jpg b/blocks/task5/maps/level3/input_img/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d932a773442c54309cbea8ac3d4a7a3d12bf7068 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84233c9b14ad2b709345ea3850106b256e904d81ea449c3eed5b28f071a8ca2 +size 10449 diff --git a/blocks/task5/maps/level3/input_img/97.jpg b/blocks/task5/maps/level3/input_img/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7eba9ee1bab4a1d68b1a8e5f953f932e670ce36c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef2ae08f248079b45f6550888deebb217212bff266cd2baad961f33fa79fd00 +size 10311 diff --git a/blocks/task5/maps/level3/input_img/98.jpg b/blocks/task5/maps/level3/input_img/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f2e1ffe9b1d62b9c2300ec6f4c1c224cdb8ac5c --- /dev/null +++ b/blocks/task5/maps/level3/input_img/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd45b43ed89deee3d9c2ab5714d44c661dfe6e68ad3a0f6d0f9698d440f30a8 +size 9799 diff --git a/blocks/task5/maps/level3/input_img/99.jpg b/blocks/task5/maps/level3/input_img/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..488e60a17dda0d854b3d61180b08ecf94421a906 --- /dev/null +++ b/blocks/task5/maps/level3/input_img/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a46d4a1eff872caa99e586eb259ea0e959008de305d12d1d56491390451d8bbf +size 10651 diff --git a/blocks/task5/maps/level3/input_table/0.txt b/blocks/task5/maps/level3/input_table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcf438500b1e3e273f754824990f769f390b06b4 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/0.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | purple | yellow | red | diff --git a/blocks/task5/maps/level3/input_table/1.txt b/blocks/task5/maps/level3/input_table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..67c6950a48a88f0753bbb6ec75c86b1e7717f3cc --- /dev/null +++ b/blocks/task5/maps/level3/input_table/1.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | green | +Level 1 | purple | yellow | diff --git a/blocks/task5/maps/level3/input_table/10.txt b/blocks/task5/maps/level3/input_table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..6aced1eeb190dd667ea55fc18a4d16c5c7051755 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/10.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | orange | purple | blue | green | diff --git a/blocks/task5/maps/level3/input_table/11.txt b/blocks/task5/maps/level3/input_table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d9300580ff1c0ad6a404f5e7e63e969fd39025f --- /dev/null +++ b/blocks/task5/maps/level3/input_table/11.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | purple | +Level 2 | | green | +Level 1 | blue | orange | diff --git a/blocks/task5/maps/level3/input_table/12.txt b/blocks/task5/maps/level3/input_table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ead91fd3364557037452299f5f45287f2d7cba3 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/12.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | orange | blue | yellow | green | diff --git a/blocks/task5/maps/level3/input_table/13.txt b/blocks/task5/maps/level3/input_table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..70288136bbf323310340d36dba2f6b2f6cfd1e23 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/13.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | purple | green | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level3/input_table/14.txt b/blocks/task5/maps/level3/input_table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a5cbcbb6a7ca0ec687cefd86d4c94083f94dd1e --- /dev/null +++ b/blocks/task5/maps/level3/input_table/14.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | yellow | +Level 1 | green | purple | diff --git a/blocks/task5/maps/level3/input_table/15.txt b/blocks/task5/maps/level3/input_table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd7c2f385bf32585b7d11b73d545d9e5a0cbfc3c --- /dev/null +++ b/blocks/task5/maps/level3/input_table/15.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | yellow | purple | red | diff --git a/blocks/task5/maps/level3/input_table/16.txt b/blocks/task5/maps/level3/input_table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..f475dd3b2767d2959d302868b415ff0e7076518f --- /dev/null +++ b/blocks/task5/maps/level3/input_table/16.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | green | blue | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level3/input_table/17.txt b/blocks/task5/maps/level3/input_table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d3dba921990f9650e93490c3075d1abf846652 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/17.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | blue | +Level 1 | red | green | yellow | diff --git a/blocks/task5/maps/level3/input_table/18.txt b/blocks/task5/maps/level3/input_table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab1b8725b0434d275d1586bb08182739acfc5124 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/18.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | green | blue | purple | yellow | diff --git a/blocks/task5/maps/level3/input_table/19.txt b/blocks/task5/maps/level3/input_table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..491cfcaaf589d4342bafb53d9ac4f649e5e574e9 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/19.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | red | yellow | purple | green | diff --git a/blocks/task5/maps/level3/input_table/2.txt b/blocks/task5/maps/level3/input_table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..34df0e3d41da2054063d9b9ed95451ecd8e6e5fe --- /dev/null +++ b/blocks/task5/maps/level3/input_table/2.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | purple | yellow | orange | green | diff --git a/blocks/task5/maps/level3/input_table/20.txt b/blocks/task5/maps/level3/input_table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..51967052a81da04d7e80af88b4601042ac48b3ee --- /dev/null +++ b/blocks/task5/maps/level3/input_table/20.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | purple | green | blue | orange | diff --git a/blocks/task5/maps/level3/input_table/21.txt b/blocks/task5/maps/level3/input_table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7f001992764faa7f421aa4988e67235be2ce909 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/21.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | purple | +Level 1 | red | orange | blue | diff --git a/blocks/task5/maps/level3/input_table/22.txt b/blocks/task5/maps/level3/input_table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..01eaf5baf74a6993dbe5ef26a815367f3e4a4efa --- /dev/null +++ b/blocks/task5/maps/level3/input_table/22.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | red | purple | yellow | diff --git a/blocks/task5/maps/level3/input_table/23.txt b/blocks/task5/maps/level3/input_table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c8641e758ea08a7a2e7b7b5226ac23e9cd16cbd --- /dev/null +++ b/blocks/task5/maps/level3/input_table/23.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | red | orange | +Level 1 | purple | yellow | diff --git a/blocks/task5/maps/level3/input_table/24.txt b/blocks/task5/maps/level3/input_table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b6b5ef0f62e07d3edc07258e9bcc47024e6298c --- /dev/null +++ b/blocks/task5/maps/level3/input_table/24.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level3/input_table/25.txt b/blocks/task5/maps/level3/input_table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7128a5d337a443681ad6b1d6ebd0a018a6e0ce2 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/25.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | blue | orange | yellow | diff --git a/blocks/task5/maps/level3/input_table/26.txt b/blocks/task5/maps/level3/input_table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..22b0505ed361dbcde5d7287bd979dcf11c85480a --- /dev/null +++ b/blocks/task5/maps/level3/input_table/26.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | red | +Level 1 | orange | yellow | blue | diff --git a/blocks/task5/maps/level3/input_table/27.txt b/blocks/task5/maps/level3/input_table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1fe3b3478e0461d17dc0b18ffa22993acc0818f --- /dev/null +++ b/blocks/task5/maps/level3/input_table/27.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | blue | orange | +Level 1 | green | red | diff --git a/blocks/task5/maps/level3/input_table/28.txt b/blocks/task5/maps/level3/input_table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6c36f5ec6e379755498ca03ac5bb7bd42734c36 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/28.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | orange | yellow | green | blue | diff --git a/blocks/task5/maps/level3/input_table/29.txt b/blocks/task5/maps/level3/input_table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cf79ec49d55876077e1d386cefee53f32e04820 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/29.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | orange | green | +Level 1 | red | blue | diff --git a/blocks/task5/maps/level3/input_table/3.txt b/blocks/task5/maps/level3/input_table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a24fddf4d870feff515a1c690b6f845270ad8b7 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/3.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | blue | orange | +Level 1 | purple | yellow | diff --git a/blocks/task5/maps/level3/input_table/30.txt b/blocks/task5/maps/level3/input_table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..b356c7ed15e1dd8bca02e83a2ed0c6ddaf84e6f9 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/30.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | orange | +Level 1 | green | yellow | red | diff --git a/blocks/task5/maps/level3/input_table/31.txt b/blocks/task5/maps/level3/input_table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fd942fcf567105a5832d26e626a83ddfe1084f5 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/31.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level3/input_table/32.txt b/blocks/task5/maps/level3/input_table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..52891be505239da3d30908c89d6490ff4db733e3 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/32.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | red | +Level 1 | purple | green | orange | diff --git a/blocks/task5/maps/level3/input_table/33.txt b/blocks/task5/maps/level3/input_table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe8baeae8164bb262dc0f9cf48d9822b22843701 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/33.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | blue | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level3/input_table/34.txt b/blocks/task5/maps/level3/input_table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..b97e3796ea5a77ecdf76da34c25a89d4900ee22f --- /dev/null +++ b/blocks/task5/maps/level3/input_table/34.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | yellow | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level3/input_table/35.txt b/blocks/task5/maps/level3/input_table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a493fe321ba7211165e45e82ef63c34c7284253 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/35.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | purple | +Level 2 | | green | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level3/input_table/36.txt b/blocks/task5/maps/level3/input_table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..70ca1ff959b4881d16f8c9543d1a91230d151e17 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/36.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | purple | blue | +Level 1 | yellow | orange | diff --git a/blocks/task5/maps/level3/input_table/37.txt b/blocks/task5/maps/level3/input_table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..e251ad6f2114606d37e5c138a700466edcc894c7 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/37.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | red | green | blue | yellow | diff --git a/blocks/task5/maps/level3/input_table/38.txt b/blocks/task5/maps/level3/input_table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bd528f2519af943bf264c1f18210a9f3e18393b --- /dev/null +++ b/blocks/task5/maps/level3/input_table/38.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | red | purple | blue | yellow | diff --git a/blocks/task5/maps/level3/input_table/39.txt b/blocks/task5/maps/level3/input_table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..570f68a9bac8956929774cdc77d2fdd51049c620 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/39.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | orange | green | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level3/input_table/4.txt b/blocks/task5/maps/level3/input_table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c23224dfe98da2d92aeb4ff58a057d138c07c20 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/4.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | yellow | purple | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level3/input_table/40.txt b/blocks/task5/maps/level3/input_table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..67a185034838ade3aef5ba21e92a74a30d150fe4 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/40.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | yellow | orange | purple | blue | diff --git a/blocks/task5/maps/level3/input_table/41.txt b/blocks/task5/maps/level3/input_table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..edbd44cbdb7672fb575eaec770f7a1da311cd5f6 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/41.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | red | yellow | purple | orange | diff --git a/blocks/task5/maps/level3/input_table/42.txt b/blocks/task5/maps/level3/input_table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..609239e1eaa9dfd5352946dac3a2594b574011e7 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/42.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | orange | +Level 1 | red | yellow | green | diff --git a/blocks/task5/maps/level3/input_table/43.txt b/blocks/task5/maps/level3/input_table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2b3ef9e816b9fc40c0bb513d38c06ba0faf70e2 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/43.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | yellow | green | orange | diff --git a/blocks/task5/maps/level3/input_table/44.txt b/blocks/task5/maps/level3/input_table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dc5806271d1baca57fab836bd3792ef713d1b08 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/44.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | orange | purple | red | yellow | diff --git a/blocks/task5/maps/level3/input_table/45.txt b/blocks/task5/maps/level3/input_table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0e451e761d4e4a841defd325dece82e8b62ae8d --- /dev/null +++ b/blocks/task5/maps/level3/input_table/45.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | green | +Level 1 | blue | orange | yellow | diff --git a/blocks/task5/maps/level3/input_table/46.txt b/blocks/task5/maps/level3/input_table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..93a32e1486423064375d995a5ddf543755729268 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/46.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | green | red | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level3/input_table/47.txt b/blocks/task5/maps/level3/input_table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecbd0b2c69fa97f294bc6e0da2272e9db9c194bb --- /dev/null +++ b/blocks/task5/maps/level3/input_table/47.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | green | +Level 1 | blue | orange | purple | diff --git a/blocks/task5/maps/level3/input_table/48.txt b/blocks/task5/maps/level3/input_table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ad65f7976e63909ad4f8730b47d81ef675fccc1 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/48.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | yellow | green | red | purple | diff --git a/blocks/task5/maps/level3/input_table/49.txt b/blocks/task5/maps/level3/input_table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1c5ca7adafc864a57c1a618330c3126b61f8065 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/49.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | purple | yellow | orange | diff --git a/blocks/task5/maps/level3/input_table/5.txt b/blocks/task5/maps/level3/input_table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5883add4cd7559279a35512ac8855ff5498adaf3 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/5.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | blue | +Level 1 | yellow | green | diff --git a/blocks/task5/maps/level3/input_table/50.txt b/blocks/task5/maps/level3/input_table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd2ddc205fd82b12fef619c70c02656c62953797 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/50.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | purple | yellow | blue | diff --git a/blocks/task5/maps/level3/input_table/51.txt b/blocks/task5/maps/level3/input_table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c7ade9d154a83c1a2d7f927936077840b7a941c --- /dev/null +++ b/blocks/task5/maps/level3/input_table/51.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | purple | orange | diff --git a/blocks/task5/maps/level3/input_table/52.txt b/blocks/task5/maps/level3/input_table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..da7f46a41d6654c80af2aeb92ffe024d61158e65 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/52.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | green | red | orange | purple | diff --git a/blocks/task5/maps/level3/input_table/53.txt b/blocks/task5/maps/level3/input_table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fc168aaa162e937cc2eded92350366d559dac47 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/53.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | yellow | +Level 1 | green | red | blue | diff --git a/blocks/task5/maps/level3/input_table/54.txt b/blocks/task5/maps/level3/input_table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..f73c3a0f1393803cda3385801f078e9a38351940 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/54.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | red | purple | yellow | orange | diff --git a/blocks/task5/maps/level3/input_table/55.txt b/blocks/task5/maps/level3/input_table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4401c43d9bbe970ce429b87ae1ec6487ac91523 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/55.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | orange | blue | purple | yellow | diff --git a/blocks/task5/maps/level3/input_table/56.txt b/blocks/task5/maps/level3/input_table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1814cb437f3e62ee2259f2f4b2cc62b92412d30 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/56.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | orange | +Level 1 | blue | purple | green | diff --git a/blocks/task5/maps/level3/input_table/57.txt b/blocks/task5/maps/level3/input_table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..b16ff4986b30075de2df77a2cfd3ceabde6ab72d --- /dev/null +++ b/blocks/task5/maps/level3/input_table/57.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | green | +Level 1 | yellow | blue | red | diff --git a/blocks/task5/maps/level3/input_table/58.txt b/blocks/task5/maps/level3/input_table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..259ee7d6e05a60eb9124a2f7aef0c5863f3460c6 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/58.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | red | orange | blue | diff --git a/blocks/task5/maps/level3/input_table/59.txt b/blocks/task5/maps/level3/input_table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..48914848f0b86aeeddd03dd6d1619cc230030463 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/59.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | purple | +Level 1 | yellow | red | orange | diff --git a/blocks/task5/maps/level3/input_table/6.txt b/blocks/task5/maps/level3/input_table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eb138e9e7666f7317da81379749ea5e4890fd16 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/6.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | red | +Level 1 | orange | green | diff --git a/blocks/task5/maps/level3/input_table/60.txt b/blocks/task5/maps/level3/input_table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..a80836e671dde8ee8f99a30e1b36f1940a19e614 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/60.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | orange | +Level 1 | purple | red | green | diff --git a/blocks/task5/maps/level3/input_table/61.txt b/blocks/task5/maps/level3/input_table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a820aed7ff652ab5be36c4a13391cb70589b1ea --- /dev/null +++ b/blocks/task5/maps/level3/input_table/61.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | red | yellow | orange | blue | diff --git a/blocks/task5/maps/level3/input_table/62.txt b/blocks/task5/maps/level3/input_table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad2ecad2308c12fffc5e1cf9221dcf2f4063b784 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/62.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | purple | +Level 1 | green | yellow | red | diff --git a/blocks/task5/maps/level3/input_table/63.txt b/blocks/task5/maps/level3/input_table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..9aff561b6419208c1ddcfa80c3e2744704af3bf7 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/63.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | green | yellow | orange | purple | diff --git a/blocks/task5/maps/level3/input_table/64.txt b/blocks/task5/maps/level3/input_table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b61d757cb88b7d38a548b938742b74d20938b24 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/64.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | green | blue | purple | diff --git a/blocks/task5/maps/level3/input_table/65.txt b/blocks/task5/maps/level3/input_table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..994dfd8b8fa7982566c7817f999d8b35f0aa14d9 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/65.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | orange | +Level 1 | yellow | blue | green | diff --git a/blocks/task5/maps/level3/input_table/66.txt b/blocks/task5/maps/level3/input_table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e0b83bd79d1429f4c1dc293ac94f61c104fbfbd --- /dev/null +++ b/blocks/task5/maps/level3/input_table/66.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | red | +Level 2 | | | blue | +Level 1 | green | orange | yellow | diff --git a/blocks/task5/maps/level3/input_table/67.txt b/blocks/task5/maps/level3/input_table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..5486521c740d0c6ea44c1886b6fcc2d328f48a7c --- /dev/null +++ b/blocks/task5/maps/level3/input_table/67.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | green | purple | orange | diff --git a/blocks/task5/maps/level3/input_table/68.txt b/blocks/task5/maps/level3/input_table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d9b0b013831c2a658b66e306cbd53d87ff862da --- /dev/null +++ b/blocks/task5/maps/level3/input_table/68.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | orange | +Level 1 | yellow | blue | green | diff --git a/blocks/task5/maps/level3/input_table/69.txt b/blocks/task5/maps/level3/input_table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..98a604d162805d80561383c3991edebf18645e7b --- /dev/null +++ b/blocks/task5/maps/level3/input_table/69.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | orange | +Level 1 | red | yellow | blue | diff --git a/blocks/task5/maps/level3/input_table/7.txt b/blocks/task5/maps/level3/input_table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce4e5fd5201d7b47bf7f8a12888c8b09120ba84c --- /dev/null +++ b/blocks/task5/maps/level3/input_table/7.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | red | purple | green | diff --git a/blocks/task5/maps/level3/input_table/70.txt b/blocks/task5/maps/level3/input_table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..93df791c5fb0cca509ffbf682145978eaa424f36 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/70.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | orange | green | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level3/input_table/71.txt b/blocks/task5/maps/level3/input_table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7b7731e9c9c244eb31f6a79ccf9d375b193e106 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/71.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | green | +Level 1 | blue | red | purple | diff --git a/blocks/task5/maps/level3/input_table/72.txt b/blocks/task5/maps/level3/input_table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..d375f4d10f0b987be6f7ba9d04281cb9351f6e49 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/72.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | purple | blue | green | orange | diff --git a/blocks/task5/maps/level3/input_table/73.txt b/blocks/task5/maps/level3/input_table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0efaa78ad4cd92e03b0c401eeb786211b3e3fc0 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/73.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | purple | +Level 1 | yellow | green | blue | diff --git a/blocks/task5/maps/level3/input_table/74.txt b/blocks/task5/maps/level3/input_table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0397a66898a264d75ffaf68e911b4ab57b5fe59 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/74.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | purple | orange | green | red | diff --git a/blocks/task5/maps/level3/input_table/75.txt b/blocks/task5/maps/level3/input_table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..c49f398097a9daaf85472636aa8bedaa59cb8d7e --- /dev/null +++ b/blocks/task5/maps/level3/input_table/75.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | purple | +Level 1 | blue | red | green | diff --git a/blocks/task5/maps/level3/input_table/76.txt b/blocks/task5/maps/level3/input_table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..93a58255bd7f4f5b7d23b8cb9cc56b131ac21c28 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/76.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | blue | +Level 1 | yellow | purple | orange | diff --git a/blocks/task5/maps/level3/input_table/77.txt b/blocks/task5/maps/level3/input_table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..f787945cb724ecfcaad82caf60fbfbc21de17c79 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/77.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | orange | +Level 1 | green | red | diff --git a/blocks/task5/maps/level3/input_table/78.txt b/blocks/task5/maps/level3/input_table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0397a66898a264d75ffaf68e911b4ab57b5fe59 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/78.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | purple | orange | green | red | diff --git a/blocks/task5/maps/level3/input_table/79.txt b/blocks/task5/maps/level3/input_table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..7165a300eacd53fb7f1aa9ea5712fb0a35d30b45 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/79.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | green | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level3/input_table/8.txt b/blocks/task5/maps/level3/input_table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba73d300efc190ee999eca5fbdb05742b5dfa21a --- /dev/null +++ b/blocks/task5/maps/level3/input_table/8.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | red | +Level 1 | blue | green | diff --git a/blocks/task5/maps/level3/input_table/80.txt b/blocks/task5/maps/level3/input_table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..ade3d98b2bc50a90e3a226f8918dde4452ea3289 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/80.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | blue | orange | yellow | green | diff --git a/blocks/task5/maps/level3/input_table/81.txt b/blocks/task5/maps/level3/input_table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b25b24e0ea67b1c67b4be81f8b58410cf3fcfe0 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/81.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | blue | +Level 1 | red | orange | purple | diff --git a/blocks/task5/maps/level3/input_table/82.txt b/blocks/task5/maps/level3/input_table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..f79c5d466f2daf0c83b32f4282e50ec74f43b158 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/82.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | yellow | green | purple | red | diff --git a/blocks/task5/maps/level3/input_table/83.txt b/blocks/task5/maps/level3/input_table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4bb9e449ccc5777c9232a16c6f3396d90fb6d03 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/83.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | orange | +Level 1 | green | yellow | blue | diff --git a/blocks/task5/maps/level3/input_table/84.txt b/blocks/task5/maps/level3/input_table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e805a156a155f4a370f871d335034e1629c23dc --- /dev/null +++ b/blocks/task5/maps/level3/input_table/84.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | purple | yellow | green | orange | diff --git a/blocks/task5/maps/level3/input_table/85.txt b/blocks/task5/maps/level3/input_table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..37a42923505947cc52701a22678fcef40ee38e7c --- /dev/null +++ b/blocks/task5/maps/level3/input_table/85.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | green | +Level 1 | purple | yellow | diff --git a/blocks/task5/maps/level3/input_table/86.txt b/blocks/task5/maps/level3/input_table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..8204e93de809dff9f76817bf63bf74526b262c6e --- /dev/null +++ b/blocks/task5/maps/level3/input_table/86.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | green | blue | +Level 1 | purple | red | diff --git a/blocks/task5/maps/level3/input_table/87.txt b/blocks/task5/maps/level3/input_table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..b24dccc58b45cf4ac73567af558c9039f4cfad57 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/87.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | green | +Level 1 | purple | red | blue | diff --git a/blocks/task5/maps/level3/input_table/88.txt b/blocks/task5/maps/level3/input_table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..455a933a2612ccabdaed332d179447058d56e19f --- /dev/null +++ b/blocks/task5/maps/level3/input_table/88.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | yellow | +Level 1 | blue | red | green | diff --git a/blocks/task5/maps/level3/input_table/89.txt b/blocks/task5/maps/level3/input_table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..02c55ad9367cc67a418db07998d4f160831e61b4 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/89.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | yellow | +Level 1 | orange | purple | diff --git a/blocks/task5/maps/level3/input_table/9.txt b/blocks/task5/maps/level3/input_table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..f37512ba0284e0ae31d2e773a281bfac6de8173b --- /dev/null +++ b/blocks/task5/maps/level3/input_table/9.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | red | green | diff --git a/blocks/task5/maps/level3/input_table/90.txt b/blocks/task5/maps/level3/input_table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ce8d8b5998ad26da8ee968b7a09572c59e99eda --- /dev/null +++ b/blocks/task5/maps/level3/input_table/90.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | green | +Level 1 | red | blue | yellow | diff --git a/blocks/task5/maps/level3/input_table/91.txt b/blocks/task5/maps/level3/input_table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e47449edbdb280c86fa9816a1f7cc0e7d02cce5 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/91.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | purple | orange | red | blue | diff --git a/blocks/task5/maps/level3/input_table/92.txt b/blocks/task5/maps/level3/input_table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e4dbc18bfe0fce3b14f99bc0d4d41c6fe964842 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/92.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | blue | orange | yellow | diff --git a/blocks/task5/maps/level3/input_table/93.txt b/blocks/task5/maps/level3/input_table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7c89d83ade30a7804f672076cb2e7d8cce0a399 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/93.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | green | +Level 1 | yellow | blue | orange | diff --git a/blocks/task5/maps/level3/input_table/94.txt b/blocks/task5/maps/level3/input_table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..42f4edcd0fac6989082c174adc71bfc474c9836f --- /dev/null +++ b/blocks/task5/maps/level3/input_table/94.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | purple | green | red | orange | diff --git a/blocks/task5/maps/level3/input_table/95.txt b/blocks/task5/maps/level3/input_table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..b47baeeb6f88bf79ce9eea6ef72da365fd2d37cf --- /dev/null +++ b/blocks/task5/maps/level3/input_table/95.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | orange | purple | blue | diff --git a/blocks/task5/maps/level3/input_table/96.txt b/blocks/task5/maps/level3/input_table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..93a32e1486423064375d995a5ddf543755729268 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/96.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | green | red | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level3/input_table/97.txt b/blocks/task5/maps/level3/input_table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..380f953546233d099fa55538c50f7e4822fd6406 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/97.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | yellow | green | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level3/input_table/98.txt b/blocks/task5/maps/level3/input_table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..e93d898a766145c5bfe0b6f2eeecf2bcba1c6260 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/98.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | orange | purple | red | diff --git a/blocks/task5/maps/level3/input_table/99.txt b/blocks/task5/maps/level3/input_table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd9d2b09e59d4af5dcb402cdd1b52ef2d263e3c1 --- /dev/null +++ b/blocks/task5/maps/level3/input_table/99.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | green | yellow | purple | orange | diff --git a/blocks/task5/maps/level3/input_text/0.txt b/blocks/task5/maps/level3/input_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e869dfd2a83df42085358a51e0d6d584eec1b7cb --- /dev/null +++ b/blocks/task5/maps/level3/input_text/0.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/1.txt b/blocks/task5/maps/level3/input_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d50f507995c902783b53d0e334daee0c3c0c4ce --- /dev/null +++ b/blocks/task5/maps/level3/input_text/1.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/10.txt b/blocks/task5/maps/level3/input_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4d1f894a8bd244b459f358fd6242d00cedfb5e3 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/10.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/11.txt b/blocks/task5/maps/level3/input_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..82c50543dae9f74128964af1731b81a3bc903f74 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/11.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, green block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/12.txt b/blocks/task5/maps/level3/input_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c81e03d37c2b3143d79d61ae20ff94f4f953e96 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/12.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with orange block +- Stack with blue block +- Stack with yellow block +- Stack with green block diff --git a/blocks/task5/maps/level3/input_text/13.txt b/blocks/task5/maps/level3/input_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..32b790bc450beaa831b346942b3352c434429a0b --- /dev/null +++ b/blocks/task5/maps/level3/input_text/13.txt @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with orange block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/14.txt b/blocks/task5/maps/level3/input_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..7556461b014136ab8bf2898f7abc7f4d8f0dd0db --- /dev/null +++ b/blocks/task5/maps/level3/input_text/14.txt @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/15.txt b/blocks/task5/maps/level3/input_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..537e6020da884a9476580f6bdf7342888d1f0e69 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/15.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with yellow block +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/16.txt b/blocks/task5/maps/level3/input_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d96b4cf8ff83a3342694358b937df02cc45d43d --- /dev/null +++ b/blocks/task5/maps/level3/input_text/16.txt @@ -0,0 +1,2 @@ +- Stack with red block, green block, from bottom to top +- Stack with yellow block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/17.txt b/blocks/task5/maps/level3/input_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b7c9cff86880bd5bb741f3e0b813ff5aa4bf222 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/17.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/18.txt b/blocks/task5/maps/level3/input_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..142003900cfcc6b7d8d9f30ec445f005afcd717d --- /dev/null +++ b/blocks/task5/maps/level3/input_text/18.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with green block +- Stack with blue block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task5/maps/level3/input_text/19.txt b/blocks/task5/maps/level3/input_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..7362b1d56dbdcdeb762e37ce70730609a1045c29 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/19.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with green block diff --git a/blocks/task5/maps/level3/input_text/2.txt b/blocks/task5/maps/level3/input_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eba43c631823f1aa6daefee0dfd29a95bb1bd6e --- /dev/null +++ b/blocks/task5/maps/level3/input_text/2.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with orange block +- Stack with green block diff --git a/blocks/task5/maps/level3/input_text/20.txt b/blocks/task5/maps/level3/input_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..cebe4ea24d730e760942596b35856e2d7a38c539 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/20.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/21.txt b/blocks/task5/maps/level3/input_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f49df0538d0715c30eea355e699392f7a65b226 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/21.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block +- Stack with blue block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/22.txt b/blocks/task5/maps/level3/input_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..561c00dd16d2069901769370ce831f02041c8bd5 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/22.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with red block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task5/maps/level3/input_text/23.txt b/blocks/task5/maps/level3/input_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7da5be9ca1ba31680e4a9bf667a6e7869164900 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/23.txt @@ -0,0 +1,2 @@ +- Stack with purple block, red block, from bottom to top +- Stack with yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/24.txt b/blocks/task5/maps/level3/input_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..40c8a8dbb75c4284b24cd9fcc47d47299fa661dd --- /dev/null +++ b/blocks/task5/maps/level3/input_text/24.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, purple block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/25.txt b/blocks/task5/maps/level3/input_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..9935888d5a6b13797d126824665fef50768c1f00 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/25.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with orange block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/26.txt b/blocks/task5/maps/level3/input_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..303a9b7cb1354db2d11c7bfd1ab45d9641e9a650 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/26.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with yellow block, green block, from bottom to top +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/27.txt b/blocks/task5/maps/level3/input_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9019e7b1db20cc0186dce1b7c75b3cbf8f01b7c --- /dev/null +++ b/blocks/task5/maps/level3/input_text/27.txt @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with red block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/28.txt b/blocks/task5/maps/level3/input_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..334a5abcb1e52d449b2869e2d37a56306f99a906 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/28.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block diff --git a/blocks/task5/maps/level3/input_text/29.txt b/blocks/task5/maps/level3/input_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a5624ac605673b72f95ec73f7d7285b8996e565 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/29.txt @@ -0,0 +1,2 @@ +- Stack with red block, orange block, from bottom to top +- Stack with blue block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/3.txt b/blocks/task5/maps/level3/input_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..7de463d78a00686c3cd91e7f5c617796c7f8a6ab --- /dev/null +++ b/blocks/task5/maps/level3/input_text/3.txt @@ -0,0 +1,2 @@ +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/30.txt b/blocks/task5/maps/level3/input_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd6d4575e877794accdc9dad55632c0c128fffd9 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/30.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/31.txt b/blocks/task5/maps/level3/input_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..a352db5cd8c333c245217b6beff52855dbbfcdcc --- /dev/null +++ b/blocks/task5/maps/level3/input_text/31.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, red block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/32.txt b/blocks/task5/maps/level3/input_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..09a1e82728c33723f444d3a5552050945e379d62 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/32.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block, yellow block, from bottom to top +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/33.txt b/blocks/task5/maps/level3/input_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..82874e35ef92b3914d4ab7d0445c12efd86ab48a --- /dev/null +++ b/blocks/task5/maps/level3/input_text/33.txt @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/34.txt b/blocks/task5/maps/level3/input_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..575487bf1e657ff61c7a27cd6f8554f6459e6370 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/34.txt @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with blue block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/35.txt b/blocks/task5/maps/level3/input_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9caeb48304731497f10b2b7bb8156f3b966004f --- /dev/null +++ b/blocks/task5/maps/level3/input_text/35.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, green block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/36.txt b/blocks/task5/maps/level3/input_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..4985a3d609507e7e134eceeb0851e07a843ecbbc --- /dev/null +++ b/blocks/task5/maps/level3/input_text/36.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with orange block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/37.txt b/blocks/task5/maps/level3/input_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3c049fd75817f42a7c9fee1178c528428a40067 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/37.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with green block +- Stack with blue block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/38.txt b/blocks/task5/maps/level3/input_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..362368909eb53f49c7c8843566ee1687394907fd --- /dev/null +++ b/blocks/task5/maps/level3/input_text/38.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/39.txt b/blocks/task5/maps/level3/input_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..16ad8fdfbbea9231d99f3f1a5b5839002ee8c345 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/39.txt @@ -0,0 +1,2 @@ +- Stack with blue block, orange block, from bottom to top +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/4.txt b/blocks/task5/maps/level3/input_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..991623678097ccbf7b964eb7559cab885b3c6c39 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/4.txt @@ -0,0 +1,2 @@ +- Stack with red block, yellow block, from bottom to top +- Stack with orange block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/40.txt b/blocks/task5/maps/level3/input_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..d387dbf0c8272d2be08b5b7b56054cd2e367d31f --- /dev/null +++ b/blocks/task5/maps/level3/input_text/40.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with blue block diff --git a/blocks/task5/maps/level3/input_text/41.txt b/blocks/task5/maps/level3/input_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b8e491d6ead4bb48ffaf6ba81b8188d2d132422 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/41.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with orange block diff --git a/blocks/task5/maps/level3/input_text/42.txt b/blocks/task5/maps/level3/input_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..967fef1f40404a976658946dc0fd033a0168a50f --- /dev/null +++ b/blocks/task5/maps/level3/input_text/42.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/43.txt b/blocks/task5/maps/level3/input_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b2856697f904eb0b1e12297bc228509862957f1 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/43.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/44.txt b/blocks/task5/maps/level3/input_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e187a342c27d2da17255f2368a8d3de9f27f1f9 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/44.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with red block +- Stack with yellow block diff --git a/blocks/task5/maps/level3/input_text/45.txt b/blocks/task5/maps/level3/input_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..5216a54823d3f95e6aa651197a8a6b9b2ce15713 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/45.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/46.txt b/blocks/task5/maps/level3/input_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bc0f20ce4f8cb4d8c0a0bd4923b6d5beb0db1ef --- /dev/null +++ b/blocks/task5/maps/level3/input_text/46.txt @@ -0,0 +1,2 @@ +- Stack with orange block, green block, from bottom to top +- Stack with yellow block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/47.txt b/blocks/task5/maps/level3/input_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..878a05e743ba78cbfec5c6b376fd5cb08a3800ff --- /dev/null +++ b/blocks/task5/maps/level3/input_text/47.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/48.txt b/blocks/task5/maps/level3/input_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..097226ede40305e86531c90c1b27d0fd5e229be8 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/48.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with red block +- Stack with purple block diff --git a/blocks/task5/maps/level3/input_text/49.txt b/blocks/task5/maps/level3/input_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..8afd1cad4da0e06e9ec2604f29878413104f86f9 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/49.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with purple block +- Stack with yellow block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/5.txt b/blocks/task5/maps/level3/input_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..60574c8773ae11b03d90970861bc7b1bd1aa5951 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/5.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/50.txt b/blocks/task5/maps/level3/input_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4277d989544a6bc48414c45b54ca05ec2fbf5e4 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/50.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/51.txt b/blocks/task5/maps/level3/input_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..d847dcec1dc5316d760257986fa4ca0edce5c3bf --- /dev/null +++ b/blocks/task5/maps/level3/input_text/51.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, green block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/52.txt b/blocks/task5/maps/level3/input_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ca22e86655e8e4394d54a4a279f6ccc2acaf6fe --- /dev/null +++ b/blocks/task5/maps/level3/input_text/52.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with red block +- Stack with orange block +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/53.txt b/blocks/task5/maps/level3/input_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..de276f0b935858c36e6be0be981e3e2aaecf4692 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/53.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/54.txt b/blocks/task5/maps/level3/input_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..3efd6a696404b444ee46306f0ee8af2c2af11c58 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/54.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with red block +- Stack with purple block +- Stack with yellow block +- Stack with orange block diff --git a/blocks/task5/maps/level3/input_text/55.txt b/blocks/task5/maps/level3/input_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1f9b33a2680b5788cfc5ac3bb8782a2c2749953 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/55.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with purple block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/56.txt b/blocks/task5/maps/level3/input_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ed8be0293d91777f12ad21a202b9e295fedf942 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/56.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/57.txt b/blocks/task5/maps/level3/input_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3b5d2a6d4f38d9b4d72df41c9447cb2483e9053 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/57.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/58.txt b/blocks/task5/maps/level3/input_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..916c7ae81a67e7e67d06194ec2bce0664a1c9ba3 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/58.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with red block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task5/maps/level3/input_text/59.txt b/blocks/task5/maps/level3/input_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..93be238dcbefa6e62f2fcbd2f69e0f64e83cd3b2 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/59.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block, green block, from bottom to top +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/6.txt b/blocks/task5/maps/level3/input_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fc1707ddb2ed643c3268595c7b5a92e47f2397 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/6.txt @@ -0,0 +1,2 @@ +- Stack with orange block, purple block, from bottom to top +- Stack with green block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/60.txt b/blocks/task5/maps/level3/input_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..41163cca9ed720036aeb17525f1433488b8a225a --- /dev/null +++ b/blocks/task5/maps/level3/input_text/60.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with green block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/61.txt b/blocks/task5/maps/level3/input_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..011ecffccefea9e072a5542854e91fb8a27b70ab --- /dev/null +++ b/blocks/task5/maps/level3/input_text/61.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with red block +- Stack with yellow block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task5/maps/level3/input_text/62.txt b/blocks/task5/maps/level3/input_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..9072717647c64f8a8213e35426076c900b9dc21d --- /dev/null +++ b/blocks/task5/maps/level3/input_text/62.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block, orange block, from bottom to top +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/63.txt b/blocks/task5/maps/level3/input_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b025a435ca74885d4ffc105a1ffc6adbb2616c24 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/63.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with green block +- Stack with yellow block +- Stack with orange block +- Stack with purple block diff --git a/blocks/task5/maps/level3/input_text/64.txt b/blocks/task5/maps/level3/input_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e7c89cfa64be98f249899101ec68154e8f93c72 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/64.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with blue block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/65.txt b/blocks/task5/maps/level3/input_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..8efb88580bcfef5006e641511cc1fd4584bf9e1a --- /dev/null +++ b/blocks/task5/maps/level3/input_text/65.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, red block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/66.txt b/blocks/task5/maps/level3/input_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a29bd82caf31e91b6ec19980634de9090881231 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/66.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with yellow block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/67.txt b/blocks/task5/maps/level3/input_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..165fd863ad2b0ef974fa7d4a19d4d9b45e8b75cc --- /dev/null +++ b/blocks/task5/maps/level3/input_text/67.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/68.txt b/blocks/task5/maps/level3/input_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..8580117b559a7062b6fa24f0db1aa697281651fe --- /dev/null +++ b/blocks/task5/maps/level3/input_text/68.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/69.txt b/blocks/task5/maps/level3/input_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b5a19b0a42f5f97147d4820323461f26a81bf4e --- /dev/null +++ b/blocks/task5/maps/level3/input_text/69.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block, purple block, from bottom to top +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/7.txt b/blocks/task5/maps/level3/input_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..1751021152ec069506c96727eacd2d8de57a2c06 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/7.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with red block +- Stack with purple block +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/70.txt b/blocks/task5/maps/level3/input_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..d51e85aa4d70a00de0e1b9db09d8abafdc1fed51 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/70.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, orange block, from bottom to top +- Stack with red block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/71.txt b/blocks/task5/maps/level3/input_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..37fe513ced6a62253f39460dab6cb89efc5c87bf --- /dev/null +++ b/blocks/task5/maps/level3/input_text/71.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block, yellow block, from bottom to top +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/72.txt b/blocks/task5/maps/level3/input_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..40939b3196f9d3d84fe73ef5dc1b138afc27d597 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/72.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with purple block +- Stack with blue block +- Stack with green block +- Stack with orange block diff --git a/blocks/task5/maps/level3/input_text/73.txt b/blocks/task5/maps/level3/input_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..39f91c88f01c727a0267e63847aeda7759505f8b --- /dev/null +++ b/blocks/task5/maps/level3/input_text/73.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/74.txt b/blocks/task5/maps/level3/input_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..aec7bdbe51bfc470c51f3b715524f4f92cd7ada7 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/74.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with green block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/75.txt b/blocks/task5/maps/level3/input_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..c723648b043a26f28084833079cfc236c37d2d72 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/75.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block, orange block, from bottom to top +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/76.txt b/blocks/task5/maps/level3/input_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4f837bbf59b7b12f0852eeb30cca8c775249f38 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/76.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block, green block, from bottom to top +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/77.txt b/blocks/task5/maps/level3/input_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5e0d73fcc84b08e1b2d22432eaf269816e14543 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/77.txt @@ -0,0 +1,2 @@ +- Stack with green block, purple block, from bottom to top +- Stack with red block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/78.txt b/blocks/task5/maps/level3/input_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..aec7bdbe51bfc470c51f3b715524f4f92cd7ada7 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/78.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with green block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/79.txt b/blocks/task5/maps/level3/input_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d46e88a056722dd489749ec2fe3f5b02afdb944 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/79.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with blue block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/8.txt b/blocks/task5/maps/level3/input_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e07cfa6b31f5a7b8f8c424dfde5aabc7a8f6f2d --- /dev/null +++ b/blocks/task5/maps/level3/input_text/8.txt @@ -0,0 +1,2 @@ +- Stack with blue block, purple block, from bottom to top +- Stack with green block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/80.txt b/blocks/task5/maps/level3/input_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..95b814fa09a0b53815abf8e1526140009c3600be --- /dev/null +++ b/blocks/task5/maps/level3/input_text/80.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/81.txt b/blocks/task5/maps/level3/input_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e0008ab9ad1fef188a22de98503d039ba39a125 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/81.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block, green block, from bottom to top +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/82.txt b/blocks/task5/maps/level3/input_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d46a42735b59490f628e6022577a7fd9114cd68 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/82.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with yellow block +- Stack with green block +- Stack with purple block +- Stack with red block diff --git a/blocks/task5/maps/level3/input_text/83.txt b/blocks/task5/maps/level3/input_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..dced3908613ed7ae3a8fee0b3ac969d8d3af8184 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/83.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block, red block, from bottom to top +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/84.txt b/blocks/task5/maps/level3/input_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..8041edb923a69e53e83dabba758e0ada10beed2a --- /dev/null +++ b/blocks/task5/maps/level3/input_text/84.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with purple block +- Stack with yellow block +- Stack with green block +- Stack with orange block diff --git a/blocks/task5/maps/level3/input_text/85.txt b/blocks/task5/maps/level3/input_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..dba66c2d0e7a72b6a77b4975129db190fb3d7b9e --- /dev/null +++ b/blocks/task5/maps/level3/input_text/85.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, green block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/86.txt b/blocks/task5/maps/level3/input_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..68b8b3d79bbe3513c77e9275cc48c198df74ead8 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/86.txt @@ -0,0 +1,2 @@ +- Stack with purple block, green block, from bottom to top +- Stack with red block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/87.txt b/blocks/task5/maps/level3/input_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..1101d75cf563bc4c60a7c68bb876636162b29fe4 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/87.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with blue block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/88.txt b/blocks/task5/maps/level3/input_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..28d56016fa616df4d5bf301e91b00e6cf1199049 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/88.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block +- Stack with green block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/89.txt b/blocks/task5/maps/level3/input_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d3a94e5cd519b712baa7f0f96cb568ef4b74e2b --- /dev/null +++ b/blocks/task5/maps/level3/input_text/89.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, yellow block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/9.txt b/blocks/task5/maps/level3/input_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..367679c462f34584f24d2d2ce94ac6aba12fb166 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/9.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, purple block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/90.txt b/blocks/task5/maps/level3/input_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9777990db187745164ccfb63495b125768ccbfc --- /dev/null +++ b/blocks/task5/maps/level3/input_text/90.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with blue block, orange block, from bottom to top +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/91.txt b/blocks/task5/maps/level3/input_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..8872ae38634ecc3b5c3bbac5a8a3e56b99f212e3 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/91.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with red block +- Stack with blue block diff --git a/blocks/task5/maps/level3/input_text/92.txt b/blocks/task5/maps/level3/input_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..efb7d75a3bf9d238e3c4feac054c7ffea2612fd3 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/92.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/93.txt b/blocks/task5/maps/level3/input_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..7de95717e1b9cd444b17ff0e33bfcd2e79861ecb --- /dev/null +++ b/blocks/task5/maps/level3/input_text/93.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/94.txt b/blocks/task5/maps/level3/input_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f48efc822d167ace8eb02797c0d1f3b7c884c6d --- /dev/null +++ b/blocks/task5/maps/level3/input_text/94.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with red block +- Stack with orange block diff --git a/blocks/task5/maps/level3/input_text/95.txt b/blocks/task5/maps/level3/input_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..b540702e73200fa96012d3cbfeb6aeee0f324cef --- /dev/null +++ b/blocks/task5/maps/level3/input_text/95.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with orange block +- Stack with purple block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/96.txt b/blocks/task5/maps/level3/input_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bc0f20ce4f8cb4d8c0a0bd4923b6d5beb0db1ef --- /dev/null +++ b/blocks/task5/maps/level3/input_text/96.txt @@ -0,0 +1,2 @@ +- Stack with orange block, green block, from bottom to top +- Stack with yellow block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/97.txt b/blocks/task5/maps/level3/input_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d2d6ad4090b382a7908176b573dd5c46521d94d --- /dev/null +++ b/blocks/task5/maps/level3/input_text/97.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with purple block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/98.txt b/blocks/task5/maps/level3/input_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2e51e99d1470c27e67fd18650ddd6519cf53f92 --- /dev/null +++ b/blocks/task5/maps/level3/input_text/98.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/input_text/99.txt b/blocks/task5/maps/level3/input_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd050e6626788d061f9dea012214cbd6a251e1dc --- /dev/null +++ b/blocks/task5/maps/level3/input_text/99.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with yellow block +- Stack with purple block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_img/0.jpg b/blocks/task5/maps/level3/output_img/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..137d52fbc6aa128f05822daea4404cfd9c482f59 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccece4680402649c6a8f7604868fbb9609b0d386320d586dcaac687235ce6817 +size 9801 diff --git a/blocks/task5/maps/level3/output_img/1.jpg b/blocks/task5/maps/level3/output_img/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..121020859b5611ccc7128ef0025adc629ea849f2 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36b1ff7602882cae7913f78ed0dfb54bad86c75932183a799648d02b0b82cbb +size 9901 diff --git a/blocks/task5/maps/level3/output_img/10.jpg b/blocks/task5/maps/level3/output_img/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27fcde684327d0882b17ef445d4e8651103f635 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b7182b0eac5d744e4f50b1131a31a0df451c849b0420e85d8b4f15da97cb623 +size 10285 diff --git a/blocks/task5/maps/level3/output_img/11.jpg b/blocks/task5/maps/level3/output_img/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a757658dc4ba0c02151d02a83ea343c7de038ca --- /dev/null +++ b/blocks/task5/maps/level3/output_img/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974c02aeb3a57a03273ab8d7e68fea6c50b9e9733dc8c28dea2ae60cac409a67 +size 10550 diff --git a/blocks/task5/maps/level3/output_img/12.jpg b/blocks/task5/maps/level3/output_img/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df6ec686e642efb77a656d731554adc412742502 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f840a37597419b83fd8216616595559a74840d3ff85540d730fabfe4331ba0 +size 10148 diff --git a/blocks/task5/maps/level3/output_img/13.jpg b/blocks/task5/maps/level3/output_img/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8e8bd49b8c5e6841860babd75a04bd04693723c --- /dev/null +++ b/blocks/task5/maps/level3/output_img/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e43f2a894d9ba2b16247475ad69ace0b71df3451d4702575cc7313d492444c +size 11751 diff --git a/blocks/task5/maps/level3/output_img/14.jpg b/blocks/task5/maps/level3/output_img/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7eec2b1a595cf4ed567bb1ad159deb5494b7b9f --- /dev/null +++ b/blocks/task5/maps/level3/output_img/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d2dda0002a2a7c0e48eefb3091a2ba28fe30096c451706ad4ce1e1b5a98597 +size 11347 diff --git a/blocks/task5/maps/level3/output_img/15.jpg b/blocks/task5/maps/level3/output_img/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c208ce7b3d9ea33e01573d735a64b159aff1a9e9 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d662efd6e2a8b07991fd399869240318d1652752a4319763f6a678af7e6c1025 +size 10802 diff --git a/blocks/task5/maps/level3/output_img/16.jpg b/blocks/task5/maps/level3/output_img/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb040db2870673c6b2b019862aa7fc8577dda243 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5936de68847d7aa4d4f24924f0a3d4028197b435c2fd698ed9e22a32b34fa2e8 +size 10976 diff --git a/blocks/task5/maps/level3/output_img/17.jpg b/blocks/task5/maps/level3/output_img/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f29e82674975aaac477735be87d03d96bcefba00 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5ffafea35c962dc77fa8d9ef123cb2c81d39f0f68b2586ff505c7ecb598729 +size 10436 diff --git a/blocks/task5/maps/level3/output_img/18.jpg b/blocks/task5/maps/level3/output_img/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1405f5259fa340fca462822895d727dbda6cb8af --- /dev/null +++ b/blocks/task5/maps/level3/output_img/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9358931c3c28934d2220ef2b8415284f6f57f69e16cc46356ca48589a15cf11a +size 11137 diff --git a/blocks/task5/maps/level3/output_img/19.jpg b/blocks/task5/maps/level3/output_img/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4600dbf04eca1fe6dfc6052fa06cc27bc525885b --- /dev/null +++ b/blocks/task5/maps/level3/output_img/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa86ec23fea9206fe7a4b47cda1efeb98260221b350af468ebb909e331eb876 +size 12143 diff --git a/blocks/task5/maps/level3/output_img/2.jpg b/blocks/task5/maps/level3/output_img/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0d94a13bc58dee8ce50f8a5c7042a65ed77d900 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4abcd6f9a7dc483750b753cc5a44cca81d5f9293d6d5b52c2270c97d0aac289c +size 11803 diff --git a/blocks/task5/maps/level3/output_img/20.jpg b/blocks/task5/maps/level3/output_img/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f8d825e05d582f520ed09ff2a3e9c2149762c83 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a010ec047f277df66d601636dc15b0abf38a5bc4812f785485929e5cac00cc +size 10511 diff --git a/blocks/task5/maps/level3/output_img/21.jpg b/blocks/task5/maps/level3/output_img/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca9bd439600ab06f62768383f0ac222c682253c7 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e41cb351ab4e5cd0a7c848ee3c00509f63b1a4f49d9ffd2ada8f9747192faf1 +size 10263 diff --git a/blocks/task5/maps/level3/output_img/22.jpg b/blocks/task5/maps/level3/output_img/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..525919c22376896f394c2dfb221790822508c74c --- /dev/null +++ b/blocks/task5/maps/level3/output_img/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a10aa8923b84b67d87b6b3c9829b16e6eeaaaad466a96598d756771279d2bec +size 12425 diff --git a/blocks/task5/maps/level3/output_img/23.jpg b/blocks/task5/maps/level3/output_img/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46cd5d975ef13cbbbf012385d931a2fcef255cc0 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047dc5d1d0e0c84690bd0dd8739d9dd59d95cbeca508cc1758cdd9e8ac15b858 +size 10725 diff --git a/blocks/task5/maps/level3/output_img/24.jpg b/blocks/task5/maps/level3/output_img/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fe48946a59dba8fa1a3e1660afb61cef7e46921 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1990ef64f1f7e848d5afe16cae252c96fe3f14b90a3c674e0619c2cf543c308 +size 11300 diff --git a/blocks/task5/maps/level3/output_img/25.jpg b/blocks/task5/maps/level3/output_img/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c6e7be94491f8f945e6e397acb6790cb36d1e56 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd953a8114455ea012a6e6096df55f6473ee7b7acd3f847165cc9f445bec8a2 +size 10778 diff --git a/blocks/task5/maps/level3/output_img/26.jpg b/blocks/task5/maps/level3/output_img/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80725d59dd4e5b769301d0f38436820e6232f959 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:267c5308df5a74d7bae8901190f3932f54662ea0ef275e14bf80d4b8f222d725 +size 10274 diff --git a/blocks/task5/maps/level3/output_img/27.jpg b/blocks/task5/maps/level3/output_img/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..626f99b3556a956d32bb4c840eb1240ca7d1635c --- /dev/null +++ b/blocks/task5/maps/level3/output_img/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97b7b8487517b67727237a79da9c0ee97fddcc270502379a7e86a744dbddf36 +size 11260 diff --git a/blocks/task5/maps/level3/output_img/28.jpg b/blocks/task5/maps/level3/output_img/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a94e227dda7205da1e0b35de7a87de160d91e61 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418482b1f49aecec03bccf160e13698ca8ac5f819c97be6665f5006b5fa7ba36 +size 11658 diff --git a/blocks/task5/maps/level3/output_img/29.jpg b/blocks/task5/maps/level3/output_img/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0976a9bb527abbf5525ed11ae66e2568cd46819f --- /dev/null +++ b/blocks/task5/maps/level3/output_img/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c5dde6ea2106b75fa1694b37b60d3d07f1b22ee2b53c027f14617a8c73b5636 +size 11541 diff --git a/blocks/task5/maps/level3/output_img/3.jpg b/blocks/task5/maps/level3/output_img/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35fafb9b7117bc8546a768cbbe310cf58cc2af81 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963e707d135cf3bcc7f6ef222187abef8287be82039f6da92b80667fc1a4d3f4 +size 11075 diff --git a/blocks/task5/maps/level3/output_img/30.jpg b/blocks/task5/maps/level3/output_img/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37854a873d4eb5ebc254e41b3d17a8667fc8a0f1 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6363ad829eea862a37728408f68c7cbcbc3d441c4da02591878264044d070e +size 11197 diff --git a/blocks/task5/maps/level3/output_img/31.jpg b/blocks/task5/maps/level3/output_img/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f45a2a49c5794c8dc77b08c2fe3af1d6c4546587 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136097ec3c8f6e7201728ecd9b2ab36ffe59cdb396c60c91b8fb562e5e21adac +size 11408 diff --git a/blocks/task5/maps/level3/output_img/32.jpg b/blocks/task5/maps/level3/output_img/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35730bb887af68a957e64339be3d351af7bb7228 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfb0ec58609d24a645a5131fe0e34d3e4dfc4f0dc0c04fda816bc7773873bde +size 11098 diff --git a/blocks/task5/maps/level3/output_img/33.jpg b/blocks/task5/maps/level3/output_img/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35fafb9b7117bc8546a768cbbe310cf58cc2af81 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963e707d135cf3bcc7f6ef222187abef8287be82039f6da92b80667fc1a4d3f4 +size 11075 diff --git a/blocks/task5/maps/level3/output_img/34.jpg b/blocks/task5/maps/level3/output_img/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73e43f038a16145e003d5c13f04343a719faeefd --- /dev/null +++ b/blocks/task5/maps/level3/output_img/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b66191010d0eb3c7ef1613218201fee8dd2f8204f586b355ba012fd2b7216d +size 10219 diff --git a/blocks/task5/maps/level3/output_img/35.jpg b/blocks/task5/maps/level3/output_img/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8c7fab69dbf4d18d51ea86408458a5201a01d1d --- /dev/null +++ b/blocks/task5/maps/level3/output_img/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15fba5b256d0e43e6b42d55ef63604466b7c2be21200def2c1a287277e84e16b +size 10791 diff --git a/blocks/task5/maps/level3/output_img/36.jpg b/blocks/task5/maps/level3/output_img/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cdb1e3d36f074d1a49d0a17e5de32b0065a66bc --- /dev/null +++ b/blocks/task5/maps/level3/output_img/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cbe0aeef8b58d5b12fbe1590f8f05458ec2d3c80f95143c1f0417798cedf58f +size 11414 diff --git a/blocks/task5/maps/level3/output_img/37.jpg b/blocks/task5/maps/level3/output_img/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd88801fd0de7008ae5646eba56f9629b627a155 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:182ce0ba4eeb314231523ad81bc0363f8a5c238840d6899216224e77f623986d +size 9957 diff --git a/blocks/task5/maps/level3/output_img/38.jpg b/blocks/task5/maps/level3/output_img/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59fe099c5dcd5a0e2f89547388f54d2a5d0cb42c --- /dev/null +++ b/blocks/task5/maps/level3/output_img/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8dbfef0ed6471da60287d9f19bc5e44d66596dd6ff576fc9b36bdec91fa899b +size 11124 diff --git a/blocks/task5/maps/level3/output_img/39.jpg b/blocks/task5/maps/level3/output_img/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9103f1c60634aee34f201ed6810ddd4c033daae1 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a27a23fbf17a478c775c9b9c0507047ddb8277a4e77e2ea710d78b5cc009e7 +size 11224 diff --git a/blocks/task5/maps/level3/output_img/4.jpg b/blocks/task5/maps/level3/output_img/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35730bb887af68a957e64339be3d351af7bb7228 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfb0ec58609d24a645a5131fe0e34d3e4dfc4f0dc0c04fda816bc7773873bde +size 11098 diff --git a/blocks/task5/maps/level3/output_img/40.jpg b/blocks/task5/maps/level3/output_img/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd642c688c50c37ef3d7f6c156f99c866897ce18 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed93352d3f24b6d7ecfc3e6bb3d6c417110dbc925b3f44842cf04599630672af +size 11685 diff --git a/blocks/task5/maps/level3/output_img/41.jpg b/blocks/task5/maps/level3/output_img/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..136978983830b6d152602da7855a641f371fa9a0 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fc3dbee582e94d45ac0036ca355561b9d28e5c67adc2272d3b8896008d4491c +size 11506 diff --git a/blocks/task5/maps/level3/output_img/42.jpg b/blocks/task5/maps/level3/output_img/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1bce14f35217e0dffc9e5403830758a4c45e14c --- /dev/null +++ b/blocks/task5/maps/level3/output_img/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de81e0e641e91adefb45387cf5ea2d02f19246439fb165affee77c322c8ba232 +size 10420 diff --git a/blocks/task5/maps/level3/output_img/43.jpg b/blocks/task5/maps/level3/output_img/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcbde2b48c40766ed46d1f051f9f6e6336cf5b42 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d210b28bab8c56c395fa037f3aa6d58f7a3fada4bc28f976fc4176b26e0cc9 +size 11030 diff --git a/blocks/task5/maps/level3/output_img/44.jpg b/blocks/task5/maps/level3/output_img/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90e8cf0c63c30c94c56c985e3e20927473dff171 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f49832b66840eff7bbe01fc4f03d827db69352944f1ecfb6d4893ad57eecf82 +size 9879 diff --git a/blocks/task5/maps/level3/output_img/45.jpg b/blocks/task5/maps/level3/output_img/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7f98bb21e95e9663b03241551324c15363918cf --- /dev/null +++ b/blocks/task5/maps/level3/output_img/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0981ec9a9d5a33ea37a09653f494cf495a282ea314cba187fd11af1d5e55e1 +size 10581 diff --git a/blocks/task5/maps/level3/output_img/46.jpg b/blocks/task5/maps/level3/output_img/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d9db8b49855489f6cf10cb6d9d0284c6f6415c9 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:440389ee31a57a26f3ad4101f9183579b3c142eef19190a33e25f91a0c6c1db7 +size 11299 diff --git a/blocks/task5/maps/level3/output_img/47.jpg b/blocks/task5/maps/level3/output_img/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6952c6479a2f27d82e6f354da6f9b6c14292d985 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd3f416a17206380c9d0f5626e9713bf119e0fabf75d6e88fc03d3f80a918c01 +size 10680 diff --git a/blocks/task5/maps/level3/output_img/48.jpg b/blocks/task5/maps/level3/output_img/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f645e0625719ba540fba01c3d29851aa57447b58 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:215b5f4ba5d0eddef50597f192ef1f9a173b7a349c7d738e7f22f091a0779c41 +size 10132 diff --git a/blocks/task5/maps/level3/output_img/49.jpg b/blocks/task5/maps/level3/output_img/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d48e5609f5ecf75cc1fa960ced8ddcb32c18d957 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5539b657710a5ead75004d4bc53826b446117be5306991a19083d47ad0e6f78f +size 11564 diff --git a/blocks/task5/maps/level3/output_img/5.jpg b/blocks/task5/maps/level3/output_img/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a701e382efefd6ad8c6f6202aa4d692088cacb8 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115c6a73e9b0bc7610d6235d050643090fa397691bfd8714047dab8c43c1eacc +size 11131 diff --git a/blocks/task5/maps/level3/output_img/50.jpg b/blocks/task5/maps/level3/output_img/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3601a72cab1f5f447b060fc459c7197ed674d9af --- /dev/null +++ b/blocks/task5/maps/level3/output_img/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0bef9c69ef2573fa88ba11f3ae7d837e8c58c629ff0f0144624855bcd6b82c +size 11282 diff --git a/blocks/task5/maps/level3/output_img/51.jpg b/blocks/task5/maps/level3/output_img/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..346f77c6ffaf5ec9d674790678e1dc1117bc8864 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c5519c7efc87b7a49beaa6fcb8f939ece9940062c1f8b896973b3958061253 +size 9742 diff --git a/blocks/task5/maps/level3/output_img/52.jpg b/blocks/task5/maps/level3/output_img/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f428ce06201d853142b0352f2bb62320ded23d4 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b569d612dc34dbf1df8e971184845f941de6ae898184e578f617b2076a0be89 +size 11270 diff --git a/blocks/task5/maps/level3/output_img/53.jpg b/blocks/task5/maps/level3/output_img/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86fa5299a793be410884a3e9347295bf4ab98426 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a77aef974aeeac5c729d37beec9d2b669e363ba179c9bc35a482abca086d808 +size 11293 diff --git a/blocks/task5/maps/level3/output_img/54.jpg b/blocks/task5/maps/level3/output_img/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ceec78e5362e4ab5882169123fda75bec15de32 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b107237638b1d91c51285fef8b4c95164e138f723abea360a09f70ee5f35913d +size 9924 diff --git a/blocks/task5/maps/level3/output_img/55.jpg b/blocks/task5/maps/level3/output_img/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..022780ea88faa05bf4892df7495b0c6d33cef418 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce197aaf15ae38f6dd4a4f88a83b0043e1159bcdabde4eae4cd108c783580d87 +size 10799 diff --git a/blocks/task5/maps/level3/output_img/56.jpg b/blocks/task5/maps/level3/output_img/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..849b22a713eb6ff019eeb8b816d6b2d55bfae27f --- /dev/null +++ b/blocks/task5/maps/level3/output_img/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b24a1600aaa22cb31e0729280b1cb84aaa9f7f50988dfce672d5aff23bb86f +size 10806 diff --git a/blocks/task5/maps/level3/output_img/57.jpg b/blocks/task5/maps/level3/output_img/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67ec215e38b6917879e03d4216982df2d08da5e1 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d407389fac2c7bfce74b2a01d2dc7e3fe54368b8901a968dfad606e1d238b6c9 +size 10625 diff --git a/blocks/task5/maps/level3/output_img/58.jpg b/blocks/task5/maps/level3/output_img/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a311b7f41f760ed60bedbcf5562f3f6e0d4aa994 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5418efcf66b5e9db46892111b6bd56f26e6ecbae5e8f43a7d8ba7dd8bcfff2f +size 10693 diff --git a/blocks/task5/maps/level3/output_img/59.jpg b/blocks/task5/maps/level3/output_img/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b194bffc63ef32fd9fb64db1a27bd23cbae786b --- /dev/null +++ b/blocks/task5/maps/level3/output_img/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448fc0c15050ddd1e7a8a607e9d08d1f7a2ca447251349e299db3a0e5eaa2c7a +size 10332 diff --git a/blocks/task5/maps/level3/output_img/6.jpg b/blocks/task5/maps/level3/output_img/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91da5627a3ab59e7c3ef50fa1c2697d7b88850cb --- /dev/null +++ b/blocks/task5/maps/level3/output_img/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9547f8e95ae7fbe22d411ed1445107065f5b1d6bdfc81b11835b59e644787ed +size 10273 diff --git a/blocks/task5/maps/level3/output_img/60.jpg b/blocks/task5/maps/level3/output_img/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1124c6f0fd9667dbde8d3e47ab498b428e26660 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d36f82dc5c4a624883c15d43807796e31795d3b9197ce0ded1bbd4364a15cfc +size 11085 diff --git a/blocks/task5/maps/level3/output_img/61.jpg b/blocks/task5/maps/level3/output_img/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98fa48dfac3460810fd6aa19a38cc744f148895f --- /dev/null +++ b/blocks/task5/maps/level3/output_img/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b33c2cd4a3401ee7fff34a5493ae03fa2c5ce7f48ec42e3618ba42caad59193f +size 10601 diff --git a/blocks/task5/maps/level3/output_img/62.jpg b/blocks/task5/maps/level3/output_img/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41c7d647abe7185b11f96b7376aa3440986492b6 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6edd702f1b676172d7acea57ba553ab00423f817982fdd88ac44103bb989759d +size 10146 diff --git a/blocks/task5/maps/level3/output_img/63.jpg b/blocks/task5/maps/level3/output_img/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4600dbf04eca1fe6dfc6052fa06cc27bc525885b --- /dev/null +++ b/blocks/task5/maps/level3/output_img/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa86ec23fea9206fe7a4b47cda1efeb98260221b350af468ebb909e331eb876 +size 12143 diff --git a/blocks/task5/maps/level3/output_img/64.jpg b/blocks/task5/maps/level3/output_img/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b2c6581ab7761a4ec565e087cab8815d6fb7e40 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96dff4413d91f64a1bb6c7d8262eda9a4dd788e9e441bc3529e26d8bb7fa93b3 +size 10289 diff --git a/blocks/task5/maps/level3/output_img/65.jpg b/blocks/task5/maps/level3/output_img/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55ddbcb5ee79440c91aceac5d156682c2fe73292 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e308a65f104dad7d363eb955e0591fc94567956a957a2f027a44aee68c09f61 +size 11512 diff --git a/blocks/task5/maps/level3/output_img/66.jpg b/blocks/task5/maps/level3/output_img/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e6e2aad0aa0af65ebf11ab772054a8657f14afc --- /dev/null +++ b/blocks/task5/maps/level3/output_img/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab404d0dd09a6ea1b070b5a9e469bab0630a304ef5029c7913e051e635d728a +size 11232 diff --git a/blocks/task5/maps/level3/output_img/67.jpg b/blocks/task5/maps/level3/output_img/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17c3dd6fe5db105288266cb0a5bf8cec3acfde0b --- /dev/null +++ b/blocks/task5/maps/level3/output_img/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97361f2b60cee7d632ab51a373bce0fe1a3d70e37e98999d437662cb38c12aef +size 11083 diff --git a/blocks/task5/maps/level3/output_img/68.jpg b/blocks/task5/maps/level3/output_img/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6e1c09c22497ea5be05998fb90ef4e2475d58f4 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23adb93216d9398e31fe068fc0be2cc9e54b778790cf816ca15e0d8b10436514 +size 11288 diff --git a/blocks/task5/maps/level3/output_img/69.jpg b/blocks/task5/maps/level3/output_img/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f0a3a68c8a8eeb1b005c93f591fd6703a4d696a --- /dev/null +++ b/blocks/task5/maps/level3/output_img/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375d33e625dc3aa1cb69c7d22f6f1749f93e8cd806faeb7851e0c41de70c1c00 +size 10257 diff --git a/blocks/task5/maps/level3/output_img/7.jpg b/blocks/task5/maps/level3/output_img/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d2a9ffe8eafab0137e92695d478b640a02e1d7d --- /dev/null +++ b/blocks/task5/maps/level3/output_img/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae62643a9b812a416465c26bc19b9675d9c1decdef39378c1bb93c4aba620a1 +size 10834 diff --git a/blocks/task5/maps/level3/output_img/70.jpg b/blocks/task5/maps/level3/output_img/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69df76a38b6082c448992ccf35a57ea1c1d65836 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e7d15e94cdd8fa8b41557fccb6e1a9cf2751e16d004ae5f0386f42acccf8a9 +size 10697 diff --git a/blocks/task5/maps/level3/output_img/71.jpg b/blocks/task5/maps/level3/output_img/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67665ccae3eac1fbe4c7fae8c2dc8a383be2bc56 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa96a14ed7ff5511c117c349fe5c338f90f188a0c2a7dc0e89d34441f0b6168 +size 10700 diff --git a/blocks/task5/maps/level3/output_img/72.jpg b/blocks/task5/maps/level3/output_img/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32914aee82f056e4185540cd84dc3e4adffb545d --- /dev/null +++ b/blocks/task5/maps/level3/output_img/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d30b4e5395293c029ad6c29b696a464e7069ebd0930d5ff6c52daa524f19c21 +size 10110 diff --git a/blocks/task5/maps/level3/output_img/73.jpg b/blocks/task5/maps/level3/output_img/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b495ff0c86740c720f6fc9f02bb69ae42a49094 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5adb36d24c38a06c6342eae0dd62a6513903aaf90b4e20c2844e9e4cf83b388f +size 11024 diff --git a/blocks/task5/maps/level3/output_img/74.jpg b/blocks/task5/maps/level3/output_img/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdf0c2193e18ee1fb7778b792d56bcde7e7d9563 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb292e8651dc46b9661742f533db20c5ac46e7016b5e9276ffa753f2b03bcfa +size 10633 diff --git a/blocks/task5/maps/level3/output_img/75.jpg b/blocks/task5/maps/level3/output_img/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..870ce4ad2a9b5b7a4294da3a89f18640fb397253 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e55378b6b9b87e8c159c180b77e74c6cd700b4b30615bb5ed0e90001c290739 +size 9839 diff --git a/blocks/task5/maps/level3/output_img/76.jpg b/blocks/task5/maps/level3/output_img/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2eea206a91afb551b8467e06a1bbd95d223480d4 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:989ab3da67c9eb74e5b1e3dd089e1e15f180a0e3629822a5956d78835ed31280 +size 10160 diff --git a/blocks/task5/maps/level3/output_img/77.jpg b/blocks/task5/maps/level3/output_img/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..704ec010fa84df60af499e958fdb992237150114 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb2d151472b3c7533f4516f6ccd56eb1606f93df270aab3c6e927b415f16ed50 +size 11384 diff --git a/blocks/task5/maps/level3/output_img/78.jpg b/blocks/task5/maps/level3/output_img/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a42c153b61e8ede0c95c263ef9688a2f0ef917dc --- /dev/null +++ b/blocks/task5/maps/level3/output_img/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13253ddb554e1e6348d0164f3859cb45a80d9c503910ecdd668a93a3fdd48e9 +size 11190 diff --git a/blocks/task5/maps/level3/output_img/79.jpg b/blocks/task5/maps/level3/output_img/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6caff84b11569474017890c7ed6a193819bd69d --- /dev/null +++ b/blocks/task5/maps/level3/output_img/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3deb3dbc4266731d57c87e7be46af09605eff05a88a929893b9b12841eddb9a +size 11681 diff --git a/blocks/task5/maps/level3/output_img/8.jpg b/blocks/task5/maps/level3/output_img/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..792ecd95f4ae93cf5fccf7ba87ccfcadc50110ef --- /dev/null +++ b/blocks/task5/maps/level3/output_img/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af09440bc441207f05cccb6caecacb733432e5cddb9c075533dbb4bbc346f24 +size 11211 diff --git a/blocks/task5/maps/level3/output_img/80.jpg b/blocks/task5/maps/level3/output_img/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e74ec287c240714bec165a21af3ec5cd93640dfa --- /dev/null +++ b/blocks/task5/maps/level3/output_img/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd3bc881b197a8c08ca1124e9a24332bd678b240aec78ed929e46e9b02bda16 +size 10627 diff --git a/blocks/task5/maps/level3/output_img/81.jpg b/blocks/task5/maps/level3/output_img/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fdeab1d5f6d225b3f94aa98bad2eab83a13c4c7 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7b9e4faf8c161b9cb565896ee7e18dfb0b73a30643b1d2932df0b1289e6bba +size 10909 diff --git a/blocks/task5/maps/level3/output_img/82.jpg b/blocks/task5/maps/level3/output_img/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af80d52ac0dae2efab795acd82f791e4b7ef715e --- /dev/null +++ b/blocks/task5/maps/level3/output_img/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf753e0664064977c522d244be1e5ae687eb8507c4069613a4cf0953dcdba1d9 +size 9934 diff --git a/blocks/task5/maps/level3/output_img/83.jpg b/blocks/task5/maps/level3/output_img/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5166f9470e07aeccf20c45bd4e735cf1a40ab181 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06dcbf16269a40ddc9c474b8345e8fef47451750841f9f3725164a97307c87b +size 10268 diff --git a/blocks/task5/maps/level3/output_img/84.jpg b/blocks/task5/maps/level3/output_img/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af3c3f0c5732d09508f36cb0abf81adc52553ccd --- /dev/null +++ b/blocks/task5/maps/level3/output_img/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367817a1eed966526f6ff23ec43d4c51b719500483b2167b1f7eddd336e11494 +size 11472 diff --git a/blocks/task5/maps/level3/output_img/85.jpg b/blocks/task5/maps/level3/output_img/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c683098bf92dbea9f1a164f1b8e743f735a1dd55 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c66179ab20e70c43336e22cefed6749b80e7e3d7a12d300c80075bb096352e2b +size 11943 diff --git a/blocks/task5/maps/level3/output_img/86.jpg b/blocks/task5/maps/level3/output_img/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eeb2b6afbec3fadb142b37197f17fe059a63b168 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce4f54d45ddd4772a4df2ef93db3ab8da7100a26bde1c533556b3162cfc17558 +size 11057 diff --git a/blocks/task5/maps/level3/output_img/87.jpg b/blocks/task5/maps/level3/output_img/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eafdb62b7f52a8adbddf5faa9c536994e6bb0069 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842866a7834a51f480c6dd99c6f70cb73c88eec62b58765bf63c1a7003366ab +size 10838 diff --git a/blocks/task5/maps/level3/output_img/88.jpg b/blocks/task5/maps/level3/output_img/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac7576f5fc6c3d5abe3a1dca0df0ecba36ce54bd --- /dev/null +++ b/blocks/task5/maps/level3/output_img/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa71a5af53a2192a194164229968defa46d48007d72d3f3719f907146477e27 +size 11144 diff --git a/blocks/task5/maps/level3/output_img/89.jpg b/blocks/task5/maps/level3/output_img/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2c11d485bc7cba4347d726effe099860cb208ee --- /dev/null +++ b/blocks/task5/maps/level3/output_img/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94a6c56288348f81f755453a603769d78521b4d0c1f2c60223abea049fcf2a7 +size 10647 diff --git a/blocks/task5/maps/level3/output_img/9.jpg b/blocks/task5/maps/level3/output_img/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c3765b3ae539f83e7e7e3f353b6dacbf7af6679 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:969900fc4275976a6e71964fd143a8e8beb7a5ac4d77e57f8499ccf406c47e79 +size 10448 diff --git a/blocks/task5/maps/level3/output_img/90.jpg b/blocks/task5/maps/level3/output_img/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e81b62b24974081ade76e38668c380ea88692e5 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bd6b43d8e2c67a3830379f6a771b75dbee9229de92499e34b0af2d6bd97792 +size 11102 diff --git a/blocks/task5/maps/level3/output_img/91.jpg b/blocks/task5/maps/level3/output_img/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89f713ef4c9ef39a0ef43d32494fe1c13220c8ce --- /dev/null +++ b/blocks/task5/maps/level3/output_img/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5839f29c1036e50a858a72eaa7d7de0fdeed969fc0f350fbb20bd52cc4a16fc +size 9918 diff --git a/blocks/task5/maps/level3/output_img/92.jpg b/blocks/task5/maps/level3/output_img/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7de4f36886ec569492a47cce167efe32a718598 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b681420e450b5050c2a799508d3afa5fec5255eabf21e676f8340ef4ef6f42 +size 10630 diff --git a/blocks/task5/maps/level3/output_img/93.jpg b/blocks/task5/maps/level3/output_img/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c67074dacb52134f501392ddd5ce6ea51b56cef --- /dev/null +++ b/blocks/task5/maps/level3/output_img/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56fd5e614330c432cf05e2981882a55540b573ca9b3d7f925e498d7e8b757e1c +size 11095 diff --git a/blocks/task5/maps/level3/output_img/94.jpg b/blocks/task5/maps/level3/output_img/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6794d089a58db470c42029301f631010c9f5a5d --- /dev/null +++ b/blocks/task5/maps/level3/output_img/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f0c3057ba8b8c01324f754f6c1179e8ec31d181f4fa6241e54a059e2529d70 +size 11451 diff --git a/blocks/task5/maps/level3/output_img/95.jpg b/blocks/task5/maps/level3/output_img/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca677cf6181381f378c0907552d9fcb38f6daee0 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f24c40a058665d3a26bb1e02d4a43031d6fca5809be4fe2e04431efa4091b142 +size 11019 diff --git a/blocks/task5/maps/level3/output_img/96.jpg b/blocks/task5/maps/level3/output_img/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cdc91f79187c9fa718da4fae8d02ac8c414ff5a --- /dev/null +++ b/blocks/task5/maps/level3/output_img/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce7753c0bfc07a117fe42f092f2ffafac26ed556f7ee4640ed4f2f58b4719b0d +size 10861 diff --git a/blocks/task5/maps/level3/output_img/97.jpg b/blocks/task5/maps/level3/output_img/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cdb1e3d36f074d1a49d0a17e5de32b0065a66bc --- /dev/null +++ b/blocks/task5/maps/level3/output_img/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cbe0aeef8b58d5b12fbe1590f8f05458ec2d3c80f95143c1f0417798cedf58f +size 11414 diff --git a/blocks/task5/maps/level3/output_img/98.jpg b/blocks/task5/maps/level3/output_img/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6827496d2b7d797aa41124d58ef156cbd2704579 --- /dev/null +++ b/blocks/task5/maps/level3/output_img/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ffb003d0cb542281320b92a5b76c8da987210c3c726298d95d2400fdc059f8 +size 11249 diff --git a/blocks/task5/maps/level3/output_img/99.jpg b/blocks/task5/maps/level3/output_img/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91da5627a3ab59e7c3ef50fa1c2697d7b88850cb --- /dev/null +++ b/blocks/task5/maps/level3/output_img/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9547f8e95ae7fbe22d411ed1445107065f5b1d6bdfc81b11835b59e644787ed +size 10273 diff --git a/blocks/task5/maps/level3/output_table/0.txt b/blocks/task5/maps/level3/output_table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c8641e758ea08a7a2e7b7b5226ac23e9cd16cbd --- /dev/null +++ b/blocks/task5/maps/level3/output_table/0.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | red | orange | +Level 1 | purple | yellow | diff --git a/blocks/task5/maps/level3/output_table/1.txt b/blocks/task5/maps/level3/output_table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8caae8300c4e5f7390f9c7222a374d28fa5d2e1 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/1.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | | blue | +Level 1 | purple | yellow | green | diff --git a/blocks/task5/maps/level3/output_table/10.txt b/blocks/task5/maps/level3/output_table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2ebdf7658a9e6045eacc59bbb8e205226cda692 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/10.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | blue | purple | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level3/output_table/11.txt b/blocks/task5/maps/level3/output_table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..652a39b20d7f2f84bbefc083a1442bff2ba8f01c --- /dev/null +++ b/blocks/task5/maps/level3/output_table/11.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | purple | blue | green | yellow | diff --git a/blocks/task5/maps/level3/output_table/12.txt b/blocks/task5/maps/level3/output_table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..06194396fab7a5f0b72b25536fa39332ca98b12e --- /dev/null +++ b/blocks/task5/maps/level3/output_table/12.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | yellow | +Level 1 | blue | green | diff --git a/blocks/task5/maps/level3/output_table/13.txt b/blocks/task5/maps/level3/output_table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b19bf4cfec41038ac1751d04d6b1b528ba7a60c --- /dev/null +++ b/blocks/task5/maps/level3/output_table/13.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | green | purple | orange | blue | diff --git a/blocks/task5/maps/level3/output_table/14.txt b/blocks/task5/maps/level3/output_table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..8475af58bef4230f8853dcda31bfa8ab521fc339 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/14.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | blue | orange | purple | yellow | diff --git a/blocks/task5/maps/level3/output_table/15.txt b/blocks/task5/maps/level3/output_table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9409a347256e0acb22e6394b2e51c1fd451c5ee --- /dev/null +++ b/blocks/task5/maps/level3/output_table/15.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | red | +Level 1 | blue | orange | yellow | diff --git a/blocks/task5/maps/level3/output_table/16.txt b/blocks/task5/maps/level3/output_table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..346b839394d49190e248e677f59828550448d3e0 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/16.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | blue | +Level 1 | green | orange | yellow | diff --git a/blocks/task5/maps/level3/output_table/17.txt b/blocks/task5/maps/level3/output_table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..e336a88b5cc693fd1e446e4f9e392b38bf530b82 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/17.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | red | +Level 1 | yellow | blue | green | diff --git a/blocks/task5/maps/level3/output_table/18.txt b/blocks/task5/maps/level3/output_table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eb93b2983860a40c2107e83ee0982ce32ca1c04 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/18.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level3/output_table/19.txt b/blocks/task5/maps/level3/output_table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..286bbdfd47dc2f6ac433305382bd1311723ef001 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/19.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | orange | +Level 2 | | green | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/2.txt b/blocks/task5/maps/level3/output_table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f9a51ba0eba5c0c55d29cf18338561817a79ead --- /dev/null +++ b/blocks/task5/maps/level3/output_table/2.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | green | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level3/output_table/20.txt b/blocks/task5/maps/level3/output_table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..6eb7591e1fd1f034da0d16599d0aeb0710203008 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/20.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | orange | +Level 1 | yellow | green | purple | diff --git a/blocks/task5/maps/level3/output_table/21.txt b/blocks/task5/maps/level3/output_table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..375ad5b5c2cca8749b7c035d28a71f2643d090bf --- /dev/null +++ b/blocks/task5/maps/level3/output_table/21.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | green | orange | purple | diff --git a/blocks/task5/maps/level3/output_table/22.txt b/blocks/task5/maps/level3/output_table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fbf3e9edf2199dfe1c3b0289b5ca7ac6ff34f7e --- /dev/null +++ b/blocks/task5/maps/level3/output_table/22.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | green | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/23.txt b/blocks/task5/maps/level3/output_table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dfd098c616a014a3f13fd882f725d230da10348 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/23.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | yellow | blue | red | orange | diff --git a/blocks/task5/maps/level3/output_table/24.txt b/blocks/task5/maps/level3/output_table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1958aed43dfb9ff33af15a47ba344926e4c6213 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/24.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | green | orange | purple | blue | diff --git a/blocks/task5/maps/level3/output_table/25.txt b/blocks/task5/maps/level3/output_table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..301650c33cc6459d1eed63958807d28f1fd04ef3 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/25.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | red | +Level 1 | green | orange | blue | diff --git a/blocks/task5/maps/level3/output_table/26.txt b/blocks/task5/maps/level3/output_table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b0d6179574a447d35ac667cb6bffb3253aa6ce6 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/26.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | red | green | blue | yellow | diff --git a/blocks/task5/maps/level3/output_table/27.txt b/blocks/task5/maps/level3/output_table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc2dbbf91b30b4290bf153aea19cce1a0727099f --- /dev/null +++ b/blocks/task5/maps/level3/output_table/27.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | blue | red | yellow | orange | diff --git a/blocks/task5/maps/level3/output_table/28.txt b/blocks/task5/maps/level3/output_table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..45cdf0e8839efe40cc4cf2ca2e7d4cfb59d87274 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/28.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | blue | green | diff --git a/blocks/task5/maps/level3/output_table/29.txt b/blocks/task5/maps/level3/output_table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a0ff49de91686ec0bbdf7894487ae832ff7ff5c --- /dev/null +++ b/blocks/task5/maps/level3/output_table/29.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | green | +Level 1 | blue | red | purple | diff --git a/blocks/task5/maps/level3/output_table/3.txt b/blocks/task5/maps/level3/output_table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..60a293e64faee43d000c216568f8165be472e970 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/3.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | yellow | purple | orange | blue | diff --git a/blocks/task5/maps/level3/output_table/30.txt b/blocks/task5/maps/level3/output_table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..24ee8eb67ed750bc6ca1b1d4c6c1f2fb39b142ba --- /dev/null +++ b/blocks/task5/maps/level3/output_table/30.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | yellow | +Level 1 | red | green | blue | diff --git a/blocks/task5/maps/level3/output_table/31.txt b/blocks/task5/maps/level3/output_table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ceeecb13aeb0ec8e8eba5fe8e867d512485010 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/31.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | green | red | blue | diff --git a/blocks/task5/maps/level3/output_table/32.txt b/blocks/task5/maps/level3/output_table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6a730d174bb84c2db6822673c45a7ea11b6ac9c --- /dev/null +++ b/blocks/task5/maps/level3/output_table/32.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | purple | orange | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/33.txt b/blocks/task5/maps/level3/output_table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..60a293e64faee43d000c216568f8165be472e970 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/33.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | yellow | purple | orange | blue | diff --git a/blocks/task5/maps/level3/output_table/34.txt b/blocks/task5/maps/level3/output_table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..d83be32e397844235e91281f12477f5637cd1854 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/34.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | orange | +Level 1 | red | yellow | purple | diff --git a/blocks/task5/maps/level3/output_table/35.txt b/blocks/task5/maps/level3/output_table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c08487d8bf7d10e88669913244449843c22a098 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/35.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | blue | yellow | orange | green | diff --git a/blocks/task5/maps/level3/output_table/36.txt b/blocks/task5/maps/level3/output_table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd9b65cc3ab637fdde1fdb016248609b7ea448eb --- /dev/null +++ b/blocks/task5/maps/level3/output_table/36.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | blue | orange | green | diff --git a/blocks/task5/maps/level3/output_table/37.txt b/blocks/task5/maps/level3/output_table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..97da09980e2b40418a33f869a3c02d30e9308202 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/37.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | green | red | +Level 1 | yellow | blue | diff --git a/blocks/task5/maps/level3/output_table/38.txt b/blocks/task5/maps/level3/output_table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..0df9aafb0b6131d27b6a84101006c9a0d71f28cf --- /dev/null +++ b/blocks/task5/maps/level3/output_table/38.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/39.txt b/blocks/task5/maps/level3/output_table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..6db074ab06dab0be23dd0e5e5fe81e9a22a1c956 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/39.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | green | orange | blue | yellow | diff --git a/blocks/task5/maps/level3/output_table/4.txt b/blocks/task5/maps/level3/output_table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6a730d174bb84c2db6822673c45a7ea11b6ac9c --- /dev/null +++ b/blocks/task5/maps/level3/output_table/4.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | purple | orange | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/40.txt b/blocks/task5/maps/level3/output_table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1e5f62916eacbabb7e31714024ab8d0697b3359 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/40.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | orange | +Level 2 | | red | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level3/output_table/41.txt b/blocks/task5/maps/level3/output_table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..434a027e05fed1e44a75137a73ff044d50cbae46 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/41.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | green | purple | diff --git a/blocks/task5/maps/level3/output_table/42.txt b/blocks/task5/maps/level3/output_table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..51e41bb5a8cefde764231465a1c2bab99cbdfedc --- /dev/null +++ b/blocks/task5/maps/level3/output_table/42.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | green | +Level 1 | yellow | purple | red | diff --git a/blocks/task5/maps/level3/output_table/43.txt b/blocks/task5/maps/level3/output_table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc8e3a01058417ce91a6a000f509c827cb381596 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/43.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | yellow | orange | green | red | diff --git a/blocks/task5/maps/level3/output_table/44.txt b/blocks/task5/maps/level3/output_table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8ccf18b6460faa472586fc8b1bbc734806b5cea --- /dev/null +++ b/blocks/task5/maps/level3/output_table/44.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level3/output_table/45.txt b/blocks/task5/maps/level3/output_table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..562d870abc0a26665a0a635e2140b23452b8c617 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/45.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | red | green | blue | diff --git a/blocks/task5/maps/level3/output_table/46.txt b/blocks/task5/maps/level3/output_table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1e1c92860626ee5c361f900abe088dd7608d178 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/46.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | blue | green | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/47.txt b/blocks/task5/maps/level3/output_table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..d70cfab73c31da0f90dbcb2519441d811db9337f --- /dev/null +++ b/blocks/task5/maps/level3/output_table/47.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | blue | +Level 1 | purple | orange | yellow | diff --git a/blocks/task5/maps/level3/output_table/48.txt b/blocks/task5/maps/level3/output_table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..30ace97071322a2c62ba66d2ed5eb7e41d621010 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/48.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | green | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level3/output_table/49.txt b/blocks/task5/maps/level3/output_table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c0f4390584c7975dcd8888214b9f40ef123d2a5 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/49.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | yellow | +Level 2 | | purple | +Level 1 | orange | red | diff --git a/blocks/task5/maps/level3/output_table/5.txt b/blocks/task5/maps/level3/output_table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..40a966250f383517b26755af766703f86c40d3ed --- /dev/null +++ b/blocks/task5/maps/level3/output_table/5.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | yellow | red | blue | green | diff --git a/blocks/task5/maps/level3/output_table/50.txt b/blocks/task5/maps/level3/output_table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..b174548ade68c78740d112a9b913e3c6b346dcad --- /dev/null +++ b/blocks/task5/maps/level3/output_table/50.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | purple | +Level 1 | red | green | yellow | diff --git a/blocks/task5/maps/level3/output_table/51.txt b/blocks/task5/maps/level3/output_table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b8b94024cd5b30efa1fa29d070c9733ad7976f --- /dev/null +++ b/blocks/task5/maps/level3/output_table/51.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | green | +Level 1 | purple | orange | diff --git a/blocks/task5/maps/level3/output_table/52.txt b/blocks/task5/maps/level3/output_table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..633a8ca1e0c7cdb292e80865ed766c1584834538 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/52.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | purple | +Level 1 | orange | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/53.txt b/blocks/task5/maps/level3/output_table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..f090406fc64af916bc66cbf83e1626a16a886743 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/53.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | green | purple | red | yellow | diff --git a/blocks/task5/maps/level3/output_table/54.txt b/blocks/task5/maps/level3/output_table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..929a3978b8dee3ceb6724b28b9ea4425ea0e7f7d --- /dev/null +++ b/blocks/task5/maps/level3/output_table/54.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | green | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/55.txt b/blocks/task5/maps/level3/output_table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bba81ad13536b9dcfdaad99d1cffcc99064ff91 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/55.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | orange | +Level 1 | purple | green | blue | diff --git a/blocks/task5/maps/level3/output_table/56.txt b/blocks/task5/maps/level3/output_table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..de549c03da8ba3361203d1f870f1bd8e9dfc8960 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/56.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | orange | +Level 1 | purple | blue | yellow | diff --git a/blocks/task5/maps/level3/output_table/57.txt b/blocks/task5/maps/level3/output_table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bf765e16a34e0df43226e4b60dbba974ef07dc7 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/57.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | green | +Level 1 | yellow | purple | blue | diff --git a/blocks/task5/maps/level3/output_table/58.txt b/blocks/task5/maps/level3/output_table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1ae5a98faa3a8ed6aa1d172d6955ee4e3ce2cbb --- /dev/null +++ b/blocks/task5/maps/level3/output_table/58.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | blue | orange | +Level 1 | red | purple | diff --git a/blocks/task5/maps/level3/output_table/59.txt b/blocks/task5/maps/level3/output_table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..434fa2b6d97e8c1cde7d44831b08779768c240ec --- /dev/null +++ b/blocks/task5/maps/level3/output_table/59.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | green | purple | red | diff --git a/blocks/task5/maps/level3/output_table/6.txt b/blocks/task5/maps/level3/output_table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..210fc759b7e45c6572ff624b51430dc6196a3cf3 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/6.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | red | yellow | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level3/output_table/60.txt b/blocks/task5/maps/level3/output_table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d239b12ae22b4d8d088aef5f9e8b210133598e5 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/60.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | yellow | orange | purple | red | diff --git a/blocks/task5/maps/level3/output_table/61.txt b/blocks/task5/maps/level3/output_table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2098a4ddceee86de0da66a9c9ba3a1adb449b30b --- /dev/null +++ b/blocks/task5/maps/level3/output_table/61.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | blue | red | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level3/output_table/62.txt b/blocks/task5/maps/level3/output_table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dccee9d90897c06fe0d7637cdf1bc3c16359bcf --- /dev/null +++ b/blocks/task5/maps/level3/output_table/62.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | green | purple | orange | diff --git a/blocks/task5/maps/level3/output_table/63.txt b/blocks/task5/maps/level3/output_table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..286bbdfd47dc2f6ac433305382bd1311723ef001 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/63.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | orange | +Level 2 | | green | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/64.txt b/blocks/task5/maps/level3/output_table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..52b575d4d9092051cec1e54b013172fd00d76bef --- /dev/null +++ b/blocks/task5/maps/level3/output_table/64.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | blue | +Level 1 | yellow | green | orange | diff --git a/blocks/task5/maps/level3/output_table/65.txt b/blocks/task5/maps/level3/output_table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..128141f9c12f600408be7b0d1e5b44186eb90a69 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/65.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | orange | red | blue | yellow | diff --git a/blocks/task5/maps/level3/output_table/66.txt b/blocks/task5/maps/level3/output_table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed07d83e611e0947ef0fe7f14d58912d2c7ef34f --- /dev/null +++ b/blocks/task5/maps/level3/output_table/66.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | blue | +Level 1 | orange | yellow | green | diff --git a/blocks/task5/maps/level3/output_table/67.txt b/blocks/task5/maps/level3/output_table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d16f1e785a4e011a1fd7275461591bd05aee407 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/67.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | green | purple | red | blue | diff --git a/blocks/task5/maps/level3/output_table/68.txt b/blocks/task5/maps/level3/output_table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..887bafdb6d8937c08fb16f4bfbddedb335103d93 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/68.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | green | purple | orange | blue | diff --git a/blocks/task5/maps/level3/output_table/69.txt b/blocks/task5/maps/level3/output_table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..2086362d88f33c4d7be10e15e5233d7bce3b93fb --- /dev/null +++ b/blocks/task5/maps/level3/output_table/69.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | red | blue | diff --git a/blocks/task5/maps/level3/output_table/7.txt b/blocks/task5/maps/level3/output_table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7f001992764faa7f421aa4988e67235be2ce909 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/7.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | purple | +Level 1 | red | orange | blue | diff --git a/blocks/task5/maps/level3/output_table/70.txt b/blocks/task5/maps/level3/output_table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbe3782268af26bcd673a787486503e802300dd8 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/70.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | orange | yellow | green | purple | diff --git a/blocks/task5/maps/level3/output_table/71.txt b/blocks/task5/maps/level3/output_table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..1114f70312c92a2b6fc7eb51f6a4c35a93a0ac10 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/71.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | blue | +Level 1 | purple | red | yellow | diff --git a/blocks/task5/maps/level3/output_table/72.txt b/blocks/task5/maps/level3/output_table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..36a7fce9ca4a1821e93b1fc5bb8d5600249b6bee --- /dev/null +++ b/blocks/task5/maps/level3/output_table/72.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | red | green | diff --git a/blocks/task5/maps/level3/output_table/73.txt b/blocks/task5/maps/level3/output_table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f4bb75260ab07ea8a1d67d933d18f1c0adcf2ac --- /dev/null +++ b/blocks/task5/maps/level3/output_table/73.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | green | purple | yellow | blue | diff --git a/blocks/task5/maps/level3/output_table/74.txt b/blocks/task5/maps/level3/output_table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c21f4e75b033e58f32cb8e0fefc8296f2c28b63 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/74.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | red | +Level 1 | yellow | purple | orange | diff --git a/blocks/task5/maps/level3/output_table/75.txt b/blocks/task5/maps/level3/output_table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..e620a816fcf1330564ea3c1b4b74d20dd5c1ccaa --- /dev/null +++ b/blocks/task5/maps/level3/output_table/75.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | blue | purple | green | orange | diff --git a/blocks/task5/maps/level3/output_table/76.txt b/blocks/task5/maps/level3/output_table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..cac471caec4611819a72d49108e7031411f67b8d --- /dev/null +++ b/blocks/task5/maps/level3/output_table/76.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | blue | green | purple | diff --git a/blocks/task5/maps/level3/output_table/77.txt b/blocks/task5/maps/level3/output_table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..9350033cfc2a18e01430ef2229d965d83a598de4 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/77.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | green | orange | red | purple | yellow | diff --git a/blocks/task5/maps/level3/output_table/78.txt b/blocks/task5/maps/level3/output_table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..998a32eb839d65e843facda454353bf73e8962d0 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/78.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | yellow | +Level 1 | green | purple | diff --git a/blocks/task5/maps/level3/output_table/79.txt b/blocks/task5/maps/level3/output_table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..5abd50a02e480560c235c3f967a2d949c3431bdb --- /dev/null +++ b/blocks/task5/maps/level3/output_table/79.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | purple | yellow | red | blue | green | diff --git a/blocks/task5/maps/level3/output_table/8.txt b/blocks/task5/maps/level3/output_table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..546bdced0b869d398b9efa4f2e147367498367bf --- /dev/null +++ b/blocks/task5/maps/level3/output_table/8.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | blue | red | +Level 1 | orange | green | diff --git a/blocks/task5/maps/level3/output_table/80.txt b/blocks/task5/maps/level3/output_table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2af451bda4abffc773d22f93d3cbce28cafdda2f --- /dev/null +++ b/blocks/task5/maps/level3/output_table/80.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | blue | +Level 1 | yellow | purple | orange | diff --git a/blocks/task5/maps/level3/output_table/81.txt b/blocks/task5/maps/level3/output_table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f51b3b9a7d86eee9de1bbb9332156205d90c68e --- /dev/null +++ b/blocks/task5/maps/level3/output_table/81.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | red | blue | orange | green | diff --git a/blocks/task5/maps/level3/output_table/82.txt b/blocks/task5/maps/level3/output_table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f8e68d3012775d84f2b98e4db34a876ff69994e --- /dev/null +++ b/blocks/task5/maps/level3/output_table/82.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | red | purple | diff --git a/blocks/task5/maps/level3/output_table/83.txt b/blocks/task5/maps/level3/output_table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..530ab3b53988ad1637960c76333f4b91058700fe --- /dev/null +++ b/blocks/task5/maps/level3/output_table/83.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | yellow | blue | red | orange | diff --git a/blocks/task5/maps/level3/output_table/84.txt b/blocks/task5/maps/level3/output_table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bdd86a98531941f462d2ba0ce5cd72d5908ce20 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/84.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level3/output_table/85.txt b/blocks/task5/maps/level3/output_table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..923d7c9ef507149456c69c342eee388da0f3096d --- /dev/null +++ b/blocks/task5/maps/level3/output_table/85.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | blue | green | purple | yellow | red | diff --git a/blocks/task5/maps/level3/output_table/86.txt b/blocks/task5/maps/level3/output_table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cd934a952ba7b8d468afc0b6a2da8d71c5a9dff --- /dev/null +++ b/blocks/task5/maps/level3/output_table/86.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | green | purple | blue | red | diff --git a/blocks/task5/maps/level3/output_table/87.txt b/blocks/task5/maps/level3/output_table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9c7bedfcbc88aeadbd0c89534e4f52c0331b9e2 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/87.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | red | blue | yellow | green | diff --git a/blocks/task5/maps/level3/output_table/88.txt b/blocks/task5/maps/level3/output_table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..53e57374ef836f99f33dbc70dfd9a084141e19a7 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/88.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | yellow | green | red | diff --git a/blocks/task5/maps/level3/output_table/89.txt b/blocks/task5/maps/level3/output_table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4cb8d0fb99739fc4630c649a92a0338abdfac18 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/89.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | red | blue | orange | purple | yellow | diff --git a/blocks/task5/maps/level3/output_table/9.txt b/blocks/task5/maps/level3/output_table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4907f2ed82258dd237770258cb4854320bf0250 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/9.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | yellow | +Level 1 | blue | purple | green | red | diff --git a/blocks/task5/maps/level3/output_table/90.txt b/blocks/task5/maps/level3/output_table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ecca396110fce7724e5f2c49eaad6d581268c19 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/90.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | red | yellow | green | orange | diff --git a/blocks/task5/maps/level3/output_table/91.txt b/blocks/task5/maps/level3/output_table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..d87b3371c57fc7c14779e34d3ce5604c6a2f1b5f --- /dev/null +++ b/blocks/task5/maps/level3/output_table/91.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | red | green | diff --git a/blocks/task5/maps/level3/output_table/92.txt b/blocks/task5/maps/level3/output_table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa4d49decfef94c18f2eb30c7457ca59940fccb2 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/92.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | green | +Level 1 | red | orange | blue | diff --git a/blocks/task5/maps/level3/output_table/93.txt b/blocks/task5/maps/level3/output_table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..305a0c579c66d7bebf8baeed15ceb6706a118a93 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/93.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | purple | green | yellow | orange | diff --git a/blocks/task5/maps/level3/output_table/94.txt b/blocks/task5/maps/level3/output_table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..14736efd834bce99379fae5b31f9d4b887857a8d --- /dev/null +++ b/blocks/task5/maps/level3/output_table/94.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | blue | +Level 1 | red | green | diff --git a/blocks/task5/maps/level3/output_table/95.txt b/blocks/task5/maps/level3/output_table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..3131e0e42e02695b41c338f99449153e447c2d2a --- /dev/null +++ b/blocks/task5/maps/level3/output_table/95.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | purple | +Level 1 | blue | red | orange | diff --git a/blocks/task5/maps/level3/output_table/96.txt b/blocks/task5/maps/level3/output_table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..559bd58621d61a8faa9ebe3179068ebf8956cd7a --- /dev/null +++ b/blocks/task5/maps/level3/output_table/96.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | orange | yellow | green | blue | red | diff --git a/blocks/task5/maps/level3/output_table/97.txt b/blocks/task5/maps/level3/output_table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd9b65cc3ab637fdde1fdb016248609b7ea448eb --- /dev/null +++ b/blocks/task5/maps/level3/output_table/97.txt @@ -0,0 +1,2 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | Stack 5 | +Level 1 | yellow | purple | blue | orange | green | diff --git a/blocks/task5/maps/level3/output_table/98.txt b/blocks/task5/maps/level3/output_table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..c425098bbb70539d307c481312f25b11c2e9aeca --- /dev/null +++ b/blocks/task5/maps/level3/output_table/98.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | orange | purple | +Level 1 | blue | red | diff --git a/blocks/task5/maps/level3/output_table/99.txt b/blocks/task5/maps/level3/output_table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..210fc759b7e45c6572ff624b51430dc6196a3cf3 --- /dev/null +++ b/blocks/task5/maps/level3/output_table/99.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | red | yellow | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level3/output_text/0.txt b/blocks/task5/maps/level3/output_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7da5be9ca1ba31680e4a9bf667a6e7869164900 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/0.txt @@ -0,0 +1,2 @@ +- Stack with purple block, red block, from bottom to top +- Stack with yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/1.txt b/blocks/task5/maps/level3/output_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..39d0961b6a36e97f41e186ddd0cb04e8a8807f55 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/1.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with yellow block +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/10.txt b/blocks/task5/maps/level3/output_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..27769ab3da303999d19de9df365a4d9b4f0afc11 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/10.txt @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with orange block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/11.txt b/blocks/task5/maps/level3/output_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..969f9541a417d96195f091cff85957d26af4048f --- /dev/null +++ b/blocks/task5/maps/level3/output_text/11.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with purple block +- Stack with blue block +- Stack with green block +- Stack with yellow block diff --git a/blocks/task5/maps/level3/output_text/12.txt b/blocks/task5/maps/level3/output_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..91a09f6047211d9423a18a4ebab2e2692857cd92 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/12.txt @@ -0,0 +1,2 @@ +- Stack with blue block, orange block, from bottom to top +- Stack with green block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/13.txt b/blocks/task5/maps/level3/output_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..d71cd524d5cfa737f4daa940ba8f26ee1398a210 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/13.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task5/maps/level3/output_text/14.txt b/blocks/task5/maps/level3/output_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ffe74891d5b107c8cd77c102d9255d4c78b275b --- /dev/null +++ b/blocks/task5/maps/level3/output_text/14.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task5/maps/level3/output_text/15.txt b/blocks/task5/maps/level3/output_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..d60cb8620226f0d0ea0c22f65a3357296e0bc298 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/15.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block +- Stack with yellow block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/16.txt b/blocks/task5/maps/level3/output_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..11343a762f25125e09a514b952c767b111c568a8 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/16.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block, red block, from bottom to top +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/17.txt b/blocks/task5/maps/level3/output_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..016187e3e716e1bcf126103c326d841121ed2c51 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/17.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top +- Stack with green block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/18.txt b/blocks/task5/maps/level3/output_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d7c80d92971036717b8d5e5f378b0f4b963bfb0 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/18.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, yellow block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/19.txt b/blocks/task5/maps/level3/output_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3345c0feab7c89eaffd604c48be9e838f4dca1b --- /dev/null +++ b/blocks/task5/maps/level3/output_text/19.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, green block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/2.txt b/blocks/task5/maps/level3/output_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24dc5aca6a6b230f731beac0925c6bb1bf3ac859 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/2.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, green block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/20.txt b/blocks/task5/maps/level3/output_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..f171ebf422502bea02ad249de7d60bc1ac257861 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/20.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block, blue block, from bottom to top +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/21.txt b/blocks/task5/maps/level3/output_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..96acdd303b922980d0a5d5ef941c93f8b9e071cd --- /dev/null +++ b/blocks/task5/maps/level3/output_text/21.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with orange block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/22.txt b/blocks/task5/maps/level3/output_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..81497805a820236e78df1b54565c0b95c2d04a49 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/22.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, green block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/23.txt b/blocks/task5/maps/level3/output_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa3961226a701a84bad3feb4d7d6b06ca45579e5 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/23.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with yellow block +- Stack with blue block +- Stack with red block +- Stack with orange block diff --git a/blocks/task5/maps/level3/output_text/24.txt b/blocks/task5/maps/level3/output_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..e038185666745ac026f2d542aead74546ae7bd3c --- /dev/null +++ b/blocks/task5/maps/level3/output_text/24.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with green block +- Stack with orange block +- Stack with purple block +- Stack with blue block diff --git a/blocks/task5/maps/level3/output_text/25.txt b/blocks/task5/maps/level3/output_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..489da15279b5a713cb3c9226b52152bf74650bf4 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/25.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block, yellow block, from bottom to top +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/26.txt b/blocks/task5/maps/level3/output_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..c396ea8eaf43fe858c687f81cdaf5128817aba66 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/26.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with green block +- Stack with blue block +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/27.txt b/blocks/task5/maps/level3/output_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..10637703ba5474c0b7288bf0cc5b649584ae798b --- /dev/null +++ b/blocks/task5/maps/level3/output_text/27.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with blue block +- Stack with red block +- Stack with yellow block +- Stack with orange block diff --git a/blocks/task5/maps/level3/output_text/28.txt b/blocks/task5/maps/level3/output_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..74f78263b4ed0c4081cdb2e28501e41a58376f39 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/28.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, yellow block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/29.txt b/blocks/task5/maps/level3/output_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..19bfad056c324a1980ba74e8110f2142f7c65615 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/29.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block +- Stack with purple block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/3.txt b/blocks/task5/maps/level3/output_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a2d7e55b8b110c21a54711f52a714376f198c70 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/3.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task5/maps/level3/output_text/30.txt b/blocks/task5/maps/level3/output_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba6da65f7961112f6a6eb4b369cf0f06792de60b --- /dev/null +++ b/blocks/task5/maps/level3/output_text/30.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block, orange block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/31.txt b/blocks/task5/maps/level3/output_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..30c8f237416045ba16b7b6f117f88a76696d13e3 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/31.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with green block +- Stack with red block +- Stack with blue block diff --git a/blocks/task5/maps/level3/output_text/32.txt b/blocks/task5/maps/level3/output_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9a40df4591a1f5f89ea96ab647e8a9d8c227b2a --- /dev/null +++ b/blocks/task5/maps/level3/output_text/32.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/33.txt b/blocks/task5/maps/level3/output_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a2d7e55b8b110c21a54711f52a714376f198c70 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/33.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block +- Stack with orange block +- Stack with blue block diff --git a/blocks/task5/maps/level3/output_text/34.txt b/blocks/task5/maps/level3/output_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..89231d2ad254ffd7eff1ad45061f48c825e26dbd --- /dev/null +++ b/blocks/task5/maps/level3/output_text/34.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/35.txt b/blocks/task5/maps/level3/output_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc4e6e1553eb672887de4a17c9e9ff7a5368f98f --- /dev/null +++ b/blocks/task5/maps/level3/output_text/35.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with blue block +- Stack with yellow block +- Stack with orange block +- Stack with green block diff --git a/blocks/task5/maps/level3/output_text/36.txt b/blocks/task5/maps/level3/output_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..01ce191bbc232cf9ddbbefcffddad0c431434caa --- /dev/null +++ b/blocks/task5/maps/level3/output_text/36.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with orange block +- Stack with green block diff --git a/blocks/task5/maps/level3/output_text/37.txt b/blocks/task5/maps/level3/output_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..c00df21a16a69b64940ad4059db810893594ca56 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/37.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, green block, from bottom to top +- Stack with blue block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/38.txt b/blocks/task5/maps/level3/output_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..a22d5b321ca5a0b1a62ee31781af22b7b4957182 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/38.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, orange block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/39.txt b/blocks/task5/maps/level3/output_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..d44e74d1d4a6ad7f821c604e2923325ac55cd0cc --- /dev/null +++ b/blocks/task5/maps/level3/output_text/39.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with green block +- Stack with orange block +- Stack with blue block +- Stack with yellow block diff --git a/blocks/task5/maps/level3/output_text/4.txt b/blocks/task5/maps/level3/output_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9a40df4591a1f5f89ea96ab647e8a9d8c227b2a --- /dev/null +++ b/blocks/task5/maps/level3/output_text/4.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with yellow block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/40.txt b/blocks/task5/maps/level3/output_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..7005e6437b7c2f623dfe4e698ecdc15b2f690053 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/40.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, red block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/41.txt b/blocks/task5/maps/level3/output_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..e40fd148cc356ee53c5187ded142bf60ebd4693c --- /dev/null +++ b/blocks/task5/maps/level3/output_text/41.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, red block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/42.txt b/blocks/task5/maps/level3/output_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..719eba59aa9b001395b5622a13ea49eadca8ef4a --- /dev/null +++ b/blocks/task5/maps/level3/output_text/42.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block, orange block, from bottom to top +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/43.txt b/blocks/task5/maps/level3/output_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d5ede6b6aa51d1006a1eccdc971dc8dceec1ac9 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/43.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/44.txt b/blocks/task5/maps/level3/output_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d44e94b4de0cc2bad9fc478e23a0d19fab69f74 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/44.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/45.txt b/blocks/task5/maps/level3/output_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef0754419abe48c8049e0e1b2cfdf80ed5bb4137 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/45.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with green block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/46.txt b/blocks/task5/maps/level3/output_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..96a21574033da0b9f0bf83d8bd77e60172dc553a --- /dev/null +++ b/blocks/task5/maps/level3/output_text/46.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with blue block +- Stack with green block +- Stack with yellow block +- Stack with red block diff --git a/blocks/task5/maps/level3/output_text/47.txt b/blocks/task5/maps/level3/output_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecca81654a8a940d5c363a6904efa9d172cea15e --- /dev/null +++ b/blocks/task5/maps/level3/output_text/47.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block, green block, from bottom to top +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/48.txt b/blocks/task5/maps/level3/output_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..a92a2c6cdcb441e3e758325f527105c72bd9a3c3 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/48.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with purple block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/49.txt b/blocks/task5/maps/level3/output_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..61551faf597d0c558c7b0892ae8cc7401c4efb0e --- /dev/null +++ b/blocks/task5/maps/level3/output_text/49.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, purple block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/5.txt b/blocks/task5/maps/level3/output_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..110bf4d0e4bd0d2f59d21ea07e72d5b654896558 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/5.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with green block diff --git a/blocks/task5/maps/level3/output_text/50.txt b/blocks/task5/maps/level3/output_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..50169394d86ef0f36cf4777db7e36c3bd409c802 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/50.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block, blue block, from bottom to top +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/51.txt b/blocks/task5/maps/level3/output_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fa0e64bf8930480cb4c1c902747872fef32453e --- /dev/null +++ b/blocks/task5/maps/level3/output_text/51.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with orange block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/52.txt b/blocks/task5/maps/level3/output_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a17768184c9ed10be26ba56ca982e09d2e0a30c --- /dev/null +++ b/blocks/task5/maps/level3/output_text/52.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with yellow block, green block, from bottom to top +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/53.txt b/blocks/task5/maps/level3/output_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..87c50bc5dbe052626a1bade612c4c6bcdd3ae9f5 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/53.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with red block +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/54.txt b/blocks/task5/maps/level3/output_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d8a397183be874122aab42e25605d7917978c5e --- /dev/null +++ b/blocks/task5/maps/level3/output_text/54.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with red block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/55.txt b/blocks/task5/maps/level3/output_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..757a35fedf10f4517ce8abd040087f981e6edb56 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/55.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block, yellow block, from bottom to top +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/56.txt b/blocks/task5/maps/level3/output_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..80a5c6ba171a58151b5cc237be6c33077007c646 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/56.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with yellow block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/57.txt b/blocks/task5/maps/level3/output_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..e696a181e766487dd5bd278422d3ed22fb25fff3 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/57.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block, red block, from bottom to top +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/58.txt b/blocks/task5/maps/level3/output_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..70e439d52e35a19b72251f6b1aa0bd83a3edc580 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/58.txt @@ -0,0 +1,2 @@ +- Stack with red block, blue block, from bottom to top +- Stack with purple block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/59.txt b/blocks/task5/maps/level3/output_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..6712ad9d8dc9250d0a6ab7e04a74353b0bf34df4 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/59.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with purple block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/6.txt b/blocks/task5/maps/level3/output_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b70e2c20fca72ea3edb45e42b58fcf61eb53763d --- /dev/null +++ b/blocks/task5/maps/level3/output_text/6.txt @@ -0,0 +1,2 @@ +- Stack with green block, red block, from bottom to top +- Stack with orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/60.txt b/blocks/task5/maps/level3/output_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..a443287c6c2d102948cfb15c31547d1ed6b5f954 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/60.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with orange block +- Stack with purple block +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/61.txt b/blocks/task5/maps/level3/output_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..8803c92937894923ee05d3852f4586edd1ad0e0a --- /dev/null +++ b/blocks/task5/maps/level3/output_text/61.txt @@ -0,0 +1,2 @@ +- Stack with orange block, blue block, from bottom to top +- Stack with yellow block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/62.txt b/blocks/task5/maps/level3/output_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..da904dc8cc2a58c677f9fb0ed188d7143f8406ae --- /dev/null +++ b/blocks/task5/maps/level3/output_text/62.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/63.txt b/blocks/task5/maps/level3/output_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3345c0feab7c89eaffd604c48be9e838f4dca1b --- /dev/null +++ b/blocks/task5/maps/level3/output_text/63.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, green block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/64.txt b/blocks/task5/maps/level3/output_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..72583276039d1d19d093cb8592a787f648f45e6d --- /dev/null +++ b/blocks/task5/maps/level3/output_text/64.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block, purple block, from bottom to top +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/65.txt b/blocks/task5/maps/level3/output_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a67f6a69b7fbe33aa8054af771f18bccb4144de --- /dev/null +++ b/blocks/task5/maps/level3/output_text/65.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with red block +- Stack with blue block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/66.txt b/blocks/task5/maps/level3/output_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7b336a8406bf4cf26bb3790608f1ff915404684 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/66.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with yellow block, red block, from bottom to top +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/67.txt b/blocks/task5/maps/level3/output_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f28467307322b720152e1206f20827c254a7819 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/67.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/68.txt b/blocks/task5/maps/level3/output_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..74ff432f6014f01f088b40f9f1a823533bc1d8a6 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/68.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/69.txt b/blocks/task5/maps/level3/output_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a5178d813e3f599caa4766916549aa6f6d21642 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/69.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/7.txt b/blocks/task5/maps/level3/output_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f49df0538d0715c30eea355e699392f7a65b226 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/7.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block +- Stack with blue block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/70.txt b/blocks/task5/maps/level3/output_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a4ee3b1c092644f359b256296e3e7b0cf8da728 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/70.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with purple block diff --git a/blocks/task5/maps/level3/output_text/71.txt b/blocks/task5/maps/level3/output_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..983110ec30241d9f11c63da79165179628526153 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/71.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with red block +- Stack with yellow block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/72.txt b/blocks/task5/maps/level3/output_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac61340166ece545aedb1eea8fbafcb4df5b23e1 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/72.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, orange block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/73.txt b/blocks/task5/maps/level3/output_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b8adf7c210c9f7cf44ad1424c14556518b63932 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/73.txt @@ -0,0 +1,4 @@ +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/74.txt b/blocks/task5/maps/level3/output_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..13cdf9ed28287811c57d2c5b9b20ce6324f2e067 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/74.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block +- Stack with orange block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/75.txt b/blocks/task5/maps/level3/output_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a15b6fb47fde0ec3e67210ddc7cc371e0ef84e2 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/75.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/76.txt b/blocks/task5/maps/level3/output_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfb960fd6d9bb4c34298b4dd1fd8c149fbaf2710 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/76.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with blue block +- Stack with green block +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/77.txt b/blocks/task5/maps/level3/output_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..7eb14d3c2523b302c0b54e8572b9a425f07a3422 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/77.txt @@ -0,0 +1,5 @@ +- Stack with green block +- Stack with orange block +- Stack with red block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task5/maps/level3/output_text/78.txt b/blocks/task5/maps/level3/output_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..086880468d2f66f3a645521fc05e27cee214d904 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/78.txt @@ -0,0 +1,2 @@ +- Stack with green block, orange block, from bottom to top +- Stack with purple block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/79.txt b/blocks/task5/maps/level3/output_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed97cedc3d9dc8f244d2187d0c240070735d3450 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/79.txt @@ -0,0 +1,5 @@ +- Stack with purple block +- Stack with yellow block +- Stack with red block +- Stack with blue block +- Stack with green block diff --git a/blocks/task5/maps/level3/output_text/8.txt b/blocks/task5/maps/level3/output_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..c62b491f3faec024e913ad218301ee503e3de446 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/8.txt @@ -0,0 +1,2 @@ +- Stack with orange block, blue block, from bottom to top +- Stack with green block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/80.txt b/blocks/task5/maps/level3/output_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..50307943575b6ce6f1d3f41d18f5be7c8bab8250 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/80.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block +- Stack with orange block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/81.txt b/blocks/task5/maps/level3/output_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..bca3560020862486cb2ed306de09f9d7e07ae4ea --- /dev/null +++ b/blocks/task5/maps/level3/output_text/81.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with orange block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/82.txt b/blocks/task5/maps/level3/output_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3206375c9f77aaeb1c9551d6e926067117387b6 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/82.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, green block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/83.txt b/blocks/task5/maps/level3/output_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7bf0d17784568b3702a8918a11ad5d20552b1cb --- /dev/null +++ b/blocks/task5/maps/level3/output_text/83.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with blue block +- Stack with red block +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/84.txt b/blocks/task5/maps/level3/output_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3f4c475b4e941ed76087a6a1e4c85d75b062962 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/84.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/85.txt b/blocks/task5/maps/level3/output_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e02a0398b170ca65642e0a97662907d9003e31c --- /dev/null +++ b/blocks/task5/maps/level3/output_text/85.txt @@ -0,0 +1,5 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block +- Stack with yellow block +- Stack with red block diff --git a/blocks/task5/maps/level3/output_text/86.txt b/blocks/task5/maps/level3/output_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2edd132837c71b8de9395c21077666a1a35e401 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/86.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with green block +- Stack with purple block +- Stack with blue block +- Stack with red block diff --git a/blocks/task5/maps/level3/output_text/87.txt b/blocks/task5/maps/level3/output_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6041231dac3b5411eb8db26059ba0d20517097d --- /dev/null +++ b/blocks/task5/maps/level3/output_text/87.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with yellow block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/88.txt b/blocks/task5/maps/level3/output_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..372c7fa318fdfc67866052b93117081efadce5cd --- /dev/null +++ b/blocks/task5/maps/level3/output_text/88.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with yellow block +- Stack with green block +- Stack with red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/89.txt b/blocks/task5/maps/level3/output_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2091c26ba4807997766f5d641a63986a452c6ce --- /dev/null +++ b/blocks/task5/maps/level3/output_text/89.txt @@ -0,0 +1,5 @@ +- Stack with red block +- Stack with blue block +- Stack with orange block +- Stack with purple block +- Stack with yellow block diff --git a/blocks/task5/maps/level3/output_text/9.txt b/blocks/task5/maps/level3/output_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fdc68354bafc8a9539ee5566dc18c9c1c21cff0 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/9.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with purple block +- Stack with green block +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/90.txt b/blocks/task5/maps/level3/output_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecfef6de764265bbadfdef6162f32db62f8062be --- /dev/null +++ b/blocks/task5/maps/level3/output_text/90.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/91.txt b/blocks/task5/maps/level3/output_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8a4e20683a14f466100e7202f7e30b37a900050 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/91.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, orange block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/92.txt b/blocks/task5/maps/level3/output_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..71d09c06ce8e7e97a8e740cb827212ddf0c46767 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/92.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block +- Stack with blue block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/93.txt b/blocks/task5/maps/level3/output_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..870510d7192949e102fb2ce027fe2ac1cd0fc7fa --- /dev/null +++ b/blocks/task5/maps/level3/output_text/93.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with green block +- Stack with yellow block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/94.txt b/blocks/task5/maps/level3/output_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d38acf2cc9ea1d01a11397fe2188e285e825a3b --- /dev/null +++ b/blocks/task5/maps/level3/output_text/94.txt @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with green block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/95.txt b/blocks/task5/maps/level3/output_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..a86a383bf0f86daf285e6f3bfd0428905a667a7d --- /dev/null +++ b/blocks/task5/maps/level3/output_text/95.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block, green block, from bottom to top +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/96.txt b/blocks/task5/maps/level3/output_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9ecf77b24606d9f7edad4ee0419478f9ae4a204 --- /dev/null +++ b/blocks/task5/maps/level3/output_text/96.txt @@ -0,0 +1,5 @@ +- Stack with orange block +- Stack with yellow block +- Stack with green block +- Stack with blue block +- Stack with red block diff --git a/blocks/task5/maps/level3/output_text/97.txt b/blocks/task5/maps/level3/output_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..01ce191bbc232cf9ddbbefcffddad0c431434caa --- /dev/null +++ b/blocks/task5/maps/level3/output_text/97.txt @@ -0,0 +1,5 @@ +- Stack with yellow block +- Stack with purple block +- Stack with blue block +- Stack with orange block +- Stack with green block diff --git a/blocks/task5/maps/level3/output_text/98.txt b/blocks/task5/maps/level3/output_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e051df3a8de1482bebdd6d5df4112282c1f580e --- /dev/null +++ b/blocks/task5/maps/level3/output_text/98.txt @@ -0,0 +1,2 @@ +- Stack with blue block, orange block, from bottom to top +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level3/output_text/99.txt b/blocks/task5/maps/level3/output_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..b70e2c20fca72ea3edb45e42b58fcf61eb53763d --- /dev/null +++ b/blocks/task5/maps/level3/output_text/99.txt @@ -0,0 +1,2 @@ +- Stack with green block, red block, from bottom to top +- Stack with orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/info.txt b/blocks/task5/maps/level5/info.txt new file mode 100644 index 0000000000000000000000000000000000000000..6836beafe8b1f1023e74a2872d50f9e325b80539 --- /dev/null +++ b/blocks/task5/maps/level5/info.txt @@ -0,0 +1,100 @@ +G00000-YBRP00-000000-000000-000000-000000-000000 2Towers/14 GP0000-RYB000-000000-000000-000000-000000-000000 2Towers/23 5 move(p,g,0) move(r,table,1) move(b,table,2) move(y,r,3) move(b,y,4) move(p,g,0) move(r,table,1) move(b,p,2) move(y,r,3) move(b,y,4) +O00000-RP0000-BY0000-000000-000000-000000-000000 3Towers/122 RYPBO0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(p,table,0) move(y,r,1) move(p,y,2) move(b,p,3) move(o,b,4) move(p,o,0) move(y,r,1) move(p,y,2) move(b,p,3) move(o,b,4) +G00000-YORB00-000000-000000-000000-000000-000000 2Towers/14 B00000-OY0000-RG0000-000000-000000-000000-000000 3Towers/122 5 move(b,table,0) move(r,table,1) move(o,table,2) move(g,r,3) move(y,o,4) move(b,table,0) move(r,table,1) move(g,r,2) move(o,table,3) move(y,o,4) move(b,table,0) move(r,table,1) move(o,table,2) move(y,o,3) move(g,r,4) +GB0000-RPO000-000000-000000-000000-000000-000000 2Towers/23 G00000-ROPB00-000000-000000-000000-000000-000000 2Towers/14 5 move(o,table,0) move(p,table,1) move(o,r,2) move(p,o,3) move(b,p,4) move(o,b,0) move(p,table,1) move(o,r,2) move(p,o,3) move(b,p,4) move(o,table,0) move(p,b,1) move(o,r,2) move(p,o,3) move(b,p,4) +O00000-B00000-YGP000-000000-000000-000000-000000 3Towers/113 POGBY0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(p,table,0) move(o,p,1) move(g,o,2) move(b,g,3) move(y,b,4) +PO0000-GBR000-000000-000000-000000-000000-000000 2Towers/23 OR0000-PGB000-000000-000000-000000-000000-000000 2Towers/23 5 move(o,table,0) move(r,o,1) move(b,table,2) move(g,p,3) move(b,g,4) move(o,table,0) move(r,o,1) move(b,r,2) move(g,p,3) move(b,g,4) +R00000-YBPG00-000000-000000-000000-000000-000000 2Towers/14 R00000-GBYP00-000000-000000-000000-000000-000000 2Towers/14 5 move(g,table,0) move(p,table,1) move(b,g,2) move(y,b,3) move(p,y,4) move(g,table,0) move(p,r,1) move(b,g,2) move(y,b,3) move(p,y,4) +R00000-B00000-POG000-000000-000000-000000-000000 3Towers/113 G00000-BPOR00-000000-000000-000000-000000-000000 2Towers/14 5 move(g,table,0) move(o,table,1) move(p,b,2) move(o,p,3) move(r,o,4) move(g,table,0) move(o,r,1) move(p,b,2) move(o,p,3) move(r,o,4) move(g,table,0) move(o,g,1) move(p,b,2) move(o,p,3) move(r,o,4) +O00000-B00000-YGP000-000000-000000-000000-000000 3Towers/113 PBOGY0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(p,table,0) move(b,p,1) move(o,b,2) move(g,o,3) move(y,g,4) +R00000-GYOP00-000000-000000-000000-000000-000000 2Towers/14 Y00000-O00000-GRP000-000000-000000-000000-000000 3Towers/113 5 move(p,table,0) move(o,table,1) move(y,table,2) move(r,g,3) move(p,r,4) +YOBGR0-000000-000000-000000-000000-000000-000000 1Towers/5 O00000-YB0000-RG0000-000000-000000-000000-000000 3Towers/122 5 move(r,table,0) move(g,r,1) move(b,table,2) move(o,table,3) move(b,y,4) move(r,table,0) move(g,r,1) move(b,g,2) move(o,table,3) move(b,y,4) +YB0000-PGR000-000000-000000-000000-000000-000000 2Towers/23 BG0000-PYR000-000000-000000-000000-000000-000000 2Towers/23 5 move(b,table,0) move(r,table,1) move(g,b,2) move(y,p,3) move(r,y,4) move(r,table,0) move(b,table,1) move(g,b,2) move(y,p,3) move(r,y,4) +YG0000-ORP000-000000-000000-000000-000000-000000 2Towers/23 PR0000-GYO000-000000-000000-000000-000000-000000 2Towers/23 5 move(g,table,0) move(p,table,1) move(r,p,2) move(y,g,3) move(o,y,4) move(p,table,0) move(g,table,1) move(r,p,2) move(y,g,3) move(o,y,4) move(p,table,0) move(r,p,1) move(g,table,2) move(y,g,3) move(o,y,4) move(g,table,0) move(y,g,1) move(p,table,2) move(r,p,3) move(o,y,4) move(g,table,0) move(p,table,1) move(y,g,2) move(r,p,3) move(o,y,4) move(p,table,0) move(g,table,1) move(y,g,2) move(r,p,3) move(o,y,4) +RYBOP0-000000-000000-000000-000000-000000-000000 1Towers/5 OY0000-PBR000-000000-000000-000000-000000-000000 2Towers/23 5 move(p,table,0) move(o,table,1) move(b,p,2) move(y,o,3) move(r,b,4) +P00000-BROY00-000000-000000-000000-000000-000000 2Towers/14 Y00000-BP0000-RO0000-000000-000000-000000-000000 3Towers/122 5 move(y,table,0) move(o,table,1) move(r,table,2) move(p,b,3) move(o,r,4) move(y,table,0) move(o,y,1) move(r,table,2) move(p,b,3) move(o,r,4) move(y,table,0) move(o,table,1) move(r,table,2) move(o,r,3) move(p,b,4) move(y,table,0) move(o,p,1) move(r,table,2) move(o,r,3) move(p,b,4) move(y,table,0) move(o,y,1) move(r,table,2) move(o,r,3) move(p,b,4) +RBYOP0-000000-000000-000000-000000-000000-000000 1Towers/5 R00000-PB0000-YO0000-000000-000000-000000-000000 3Towers/122 5 move(p,table,0) move(o,table,1) move(y,table,2) move(o,y,3) move(b,p,4) move(p,table,0) move(o,p,1) move(y,table,2) move(o,y,3) move(b,p,4) move(p,table,0) move(o,table,1) move(y,table,2) move(b,p,3) move(o,y,4) +GRPOB0-000000-000000-000000-000000-000000-000000 1Towers/5 P00000-BR0000-GO0000-000000-000000-000000-000000 3Towers/122 5 move(b,table,0) move(o,table,1) move(p,table,2) move(r,b,3) move(o,g,4) +Y00000-BR0000-OP0000-000000-000000-000000-000000 3Towers/122 R00000-YOBP00-000000-000000-000000-000000-000000 2Towers/14 5 move(p,table,0) move(r,table,1) move(o,y,2) move(b,o,3) move(p,b,4) move(r,table,0) move(p,table,1) move(o,y,2) move(b,o,3) move(p,b,4) move(r,table,0) move(p,r,1) move(o,y,2) move(b,o,3) move(p,b,4) move(p,table,0) move(o,y,1) move(r,table,2) move(b,o,3) move(p,b,4) +R00000-Y00000-PGO000-000000-000000-000000-000000 3Towers/113 P00000-GYRO00-000000-000000-000000-000000-000000 2Towers/14 5 move(o,table,0) move(g,table,1) move(y,g,2) move(r,y,3) move(o,r,4) +G00000-O00000-RPB000-000000-000000-000000-000000 3Towers/113 R00000-POGB00-000000-000000-000000-000000-000000 2Towers/14 5 move(b,table,0) move(p,table,1) move(o,p,2) move(g,o,3) move(b,g,4) +RBYP00-000000-000000-000000-000000-000000-000000 1Towers/4 RY0000-BP0000-000000-000000-000000-000000-000000 2Towers/22 5 move(p,table,0) move(y,table,1) move(b,table,2) move(y,r,3) move(p,b,4) move(p,table,0) move(y,p,1) move(b,table,2) move(y,r,3) move(p,b,4) move(p,table,0) move(y,table,1) move(b,table,2) move(p,b,3) move(y,r,4) +PYORB0-000000-000000-000000-000000-000000-000000 1Towers/5 Y00000-BO0000-RP0000-000000-000000-000000-000000 3Towers/122 5 move(b,table,0) move(r,table,1) move(o,b,2) move(y,table,3) move(p,r,4) +Y00000-R00000-O00000-PG0000-000000-000000-000000 4Towers/1112 RPYOG0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(g,table,0) move(p,r,1) move(y,p,2) move(o,y,3) move(g,o,4) +R00000-Y00000-B00000-PG0000-000000-000000-000000 4Towers/1112 GRBYP0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(g,table,0) move(r,g,1) move(b,r,2) move(y,b,3) move(p,y,4) +Y00000-B00000-G00000-PR0000-000000-000000-000000 4Towers/1112 GPRBY0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(r,table,0) move(p,g,1) move(r,p,2) move(b,r,3) move(y,b,4) move(r,b,0) move(p,g,1) move(r,p,2) move(b,r,3) move(y,b,4) move(r,y,0) move(p,g,1) move(r,p,2) move(b,r,3) move(y,b,4) +Y00000-PORB00-000000-000000-000000-000000-000000 2Towers/14 R00000-Y00000-PBO000-000000-000000-000000-000000 3Towers/113 5 move(b,table,0) move(r,table,1) move(o,table,2) move(b,p,3) move(o,b,4) move(b,table,0) move(r,table,1) move(o,y,2) move(b,p,3) move(o,b,4) move(b,table,0) move(r,table,1) move(o,r,2) move(b,p,3) move(o,b,4) move(b,y,0) move(r,table,1) move(o,r,2) move(b,p,3) move(o,b,4) move(b,y,0) move(r,table,1) move(o,table,2) move(b,p,3) move(o,b,4) +PBGOR0-000000-000000-000000-000000-000000-000000 1Towers/5 G00000-P00000-ORB000-000000-000000-000000-000000 3Towers/113 5 move(r,table,0) move(o,table,1) move(g,table,2) move(r,o,3) move(b,r,4) move(r,table,0) move(o,table,1) move(r,o,2) move(g,table,3) move(b,r,4) +P00000-O00000-YBG000-000000-000000-000000-000000 3Towers/113 OPGYB0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(p,o,0) move(g,p,1) move(b,table,2) move(y,g,3) move(b,y,4) +YG0000-BPR000-000000-000000-000000-000000-000000 2Towers/23 YP0000-GBR000-000000-000000-000000-000000-000000 2Towers/23 5 move(g,table,0) move(r,table,1) move(p,y,2) move(b,g,3) move(r,b,4) move(r,table,0) move(g,table,1) move(p,y,2) move(b,g,3) move(r,b,4) +PB0000-ROG000-000000-000000-000000-000000-000000 2Towers/23 B00000-R00000-OGP000-000000-000000-000000-000000 3Towers/113 5 move(g,table,0) move(o,table,1) move(b,table,2) move(g,o,3) move(p,g,4) move(g,table,0) move(o,table,1) move(g,o,2) move(b,table,3) move(p,g,4) move(g,b,0) move(o,table,1) move(g,o,2) move(b,table,3) move(p,g,4) move(b,table,0) move(g,table,1) move(o,table,2) move(g,o,3) move(p,g,4) move(b,table,0) move(g,p,1) move(o,table,2) move(g,o,3) move(p,g,4) move(b,table,0) move(g,b,1) move(o,table,2) move(g,o,3) move(p,g,4) move(g,table,0) move(b,table,1) move(o,table,2) move(g,o,3) move(p,g,4) +Y00000-B00000-ROG000-000000-000000-000000-000000 3Towers/113 Y00000-OGRB00-000000-000000-000000-000000-000000 2Towers/14 5 move(g,table,0) move(o,table,1) move(g,o,2) move(r,g,3) move(b,r,4) move(g,y,0) move(o,table,1) move(g,o,2) move(r,g,3) move(b,r,4) move(g,b,0) move(o,table,1) move(g,o,2) move(r,g,3) move(b,r,4) +R00000-PB0000-YO0000-000000-000000-000000-000000 3Towers/122 B00000-RYPO00-000000-000000-000000-000000-000000 2Towers/14 5 move(b,table,0) move(o,table,1) move(y,r,2) move(p,y,3) move(o,p,4) move(o,table,0) move(b,table,1) move(y,r,2) move(p,y,3) move(o,p,4) move(o,table,0) move(y,r,1) move(b,table,2) move(p,y,3) move(o,p,4) move(b,table,0) move(o,b,1) move(y,r,2) move(p,y,3) move(o,p,4) +B00000-ORGY00-000000-000000-000000-000000-000000 2Towers/14 O00000-G00000-RBY000-000000-000000-000000-000000 3Towers/113 5 move(y,table,0) move(g,table,1) move(r,table,2) move(b,r,3) move(y,b,4) +BY0000-POG000-000000-000000-000000-000000-000000 2Towers/23 Y00000-GOBP00-000000-000000-000000-000000-000000 2Towers/14 5 move(g,table,0) move(o,g,1) move(y,table,2) move(b,o,3) move(p,b,4) move(y,table,0) move(g,table,1) move(o,g,2) move(b,o,3) move(p,b,4) move(g,table,0) move(y,table,1) move(o,g,2) move(b,o,3) move(p,b,4) +R00000-B00000-GOY000-000000-000000-000000-000000 3Towers/113 OY0000-RGB000-000000-000000-000000-000000-000000 2Towers/23 5 move(y,table,0) move(o,table,1) move(g,r,2) move(y,o,3) move(b,g,4) move(y,table,0) move(o,table,1) move(y,o,2) move(g,r,3) move(b,g,4) move(y,b,0) move(o,table,1) move(y,o,2) move(g,r,3) move(b,g,4) move(y,r,0) move(o,table,1) move(y,o,2) move(g,r,3) move(b,g,4) move(y,b,0) move(o,table,1) move(g,r,2) move(y,o,3) move(b,g,4) move(y,table,0) move(o,table,1) move(g,r,2) move(b,g,3) move(y,o,4) +P00000-G00000-B00000-OR0000-000000-000000-000000 4Towers/1112 OPBRG0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(r,table,0) move(p,o,1) move(b,p,2) move(r,b,3) move(g,r,4) move(r,g,0) move(p,o,1) move(b,p,2) move(r,b,3) move(g,r,4) +P00000-R00000-B00000-YG0000-000000-000000-000000 4Towers/1112 PBYRG0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(g,table,0) move(b,p,1) move(y,b,2) move(r,y,3) move(g,r,4) move(b,p,0) move(g,table,1) move(y,b,2) move(r,y,3) move(g,r,4) +GOBYR0-000000-000000-000000-000000-000000-000000 1Towers/5 R00000-Y00000-G00000-OB0000-000000-000000-000000 4Towers/1112 5 move(r,table,0) move(y,table,1) move(b,table,2) move(o,table,3) move(b,o,4) move(r,table,0) move(y,table,1) move(b,y,2) move(o,table,3) move(b,o,4) move(r,table,0) move(y,table,1) move(b,r,2) move(o,table,3) move(b,o,4) +OYPRG0-000000-000000-000000-000000-000000-000000 1Towers/5 P00000-G00000-RYO000-000000-000000-000000-000000 3Towers/113 5 move(g,table,0) move(r,table,1) move(p,table,2) move(y,r,3) move(o,y,4) +B00000-Y00000-RPG000-000000-000000-000000-000000 3Towers/113 YGRBP0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(g,y,0) move(p,table,1) move(r,g,2) move(b,r,3) move(p,b,4) +Y00000-P00000-GOB000-000000-000000-000000-000000 3Towers/113 YOBGP0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(b,table,0) move(o,y,1) move(b,o,2) move(g,b,3) move(p,g,4) move(b,p,0) move(o,y,1) move(b,o,2) move(g,b,3) move(p,g,4) +BR0000-GOP000-000000-000000-000000-000000-000000 2Towers/23 OG0000-BPR000-000000-000000-000000-000000-000000 2Towers/23 5 move(r,table,0) move(p,b,1) move(o,table,2) move(r,p,3) move(g,o,4) move(r,table,0) move(p,b,1) move(r,p,2) move(o,table,3) move(g,o,4) move(r,table,0) move(p,b,1) move(o,table,2) move(g,o,3) move(r,p,4) +YPBGO0-000000-000000-000000-000000-000000-000000 1Towers/5 O00000-Y00000-B00000-PG0000-000000-000000-000000 4Towers/1112 5 move(o,table,0) move(g,table,1) move(b,table,2) move(p,table,3) move(g,p,4) move(o,table,0) move(g,o,1) move(b,table,2) move(p,table,3) move(g,p,4) +O00000-YGPR00-000000-000000-000000-000000-000000 2Towers/14 R00000-Y00000-GOP000-000000-000000-000000-000000 3Towers/113 5 move(r,table,0) move(p,table,1) move(g,table,2) move(o,g,3) move(p,o,4) move(r,table,0) move(p,r,1) move(g,table,2) move(o,g,3) move(p,o,4) +PG0000-ORY000-000000-000000-000000-000000-000000 2Towers/23 G00000-O00000-RYP000-000000-000000-000000-000000 3Towers/113 5 move(y,table,0) move(r,table,1) move(g,table,2) move(y,r,3) move(p,y,4) move(y,g,0) move(r,table,1) move(y,r,2) move(g,table,3) move(p,y,4) move(y,table,0) move(r,table,1) move(y,r,2) move(g,table,3) move(p,y,4) move(y,table,0) move(g,table,1) move(r,table,2) move(y,r,3) move(p,y,4) move(g,table,0) move(y,table,1) move(r,table,2) move(y,r,3) move(p,y,4) move(g,table,0) move(y,p,1) move(r,table,2) move(y,r,3) move(p,y,4) move(g,table,0) move(y,g,1) move(r,table,2) move(y,r,3) move(p,y,4) +O00000-Y00000-BRP000-000000-000000-000000-000000 3Towers/113 Y00000-RPBO00-000000-000000-000000-000000-000000 2Towers/14 5 move(p,table,0) move(r,table,1) move(p,r,2) move(b,p,3) move(o,b,4) move(p,o,0) move(r,table,1) move(p,r,2) move(b,p,3) move(o,b,4) move(p,y,0) move(r,table,1) move(p,r,2) move(b,p,3) move(o,b,4) +G00000-BRYP00-000000-000000-000000-000000-000000 2Towers/14 Y00000-R00000-BGP000-000000-000000-000000-000000 3Towers/113 5 move(p,table,0) move(y,table,1) move(r,table,2) move(g,b,3) move(p,g,4) +G00000-RP0000-YB0000-000000-000000-000000-000000 3Towers/122 YPGBR0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(b,table,0) move(p,y,1) move(g,p,2) move(b,g,3) move(r,b,4) +O00000-GYBP00-000000-000000-000000-000000-000000 2Towers/14 O00000-YG0000-BP0000-000000-000000-000000-000000 3Towers/122 5 move(p,table,0) move(b,table,1) move(y,table,2) move(p,b,3) move(g,y,4) move(p,o,0) move(b,table,1) move(y,table,2) move(p,b,3) move(g,y,4) move(p,table,0) move(b,table,1) move(p,b,2) move(y,table,3) move(g,y,4) move(p,o,0) move(b,table,1) move(p,b,2) move(y,table,3) move(g,y,4) move(p,table,0) move(b,table,1) move(y,table,2) move(g,y,3) move(p,b,4) move(p,o,0) move(b,table,1) move(y,table,2) move(g,y,3) move(p,b,4) +G00000-O00000-YRB000-000000-000000-000000-000000 3Towers/113 BGRYO0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(b,table,0) move(g,b,1) move(r,g,2) move(y,r,3) move(o,y,4) +G00000-RY0000-BO0000-000000-000000-000000-000000 3Towers/122 Y00000-GBRO00-000000-000000-000000-000000-000000 2Towers/14 5 move(y,table,0) move(o,y,1) move(b,g,2) move(r,b,3) move(o,r,4) move(y,table,0) move(o,table,1) move(b,g,2) move(r,b,3) move(o,r,4) move(o,table,0) move(y,table,1) move(b,g,2) move(r,b,3) move(o,r,4) move(o,table,0) move(b,g,1) move(y,table,2) move(r,b,3) move(o,r,4) +YPOBG0-000000-000000-000000-000000-000000-000000 1Towers/5 Y00000-PG0000-BO0000-000000-000000-000000-000000 3Towers/122 5 move(g,table,0) move(b,table,1) move(o,b,2) move(p,table,3) move(g,p,4) +R00000-OPGY00-000000-000000-000000-000000-000000 2Towers/14 RY0000-POG000-000000-000000-000000-000000-000000 2Towers/23 5 move(y,r,0) move(g,table,1) move(p,table,2) move(o,p,3) move(g,o,4) move(y,r,0) move(g,y,1) move(p,table,2) move(o,p,3) move(g,o,4) +BRYOG0-000000-000000-000000-000000-000000-000000 1Towers/5 Y00000-O00000-R00000-BG0000-000000-000000-000000 4Towers/1112 5 move(g,table,0) move(o,table,1) move(y,table,2) move(r,table,3) move(g,b,4) +B00000-PG0000-RY0000-000000-000000-000000-000000 3Towers/122 GB0000-RPY000-000000-000000-000000-000000-000000 2Towers/23 5 move(g,table,0) move(y,table,1) move(p,r,2) move(b,g,3) move(y,p,4) move(y,table,0) move(g,table,1) move(p,r,2) move(b,g,3) move(y,p,4) move(g,table,0) move(b,g,1) move(y,table,2) move(p,r,3) move(y,p,4) move(y,table,0) move(g,table,1) move(b,g,2) move(p,r,3) move(y,p,4) move(g,table,0) move(y,table,1) move(b,g,2) move(p,r,3) move(y,p,4) move(g,table,0) move(b,g,1) move(y,b,2) move(p,r,3) move(y,p,4) move(y,table,0) move(g,table,1) move(p,r,2) move(y,p,3) move(b,g,4) move(g,table,0) move(y,table,1) move(p,r,2) move(y,p,3) move(b,g,4) move(y,b,0) move(g,table,1) move(p,r,2) move(y,p,3) move(b,g,4) move(g,table,0) move(y,b,1) move(p,r,2) move(y,p,3) move(b,g,4) move(g,table,0) move(y,g,1) move(p,r,2) move(y,p,3) move(b,g,4) +GR0000-OYB000-000000-000000-000000-000000-000000 2Towers/23 BYORG0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(b,table,0) move(y,b,1) move(o,y,2) move(r,o,3) move(g,r,4) +P00000-B00000-ORG000-000000-000000-000000-000000 3Towers/113 BGOPR0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(g,b,0) move(r,table,1) move(o,g,2) move(p,o,3) move(r,p,4) +OGRYP0-000000-000000-000000-000000-000000-000000 1Towers/5 Y00000-OGPR00-000000-000000-000000-000000-000000 2Towers/14 5 move(p,table,0) move(y,table,1) move(r,table,2) move(p,g,3) move(r,p,4) move(p,table,0) move(y,table,1) move(r,y,2) move(p,g,3) move(r,p,4) +Y00000-P00000-R00000-BO0000-000000-000000-000000 4Towers/1112 OPYBR0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(o,table,0) move(p,o,1) move(y,p,2) move(b,y,3) move(r,b,4) +GBROP0-000000-000000-000000-000000-000000-000000 1Towers/5 P00000-O00000-G00000-BR0000-000000-000000-000000 4Towers/1112 5 move(p,table,0) move(o,table,1) move(r,table,2) move(b,table,3) move(r,b,4) move(p,table,0) move(o,table,1) move(r,p,2) move(b,table,3) move(r,b,4) move(p,table,0) move(o,table,1) move(r,o,2) move(b,table,3) move(r,b,4) +YB0000-OPG000-000000-000000-000000-000000-000000 2Towers/23 GBPOY0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(g,table,0) move(b,g,1) move(p,b,2) move(o,p,3) move(y,o,4) +RG0000-OBP000-000000-000000-000000-000000-000000 2Towers/23 B00000-PR0000-GO0000-000000-000000-000000-000000 3Towers/122 5 move(p,table,0) move(b,table,1) move(g,table,2) move(r,p,3) move(o,g,4) move(g,table,0) move(p,table,1) move(b,table,2) move(r,p,3) move(o,g,4) move(p,table,0) move(g,table,1) move(b,table,2) move(r,p,3) move(o,g,4) move(g,table,0) move(p,table,1) move(r,p,2) move(b,table,3) move(o,g,4) move(p,table,0) move(g,table,1) move(r,p,2) move(b,table,3) move(o,g,4) move(p,table,0) move(b,table,1) move(g,table,2) move(o,g,3) move(r,p,4) move(g,table,0) move(p,table,1) move(b,table,2) move(o,g,3) move(r,p,4) move(p,table,0) move(g,table,1) move(b,table,2) move(o,g,3) move(r,p,4) +B00000-RGYP00-000000-000000-000000-000000-000000 2Towers/14 R00000-YB0000-GP0000-000000-000000-000000-000000 3Towers/122 5 move(p,table,0) move(y,table,1) move(g,table,2) move(p,g,3) move(b,y,4) move(p,b,0) move(y,table,1) move(g,table,2) move(p,g,3) move(b,y,4) move(p,table,0) move(y,table,1) move(g,table,2) move(b,y,3) move(p,g,4) move(p,table,0) move(y,table,1) move(b,y,2) move(g,table,3) move(p,g,4) +YR0000-GOB000-000000-000000-000000-000000-000000 2Towers/23 R00000-YOBG00-000000-000000-000000-000000-000000 2Towers/14 5 move(r,table,0) move(b,r,1) move(o,y,2) move(b,o,3) move(g,b,4) move(r,table,0) move(b,table,1) move(o,y,2) move(b,o,3) move(g,b,4) move(b,table,0) move(r,table,1) move(o,y,2) move(b,o,3) move(g,b,4) +Y00000-RP0000-GB0000-000000-000000-000000-000000 3Towers/122 GPYBR0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(b,table,0) move(p,g,1) move(y,p,2) move(b,y,3) move(r,b,4) +GROYP0-000000-000000-000000-000000-000000-000000 1Towers/5 G00000-R00000-POY000-000000-000000-000000-000000 3Towers/113 5 move(p,table,0) move(y,table,1) move(o,p,2) move(r,table,3) move(y,o,4) move(p,table,0) move(y,table,1) move(o,p,2) move(y,o,3) move(r,table,4) +Y00000-GO0000-PB0000-000000-000000-000000-000000 3Towers/122 OBPGY0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(o,table,0) move(b,o,1) move(p,b,2) move(g,p,3) move(y,g,4) +YBGRO0-000000-000000-000000-000000-000000-000000 1Towers/5 B00000-G00000-Y00000-RO0000-000000-000000-000000 4Towers/1112 5 move(o,table,0) move(r,table,1) move(g,table,2) move(b,table,3) move(o,r,4) move(o,table,0) move(r,table,1) move(g,table,2) move(o,r,3) move(b,table,4) move(o,table,0) move(r,table,1) move(o,r,2) move(g,table,3) move(b,table,4) +BR0000-GYP000-000000-000000-000000-000000-000000 2Towers/23 P00000-YB0000-RG0000-000000-000000-000000-000000 3Towers/122 5 move(p,table,0) move(y,table,1) move(r,table,2) move(g,r,3) move(b,y,4) move(p,table,0) move(r,table,1) move(y,table,2) move(g,r,3) move(b,y,4) move(r,table,0) move(p,table,1) move(y,table,2) move(g,r,3) move(b,y,4) move(p,table,0) move(y,table,1) move(r,table,2) move(b,y,3) move(g,r,4) move(p,table,0) move(r,table,1) move(y,table,2) move(b,y,3) move(g,r,4) move(r,table,0) move(p,table,1) move(y,table,2) move(b,y,3) move(g,r,4) +R00000-Y00000-BPO000-000000-000000-000000-000000 3Towers/113 Y00000-OBRP00-000000-000000-000000-000000-000000 2Towers/14 5 move(o,table,0) move(p,table,1) move(b,o,2) move(r,b,3) move(p,r,4) move(o,table,0) move(p,y,1) move(b,o,2) move(r,b,3) move(p,r,4) +G00000-Y00000-ORP000-000000-000000-000000-000000 3Towers/113 PY0000-GOR000-000000-000000-000000-000000-000000 2Towers/23 5 move(p,table,0) move(r,table,1) move(o,g,2) move(y,p,3) move(r,o,4) move(p,table,0) move(r,table,1) move(y,p,2) move(o,g,3) move(r,o,4) move(p,table,0) move(y,p,1) move(r,table,2) move(o,g,3) move(r,o,4) move(p,table,0) move(y,p,1) move(r,y,2) move(o,g,3) move(r,o,4) move(p,table,0) move(r,p,1) move(o,g,2) move(r,o,3) move(y,p,4) move(p,table,0) move(r,table,1) move(o,g,2) move(r,o,3) move(y,p,4) move(p,table,0) move(r,y,1) move(o,g,2) move(r,o,3) move(y,p,4) +G00000-ORB000-000000-000000-000000-000000-000000 2Towers/13 RGOB00-000000-000000-000000-000000-000000-000000 1Towers/4 5 move(b,table,0) move(r,table,1) move(g,r,2) move(o,g,3) move(b,o,4) +R00000-OYG000-000000-000000-000000-000000-000000 2Towers/13 YGOR00-000000-000000-000000-000000-000000-000000 1Towers/4 5 move(g,table,0) move(y,table,1) move(g,y,2) move(o,g,3) move(r,o,4) move(g,r,0) move(y,table,1) move(g,y,2) move(o,g,3) move(r,o,4) +P00000-YO0000-GB0000-000000-000000-000000-000000 3Towers/122 B00000-OYGP00-000000-000000-000000-000000-000000 2Towers/14 5 move(b,table,0) move(o,table,1) move(y,o,2) move(g,y,3) move(p,g,4) move(o,table,0) move(b,table,1) move(y,o,2) move(g,y,3) move(p,g,4) move(o,table,0) move(y,o,1) move(b,table,2) move(g,y,3) move(p,g,4) +P00000-YRB000-000000-000000-000000-000000-000000 2Towers/13 PYRB00-000000-000000-000000-000000-000000-000000 1Towers/4 5 move(b,table,0) move(r,table,1) move(y,p,2) move(r,y,3) move(b,r,4) move(b,table,0) move(r,b,1) move(y,p,2) move(r,y,3) move(b,r,4) +ROBPG0-000000-000000-000000-000000-000000-000000 1Towers/5 R00000-B00000-O00000-PG0000-000000-000000-000000 4Towers/1112 5 move(g,table,0) move(p,table,1) move(b,table,2) move(o,table,3) move(g,p,4) move(g,table,0) move(p,table,1) move(b,table,2) move(g,p,3) move(o,table,4) move(g,table,0) move(p,table,1) move(g,p,2) move(b,table,3) move(o,table,4) +R00000-OP0000-GB0000-000000-000000-000000-000000 3Towers/122 R00000-PGOB00-000000-000000-000000-000000-000000 2Towers/14 5 move(p,table,0) move(b,r,1) move(g,p,2) move(o,g,3) move(b,o,4) move(b,r,0) move(p,table,1) move(g,p,2) move(o,g,3) move(b,o,4) move(p,table,0) move(b,table,1) move(g,p,2) move(o,g,3) move(b,o,4) move(b,table,0) move(p,table,1) move(g,p,2) move(o,g,3) move(b,o,4) +R00000-YBPG00-000000-000000-000000-000000-000000 2Towers/14 B00000-PR0000-GY0000-000000-000000-000000-000000 3Towers/122 5 move(g,table,0) move(p,table,1) move(b,table,2) move(r,p,3) move(y,g,4) move(g,table,0) move(p,table,1) move(r,p,2) move(b,table,3) move(y,g,4) move(g,table,0) move(p,table,1) move(b,table,2) move(y,g,3) move(r,p,4) +BYPOR0-000000-000000-000000-000000-000000-000000 1Towers/5 O00000-B00000-R00000-YP0000-000000-000000-000000 4Towers/1112 5 move(r,table,0) move(o,table,1) move(p,table,2) move(y,table,3) move(p,y,4) move(r,table,0) move(o,table,1) move(p,r,2) move(y,table,3) move(p,y,4) move(r,table,0) move(o,table,1) move(p,o,2) move(y,table,3) move(p,y,4) +PGBYR0-000000-000000-000000-000000-000000-000000 1Towers/5 R00000-B00000-Y00000-GP0000-000000-000000-000000 4Towers/1112 5 move(r,table,0) move(y,table,1) move(b,table,2) move(g,table,3) move(p,g,4) +O00000-RG0000-PY0000-000000-000000-000000-000000 3Towers/122 O00000-YRGP00-000000-000000-000000-000000-000000 2Towers/14 5 move(g,table,0) move(y,table,1) move(r,y,2) move(g,r,3) move(p,g,4) move(y,table,0) move(g,table,1) move(r,y,2) move(g,r,3) move(p,g,4) move(y,table,0) move(g,p,1) move(r,y,2) move(g,r,3) move(p,g,4) move(y,table,0) move(g,o,1) move(r,y,2) move(g,r,3) move(p,g,4) move(g,o,0) move(y,table,1) move(r,y,2) move(g,r,3) move(p,g,4) +G00000-OPBY00-000000-000000-000000-000000-000000 2Towers/14 Y00000-BO0000-PG0000-000000-000000-000000-000000 3Towers/122 5 move(y,table,0) move(b,table,1) move(p,table,2) move(g,p,3) move(o,b,4) move(y,table,0) move(b,table,1) move(p,table,2) move(o,b,3) move(g,p,4) +BR0000-YPG000-000000-000000-000000-000000-000000 2Towers/23 PR0000-BYG000-000000-000000-000000-000000-000000 2Towers/23 5 move(g,table,0) move(p,table,1) move(r,p,2) move(y,b,3) move(g,y,4) +RBPOG0-000000-000000-000000-000000-000000-000000 1Towers/5 O00000-GR0000-PB0000-000000-000000-000000-000000 3Towers/122 5 move(g,table,0) move(o,table,1) move(p,table,2) move(b,p,3) move(r,g,4) +B00000-PRGO00-000000-000000-000000-000000-000000 2Towers/14 GB0000-ORP000-000000-000000-000000-000000-000000 2Towers/23 5 move(o,table,0) move(g,table,1) move(r,o,2) move(b,g,3) move(p,r,4) move(o,table,0) move(g,table,1) move(b,g,2) move(r,o,3) move(p,r,4) move(o,table,0) move(g,table,1) move(r,o,2) move(p,r,3) move(b,g,4) +P00000-OYRG00-000000-000000-000000-000000-000000 2Towers/14 G00000-RYOP00-000000-000000-000000-000000-000000 2Towers/14 5 move(g,table,0) move(r,table,1) move(y,r,2) move(o,y,3) move(p,o,4) +GP0000-OBR000-000000-000000-000000-000000-000000 2Towers/23 P00000-O00000-BRG000-000000-000000-000000-000000 3Towers/113 5 move(r,p,0) move(b,table,1) move(r,b,2) move(p,table,3) move(g,r,4) move(r,table,0) move(b,table,1) move(p,table,2) move(r,b,3) move(g,r,4) move(r,table,0) move(b,table,1) move(r,b,2) move(p,table,3) move(g,r,4) move(r,table,0) move(p,table,1) move(b,table,2) move(r,b,3) move(g,r,4) move(p,table,0) move(r,p,1) move(b,table,2) move(r,b,3) move(g,r,4) move(p,table,0) move(r,g,1) move(b,table,2) move(r,b,3) move(g,r,4) move(p,table,0) move(r,table,1) move(b,table,2) move(r,b,3) move(g,r,4) +O00000-BPYG00-000000-000000-000000-000000-000000 2Towers/14 B00000-G00000-POY000-000000-000000-000000-000000 3Towers/113 5 move(g,table,0) move(y,table,1) move(p,table,2) move(o,p,3) move(y,o,4) move(g,table,0) move(y,g,1) move(p,table,2) move(o,p,3) move(y,o,4) +R00000-G00000-BOP000-000000-000000-000000-000000 3Towers/113 R00000-OBPG00-000000-000000-000000-000000-000000 2Towers/14 5 move(p,table,0) move(o,table,1) move(b,o,2) move(p,b,3) move(g,p,4) move(p,g,0) move(o,table,1) move(b,o,2) move(p,b,3) move(g,p,4) move(p,r,0) move(o,table,1) move(b,o,2) move(p,b,3) move(g,p,4) +PBROY0-000000-000000-000000-000000-000000-000000 1Towers/5 Y00000-O00000-RBP000-000000-000000-000000-000000 3Towers/113 5 move(y,table,0) move(o,table,1) move(r,table,2) move(b,r,3) move(p,b,4) +R00000-BYPO00-000000-000000-000000-000000-000000 2Towers/14 P00000-OYBR00-000000-000000-000000-000000-000000 2Towers/14 5 move(o,table,0) move(p,table,1) move(y,o,2) move(b,y,3) move(r,b,4) +YB0000-RGO000-000000-000000-000000-000000-000000 2Towers/23 B00000-OR0000-GY0000-000000-000000-000000-000000 3Towers/122 5 move(o,table,0) move(g,table,1) move(b,table,2) move(y,g,3) move(r,o,4) move(b,table,0) move(o,table,1) move(g,table,2) move(y,g,3) move(r,o,4) move(o,table,0) move(b,table,1) move(g,table,2) move(y,g,3) move(r,o,4) move(b,table,0) move(o,table,1) move(g,table,2) move(r,o,3) move(y,g,4) move(o,table,0) move(b,table,1) move(g,table,2) move(r,o,3) move(y,g,4) move(o,table,0) move(g,table,1) move(r,o,2) move(b,table,3) move(y,g,4) move(o,table,0) move(g,table,1) move(b,table,2) move(r,o,3) move(y,g,4) +RG0000-BPY000-000000-000000-000000-000000-000000 2Towers/23 P00000-GYBR00-000000-000000-000000-000000-000000 2Towers/14 5 move(g,table,0) move(y,g,1) move(p,table,2) move(b,y,3) move(r,b,4) +BY0000-ROP000-000000-000000-000000-000000-000000 2Towers/23 OY0000-PRB000-000000-000000-000000-000000-000000 2Towers/23 5 move(p,table,0) move(o,table,1) move(r,p,2) move(y,o,3) move(b,r,4) move(p,table,0) move(o,table,1) move(y,o,2) move(r,p,3) move(b,r,4) +R00000-BP0000-OG0000-000000-000000-000000-000000 3Towers/122 BGORP0-000000-000000-000000-000000-000000-000000 1Towers/5 5 move(p,table,0) move(g,b,1) move(o,g,2) move(r,o,3) move(p,r,4) +O00000-YRPB00-000000-000000-000000-000000-000000 2Towers/14 B00000-RY0000-PO0000-000000-000000-000000-000000 3Towers/122 5 move(b,table,0) move(p,table,1) move(r,table,2) move(o,p,3) move(y,r,4) move(b,table,0) move(p,table,1) move(o,p,2) move(r,table,3) move(y,r,4) move(b,table,0) move(p,table,1) move(r,table,2) move(y,r,3) move(o,p,4) +O00000-P00000-GYB000-000000-000000-000000-000000 3Towers/113 P00000-YBOG00-000000-000000-000000-000000-000000 2Towers/14 5 move(b,table,0) move(y,table,1) move(b,y,2) move(o,b,3) move(g,o,4) move(b,p,0) move(y,table,1) move(b,y,2) move(o,b,3) move(g,o,4) move(b,o,0) move(y,table,1) move(b,y,2) move(o,b,3) move(g,o,4) +BG0000-PRY000-000000-000000-000000-000000-000000 2Towers/23 RB0000-YGP000-000000-000000-000000-000000-000000 2Towers/23 5 move(y,table,0) move(r,table,1) move(g,y,2) move(b,r,3) move(p,g,4) move(y,table,0) move(g,y,1) move(r,table,2) move(b,r,3) move(p,g,4) move(y,table,0) move(r,table,1) move(g,y,2) move(p,g,3) move(b,r,4) move(y,table,0) move(g,y,1) move(r,table,2) move(p,g,3) move(b,r,4) +BRPGY0-000000-000000-000000-000000-000000-000000 1Towers/5 P00000-GB0000-YR0000-000000-000000-000000-000000 3Towers/122 5 move(y,table,0) move(g,table,1) move(p,table,2) move(r,y,3) move(b,g,4) +P00000-RBOY00-000000-000000-000000-000000-000000 2Towers/14 P00000-Y00000-ORB000-000000-000000-000000-000000 3Towers/113 5 move(y,table,0) move(o,table,1) move(b,table,2) move(r,o,3) move(b,r,4) move(y,table,0) move(o,table,1) move(b,y,2) move(r,o,3) move(b,r,4) move(y,table,0) move(o,table,1) move(b,p,2) move(r,o,3) move(b,r,4) diff --git a/blocks/task5/maps/level5/input_img/0.jpg b/blocks/task5/maps/level5/input_img/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1c27130e9cf56ca2604420ce823268dacf4de37 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae83916b1da099e06fda7f0b96fa59ace5e0559b41ff65ca11ea4547779ca332 +size 11268 diff --git a/blocks/task5/maps/level5/input_img/1.jpg b/blocks/task5/maps/level5/input_img/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de965873cbacddbf7baefc1affc87542b4bdff9c --- /dev/null +++ b/blocks/task5/maps/level5/input_img/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c61d3f64d28736558cc2164b337028eab56645eb25673c5b447251e7dbb5a0 +size 10757 diff --git a/blocks/task5/maps/level5/input_img/10.jpg b/blocks/task5/maps/level5/input_img/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e6d046ddf1a9f38356b588009e0952e53021691 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f18413b8927325f3b022fa9ab1767b173cd04481677bad358afa5451699b9a +size 10510 diff --git a/blocks/task5/maps/level5/input_img/11.jpg b/blocks/task5/maps/level5/input_img/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8be7221c4e3cdca0e4604d6ed51630f6c89204b0 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df48f3de89d03a45927a932060256ee6b8229fbc59223c024bbd836122eae254 +size 9806 diff --git a/blocks/task5/maps/level5/input_img/12.jpg b/blocks/task5/maps/level5/input_img/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a56c9dd60f91ea0208f48fdfc58138f8b0f60493 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d4a84746dd1d99341a06080e6373d24eccbda6e65b4b965a671e7bfdd6cea3 +size 10177 diff --git a/blocks/task5/maps/level5/input_img/13.jpg b/blocks/task5/maps/level5/input_img/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7480d3ee0d26907dfb94a77973cce4d6df603b64 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7bc300fc8732a8f1f51e4a86cf8bae391f6d00fbd4abac2c362b648185d6354 +size 10471 diff --git a/blocks/task5/maps/level5/input_img/14.jpg b/blocks/task5/maps/level5/input_img/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd642c688c50c37ef3d7f6c156f99c866897ce18 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed93352d3f24b6d7ecfc3e6bb3d6c417110dbc925b3f44842cf04599630672af +size 11685 diff --git a/blocks/task5/maps/level5/input_img/15.jpg b/blocks/task5/maps/level5/input_img/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2f6f22e226f4beeb0891f20b8efec5877cd1d8a --- /dev/null +++ b/blocks/task5/maps/level5/input_img/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c86a4e3a4c7ea8c4215ec3fcf87e4bd0917aa839437fb92728878776833dda +size 10719 diff --git a/blocks/task5/maps/level5/input_img/16.jpg b/blocks/task5/maps/level5/input_img/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1fee60bd6dd536510f5c0b983fd03280d8d41e38 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc09788a4a77dd63993a63f69da3114027e9ca78e2ff50a22048290e5852bec +size 11007 diff --git a/blocks/task5/maps/level5/input_img/17.jpg b/blocks/task5/maps/level5/input_img/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb66b0ffcf2546b2fddd8e46735e4320425be6c2 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261e087b2da2ad9b21c57ba75a4fb45b2e35cbac609048d3540d0a18b8b3f80f +size 10652 diff --git a/blocks/task5/maps/level5/input_img/18.jpg b/blocks/task5/maps/level5/input_img/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2472ba8b4ef4c77dbeee7ff20d0a49032d4b82cc --- /dev/null +++ b/blocks/task5/maps/level5/input_img/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c402579107be4bd92566e9a0d9eceec76f7a0982ab40164bfa6f993b5ddc82a +size 10290 diff --git a/blocks/task5/maps/level5/input_img/19.jpg b/blocks/task5/maps/level5/input_img/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab5ed5811a2d179dd53a02b314021d1c85278da5 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f130778b71c45883ae51cc9e0a387108f657dcda85abdec0b4e739b23665b210 +size 10834 diff --git a/blocks/task5/maps/level5/input_img/2.jpg b/blocks/task5/maps/level5/input_img/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dd6522b2d76ea41ec42915509cd8564ab1dadd8 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9fe0192db4f5bb8c8205cb547c7b2d39965b5047903bba3c171affe1a2f86f +size 11536 diff --git a/blocks/task5/maps/level5/input_img/20.jpg b/blocks/task5/maps/level5/input_img/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8072c1dc3b99e4e126e00590a2a66c97acb31a5 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b831d306f30eff220592b08ceccc6f3a8502b199bb9c01391eaab8cfc9b1456 +size 8785 diff --git a/blocks/task5/maps/level5/input_img/21.jpg b/blocks/task5/maps/level5/input_img/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6349f59022cff22a34b7f3c2751a120c83fbe52a --- /dev/null +++ b/blocks/task5/maps/level5/input_img/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b140f71b64b73c6fa1d6dc82e23a4bc701748d4baaef081d7e305f43d62a88 +size 10555 diff --git a/blocks/task5/maps/level5/input_img/22.jpg b/blocks/task5/maps/level5/input_img/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aca123f42830041a8231ef84d471805c272652b4 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c7ef7ef0bac061fb8179a9f44d12be64e8758853df12a0623039e1a99961a4 +size 9818 diff --git a/blocks/task5/maps/level5/input_img/23.jpg b/blocks/task5/maps/level5/input_img/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea5b27a0ba9a9febc618f7d7187eb76e91e16949 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66111fd4371fb62548a9fce5c109905fc4c775b122c25dfd4086ff899e76b7ac +size 10838 diff --git a/blocks/task5/maps/level5/input_img/24.jpg b/blocks/task5/maps/level5/input_img/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd454803e62bacad7863a21350750e8504d1e5cf --- /dev/null +++ b/blocks/task5/maps/level5/input_img/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b760f251e7b420e6fa114c7cfcb6cf14a84fcf2a502644c0ad04e9d48d0ceb3 +size 10231 diff --git a/blocks/task5/maps/level5/input_img/25.jpg b/blocks/task5/maps/level5/input_img/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a36e4d3aaf0ba39a28f9e78dd72dd1f278104949 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d182f412731c38b88bad18f8ea35654c8906c544a6b6402a4b715d9eed78a14 +size 10223 diff --git a/blocks/task5/maps/level5/input_img/26.jpg b/blocks/task5/maps/level5/input_img/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ffec3fd3263ca969d6861c109a1357f088e4e1b --- /dev/null +++ b/blocks/task5/maps/level5/input_img/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d2557fe2ceecf18b4fe1004e9822481e31795373bc585832fb945b2b7ba234 +size 10118 diff --git a/blocks/task5/maps/level5/input_img/27.jpg b/blocks/task5/maps/level5/input_img/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b903ad78bf6b32b012967a7dc900d929dafe781e --- /dev/null +++ b/blocks/task5/maps/level5/input_img/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5459236d1ebe2357487befabc1de5b75656ef58fbb007597c5c4799e86a6c71 +size 10777 diff --git a/blocks/task5/maps/level5/input_img/28.jpg b/blocks/task5/maps/level5/input_img/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..030ee9cd189b642f536dc9f70fa83837ffaee4b5 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f5342ec1775c3c0e6cd8e0b9f8013944033fdb255df6adf829da7453d513ad +size 10072 diff --git a/blocks/task5/maps/level5/input_img/29.jpg b/blocks/task5/maps/level5/input_img/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c5708052b70a852761a94e8f3edf215fdd67270 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:767c6dd1b3fc1d00c394271d9fb88482f4cfc1a1e2ede11a843013e58e57f565 +size 9966 diff --git a/blocks/task5/maps/level5/input_img/3.jpg b/blocks/task5/maps/level5/input_img/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d0836f7c96183a5f919cad2ab735e719a4e4fec --- /dev/null +++ b/blocks/task5/maps/level5/input_img/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:075ecd8b155e1611c2241b016bfdc9a632a1791f79ea143fefa47e8a46549534 +size 10388 diff --git a/blocks/task5/maps/level5/input_img/30.jpg b/blocks/task5/maps/level5/input_img/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94392d9c52d372602a22f6083a4fa0df12cdb0c7 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e449c0c83992fa8800f066e6ec7a8ca59b3fbf276d42326c47fbd992243ebdc5 +size 10759 diff --git a/blocks/task5/maps/level5/input_img/31.jpg b/blocks/task5/maps/level5/input_img/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a779278675de7bbb36a2a883da0c47e4a61882e2 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314f15cf5a7d82c1e47b385f6469b6c88f1e80f19ebe705cd9e699791b5c8331 +size 10632 diff --git a/blocks/task5/maps/level5/input_img/32.jpg b/blocks/task5/maps/level5/input_img/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b9eb323581739b52230d0589079f709109ef81c --- /dev/null +++ b/blocks/task5/maps/level5/input_img/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8aa95747564abefdc2b5af7355a0249e9960c9521d92ec43bf1bbde603f9e96 +size 11698 diff --git a/blocks/task5/maps/level5/input_img/33.jpg b/blocks/task5/maps/level5/input_img/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e5a212b6963c911e3d95d02b325fee434bd6ad1 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2dd753e2c373f5a7b101b4a4a345dff994f69766e1e1132d72af9e6ae043b43 +size 10471 diff --git a/blocks/task5/maps/level5/input_img/34.jpg b/blocks/task5/maps/level5/input_img/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91b88556661eebd0607c7c4b863572491fdebac3 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7ec6a2093f638bd4ced76ce02f78a50c91f862126456afc4d855807ea22f4a +size 10490 diff --git a/blocks/task5/maps/level5/input_img/35.jpg b/blocks/task5/maps/level5/input_img/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a34a8aba01ff3108bce5973f9481c189e8993acc --- /dev/null +++ b/blocks/task5/maps/level5/input_img/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab65a3c4ca6a33b517040111d06f434299c00cd37aef2e0a10a3317af4a3cb69 +size 11336 diff --git a/blocks/task5/maps/level5/input_img/36.jpg b/blocks/task5/maps/level5/input_img/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8ca5bd500cbdf6bf1ce692491c46d28e85679d6 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405e332a94ab686b47f5fd67dcb3fc44d40a1c8d13b62a7f4d0ed63ae5f1a9d1 +size 11517 diff --git a/blocks/task5/maps/level5/input_img/37.jpg b/blocks/task5/maps/level5/input_img/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9696410d93d15b14528ba6ae2ee15972ed0a0687 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55f10e9c08fbdf45f03c1cba206de100bf94483b4a7ed5146d9d5c3a87c6a453 +size 10347 diff --git a/blocks/task5/maps/level5/input_img/38.jpg b/blocks/task5/maps/level5/input_img/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56436a641a0d4acb5b4355b0f8c4a507a7e1ecce --- /dev/null +++ b/blocks/task5/maps/level5/input_img/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3c738d4869b410ae57fbed858cbe0acbac16a4010f33685833b100dff44150 +size 9523 diff --git a/blocks/task5/maps/level5/input_img/39.jpg b/blocks/task5/maps/level5/input_img/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc09ba39d083386e10ec876c565bba8863dc6730 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3cf195cf4bc5873a91237c8e0a5c1fd73258fca9861ec6852572eed76d2154d +size 10799 diff --git a/blocks/task5/maps/level5/input_img/4.jpg b/blocks/task5/maps/level5/input_img/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce43c0dadb6c1a02627548cec71d7e6601bcae2 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb6b44eb134021e10c46c233242a7b437aaf8b72af4f33c8d9d300bc3476f63 +size 10647 diff --git a/blocks/task5/maps/level5/input_img/40.jpg b/blocks/task5/maps/level5/input_img/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd9526d7678dff069a82b0c0c5c54c021325bc50 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc8451ade3f561830f62a84bf1f760e3654a73026d433201e0bf870e3cbc815 +size 10702 diff --git a/blocks/task5/maps/level5/input_img/41.jpg b/blocks/task5/maps/level5/input_img/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..684d63e3f919ea6bce1b33eee57d872d53c5e272 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eeb6f9704ccb70d011795a77ac095e95e4f56f71c113584de3bb54e1b3b9a6c +size 11053 diff --git a/blocks/task5/maps/level5/input_img/42.jpg b/blocks/task5/maps/level5/input_img/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c23ee08c840c90fe0b025f64607b6969b07591c3 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94ca75ec0d5eaf153f846e5a4b919b050e6788d73627644b9d12dfee99e76d38 +size 8944 diff --git a/blocks/task5/maps/level5/input_img/43.jpg b/blocks/task5/maps/level5/input_img/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..866c1889121af537f238a3090f00f542217cad6f --- /dev/null +++ b/blocks/task5/maps/level5/input_img/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97cde142f96dd90ef1f4906936e2a63a112ff6a0f6e78eb85ddf8a0363eafdab +size 11920 diff --git a/blocks/task5/maps/level5/input_img/44.jpg b/blocks/task5/maps/level5/input_img/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30845a53914a31261ccf9c198e352ee0240ad237 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b91949e3f87cda612eba6faecacbe6d963c2ad8af0dd3bfa17c174b421cbcb5 +size 10155 diff --git a/blocks/task5/maps/level5/input_img/45.jpg b/blocks/task5/maps/level5/input_img/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57f4ef7dd1665ff51360f4de9be78403b85071b2 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d192b0dcf979a7c4dbeb87812df287402086a9d436016e9cb16aeff7cd741697 +size 10393 diff --git a/blocks/task5/maps/level5/input_img/46.jpg b/blocks/task5/maps/level5/input_img/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d26d2eaa7edf5354dc3488bca25a1bbe95118ae5 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49b729a780e772cfebbb166129af8f2aa657c3e3771f2ff6051a745be223271 +size 11602 diff --git a/blocks/task5/maps/level5/input_img/47.jpg b/blocks/task5/maps/level5/input_img/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97a3b4c115655cea10aca6432a64badfbaa4a1fa --- /dev/null +++ b/blocks/task5/maps/level5/input_img/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dddccda13d810127c523444498b0091f45cdc2dd0d6ffecf07e7d7a7ca7c97dc +size 10838 diff --git a/blocks/task5/maps/level5/input_img/48.jpg b/blocks/task5/maps/level5/input_img/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a15fb2164914b02427e3ece1b90c8ebc2d3f20eb --- /dev/null +++ b/blocks/task5/maps/level5/input_img/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35034cfe2a87c8f8d6b51d908ee48beceee14b1bc807cc4a24c79ba106871dd6 +size 11226 diff --git a/blocks/task5/maps/level5/input_img/49.jpg b/blocks/task5/maps/level5/input_img/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a661302193e3e2b18ff179c244f8a829a7d9389e --- /dev/null +++ b/blocks/task5/maps/level5/input_img/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641fa43b6028b4f57b49fce8f39bdb5eac780671a2cc43a0e5056be1354b9093 +size 10966 diff --git a/blocks/task5/maps/level5/input_img/5.jpg b/blocks/task5/maps/level5/input_img/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d529c42b08b821ddfb01df0ecd80d9e048ff9f3a --- /dev/null +++ b/blocks/task5/maps/level5/input_img/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5993c685cf575b80b633c3aa78185e0eafb3c86bd296257cc1dcc0ef5b2dae +size 10635 diff --git a/blocks/task5/maps/level5/input_img/50.jpg b/blocks/task5/maps/level5/input_img/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..648701f410bd8abb32cbda80a54de09a56805676 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646f287d742517616e7a481e0ed3d52ebae162d5193aecaae67e4de1390884a2 +size 10485 diff --git a/blocks/task5/maps/level5/input_img/51.jpg b/blocks/task5/maps/level5/input_img/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3582dd0ff4a783abc204e1ed856e8621f9f7f5e5 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcbf98b4962162f2977389916d10c54ca2d25670d7c6affa37afcea9f375009 +size 9362 diff --git a/blocks/task5/maps/level5/input_img/52.jpg b/blocks/task5/maps/level5/input_img/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdb8e185f640f343cd491ffdf65908fab53f6a43 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8941397146c936f8aa46346821b3af4eca35cb14ce75b12ebafa2b4d09495de3 +size 9989 diff --git a/blocks/task5/maps/level5/input_img/53.jpg b/blocks/task5/maps/level5/input_img/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b33497b4efc7a4c25dc1aba25fa5a9bd8947b26 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:602e8f25bfe23a7021ccc24b91f995e2e9a4aef822cab542f21396dac63387ea +size 9882 diff --git a/blocks/task5/maps/level5/input_img/54.jpg b/blocks/task5/maps/level5/input_img/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1db5a95b8e583e877f5fa4cb185ea869b61c1ed --- /dev/null +++ b/blocks/task5/maps/level5/input_img/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b10f4e76c5fa97cd93bb9912f2373e722647a6270de40f08572a0392d7a341a4 +size 10537 diff --git a/blocks/task5/maps/level5/input_img/55.jpg b/blocks/task5/maps/level5/input_img/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b969352f1aab77b9c5fee0b0223f35212759718b --- /dev/null +++ b/blocks/task5/maps/level5/input_img/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccfcd95fd4fc8462b8fa3a504425349a0c0e32b86b2416d1f1346954f8a49fc +size 10334 diff --git a/blocks/task5/maps/level5/input_img/56.jpg b/blocks/task5/maps/level5/input_img/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..186f626198ce635aa2a68c3972d3a25395740f0c --- /dev/null +++ b/blocks/task5/maps/level5/input_img/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8875207858e9e342e4db4fbf01c737ac7837ce696af598b72921e5bd97502dd6 +size 11040 diff --git a/blocks/task5/maps/level5/input_img/57.jpg b/blocks/task5/maps/level5/input_img/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..076aed087886a2696e5d37eed41ffe14f3c5f292 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd0ae977b2cbc4013ca45ed19df4fe67f5db5abfaebcb40e4f796fe8fcdb2e0 +size 10177 diff --git a/blocks/task5/maps/level5/input_img/58.jpg b/blocks/task5/maps/level5/input_img/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2d05ce1210538ef87833f6a7a378db1528199d8 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04bea6701299b3e721a0caebf6a355225d3b0ed31d3d32844aa8e6c1779ddad8 +size 10179 diff --git a/blocks/task5/maps/level5/input_img/59.jpg b/blocks/task5/maps/level5/input_img/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1a6698f1b5067aafa8134a8102856571403cd19 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b9a4ef51d8e9e78f27ea75e9fb4b977d320df2101c24e9f5ecc65faed200b75 +size 10252 diff --git a/blocks/task5/maps/level5/input_img/6.jpg b/blocks/task5/maps/level5/input_img/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14c0910d9199275297c9b82093c7b519c6d8ee71 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70513f2c20d25cfc4ef1b105587506da1ea25e1ccbb28bedeac167d8de921476 +size 9974 diff --git a/blocks/task5/maps/level5/input_img/60.jpg b/blocks/task5/maps/level5/input_img/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24ea44b928539d37f593ffee6699603c710d6d74 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521846678f52e796f06191120ab68d02eb95a7bf830354d7f51757bba75b7c3a +size 10206 diff --git a/blocks/task5/maps/level5/input_img/61.jpg b/blocks/task5/maps/level5/input_img/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9b49fcb0587d380ce860cb2fe28b97a41018479 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a61087e3905bf471810aa2d033fdcaf52c83c08ba100c463f3dd61a68e9b86cc +size 10546 diff --git a/blocks/task5/maps/level5/input_img/62.jpg b/blocks/task5/maps/level5/input_img/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..546595ba8fb271c140782bf4488ba0b928551205 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6f6ae16f3c6e7383ecd6bf89a54992190c5e1adb2c530f86c19acd9f1443f4 +size 11786 diff --git a/blocks/task5/maps/level5/input_img/63.jpg b/blocks/task5/maps/level5/input_img/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acdbebcd07aeafb29d138ba2b4809c2a137c8bb5 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e804ab6890b7b72d9033f00c7133626442cdaa7bc536f66ab869754a09cad6 +size 10015 diff --git a/blocks/task5/maps/level5/input_img/64.jpg b/blocks/task5/maps/level5/input_img/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3d935478402f39c08f4ae553ea449c79dc27afc --- /dev/null +++ b/blocks/task5/maps/level5/input_img/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6113ca156ee5c421000ad1ba4bb9bd7e442b86854dd544d9083b185e62890f +size 10732 diff --git a/blocks/task5/maps/level5/input_img/65.jpg b/blocks/task5/maps/level5/input_img/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab68c60da6b434507852d60ecf3041ed9192b077 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75da10942dc6b92145a4d86f54c9b8e8ece3bb2c260dcdcacd2572af1d98078 +size 10432 diff --git a/blocks/task5/maps/level5/input_img/66.jpg b/blocks/task5/maps/level5/input_img/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30e28bfc87d1f93491196bd047d433a7973b4257 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b25868a70acebb4da3d6c8b6b2720ac79e7a73a443d2f5fc68bf5c8927034d8a +size 10605 diff --git a/blocks/task5/maps/level5/input_img/67.jpg b/blocks/task5/maps/level5/input_img/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96a41c314d98dcf321607b24bca5bd57a5ede781 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5301ea17693eb1192d2300a12811f0bdab0de16edc4a55d615208490159f8fde +size 10044 diff --git a/blocks/task5/maps/level5/input_img/68.jpg b/blocks/task5/maps/level5/input_img/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d0c916f0bfb203880e69043834c46ab11cdd1ac --- /dev/null +++ b/blocks/task5/maps/level5/input_img/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce23e5a451d46a6cba6f8a9c2d912b746192868bebfe8c4622134f1e256fe51 +size 10822 diff --git a/blocks/task5/maps/level5/input_img/69.jpg b/blocks/task5/maps/level5/input_img/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3508e2f41074a9be8ecf5a5ac6aa3c3f9983f516 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7ac1ce7a0c54ffbed528e35146bdd0599a373902974e5704df7a0dea20fdfa +size 10571 diff --git a/blocks/task5/maps/level5/input_img/7.jpg b/blocks/task5/maps/level5/input_img/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6581a1b329d5033f828f2e7d45dad477e920f4a --- /dev/null +++ b/blocks/task5/maps/level5/input_img/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43b711d299bb2315728a694b242d6a23003973a9a1ae31d025a33081ebf2927 +size 10886 diff --git a/blocks/task5/maps/level5/input_img/70.jpg b/blocks/task5/maps/level5/input_img/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..338550e7ef72bc0347ba440f50b7bbef613578d5 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4379a438cfba15242cc03902734ca4d1d0353ca9a5dae079f16445b98e7dece4 +size 10924 diff --git a/blocks/task5/maps/level5/input_img/71.jpg b/blocks/task5/maps/level5/input_img/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8681a4ed78ec6a55c7d63a992bad09587f5f9e55 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5af445fcde0d81c4272b31e90234276c67326aeb2f8b7cb8a0455f3c988fd4 +size 10689 diff --git a/blocks/task5/maps/level5/input_img/72.jpg b/blocks/task5/maps/level5/input_img/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..096ffdfd3aa4dbbcb3fd723ec79cb6112e5587e7 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432ea39f0a8a3734bc11e5f029099561f3861f6e4968160422c3d2ee226395d2 +size 9565 diff --git a/blocks/task5/maps/level5/input_img/73.jpg b/blocks/task5/maps/level5/input_img/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e84cf59d0a1e878ffb47b7746e7c9edfc1ba30d2 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d5f36103510523c320feeda7f1920d56f5af76c7f47f41e2d3706178d80c60c +size 10807 diff --git a/blocks/task5/maps/level5/input_img/74.jpg b/blocks/task5/maps/level5/input_img/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70b9b9fbe4dd9582fbddbee10bcb7623eba90bbd --- /dev/null +++ b/blocks/task5/maps/level5/input_img/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e689e41efd688de27539d894b67684dd8fa17accbb547022f117daa428fbec8 +size 10275 diff --git a/blocks/task5/maps/level5/input_img/75.jpg b/blocks/task5/maps/level5/input_img/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ff68b298faf81c6391e510bad9ecd3a10376dcb --- /dev/null +++ b/blocks/task5/maps/level5/input_img/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab718dbd4ae32a1a3837be2ef3605ba004b2dc67e9d1bc1eadaa98b848ecea1 +size 10713 diff --git a/blocks/task5/maps/level5/input_img/76.jpg b/blocks/task5/maps/level5/input_img/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5116405d3380568e8fb7ca06289f7d31ce1e8d40 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b2f220d91995cfb544b63db761c345dc8a10333438cfb99fd8c74778d88d1d9 +size 10855 diff --git a/blocks/task5/maps/level5/input_img/77.jpg b/blocks/task5/maps/level5/input_img/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14c0910d9199275297c9b82093c7b519c6d8ee71 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70513f2c20d25cfc4ef1b105587506da1ea25e1ccbb28bedeac167d8de921476 +size 9974 diff --git a/blocks/task5/maps/level5/input_img/78.jpg b/blocks/task5/maps/level5/input_img/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af9eb98de907c4752a108de93fc58e1abc98a033 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3744830bcb9a411c45eaa65718a288e7ee45f9ea8fb7ea9d62429b713b4f3f0c +size 10499 diff --git a/blocks/task5/maps/level5/input_img/79.jpg b/blocks/task5/maps/level5/input_img/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..696b65ca5839ac424b388d26b8b745c65e340f0f --- /dev/null +++ b/blocks/task5/maps/level5/input_img/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e979606a46ccf3944683fade5373126112483c5eb7bcdc345547064c9868db +size 10797 diff --git a/blocks/task5/maps/level5/input_img/8.jpg b/blocks/task5/maps/level5/input_img/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce43c0dadb6c1a02627548cec71d7e6601bcae2 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb6b44eb134021e10c46c233242a7b437aaf8b72af4f33c8d9d300bc3476f63 +size 10647 diff --git a/blocks/task5/maps/level5/input_img/80.jpg b/blocks/task5/maps/level5/input_img/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e611489feeb90e2043c1e6667dac7efb55139cd2 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0db8b509888dce0c1e139d9f492906f7e9cab3d4994df0236aacfde1b3970 +size 11320 diff --git a/blocks/task5/maps/level5/input_img/81.jpg b/blocks/task5/maps/level5/input_img/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72ffd113738108bcea6633955c97ffab845188fb --- /dev/null +++ b/blocks/task5/maps/level5/input_img/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06865d49842f3cce571ca090846151e89691146118abab25825aad7fd772d7a7 +size 11715 diff --git a/blocks/task5/maps/level5/input_img/82.jpg b/blocks/task5/maps/level5/input_img/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb53a2f6fb3f1b5c9e052f77d7b07a20d182e298 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5fa5f4da8e40fe76e2ccb9ad03414eb1734a2d46b2c43667a2d6a1948ca37ab +size 10783 diff --git a/blocks/task5/maps/level5/input_img/83.jpg b/blocks/task5/maps/level5/input_img/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46fcbbe9559e9f9aa1dae814747b0ba700e380bd --- /dev/null +++ b/blocks/task5/maps/level5/input_img/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7c9b669ad2dda339c760f00dcf7b6fc65a512b615760e444a7d31b3efd0c46 +size 11447 diff --git a/blocks/task5/maps/level5/input_img/84.jpg b/blocks/task5/maps/level5/input_img/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4137321dc6df863dac6c933caa25422549c12d2 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c45f529df7029a6c9d8c5babc547cf448f541f414dfa1aedac411be22330e02 +size 11831 diff --git a/blocks/task5/maps/level5/input_img/85.jpg b/blocks/task5/maps/level5/input_img/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c52f0a746e9eb44f16fa9a8ab6f814373549e1a --- /dev/null +++ b/blocks/task5/maps/level5/input_img/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad40589d36a3f06003119246d20aed005908935a6ccc437ec55e3840c7d2905 +size 10995 diff --git a/blocks/task5/maps/level5/input_img/86.jpg b/blocks/task5/maps/level5/input_img/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ddc326c92ed05ba3a0feaec3a4e9e5e2bb7cfbe --- /dev/null +++ b/blocks/task5/maps/level5/input_img/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f2d146b3ebd6f9b3c34e304c53231cf007bceca7a54711443cc9476c39e01c +size 11348 diff --git a/blocks/task5/maps/level5/input_img/87.jpg b/blocks/task5/maps/level5/input_img/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f8656a344c29c1d7ca8f9a516956cac15af7f08 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85015bc0ee14d928ab5f00fcb6b56ee1283461b1830d4739b62eaffb2cf320f8 +size 11795 diff --git a/blocks/task5/maps/level5/input_img/88.jpg b/blocks/task5/maps/level5/input_img/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ba165e7c0d28e210c62d0c0be86e4456ea0e9b7 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a73067cda7ff47f448e84f71f5ce0322007af4da19d9acbc3920fd0fbf8bbc +size 10552 diff --git a/blocks/task5/maps/level5/input_img/89.jpg b/blocks/task5/maps/level5/input_img/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..413c06ad2fa560fc124eae692939b33e885100f7 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d1fc856521c09d8ad74dd83224ae3ef48dc86225b867a19f3604fce12adeaf +size 10187 diff --git a/blocks/task5/maps/level5/input_img/9.jpg b/blocks/task5/maps/level5/input_img/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34cb56a89c10d7b4936ce01459588d725ec4a8bd --- /dev/null +++ b/blocks/task5/maps/level5/input_img/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924135fc9aa254f5e2c8330b965c2625fca0daaaa1747c53212073aa2b194852 +size 10530 diff --git a/blocks/task5/maps/level5/input_img/90.jpg b/blocks/task5/maps/level5/input_img/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad5581e12371a44b252d983e87ff1b7c58dd3e37 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d992661fdb3bd3bec7fcef70724c566123199989adfd7703255d1fb8d992351c +size 10329 diff --git a/blocks/task5/maps/level5/input_img/91.jpg b/blocks/task5/maps/level5/input_img/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c9df5efd62d719d2e734ec737d4ee1efb6f0d6d --- /dev/null +++ b/blocks/task5/maps/level5/input_img/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4438889680d0c155a227f6f15c6ca0fdc022cc9165ad79cd99d55d81d985963 +size 9597 diff --git a/blocks/task5/maps/level5/input_img/92.jpg b/blocks/task5/maps/level5/input_img/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..594a5668efc37c0b0950ae2f9e788deff0ffa895 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bdc0154eef8a777d7df0d584cb98ffc722b422c407e6ad54279802f19adf179 +size 11518 diff --git a/blocks/task5/maps/level5/input_img/93.jpg b/blocks/task5/maps/level5/input_img/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea3c8a9309ce330690f3e3b653925c2812431179 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66dfbe29cec7eeca3cb092661a12453354d4350c1e316ca054e72c76099e55b +size 10748 diff --git a/blocks/task5/maps/level5/input_img/94.jpg b/blocks/task5/maps/level5/input_img/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70f06c5a0a64e48f8698549df3748846501566a9 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59998c6f3427c9da53cc4775dd8abaa22a3a77793431cf8dccac6703e2f06c02 +size 10604 diff --git a/blocks/task5/maps/level5/input_img/95.jpg b/blocks/task5/maps/level5/input_img/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..965a4b4dd1b44d8c956c0f45fff1373f351dd2b3 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd536b61df264cd57c3f6fa8d5f8c56005a554ec9f0902729a52075532e668e4 +size 11607 diff --git a/blocks/task5/maps/level5/input_img/96.jpg b/blocks/task5/maps/level5/input_img/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22e1150c1e85686e283b41e0c68e2a1f5c704e69 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2720c0cd8f03b91c0f31a3d04c94d23e1ae707829e37df4e79cba4e5bc34081 +size 10619 diff --git a/blocks/task5/maps/level5/input_img/97.jpg b/blocks/task5/maps/level5/input_img/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..581cc0a8b4524f975cbe994bc1437fec8b27f2bf --- /dev/null +++ b/blocks/task5/maps/level5/input_img/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a0e7d624e88c6cccf43542ad6731cf2491e37c67b4a08056c5a50f0f7e830a +size 11338 diff --git a/blocks/task5/maps/level5/input_img/98.jpg b/blocks/task5/maps/level5/input_img/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..995f37b5fa2d04ce92310cb81a8943cc2df9d212 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbee7ddd6b94636879c73059a1ebafb4da611f594321bfb59c39a992748cb132 +size 10017 diff --git a/blocks/task5/maps/level5/input_img/99.jpg b/blocks/task5/maps/level5/input_img/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8c4673fc36d0d00696a2770132b31865672b2c1 --- /dev/null +++ b/blocks/task5/maps/level5/input_img/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5fe1419a4a12d691057bf7f1d5a3bf5d56a485ea66563689ec4966056dfda8 +size 11118 diff --git a/blocks/task5/maps/level5/input_table/0.txt b/blocks/task5/maps/level5/input_table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..3390e1b49627b47ce958a1babe07da7e35591b89 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/0.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | blue | +Level 1 | green | yellow | diff --git a/blocks/task5/maps/level5/input_table/1.txt b/blocks/task5/maps/level5/input_table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9008da9f33a0760ab313f2c21a4b8d4e5a028c34 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/1.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | yellow | +Level 1 | orange | red | blue | diff --git a/blocks/task5/maps/level5/input_table/10.txt b/blocks/task5/maps/level5/input_table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d63a954d2c8e855fa6861d7af5063f6e03b3902d --- /dev/null +++ b/blocks/task5/maps/level5/input_table/10.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | green | +Level 3 | blue | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task5/maps/level5/input_table/11.txt b/blocks/task5/maps/level5/input_table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..41ddbecf71523c2674e6374abdbc5e2822ffd6e5 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/11.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | blue | green | +Level 1 | yellow | purple | diff --git a/blocks/task5/maps/level5/input_table/12.txt b/blocks/task5/maps/level5/input_table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ee3abf67358fdb5864e0497c77afb1ab85ac029 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/12.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | green | red | +Level 1 | yellow | orange | diff --git a/blocks/task5/maps/level5/input_table/13.txt b/blocks/task5/maps/level5/input_table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..9044d9d0c9d10643c7a44786d5712fe3c5011f96 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/13.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | orange | +Level 3 | blue | +Level 2 | yellow | +Level 1 | red | diff --git a/blocks/task5/maps/level5/input_table/14.txt b/blocks/task5/maps/level5/input_table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1e5f62916eacbabb7e31714024ab8d0697b3359 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/14.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | orange | +Level 2 | | red | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level5/input_table/15.txt b/blocks/task5/maps/level5/input_table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..7265c57a6a0c68188387a86c49c40fe4546e427e --- /dev/null +++ b/blocks/task5/maps/level5/input_table/15.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | orange | +Level 3 | yellow | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task5/maps/level5/input_table/16.txt b/blocks/task5/maps/level5/input_table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..a48e5952618ffd0c58fa9377018f5fcdba13bdbe --- /dev/null +++ b/blocks/task5/maps/level5/input_table/16.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | orange | +Level 3 | purple | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level5/input_table/17.txt b/blocks/task5/maps/level5/input_table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d12dfe9c76f6e696457a9adf30ded4048af52f9 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/17.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | purple | +Level 1 | yellow | blue | orange | diff --git a/blocks/task5/maps/level5/input_table/18.txt b/blocks/task5/maps/level5/input_table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..f72d62f11dee039b3eea651d686c93fc823c8b2b --- /dev/null +++ b/blocks/task5/maps/level5/input_table/18.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | green | +Level 1 | red | yellow | purple | diff --git a/blocks/task5/maps/level5/input_table/19.txt b/blocks/task5/maps/level5/input_table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..eecb3eefee61d04fe964e789b52a6c3131ebf4ca --- /dev/null +++ b/blocks/task5/maps/level5/input_table/19.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | purple | +Level 1 | green | orange | red | diff --git a/blocks/task5/maps/level5/input_table/2.txt b/blocks/task5/maps/level5/input_table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..03d95fa870172f0f502e0e18a1afdc09f7b29096 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/2.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | red | +Level 2 | | orange | +Level 1 | green | yellow | diff --git a/blocks/task5/maps/level5/input_table/20.txt b/blocks/task5/maps/level5/input_table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..df9240c3e2aa45437e00e7e2be1d8bb6dc18b44f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/20.txt @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | purple | +Level 3 | yellow | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task5/maps/level5/input_table/21.txt b/blocks/task5/maps/level5/input_table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..036d61275c39bf896abd32b86604fd6efab5c791 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/21.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | orange | +Level 2 | yellow | +Level 1 | purple | diff --git a/blocks/task5/maps/level5/input_table/22.txt b/blocks/task5/maps/level5/input_table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..8349a5e05fc139d7684061659a88ee47c601dabe --- /dev/null +++ b/blocks/task5/maps/level5/input_table/22.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | yellow | red | orange | purple | diff --git a/blocks/task5/maps/level5/input_table/23.txt b/blocks/task5/maps/level5/input_table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dca9ce7e785b9d0e25a636eaacb97ebb34dba95 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/23.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | yellow | blue | purple | diff --git a/blocks/task5/maps/level5/input_table/24.txt b/blocks/task5/maps/level5/input_table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb9cd3dc8891dfce9685542f8e1861b3f53987a3 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/24.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | yellow | blue | green | purple | diff --git a/blocks/task5/maps/level5/input_table/25.txt b/blocks/task5/maps/level5/input_table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c21b316b35b83a47bcba2980bf14f02f42710a1f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/25.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | red | +Level 2 | | orange | +Level 1 | yellow | purple | diff --git a/blocks/task5/maps/level5/input_table/26.txt b/blocks/task5/maps/level5/input_table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3208060b4c7a8c2058e92a40ad55509fe4b9bb0 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/26.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | orange | +Level 3 | green | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task5/maps/level5/input_table/27.txt b/blocks/task5/maps/level5/input_table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8d259b083ecc4ba66285323c289bc822a106b9f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/27.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | blue | +Level 1 | purple | orange | yellow | diff --git a/blocks/task5/maps/level5/input_table/28.txt b/blocks/task5/maps/level5/input_table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..06023ece22f149bf2da879d11a9df17b61ebff9f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/28.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | green | purple | +Level 1 | yellow | blue | diff --git a/blocks/task5/maps/level5/input_table/29.txt b/blocks/task5/maps/level5/input_table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..9febcd46d7de16b4b4b2e50f333b0800d426ce3f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/29.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | blue | orange | +Level 1 | purple | red | diff --git a/blocks/task5/maps/level5/input_table/3.txt b/blocks/task5/maps/level5/input_table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5e3b91f46a365339418a3bc167b4cdad642a5b8 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/3.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | purple | +Level 1 | green | red | diff --git a/blocks/task5/maps/level5/input_table/30.txt b/blocks/task5/maps/level5/input_table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..20b9f2db2c063453a2eccf4d9f746d243a3837a7 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/30.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | orange | +Level 1 | yellow | blue | red | diff --git a/blocks/task5/maps/level5/input_table/31.txt b/blocks/task5/maps/level5/input_table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2de2f19667d59a73b6b01defb96affd0d98852c --- /dev/null +++ b/blocks/task5/maps/level5/input_table/31.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | orange | +Level 1 | red | purple | yellow | diff --git a/blocks/task5/maps/level5/input_table/32.txt b/blocks/task5/maps/level5/input_table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1ab99c3f12045711aa6d89853f4cca3b82ddcb6 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/32.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | green | +Level 2 | | red | +Level 1 | blue | orange | diff --git a/blocks/task5/maps/level5/input_table/33.txt b/blocks/task5/maps/level5/input_table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..05c6fcd747255e2e4f89abccf77fc93d9705e148 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/33.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | yellow | orange | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level5/input_table/34.txt b/blocks/task5/maps/level5/input_table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..19f79d4621c69e957956f2192b8556d037c9167b --- /dev/null +++ b/blocks/task5/maps/level5/input_table/34.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | orange | +Level 1 | red | blue | green | diff --git a/blocks/task5/maps/level5/input_table/35.txt b/blocks/task5/maps/level5/input_table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..15e48174450700752fd144501d8cefcf7f953972 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/35.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | green | blue | orange | diff --git a/blocks/task5/maps/level5/input_table/36.txt b/blocks/task5/maps/level5/input_table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..85310d51f56d7bb9e40e50652f4e7f6ca99d106e --- /dev/null +++ b/blocks/task5/maps/level5/input_table/36.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | purple | red | blue | yellow | diff --git a/blocks/task5/maps/level5/input_table/37.txt b/blocks/task5/maps/level5/input_table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cd46d902f5a338008b683f65d11ed856cf739b4 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/37.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | yellow | +Level 3 | blue | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task5/maps/level5/input_table/38.txt b/blocks/task5/maps/level5/input_table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..47b383ec90151973156c36e96d6e34901774854e --- /dev/null +++ b/blocks/task5/maps/level5/input_table/38.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | red | +Level 3 | purple | +Level 2 | yellow | +Level 1 | orange | diff --git a/blocks/task5/maps/level5/input_table/39.txt b/blocks/task5/maps/level5/input_table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..47e3f45b627fbe10966e3b078047799fe8d9f381 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/39.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | purple | +Level 1 | blue | yellow | red | diff --git a/blocks/task5/maps/level5/input_table/4.txt b/blocks/task5/maps/level5/input_table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a22481c7caf0a4790f8086f89fe678edd50b7c --- /dev/null +++ b/blocks/task5/maps/level5/input_table/4.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | orange | blue | yellow | diff --git a/blocks/task5/maps/level5/input_table/40.txt b/blocks/task5/maps/level5/input_table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..9649bc8ce64dc57d141de5c943844a1d564fb17d --- /dev/null +++ b/blocks/task5/maps/level5/input_table/40.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | orange | +Level 1 | yellow | purple | green | diff --git a/blocks/task5/maps/level5/input_table/41.txt b/blocks/task5/maps/level5/input_table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4b3b841a3bf735d9111c1fb48dd0e78fb41ee14 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/41.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | red | orange | +Level 1 | blue | green | diff --git a/blocks/task5/maps/level5/input_table/42.txt b/blocks/task5/maps/level5/input_table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea399901b5cfae21300cf198944e40e910dbe0d6 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/42.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | green | +Level 3 | blue | +Level 2 | purple | +Level 1 | yellow | diff --git a/blocks/task5/maps/level5/input_table/43.txt b/blocks/task5/maps/level5/input_table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bbf92a50f586f36a6371f7f332b206e964d1874 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/43.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | purple | +Level 2 | | green | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level5/input_table/44.txt b/blocks/task5/maps/level5/input_table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bacc02bf6b476fb4110337298885312ff0cd741 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/44.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | green | red | +Level 1 | purple | orange | diff --git a/blocks/task5/maps/level5/input_table/45.txt b/blocks/task5/maps/level5/input_table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..fba402c61160be9f5a2bf3bd1b7875bdfefceda1 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/45.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | red | +Level 1 | orange | yellow | blue | diff --git a/blocks/task5/maps/level5/input_table/46.txt b/blocks/task5/maps/level5/input_table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..9396719a74517a4719d31bc18553563aed915b88 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/46.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | green | blue | diff --git a/blocks/task5/maps/level5/input_table/47.txt b/blocks/task5/maps/level5/input_table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6660ba5502f2e8953c97e6adec54da0eb9ddde7 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/47.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | blue | +Level 1 | green | red | yellow | diff --git a/blocks/task5/maps/level5/input_table/48.txt b/blocks/task5/maps/level5/input_table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..506230d399cbc21e0edd7ca687014552c2793e2e --- /dev/null +++ b/blocks/task5/maps/level5/input_table/48.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | yellow | +Level 1 | orange | green | diff --git a/blocks/task5/maps/level5/input_table/49.txt b/blocks/task5/maps/level5/input_table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..e025e17d502148db103a4af5fd1626b31b2a58e5 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/49.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | green | orange | yellow | diff --git a/blocks/task5/maps/level5/input_table/5.txt b/blocks/task5/maps/level5/input_table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c245e592d930ef8c7e87ebc22936bbf2322606a8 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/5.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | blue | +Level 1 | purple | green | diff --git a/blocks/task5/maps/level5/input_table/50.txt b/blocks/task5/maps/level5/input_table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c559ce3d1943b01ba9c65e831dfe20b3e47dc7f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/50.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | orange | +Level 1 | green | red | blue | diff --git a/blocks/task5/maps/level5/input_table/51.txt b/blocks/task5/maps/level5/input_table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..6577f63c63f1cdd901ebbac910ec9a69c8532a7d --- /dev/null +++ b/blocks/task5/maps/level5/input_table/51.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | blue | +Level 3 | orange | +Level 2 | purple | +Level 1 | yellow | diff --git a/blocks/task5/maps/level5/input_table/52.txt b/blocks/task5/maps/level5/input_table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2064e88dc12241464636eb5c5c2243d9e2f426a1 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/52.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | green | +Level 2 | | purple | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level5/input_table/53.txt b/blocks/task5/maps/level5/input_table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..6952c06ec8721e1932874f5665c3e143d159d9f7 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/53.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | orange | +Level 3 | yellow | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task5/maps/level5/input_table/54.txt b/blocks/task5/maps/level5/input_table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..f66194cfb0ba46542c7bd748426c8536b531593d --- /dev/null +++ b/blocks/task5/maps/level5/input_table/54.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | yellow | +Level 1 | blue | purple | red | diff --git a/blocks/task5/maps/level5/input_table/55.txt b/blocks/task5/maps/level5/input_table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fc4e7084c74f5b6dab9157401bb3acc5e2cc13d --- /dev/null +++ b/blocks/task5/maps/level5/input_table/55.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | red | yellow | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level5/input_table/56.txt b/blocks/task5/maps/level5/input_table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cc822a8c30cb952648d7725016add9c98c4ef12 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/56.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | red | +Level 1 | purple | blue | orange | diff --git a/blocks/task5/maps/level5/input_table/57.txt b/blocks/task5/maps/level5/input_table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a93213d395ebc57f11ad57917c1317f4a8afb64 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/57.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | red | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task5/maps/level5/input_table/58.txt b/blocks/task5/maps/level5/input_table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9283207f0828105aab5314aa0adadf0be8a0826 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/58.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | yellow | purple | red | blue | diff --git a/blocks/task5/maps/level5/input_table/59.txt b/blocks/task5/maps/level5/input_table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..7071964ca68c1e366c4225cba2658a953a9d4264 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/59.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | orange | +Level 3 | red | +Level 2 | blue | +Level 1 | green | diff --git a/blocks/task5/maps/level5/input_table/6.txt b/blocks/task5/maps/level5/input_table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3d60b18d3aa510179a12f15dfab7684763fdce7 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/6.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level5/input_table/60.txt b/blocks/task5/maps/level5/input_table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2ad908f605707687907aa3cb46691be5f08f243 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/60.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | blue | purple | +Level 1 | yellow | orange | diff --git a/blocks/task5/maps/level5/input_table/61.txt b/blocks/task5/maps/level5/input_table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..a390159de441e531d679226268c55242cf655d19 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/61.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | green | blue | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level5/input_table/62.txt b/blocks/task5/maps/level5/input_table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..912d75b13975a8e44f46f8f9251370396a99b3ef --- /dev/null +++ b/blocks/task5/maps/level5/input_table/62.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | blue | red | diff --git a/blocks/task5/maps/level5/input_table/63.txt b/blocks/task5/maps/level5/input_table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..301c8565e63e1776ede27d23b2639a64f3e565a6 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/63.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | red | orange | +Level 1 | yellow | green | diff --git a/blocks/task5/maps/level5/input_table/64.txt b/blocks/task5/maps/level5/input_table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7ce613ceb8e759e19edaf75b4bac3c6085f7ec4 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/64.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | blue | +Level 1 | yellow | red | green | diff --git a/blocks/task5/maps/level5/input_table/65.txt b/blocks/task5/maps/level5/input_table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..e88edddf2e2faf5fa76bda8b00fe172b4270dc77 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/65.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | orange | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level5/input_table/66.txt b/blocks/task5/maps/level5/input_table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcaf58ec1a05d177ae6ede0482b7ffe249cff0fa --- /dev/null +++ b/blocks/task5/maps/level5/input_table/66.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | blue | +Level 1 | yellow | green | purple | diff --git a/blocks/task5/maps/level5/input_table/67.txt b/blocks/task5/maps/level5/input_table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..320ddcbe1a6684bdfcee4b6b35aa195ac2bc4765 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/67.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | red | +Level 3 | green | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task5/maps/level5/input_table/68.txt b/blocks/task5/maps/level5/input_table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..95682b55a5705d51a89e3a49b2bb359da5f50f1c --- /dev/null +++ b/blocks/task5/maps/level5/input_table/68.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | red | yellow | +Level 1 | blue | green | diff --git a/blocks/task5/maps/level5/input_table/69.txt b/blocks/task5/maps/level5/input_table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..f187efd9f4daf16acf87c251c02230c310798146 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/69.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | purple | +Level 1 | red | yellow | blue | diff --git a/blocks/task5/maps/level5/input_table/7.txt b/blocks/task5/maps/level5/input_table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..84ddd7fe42cc346da8d11cf6ccd65ff354ae1b06 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/7.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | orange | +Level 1 | red | blue | purple | diff --git a/blocks/task5/maps/level5/input_table/70.txt b/blocks/task5/maps/level5/input_table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..572afdb342ff9a8eb7d3bbc0d1857b09e594ca25 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/70.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | red | +Level 1 | green | yellow | orange | diff --git a/blocks/task5/maps/level5/input_table/71.txt b/blocks/task5/maps/level5/input_table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca73136fcbed5a5b50f66526b0a2b63580a50a77 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/71.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | red | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level5/input_table/72.txt b/blocks/task5/maps/level5/input_table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5625b8e57058ace233f70108e6e620296983110 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/72.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level5/input_table/73.txt b/blocks/task5/maps/level5/input_table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4dbe71c2fed2ab6a1cb218284f72e2f16e74dc0 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/73.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | blue | +Level 1 | purple | yellow | green | diff --git a/blocks/task5/maps/level5/input_table/74.txt b/blocks/task5/maps/level5/input_table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5aed0fe5949bb0c1ba6ae0d232de297807b8273 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/74.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | | red | +Level 1 | purple | yellow | diff --git a/blocks/task5/maps/level5/input_table/75.txt b/blocks/task5/maps/level5/input_table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..e08fe0ac9146ef83f43c00529084317f44276e75 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/75.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | purple | +Level 3 | blue | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task5/maps/level5/input_table/76.txt b/blocks/task5/maps/level5/input_table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a47f9b1933fe946f02c45523b4dc3e85be9e985 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/76.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | blue | +Level 1 | red | orange | green | diff --git a/blocks/task5/maps/level5/input_table/77.txt b/blocks/task5/maps/level5/input_table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3d60b18d3aa510179a12f15dfab7684763fdce7 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/77.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level5/input_table/78.txt b/blocks/task5/maps/level5/input_table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4712a836a552032ad56fe9525f984fc169c1a82 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/78.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | orange | +Level 3 | purple | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task5/maps/level5/input_table/79.txt b/blocks/task5/maps/level5/input_table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ed0f8c9c1ac653c1942f9acd96a557cbd18b8b6 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/79.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | yellow | +Level 3 | blue | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task5/maps/level5/input_table/8.txt b/blocks/task5/maps/level5/input_table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a22481c7caf0a4790f8086f89fe678edd50b7c --- /dev/null +++ b/blocks/task5/maps/level5/input_table/8.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | orange | blue | yellow | diff --git a/blocks/task5/maps/level5/input_table/80.txt b/blocks/task5/maps/level5/input_table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6b7504c81275f265e871b831c11d39eaeba1c25 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/80.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | yellow | +Level 1 | orange | red | purple | diff --git a/blocks/task5/maps/level5/input_table/81.txt b/blocks/task5/maps/level5/input_table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb7d336865946b85e3c480decb011470d3dededd --- /dev/null +++ b/blocks/task5/maps/level5/input_table/81.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level5/input_table/82.txt b/blocks/task5/maps/level5/input_table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..084982cc0a8fd3d7f5d32682281de8c13592f857 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/82.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | purple | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level5/input_table/83.txt b/blocks/task5/maps/level5/input_table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..de5d0356de4a1abeceb39d4a82dc97cdec44df8d --- /dev/null +++ b/blocks/task5/maps/level5/input_table/83.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | orange | +Level 3 | purple | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task5/maps/level5/input_table/84.txt b/blocks/task5/maps/level5/input_table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f118fba3f4f3bb02b553cadb70cc8d670bda9c5 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/84.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | green | +Level 2 | | red | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level5/input_table/85.txt b/blocks/task5/maps/level5/input_table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bafe32afe524a359d9d6f625bf77d942e4861be --- /dev/null +++ b/blocks/task5/maps/level5/input_table/85.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task5/maps/level5/input_table/86.txt b/blocks/task5/maps/level5/input_table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..6df7ab616932c1824f6ac6b3f90a3a56beb38363 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/86.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | purple | blue | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level5/input_table/87.txt b/blocks/task5/maps/level5/input_table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..14e787062a1e960fa9b06e83d985ded670dd9a3f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/87.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | yellow | +Level 2 | | purple | +Level 1 | orange | blue | diff --git a/blocks/task5/maps/level5/input_table/88.txt b/blocks/task5/maps/level5/input_table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9e381384d64edb1165788c57aedf26e2281b02f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/88.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | orange | +Level 1 | red | green | blue | diff --git a/blocks/task5/maps/level5/input_table/89.txt b/blocks/task5/maps/level5/input_table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5c079956a26183c27186e87a629ecafb36f61d5 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/89.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | red | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task5/maps/level5/input_table/9.txt b/blocks/task5/maps/level5/input_table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..167304a915a18e01ec2b7f3916459d0d9030b7e7 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/9.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | red | green | diff --git a/blocks/task5/maps/level5/input_table/90.txt b/blocks/task5/maps/level5/input_table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..cde5833db05de95915e463661de17ad71176454d --- /dev/null +++ b/blocks/task5/maps/level5/input_table/90.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | red | blue | diff --git a/blocks/task5/maps/level5/input_table/91.txt b/blocks/task5/maps/level5/input_table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6480a4d6f330789705ac37e46ac72cc34163e48 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/91.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | green | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level5/input_table/92.txt b/blocks/task5/maps/level5/input_table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..cacf3c0739c62bcf06cf9cd3d0a578d35ffca981 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/92.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | green | purple | +Level 1 | red | blue | diff --git a/blocks/task5/maps/level5/input_table/93.txt b/blocks/task5/maps/level5/input_table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..55446ba6f471b3ea1e390ba68b1337e0b9e9964f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/93.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | orange | +Level 1 | blue | red | diff --git a/blocks/task5/maps/level5/input_table/94.txt b/blocks/task5/maps/level5/input_table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb77cc2a32f0def29b958f94aa2f92dd78710507 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/94.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | green | +Level 1 | red | blue | orange | diff --git a/blocks/task5/maps/level5/input_table/95.txt b/blocks/task5/maps/level5/input_table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f207b00f5dd2fef401b9eedb482a46c823be3c6 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/95.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | red | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level5/input_table/96.txt b/blocks/task5/maps/level5/input_table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c47af56ca8a7844e30428dbd6e81df8b658eec0 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/96.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | yellow | +Level 1 | orange | purple | green | diff --git a/blocks/task5/maps/level5/input_table/97.txt b/blocks/task5/maps/level5/input_table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..63d7cf97a74f12f3a618b7ae5b5dae704af7858f --- /dev/null +++ b/blocks/task5/maps/level5/input_table/97.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | green | red | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level5/input_table/98.txt b/blocks/task5/maps/level5/input_table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7512860fe7d00a836214a75183f78abd093993e --- /dev/null +++ b/blocks/task5/maps/level5/input_table/98.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | purple | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task5/maps/level5/input_table/99.txt b/blocks/task5/maps/level5/input_table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..1afb146f707f6e97c3d869674de5448d1e7d5d58 --- /dev/null +++ b/blocks/task5/maps/level5/input_table/99.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | purple | red | diff --git a/blocks/task5/maps/level5/input_text/0.txt b/blocks/task5/maps/level5/input_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d96fe877ece2e9dd172a3e136064b2f7e1b79bf6 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/0.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, blue block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/1.txt b/blocks/task5/maps/level5/input_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..73d1a24a6f4fa1f76c6a749402df81531b552f24 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/1.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/10.txt b/blocks/task5/maps/level5/input_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..47ffbbfdad18e1f8c0e54d35c9a3bc66d95ebf54 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/10.txt @@ -0,0 +1 @@ +- Stack with yellow block, orange block, blue block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/11.txt b/blocks/task5/maps/level5/input_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..21810505a677ed8351a6b0841a4c488e5e36edd1 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/11.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, blue block, from bottom to top +- Stack with purple block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/12.txt b/blocks/task5/maps/level5/input_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..54276041c43d7a02e8066cee36dad8e3ab9f9abf --- /dev/null +++ b/blocks/task5/maps/level5/input_text/12.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, green block, from bottom to top +- Stack with orange block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/13.txt b/blocks/task5/maps/level5/input_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fe6838e83773ba6ab3ef9f241de6267670055b5 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/13.txt @@ -0,0 +1 @@ +- Stack with red block, yellow block, blue block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/14.txt b/blocks/task5/maps/level5/input_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..7005e6437b7c2f623dfe4e698ecdc15b2f690053 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/14.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, red block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/15.txt b/blocks/task5/maps/level5/input_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e62c515850852a99fc4a7deeb988cbfb0e76693 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/15.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, yellow block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/16.txt b/blocks/task5/maps/level5/input_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..335c7ea5212121488f86a8d211f48ca81f9dad9b --- /dev/null +++ b/blocks/task5/maps/level5/input_text/16.txt @@ -0,0 +1 @@ +- Stack with green block, red block, purple block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/17.txt b/blocks/task5/maps/level5/input_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..b071d7eb0eaa5d877ac9a5eb639ebd5b95d90dfb --- /dev/null +++ b/blocks/task5/maps/level5/input_text/17.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, red block, from bottom to top +- Stack with orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/18.txt b/blocks/task5/maps/level5/input_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb984afcb51211f0b70a6e6eba521922e3ee864e --- /dev/null +++ b/blocks/task5/maps/level5/input_text/18.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/19.txt b/blocks/task5/maps/level5/input_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..daa2224b5c4fc96894efae9a797dfe005892adcf --- /dev/null +++ b/blocks/task5/maps/level5/input_text/19.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with red block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/2.txt b/blocks/task5/maps/level5/input_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed25448edaf9c852707caa10a141848e96047987 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/2.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/20.txt b/blocks/task5/maps/level5/input_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..102bba1c818a6e9ffebf4293ce24d2fc3c2a2f17 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/20.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/21.txt b/blocks/task5/maps/level5/input_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..4016689a11e5298c508afa6225d6f5e14b70963d --- /dev/null +++ b/blocks/task5/maps/level5/input_text/21.txt @@ -0,0 +1 @@ +- Stack with purple block, yellow block, orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/22.txt b/blocks/task5/maps/level5/input_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e3a408f9bd48aecc1add6e7e7c22e8b2091056b --- /dev/null +++ b/blocks/task5/maps/level5/input_text/22.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with red block +- Stack with orange block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/23.txt b/blocks/task5/maps/level5/input_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1d71ca7b71f615c4a6a95d5a6bbad39442770f9 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/23.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with yellow block +- Stack with blue block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/24.txt b/blocks/task5/maps/level5/input_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..3aad323ed05a5e6634f92f5caef1797d0c453a73 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/24.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with blue block +- Stack with green block +- Stack with purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/25.txt b/blocks/task5/maps/level5/input_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..700e2feebae24860de7e97293b3c51f766423746 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/25.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/26.txt b/blocks/task5/maps/level5/input_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd58dd2efb31da48f904c36b245d24c0919a9572 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/26.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, green block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/27.txt b/blocks/task5/maps/level5/input_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..389bc98c43eeb8ec19a18118ef0b6180ea16e11e --- /dev/null +++ b/blocks/task5/maps/level5/input_text/27.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block +- Stack with yellow block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/28.txt b/blocks/task5/maps/level5/input_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c89e191c7a62309c72128c28ca46c80484a1ec4 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/28.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, green block, from bottom to top +- Stack with blue block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/29.txt b/blocks/task5/maps/level5/input_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..337b19e14cb745373de70e314905544f8ddce550 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/29.txt @@ -0,0 +1,2 @@ +- Stack with purple block, blue block, from bottom to top +- Stack with red block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/3.txt b/blocks/task5/maps/level5/input_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e07ba90c5548e6740e4cdcce96229e40b81d68b5 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/3.txt @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with red block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/30.txt b/blocks/task5/maps/level5/input_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..984002c3747ef7b4eba23c23af3c4f6125d8fc6c --- /dev/null +++ b/blocks/task5/maps/level5/input_text/30.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block +- Stack with red block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/31.txt b/blocks/task5/maps/level5/input_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..03074c3fbf269146911f59d9e464e91182217994 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/31.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/32.txt b/blocks/task5/maps/level5/input_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..aac60d603fbd761171e19658488229ea8ae4a715 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/32.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, red block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/33.txt b/blocks/task5/maps/level5/input_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..c836a1f678b4685db304b29d35209da39060ce3f --- /dev/null +++ b/blocks/task5/maps/level5/input_text/33.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/34.txt b/blocks/task5/maps/level5/input_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8f1b53796a84c3233fb368090b4fb0c1d069e3c --- /dev/null +++ b/blocks/task5/maps/level5/input_text/34.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with blue block +- Stack with green block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/35.txt b/blocks/task5/maps/level5/input_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae275cf3ee77342aa12dd6f631a2121149728e60 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/35.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with green block +- Stack with blue block +- Stack with orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/36.txt b/blocks/task5/maps/level5/input_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..89b4a18240c6b796f770873858f03b7d2e3d8655 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/36.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with red block +- Stack with blue block +- Stack with yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/37.txt b/blocks/task5/maps/level5/input_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cab619d9189dda863af93c55ba114b66c4cdac0 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/37.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, blue block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/38.txt b/blocks/task5/maps/level5/input_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdd20c61a3abe16dbc6a7983d08c83f0c3f8e818 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/38.txt @@ -0,0 +1 @@ +- Stack with orange block, yellow block, purple block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/39.txt b/blocks/task5/maps/level5/input_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c2172edcd0c9fa398168326d3f1019e6df8a45c --- /dev/null +++ b/blocks/task5/maps/level5/input_text/39.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with yellow block +- Stack with red block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/4.txt b/blocks/task5/maps/level5/input_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b3ca657f70f7be411db83384514b7d78ca152ca --- /dev/null +++ b/blocks/task5/maps/level5/input_text/4.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/40.txt b/blocks/task5/maps/level5/input_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..912f9ced0e5eb52a30cc939391dc0a1d3cc7dfdc --- /dev/null +++ b/blocks/task5/maps/level5/input_text/40.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block +- Stack with green block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/41.txt b/blocks/task5/maps/level5/input_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe72af225693548067e781121ae0582dcf9030c1 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/41.txt @@ -0,0 +1,2 @@ +- Stack with blue block, red block, from bottom to top +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/42.txt b/blocks/task5/maps/level5/input_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b4c904583d499e5ee60af81ae11f844889f894e --- /dev/null +++ b/blocks/task5/maps/level5/input_text/42.txt @@ -0,0 +1 @@ +- Stack with yellow block, purple block, blue block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/43.txt b/blocks/task5/maps/level5/input_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..4be7fa8d203fc7c59f49bab7520bec70ea06bf27 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/43.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, green block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/44.txt b/blocks/task5/maps/level5/input_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec4fad2fa9c9a905d57fdca085d0cc15a209e109 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/44.txt @@ -0,0 +1,2 @@ +- Stack with purple block, green block, from bottom to top +- Stack with orange block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/45.txt b/blocks/task5/maps/level5/input_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a6f39a17dac5f82aaeaf1101635c73222182691 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/45.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with yellow block +- Stack with blue block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/46.txt b/blocks/task5/maps/level5/input_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..778ea827179247085ad9d6627a03a20840e5ba58 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/46.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, red block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/47.txt b/blocks/task5/maps/level5/input_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec5ad6cf60777ad7d2a5f9576e4e50195e5111d0 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/47.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, purple block, from bottom to top +- Stack with yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/48.txt b/blocks/task5/maps/level5/input_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2169b1de36d3a94465a7e7f7e73c0bba0dfcacf --- /dev/null +++ b/blocks/task5/maps/level5/input_text/48.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with green block, yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/49.txt b/blocks/task5/maps/level5/input_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..34207e77ba9d952ce02ed8c533f15fc15155e9e8 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/49.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with yellow block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/5.txt b/blocks/task5/maps/level5/input_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..55b03d238f40d0f79f9720060aa04c8c495855a8 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/5.txt @@ -0,0 +1,2 @@ +- Stack with purple block, orange block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/50.txt b/blocks/task5/maps/level5/input_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2204410da926c7e511437c5078d86de6825d84b --- /dev/null +++ b/blocks/task5/maps/level5/input_text/50.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block, yellow block, from bottom to top +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/51.txt b/blocks/task5/maps/level5/input_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..92d1d4763821933fc7535a6f3bdcaaede75ba3b0 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/51.txt @@ -0,0 +1 @@ +- Stack with yellow block, purple block, orange block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/52.txt b/blocks/task5/maps/level5/input_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..822238ac57376f81b2b01168c3881c7edf2f2878 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/52.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, purple block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/53.txt b/blocks/task5/maps/level5/input_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ab5151b5f866ef112c9148fe4d0567c98b868e5 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/53.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, yellow block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/54.txt b/blocks/task5/maps/level5/input_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a7bcb64222bdc072d59c1387469d53ccc784a9c --- /dev/null +++ b/blocks/task5/maps/level5/input_text/54.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with purple block, green block, from bottom to top +- Stack with red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/55.txt b/blocks/task5/maps/level5/input_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..48558dfa122ab19f213a940fc3921b3bba66dca1 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/55.txt @@ -0,0 +1,2 @@ +- Stack with green block, red block, from bottom to top +- Stack with orange block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/56.txt b/blocks/task5/maps/level5/input_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..41067091c3c74bac76bf4932a62df6fba03133f5 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/56.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block +- Stack with orange block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/57.txt b/blocks/task5/maps/level5/input_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1d7b123cc18ed1a68bb0adc67175f5298863e57 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/57.txt @@ -0,0 +1 @@ +- Stack with orange block, green block, red block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/58.txt b/blocks/task5/maps/level5/input_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2448141e8c6c883ac4060afe6fc33dea1a5d04b --- /dev/null +++ b/blocks/task5/maps/level5/input_text/58.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with purple block +- Stack with red block +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/59.txt b/blocks/task5/maps/level5/input_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2e4399ed6c8217d774af6c068c48074d663e0b7 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/59.txt @@ -0,0 +1 @@ +- Stack with green block, blue block, red block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/6.txt b/blocks/task5/maps/level5/input_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..fec8e4bb0321af490f0f4b7333c81f80a7ab5a7f --- /dev/null +++ b/blocks/task5/maps/level5/input_text/6.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/60.txt b/blocks/task5/maps/level5/input_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..aaeaa89b3e6dc957e7140572daf7b777a9e46ea6 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/60.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, blue block, from bottom to top +- Stack with orange block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/61.txt b/blocks/task5/maps/level5/input_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8c5d59cd8faaf6c389cc5766a0674899055cf36 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/61.txt @@ -0,0 +1,2 @@ +- Stack with red block, green block, from bottom to top +- Stack with orange block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/62.txt b/blocks/task5/maps/level5/input_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a49cf78b4c016425c2849de3c1c55605eeff73d --- /dev/null +++ b/blocks/task5/maps/level5/input_text/62.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, green block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/63.txt b/blocks/task5/maps/level5/input_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..c52b37a31e678437d66934f876dd5ceb0f76ac94 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/63.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, red block, from bottom to top +- Stack with green block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/64.txt b/blocks/task5/maps/level5/input_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e96b9bbfef9d168b0597928fd939517d9f43818 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/64.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block, purple block, from bottom to top +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/65.txt b/blocks/task5/maps/level5/input_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..eafd0d3fc7f702dae1ddc7094943fb85367c6f55 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/65.txt @@ -0,0 +1 @@ +- Stack with green block, red block, orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/66.txt b/blocks/task5/maps/level5/input_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..67e516d2484f197bbb84550078bdbb2fe80ce647 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/66.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with green block, orange block, from bottom to top +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/67.txt b/blocks/task5/maps/level5/input_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c5b0e0a3ddfef4411a4f95eea8a7efe0305dea9 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/67.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, green block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/68.txt b/blocks/task5/maps/level5/input_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..96e4e30a1c4f1480db34ae127d36e4fb425151f6 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/68.txt @@ -0,0 +1,2 @@ +- Stack with blue block, red block, from bottom to top +- Stack with green block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/69.txt b/blocks/task5/maps/level5/input_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0fd1c47daae2f30937fcf4cd459cf2e905f5474 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/69.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with blue block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/7.txt b/blocks/task5/maps/level5/input_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..6624df254b59e6525e0a358b76e07ce99302f3d6 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/7.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with blue block +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/70.txt b/blocks/task5/maps/level5/input_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b7858174f84aac19bb3410415d01a3e30583bcc --- /dev/null +++ b/blocks/task5/maps/level5/input_text/70.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with yellow block +- Stack with orange block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/71.txt b/blocks/task5/maps/level5/input_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..7903b6da2d37537a0606f9fbe362031476efa2bf --- /dev/null +++ b/blocks/task5/maps/level5/input_text/71.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/72.txt b/blocks/task5/maps/level5/input_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f82c8ed2c3c12eaa35700d15a7b5d675177f76e --- /dev/null +++ b/blocks/task5/maps/level5/input_text/72.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/73.txt b/blocks/task5/maps/level5/input_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..f429f7184411b9ade194c9d369b1b66b84248af3 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/73.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with yellow block, orange block, from bottom to top +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/74.txt b/blocks/task5/maps/level5/input_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..bea7c9c806d592477c2a8ec18166f8cdcdff6bf5 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/74.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/75.txt b/blocks/task5/maps/level5/input_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..c59d709bbf2712aae4c24d32681b19aa42ce9ee0 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/75.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, blue block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/76.txt b/blocks/task5/maps/level5/input_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..e17455558cfa8785bfe6c5b2606ccaaa6c2b234f --- /dev/null +++ b/blocks/task5/maps/level5/input_text/76.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with orange block, purple block, from bottom to top +- Stack with green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/77.txt b/blocks/task5/maps/level5/input_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..fec8e4bb0321af490f0f4b7333c81f80a7ab5a7f --- /dev/null +++ b/blocks/task5/maps/level5/input_text/77.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/78.txt b/blocks/task5/maps/level5/input_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..29276853206ba86d26fd4fa0271772bd20742a0f --- /dev/null +++ b/blocks/task5/maps/level5/input_text/78.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, purple block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/79.txt b/blocks/task5/maps/level5/input_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf5838564f5b96f378d2a20cde5a2e2ab372c0b1 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/79.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, blue block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/8.txt b/blocks/task5/maps/level5/input_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b3ca657f70f7be411db83384514b7d78ca152ca --- /dev/null +++ b/blocks/task5/maps/level5/input_text/8.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with blue block +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/80.txt b/blocks/task5/maps/level5/input_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..94ec40afea7cf1419e76be0b65adc097b1f9678e --- /dev/null +++ b/blocks/task5/maps/level5/input_text/80.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with red block, green block, from bottom to top +- Stack with purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/81.txt b/blocks/task5/maps/level5/input_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2549a6509cba0b276743ffb7198127b8b3d6d5f --- /dev/null +++ b/blocks/task5/maps/level5/input_text/81.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, purple block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/82.txt b/blocks/task5/maps/level5/input_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f9d6eba5a68738b19f010345f9c77e363ccbf8a --- /dev/null +++ b/blocks/task5/maps/level5/input_text/82.txt @@ -0,0 +1,2 @@ +- Stack with blue block, red block, from bottom to top +- Stack with yellow block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/83.txt b/blocks/task5/maps/level5/input_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..1486379c96228ee63f2eb449970c641f7f829c83 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/83.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, purple block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/84.txt b/blocks/task5/maps/level5/input_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cd133cb490fa713d0f3dc1cf0e9da5f41f041e5 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/84.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with purple block, red block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/85.txt b/blocks/task5/maps/level5/input_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc561888c595ace9a76aa8d6aa2fda5dbe8b4ae3 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/85.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/86.txt b/blocks/task5/maps/level5/input_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..164ecb1edbd8237b57e939f69e3e9b8138f65e45 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/86.txt @@ -0,0 +1,2 @@ +- Stack with green block, purple block, from bottom to top +- Stack with orange block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/87.txt b/blocks/task5/maps/level5/input_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f2e6cee28b42d9b7b7d76dfbe643d5b9efaf505 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/87.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, purple block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/88.txt b/blocks/task5/maps/level5/input_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..31bc2131bb6987b2d16e44c169f470bd4935c834 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/88.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with green block +- Stack with blue block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/89.txt b/blocks/task5/maps/level5/input_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..30bd06e4f3f016c2bdd1b6b4019dd8882987146a --- /dev/null +++ b/blocks/task5/maps/level5/input_text/89.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, red block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/9.txt b/blocks/task5/maps/level5/input_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bd4f3d7a2ab01efd6a8b1fffd6f9a9a418c0027 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/9.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, yellow block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/90.txt b/blocks/task5/maps/level5/input_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1ab7abcab3362e7f347071c5f5c6471bea3fafd --- /dev/null +++ b/blocks/task5/maps/level5/input_text/90.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with blue block, yellow block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/91.txt b/blocks/task5/maps/level5/input_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3a4a40cb0a5a6778e5d078f6ce2e7b4cbcb7b3 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/91.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/92.txt b/blocks/task5/maps/level5/input_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..536b15866b3f3978b8245da06a4c5b83098edbc1 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/92.txt @@ -0,0 +1,2 @@ +- Stack with red block, green block, from bottom to top +- Stack with blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/93.txt b/blocks/task5/maps/level5/input_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e18b6040e3f2171dc098952d2f3fa868c15633 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/93.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with red block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/94.txt b/blocks/task5/maps/level5/input_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..17b7c70a49ca830ac76df10b08f2a6a89cf90bbc --- /dev/null +++ b/blocks/task5/maps/level5/input_text/94.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with blue block, purple block, from bottom to top +- Stack with orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/95.txt b/blocks/task5/maps/level5/input_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..024359666b3aef5516a1d8a5deb64afb1a53c0d3 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/95.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, red block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/96.txt b/blocks/task5/maps/level5/input_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..665d1953b571289dc734ee1092d25aee8b7f846d --- /dev/null +++ b/blocks/task5/maps/level5/input_text/96.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with purple block +- Stack with green block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/97.txt b/blocks/task5/maps/level5/input_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..8124b5b10292013ba205b5cb032e964f0ce5797f --- /dev/null +++ b/blocks/task5/maps/level5/input_text/97.txt @@ -0,0 +1,2 @@ +- Stack with blue block, green block, from bottom to top +- Stack with purple block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/98.txt b/blocks/task5/maps/level5/input_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2915efc369ea4c186d90d87afbfa7bd93cebbd3 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/98.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, purple block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/input_text/99.txt b/blocks/task5/maps/level5/input_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ba78589d82d7fc226d90910f73b4f7832d60506 --- /dev/null +++ b/blocks/task5/maps/level5/input_text/99.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_img/0.jpg b/blocks/task5/maps/level5/output_img/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a52eb63215c539b439caf4d7f590ff170eed5905 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:520f412d14b8b5aa4ea3f6c080249c9289af373908b9b95a3ebce10714de408d +size 10406 diff --git a/blocks/task5/maps/level5/output_img/1.jpg b/blocks/task5/maps/level5/output_img/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7b2f0233ddf1bf56dcb5503fd8ca860ebefe786 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54bab2e9e6205edff428b043c0420236eff4b253fb4232adcf92147e3926244 +size 11040 diff --git a/blocks/task5/maps/level5/output_img/10.jpg b/blocks/task5/maps/level5/output_img/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8b7d07f812aec8ac3b479454e26abd9b1b3c213 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849547938dce647e8e4568e4e611e30d0f03f27b09956271e7492a39b70e5f33 +size 11387 diff --git a/blocks/task5/maps/level5/output_img/11.jpg b/blocks/task5/maps/level5/output_img/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..987553fdd0025624ecc64941282cbde0942a81a2 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd1a09dd2116385202d1146c15802db80a6de8d732d7fc1e3f60bddbc269447 +size 10666 diff --git a/blocks/task5/maps/level5/output_img/12.jpg b/blocks/task5/maps/level5/output_img/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fa239ec56f010a7a19faff63a33b24a19e6d88e --- /dev/null +++ b/blocks/task5/maps/level5/output_img/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d5a742326075b548b32e65853d21fd986aeae78ee76b372b5200ae7d83c397 +size 9983 diff --git a/blocks/task5/maps/level5/output_img/13.jpg b/blocks/task5/maps/level5/output_img/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..104e072ee4d402d0badaa8237b9fb6910591de75 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b045d1218473291e2b411d19297baf018b40ec891d528cfe1ff7ccb7c06941cf +size 10374 diff --git a/blocks/task5/maps/level5/output_img/14.jpg b/blocks/task5/maps/level5/output_img/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b7020d688b9c6d2945c96d8d9ca1160c948cc8c --- /dev/null +++ b/blocks/task5/maps/level5/output_img/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e62f4716b8604e25e34f27c374f2418895b300f4be96e0c76a95588641a976 +size 10649 diff --git a/blocks/task5/maps/level5/output_img/15.jpg b/blocks/task5/maps/level5/output_img/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a779278675de7bbb36a2a883da0c47e4a61882e2 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314f15cf5a7d82c1e47b385f6469b6c88f1e80f19ebe705cd9e699791b5c8331 +size 10632 diff --git a/blocks/task5/maps/level5/output_img/16.jpg b/blocks/task5/maps/level5/output_img/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e77cfde358957b771edce339d45cdb4f8a0b6d0 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e63241f0bbf33b6170efb029facda9cc79c8519c6ba39e93299a86439d6b511 +size 10726 diff --git a/blocks/task5/maps/level5/output_img/17.jpg b/blocks/task5/maps/level5/output_img/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd808555a8556ea0cb6d4eedc4c48be0bf63ce62 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b6511cc10e32b45dad93719bc42316e32699d37953f4fbd9910582cc47377d +size 9910 diff --git a/blocks/task5/maps/level5/output_img/18.jpg b/blocks/task5/maps/level5/output_img/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b20667bd7559b3ae6e1fa1ec5ac6173cfaf1c869 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a10f920840080a9d45c328d841c01e22164de7c1018da325d968ef7b3ac6be72 +size 11654 diff --git a/blocks/task5/maps/level5/output_img/19.jpg b/blocks/task5/maps/level5/output_img/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a03cf697ba7c5fcee9770052ffaf6cf67894e0f --- /dev/null +++ b/blocks/task5/maps/level5/output_img/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:059d0f730ac7c62ec051416af8cb11c9c6add3cd9cd04010475ab4fd88d16419 +size 10474 diff --git a/blocks/task5/maps/level5/output_img/2.jpg b/blocks/task5/maps/level5/output_img/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5ad94f7b8921463b8d9482e0b74cc401f63778c --- /dev/null +++ b/blocks/task5/maps/level5/output_img/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:328c7480713c6a007bf6b17efe69bb89fb7b405bf567c9bf277593cf4780807f +size 9999 diff --git a/blocks/task5/maps/level5/output_img/20.jpg b/blocks/task5/maps/level5/output_img/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4879bb6ad545c65a4aaa44dd3aa960b0e7c766e --- /dev/null +++ b/blocks/task5/maps/level5/output_img/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330c1039861efc8ef89e57757b0ec7c2e4684a3d98a9a88652077092e5831f20 +size 10479 diff --git a/blocks/task5/maps/level5/output_img/21.jpg b/blocks/task5/maps/level5/output_img/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7666c03760c21413976e0855bc6b55f6804ccd2e --- /dev/null +++ b/blocks/task5/maps/level5/output_img/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a8993beec44dad57eda0264095ebc93bd4abc5b7194c47e1d7772f840c413c +size 10652 diff --git a/blocks/task5/maps/level5/output_img/22.jpg b/blocks/task5/maps/level5/output_img/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06ab8b2bb28c5f47343e901e8c065dd1dd8b256d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3ee1735542b0ce12b1b27f084a0074f266f7d943b74f422b0361dfbd07a188 +size 9929 diff --git a/blocks/task5/maps/level5/output_img/23.jpg b/blocks/task5/maps/level5/output_img/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f98a1b128d8769b567dc1f05cd169a5c19cbcf14 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a90e96e65ed4c660d367d894c6aafc072e117ca6c21313dc8596bfdf9962c5b3 +size 9524 diff --git a/blocks/task5/maps/level5/output_img/24.jpg b/blocks/task5/maps/level5/output_img/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70a4800c14d77d9ceefd2774c95f61d8bac266a3 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb345dd9128984163614b819c1d63977a1d8373e5380d8ba29a84f66b0a2adf +size 9915 diff --git a/blocks/task5/maps/level5/output_img/25.jpg b/blocks/task5/maps/level5/output_img/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0302289f5721a4d5739e046deecba1692df18139 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f2d8ed7a6ebaa3cfc7e3ee063fce1475d104afbe99b0fd253bfe9d618c189d +size 10087 diff --git a/blocks/task5/maps/level5/output_img/26.jpg b/blocks/task5/maps/level5/output_img/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..550e4ef7731b499926388e817aee50ccc7f3646d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff444f7cb36e632a9a36d2eab39a95c210f682c91de42d0eb1747f068a3e4a74 +size 10920 diff --git a/blocks/task5/maps/level5/output_img/27.jpg b/blocks/task5/maps/level5/output_img/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edb16624ff98cc8ae96e8c75da0e51b0bd56ca6a --- /dev/null +++ b/blocks/task5/maps/level5/output_img/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101317467705a589f16ae0336ddd3c3467901e8634befe913e0a712e853cc24d +size 9825 diff --git a/blocks/task5/maps/level5/output_img/28.jpg b/blocks/task5/maps/level5/output_img/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d08711f3c2d5d12a08279fb73e96ff19497ae122 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368bca8ad107f476524714f1f7d8523f8bbe80a4cba0c6b012258ca8bc86c31a +size 10198 diff --git a/blocks/task5/maps/level5/output_img/29.jpg b/blocks/task5/maps/level5/output_img/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4381270bb9f5afa60e3e6ff2add527e0b89d4a5f --- /dev/null +++ b/blocks/task5/maps/level5/output_img/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f974a167f0b70d187add9aab849bddc16a368a366443e453ebbade0b8f493b0 +size 11357 diff --git a/blocks/task5/maps/level5/output_img/3.jpg b/blocks/task5/maps/level5/output_img/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f089be25f67b0dd038a0bb6a7d0f64c241435ee8 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85660818801af7b07e1b7c110cd3eb6df904073c2ab844203a86490498cd364c +size 11583 diff --git a/blocks/task5/maps/level5/output_img/30.jpg b/blocks/task5/maps/level5/output_img/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4be091e35b961f799e06e182c5b49bf936a2b205 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e909bcab40a566cc6b6dd894c86fd52705ed21929b942c4a6f57c679c41880 +size 10994 diff --git a/blocks/task5/maps/level5/output_img/31.jpg b/blocks/task5/maps/level5/output_img/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3aa270dd712d7a98ea3aa4e7136ce7990131e4d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c533eb1d22ee19415545c3b03c8adcb7f3beece8a9e295da392782ed90841172 +size 11949 diff --git a/blocks/task5/maps/level5/output_img/32.jpg b/blocks/task5/maps/level5/output_img/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a1a92dc64f2bcf879324e2d7cb1db4afe0d47bf --- /dev/null +++ b/blocks/task5/maps/level5/output_img/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9e1e144e42cf2b7fde940b6b42c53086f23b3567be04e360bdfd5e03f30077 +size 10258 diff --git a/blocks/task5/maps/level5/output_img/33.jpg b/blocks/task5/maps/level5/output_img/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b29350fdc7b2b95c328fdd1e1d8e092a74d9af87 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754f6a900ec0508616d78f3626f57141a9c983a1ee9766b2e849f4abe29f362e +size 11582 diff --git a/blocks/task5/maps/level5/output_img/34.jpg b/blocks/task5/maps/level5/output_img/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc65cd634ba132ee07fa7c494023d03867cff533 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9196a0a75e7286db0bf372fe601b0beaae42b5badd1ba15fd44bae2c723cc4 +size 10575 diff --git a/blocks/task5/maps/level5/output_img/35.jpg b/blocks/task5/maps/level5/output_img/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e140a7d82ee5716dd556f0859746680db6cf3e42 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90a7eb986de2948f8db9096ded8a00965b0d70e1af2a936d2d31c3abfefb18d +size 9749 diff --git a/blocks/task5/maps/level5/output_img/36.jpg b/blocks/task5/maps/level5/output_img/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3903667df940b8a4aecf4f2f77291acc8c1c3f97 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d4b481ddb94b6f1b332ebe58ef1a7b60ef3c33a748835112d5965b9a7fe613 +size 9786 diff --git a/blocks/task5/maps/level5/output_img/37.jpg b/blocks/task5/maps/level5/output_img/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e81b62b24974081ade76e38668c380ea88692e5 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bd6b43d8e2c67a3830379f6a771b75dbee9229de92499e34b0af2d6bd97792 +size 11102 diff --git a/blocks/task5/maps/level5/output_img/38.jpg b/blocks/task5/maps/level5/output_img/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0522d74fa3d1d3699ac7892f98bcb3873d5c9b74 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba489f24b3dbd19da82ce5e02ec5c17d693f0fa49f3ac2450b9c0d3eda022c8 +size 11418 diff --git a/blocks/task5/maps/level5/output_img/39.jpg b/blocks/task5/maps/level5/output_img/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..776e9d9edeafccbb6c3f38d71436edef889f81a6 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca1a0153b73c1b9a26681ed3c21757bf637dc15dad5c1c3ca9277430adce2f7 +size 9865 diff --git a/blocks/task5/maps/level5/output_img/4.jpg b/blocks/task5/maps/level5/output_img/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84bd901daa4417b9a0a3a41af61f9cbc58e918db --- /dev/null +++ b/blocks/task5/maps/level5/output_img/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6ef6f21ddcec1b04edd912a9e24a7a80f2bdb60307bd03d30eb6e2b695d00e +size 10395 diff --git a/blocks/task5/maps/level5/output_img/40.jpg b/blocks/task5/maps/level5/output_img/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98cdb1faec45a3756151959bb422686b4f60aff9 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3864864315a3e68e788d9dbe49cffd1d4c24ed6d946ea5b484b509439a8d71c +size 9969 diff --git a/blocks/task5/maps/level5/output_img/41.jpg b/blocks/task5/maps/level5/output_img/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d7609dabf14e5ba0d524b3d0fc9405005498d6d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7959ed989c97bb97aac732ed687fe1c1e87f3fa8c012e0c538e296405f82c63 +size 11046 diff --git a/blocks/task5/maps/level5/output_img/42.jpg b/blocks/task5/maps/level5/output_img/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9583bd1f9b982616cb3ed838ca9ba8454dc2377c --- /dev/null +++ b/blocks/task5/maps/level5/output_img/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2999df580a582f5733473a723388338a4b3444d670fbb8e2205de37b63b9becb +size 10910 diff --git a/blocks/task5/maps/level5/output_img/43.jpg b/blocks/task5/maps/level5/output_img/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..766b4e9e2971a3fa718c10eace3543dce166c160 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c502f8d9626ef6c10790791eeb8c2b6225395d29eede182ee97055a4754c6be +size 10490 diff --git a/blocks/task5/maps/level5/output_img/44.jpg b/blocks/task5/maps/level5/output_img/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbea4908f48bb9414dccca877ae8a8cbf28292ac --- /dev/null +++ b/blocks/task5/maps/level5/output_img/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f1c8c2a70b45540c990a1ba6f02ec32c393614628fe224f1972f511b0d6bef +size 10807 diff --git a/blocks/task5/maps/level5/output_img/45.jpg b/blocks/task5/maps/level5/output_img/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1b5a770e59ccde71ed58e6b732214b83a9b6891 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfa9fe46038f4bc889a7642d0e497165407864da5d3abb6d8e1dca1e7fb6a257 +size 12822 diff --git a/blocks/task5/maps/level5/output_img/46.jpg b/blocks/task5/maps/level5/output_img/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a6da141dc47c01ac607c864da70ad73534569b5 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21496791850be39e0c06ef6d5946e193c0addb1a22d8a14ce809e27a68d1e9c +size 10705 diff --git a/blocks/task5/maps/level5/output_img/47.jpg b/blocks/task5/maps/level5/output_img/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5518e61902bb648441227fe9b642b1cc12e3cf4d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20ab68deaf66e73a356c63417cbe6a118fbf7110a6d0006fec6915088b1b6a6 +size 9240 diff --git a/blocks/task5/maps/level5/output_img/48.jpg b/blocks/task5/maps/level5/output_img/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..903131e5194fd512e485274f50e3279f4ff8f279 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5e5db5aface335658adf314070430ec21b50db17f7d34cce9489f4ff69fd90 +size 11425 diff --git a/blocks/task5/maps/level5/output_img/49.jpg b/blocks/task5/maps/level5/output_img/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..193dfbb74bb0869cab0fc5c9c4709c05b0dd5d08 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42cb3873074cefd8f476e262d7f754e91e20291a38bca62cdaef618a1ca0066 +size 10375 diff --git a/blocks/task5/maps/level5/output_img/5.jpg b/blocks/task5/maps/level5/output_img/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fd62d7f93127e30b84f580131d4e522e3b09997 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c542a208c425e636e0caa28f259e893c39c00a6af7a8c54942d78eb08a0380f +size 10018 diff --git a/blocks/task5/maps/level5/output_img/50.jpg b/blocks/task5/maps/level5/output_img/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..327f4b906bf9673bb59581e43a3f6a74c752468d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0071619489e8726937b986843e10b47879247aca96b5a167a38639b95019cbfd +size 10960 diff --git a/blocks/task5/maps/level5/output_img/51.jpg b/blocks/task5/maps/level5/output_img/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49e39fcaaf16e634a2d96e7f5aad6f17e5e52b12 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6d60fbd0782cf145b58191a410ac7ed8b74121fa0d6d193ae7dce582ad46f2 +size 10611 diff --git a/blocks/task5/maps/level5/output_img/52.jpg b/blocks/task5/maps/level5/output_img/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a54237a6b617e33e3c109dff4e0edd6c21401e9c --- /dev/null +++ b/blocks/task5/maps/level5/output_img/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b854c706a203e087a1545ad841a39a462d68de7c7a8d669de1d8f0f9dc8191b6 +size 11385 diff --git a/blocks/task5/maps/level5/output_img/53.jpg b/blocks/task5/maps/level5/output_img/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a755f867e033656a2954018b9ac7e2fdccd8e784 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020d9197632ba9fa4c2e5e075f994b5b26beac0b7ab3511bf4dcebc0e6e15c6c +size 11221 diff --git a/blocks/task5/maps/level5/output_img/54.jpg b/blocks/task5/maps/level5/output_img/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d305d5c1bce45c86026b0b3240a58333ffaa262d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7142fb72e20baada1c4155ebcc0cd0d051933e0dc0301b52bf8a2cf90dea65a2 +size 10294 diff --git a/blocks/task5/maps/level5/output_img/55.jpg b/blocks/task5/maps/level5/output_img/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cb3d02e7d01376cd7dc931853f84a800eace5c0 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29fd236787ad5fd0886ef5ae3c15bae6b2408ad16267e675076da81bcd2ae0d8 +size 10120 diff --git a/blocks/task5/maps/level5/output_img/56.jpg b/blocks/task5/maps/level5/output_img/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5aad5a2f364f572d60312d1cf98cbeeb04a48f0 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a91c168e8e396c62a93037b59530dd7b522c8e584784e5e4d745ca6b435663d +size 9872 diff --git a/blocks/task5/maps/level5/output_img/57.jpg b/blocks/task5/maps/level5/output_img/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d844e7e2e49cb49e014e55fd4c86349ef82875d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2a28dfda823f2bca3742d6e72e97428dc5279741e5ed8462cfa7e82f4153cb +size 10761 diff --git a/blocks/task5/maps/level5/output_img/58.jpg b/blocks/task5/maps/level5/output_img/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..275d3fbc08ba44f43d8cc7a49474a4915c228530 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c69caf3aceef01b8d9999fa9e0981e520c1a7ad5022b6d4cbc3f1f5a9fb1519 +size 9466 diff --git a/blocks/task5/maps/level5/output_img/59.jpg b/blocks/task5/maps/level5/output_img/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f81116c754943d32e432ed01e0857e6d4544f646 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89087b87343a8c6277b763789f8c43c1be4117ea83b752de396161c1c25c8b23 +size 11458 diff --git a/blocks/task5/maps/level5/output_img/6.jpg b/blocks/task5/maps/level5/output_img/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..448c33252209483c091d7b2983e64ffa6eda621e --- /dev/null +++ b/blocks/task5/maps/level5/output_img/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65c22341282df22e3c3cf13159ce54ecb2dab581fadd14f7de367753a1dac70 +size 10316 diff --git a/blocks/task5/maps/level5/output_img/60.jpg b/blocks/task5/maps/level5/output_img/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47d7a098117ebf4eafafa6cc35a70e7927461c77 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef08f34d384a64e1e5a3b42d23a170f01de981fbbd5ac527577ceb51239b7fc +size 10262 diff --git a/blocks/task5/maps/level5/output_img/61.jpg b/blocks/task5/maps/level5/output_img/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..736b4332e1709a75589ce6ccb3ca88f4d3772098 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b35cd447670b8dd2563bb5e7f865d473627d46597974328ea0597e10f3f4a74 +size 10670 diff --git a/blocks/task5/maps/level5/output_img/62.jpg b/blocks/task5/maps/level5/output_img/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94ba87c8e1db11204b3375eefd3ea163b07ee9f6 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c520a8865709119a2d30314da1d0f267856da2a75a1703a48e665b4fdd90cc4 +size 11382 diff --git a/blocks/task5/maps/level5/output_img/63.jpg b/blocks/task5/maps/level5/output_img/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49feb44babb822efe7e3415bc679d33f8baa0df4 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd29f5f1364c6738a4bdccd45f3cf455e57aa45bc1d80088ce8ac50cd45c4d7 +size 9867 diff --git a/blocks/task5/maps/level5/output_img/64.jpg b/blocks/task5/maps/level5/output_img/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2273dccfa95b91a8e197d79bb5a97fbe186eca5a --- /dev/null +++ b/blocks/task5/maps/level5/output_img/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20cf449e8dcf6a651af9251c6c99073aa8cc0a5679d31ec16d4565068f5f2f0 +size 10287 diff --git a/blocks/task5/maps/level5/output_img/65.jpg b/blocks/task5/maps/level5/output_img/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..534c59ea509aa906b6792b791ea3917707453d36 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505a393eb5b2688449b77aec71f967aa244b0cafc1e25da1d9298cd2020e47fb +size 10934 diff --git a/blocks/task5/maps/level5/output_img/66.jpg b/blocks/task5/maps/level5/output_img/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b07a33ac2e53eccef2a158464b08de37654605ae --- /dev/null +++ b/blocks/task5/maps/level5/output_img/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c72ed823024563958c30cac28a1950040b4cf91e51862ade9ed4fc1567005e +size 9568 diff --git a/blocks/task5/maps/level5/output_img/67.jpg b/blocks/task5/maps/level5/output_img/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16b7294927a189a5e55ebf0b9410d689123448b0 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4495e95a97bf73c2496598f403e81e2d513847a715e5d4f9cb42e14b2d97f092 +size 10180 diff --git a/blocks/task5/maps/level5/output_img/68.jpg b/blocks/task5/maps/level5/output_img/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c71c9c974aa6b816222b36bd20355c2e93b5840 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab495c86237ff29a96087ce7decd7c7a8e47aad9ab812ac30daf8e759d9b4ba +size 10528 diff --git a/blocks/task5/maps/level5/output_img/69.jpg b/blocks/task5/maps/level5/output_img/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8694ae724f15121eb752ba659738e1864b698cb5 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2c2fdf1540e175bda050f768bc654e2218aeab0ee37d26212e32570c53077c +size 10832 diff --git a/blocks/task5/maps/level5/output_img/7.jpg b/blocks/task5/maps/level5/output_img/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8efeb98d30f1f4af369e8ae62c05cdf689cf3b73 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5de6cc94ac986b748d6d642c8dbf9d06f9bc1fba210b85ec80c1d01c0383ea7 +size 11052 diff --git a/blocks/task5/maps/level5/output_img/70.jpg b/blocks/task5/maps/level5/output_img/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39f8aab7303aecd64777dbb58d309e38bcd2e9c9 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115e77e50291930f5c332d3d9f409e0a8e33fee687588e21cac8a626b5f14242 +size 10694 diff --git a/blocks/task5/maps/level5/output_img/71.jpg b/blocks/task5/maps/level5/output_img/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77136668e2b7f1592c88cb62a7fa671eef122b10 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540174cce55047b832b4b3cc2329e5f5e4ec1d22b109098ad246732bcde36f8e +size 8913 diff --git a/blocks/task5/maps/level5/output_img/72.jpg b/blocks/task5/maps/level5/output_img/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3943a056b124f94414192a2ed6f088701827b721 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df3080f9db6daaa55e6bb6c6508d786b82e8c3b8f488268953dacda4a5b81ac9 +size 9367 diff --git a/blocks/task5/maps/level5/output_img/73.jpg b/blocks/task5/maps/level5/output_img/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b5c6b0f04d5030bc37e2bb576a2315099d9a602 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95ade7a5ac908246caab46fef23905c31f9f1f923806761cccf7fafca66c511d +size 12206 diff --git a/blocks/task5/maps/level5/output_img/74.jpg b/blocks/task5/maps/level5/output_img/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06d432320e2f27acb0a256fbf91593df632e89c2 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2735b7aca894127087c244a7ecdf7df521e3314c54a8b2a406e4b3d5292f92f +size 9340 diff --git a/blocks/task5/maps/level5/output_img/75.jpg b/blocks/task5/maps/level5/output_img/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99342196629f2865d6b6baf73d8e1541870ccdf9 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84fc8c99e1a412279d6806f5b4d97e97b98d1100bc995006cada8765deab15c0 +size 10965 diff --git a/blocks/task5/maps/level5/output_img/76.jpg b/blocks/task5/maps/level5/output_img/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e475fd17b8258eea8f01707feda1cc1d6a81b398 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e923afefca3e80e6b25b024ef43a15296a38ff1b03b51950614a921b568f17 +size 9982 diff --git a/blocks/task5/maps/level5/output_img/77.jpg b/blocks/task5/maps/level5/output_img/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab79c592b73f4047200808e7d8a9d52e38589ead --- /dev/null +++ b/blocks/task5/maps/level5/output_img/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69773ee7220d8f527680baf04c46fb99ef61a3830fcd329db7b5b4298f30ff04 +size 10401 diff --git a/blocks/task5/maps/level5/output_img/78.jpg b/blocks/task5/maps/level5/output_img/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d011b4fc2b20f9d2b871d723b1663e994cbcb05b --- /dev/null +++ b/blocks/task5/maps/level5/output_img/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c84ca1b00f61568eb4a5d03d1a300cb4fa9d5683d6bc29514f12dbb8dfdbf54a +size 11651 diff --git a/blocks/task5/maps/level5/output_img/79.jpg b/blocks/task5/maps/level5/output_img/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eafdb62b7f52a8adbddf5faa9c536994e6bb0069 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f842866a7834a51f480c6dd99c6f70cb73c88eec62b58765bf63c1a7003366ab +size 10838 diff --git a/blocks/task5/maps/level5/output_img/8.jpg b/blocks/task5/maps/level5/output_img/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69b2e165185fe09fdda127798aa5baeb943f6a8f --- /dev/null +++ b/blocks/task5/maps/level5/output_img/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00162a2cff6d8092aba35885a07cfa52babb8b0e5eff708e3be15b1a2ddda98 +size 10569 diff --git a/blocks/task5/maps/level5/output_img/80.jpg b/blocks/task5/maps/level5/output_img/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..484817240e202abee84f9b406caa3256f5575639 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477858703fed690b8b417a8f58a3ad5ca9c4ff7ae3908be51cbe38eb4e29e057 +size 11492 diff --git a/blocks/task5/maps/level5/output_img/81.jpg b/blocks/task5/maps/level5/output_img/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..394dac291bcce32827f4e05aa69bdda8edb639f9 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc07e3161f3b11773e2047d6d6cd27db010af66e5b619b13e395c962752437a0 +size 10730 diff --git a/blocks/task5/maps/level5/output_img/82.jpg b/blocks/task5/maps/level5/output_img/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebeea638104b03a07d64af29dd09d2f917e45e50 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:badaae49ae5f4bde444679f311de27d8c4c5570e5e6fc0a61a174720784197e3 +size 10185 diff --git a/blocks/task5/maps/level5/output_img/83.jpg b/blocks/task5/maps/level5/output_img/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..117075ebc312609bc0d5d1bf38721eaaa6fb3df8 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd13800ae74e36733f2bffe9eac6efae4581078331d83da025eef6584729e33 +size 11045 diff --git a/blocks/task5/maps/level5/output_img/84.jpg b/blocks/task5/maps/level5/output_img/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..245c0b428142086052319783b048044e8d1304ea --- /dev/null +++ b/blocks/task5/maps/level5/output_img/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e975ad3b64a5661c36c7db0c5ca304c32ac2a2ceda6d537a62d7f54a0bfca66b +size 10490 diff --git a/blocks/task5/maps/level5/output_img/85.jpg b/blocks/task5/maps/level5/output_img/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e68bcfa825b7b7149fa81d9b191162f518cfb9f --- /dev/null +++ b/blocks/task5/maps/level5/output_img/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7478ab24144d156a3b7412761a1368070e4ea57364c4fff23303bb95efd3442 +size 11992 diff --git a/blocks/task5/maps/level5/output_img/86.jpg b/blocks/task5/maps/level5/output_img/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad61f3d2789e55ea31952a5ac5415c3767b858ba --- /dev/null +++ b/blocks/task5/maps/level5/output_img/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88459761793d9979318342c6d210f728179caea52ceeccbf7c282edd368c458f +size 10948 diff --git a/blocks/task5/maps/level5/output_img/87.jpg b/blocks/task5/maps/level5/output_img/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea0336e0de5465d31888ee61416a2471afc0f68f --- /dev/null +++ b/blocks/task5/maps/level5/output_img/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a091624af5180ddbcb612aeaa8c2602f45dc81bb3e5296958a0a2fb06eb9891d +size 11193 diff --git a/blocks/task5/maps/level5/output_img/88.jpg b/blocks/task5/maps/level5/output_img/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0ae97416bb17df1c39d02aefa3c70942aa6c8d7 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f4da09af8213bd3a3c3d53ceb2b1006730324ae9c9f14c03b295f497bbb5b7 +size 9847 diff --git a/blocks/task5/maps/level5/output_img/89.jpg b/blocks/task5/maps/level5/output_img/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab8c7ff3c47c72473237f2b4be77b98aee934a5f --- /dev/null +++ b/blocks/task5/maps/level5/output_img/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5252790a32fdb656f001eb33ba65b5a9176da143b63671ed90ecbdac7b78305e +size 10830 diff --git a/blocks/task5/maps/level5/output_img/9.jpg b/blocks/task5/maps/level5/output_img/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14db29c4bc656efcd044ab811395a445ec53309b --- /dev/null +++ b/blocks/task5/maps/level5/output_img/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4a487b71062648e48248a2dac1efd93c3487fdd153bd31ad637db5b8cb7e2 +size 10562 diff --git a/blocks/task5/maps/level5/output_img/90.jpg b/blocks/task5/maps/level5/output_img/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ca5da05daff583fa0c5946b722861438e9fad8d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea70156865b5853fb2ad7db2ec43b3f22763a77ed56d4a8772468d0c8398a46d +size 11327 diff --git a/blocks/task5/maps/level5/output_img/91.jpg b/blocks/task5/maps/level5/output_img/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a27de61f2b980866547cc1bdc2149f55456f0bc --- /dev/null +++ b/blocks/task5/maps/level5/output_img/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0dd80d447b970ddacb64342459e9579e39979d39d218a909ef36f7771a8fbf1 +size 10185 diff --git a/blocks/task5/maps/level5/output_img/92.jpg b/blocks/task5/maps/level5/output_img/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7df2bae1b2547a5c909c07b201a8e805350e1221 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e689f04cfbff9103567c5d557f135a1f1bcf411cf60ea6c8e44cee5645913a7 +size 11558 diff --git a/blocks/task5/maps/level5/output_img/93.jpg b/blocks/task5/maps/level5/output_img/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fc1e1fb76dff43f027cf21cfdbfc944a0e5930d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d247a9586fd6c687517f539580c4c888b80d9fd96689adabaf22c140c084d246 +size 10231 diff --git a/blocks/task5/maps/level5/output_img/94.jpg b/blocks/task5/maps/level5/output_img/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e616205a189654796843c61edfd40cd723a0fce1 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51198ac80bdd4a0142a5f864176ace4bf843b6ccf89b4eb1d61b86220ca8a893 +size 10001 diff --git a/blocks/task5/maps/level5/output_img/95.jpg b/blocks/task5/maps/level5/output_img/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..747cd27b11ba2c45505990289dfd21178c402fbb --- /dev/null +++ b/blocks/task5/maps/level5/output_img/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98df65f01548eb058166ee9bb48629f34f0e4e75218cac3b32d5e8f24348db48 +size 10380 diff --git a/blocks/task5/maps/level5/output_img/96.jpg b/blocks/task5/maps/level5/output_img/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ff0802fe0f5e4893ff9fcaef3a8699293b8b68c --- /dev/null +++ b/blocks/task5/maps/level5/output_img/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4296272fb719d8461b71106981a08f3bf612d0ee12f6a4b6f456cbb11f6a90bd +size 11772 diff --git a/blocks/task5/maps/level5/output_img/97.jpg b/blocks/task5/maps/level5/output_img/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60963a3b9e6c9581b36752be21f7c4e0f664854e --- /dev/null +++ b/blocks/task5/maps/level5/output_img/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec721befaf5d70a5de620af9cad8f20596ed26643bed50352879951cbe7ec04d +size 11007 diff --git a/blocks/task5/maps/level5/output_img/98.jpg b/blocks/task5/maps/level5/output_img/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a4235c6181562d192fce3cb6208f38cebb112d0 --- /dev/null +++ b/blocks/task5/maps/level5/output_img/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b679d5c09e765feb3636c32e07fdf2bbc3cce9bd78098178293588e907f07467 +size 10678 diff --git a/blocks/task5/maps/level5/output_img/99.jpg b/blocks/task5/maps/level5/output_img/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15b2b9f6d235a32b4f734cb3fbc5e0835537ec0d --- /dev/null +++ b/blocks/task5/maps/level5/output_img/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f8e687976e0cbdd4f0243f3fdc4a7366b24520bfb11b34c83244f341e1b3218 +size 10459 diff --git a/blocks/task5/maps/level5/output_table/0.txt b/blocks/task5/maps/level5/output_table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..228da7920d11005cfb4cf2b30a69e50bd5e1fa84 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/0.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | purple | yellow | +Level 1 | green | red | diff --git a/blocks/task5/maps/level5/output_table/1.txt b/blocks/task5/maps/level5/output_table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eb40bef9374c7a3ff621f2a901261f14800443e --- /dev/null +++ b/blocks/task5/maps/level5/output_table/1.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | blue | +Level 3 | purple | +Level 2 | yellow | +Level 1 | red | diff --git a/blocks/task5/maps/level5/output_table/10.txt b/blocks/task5/maps/level5/output_table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..4745b4135da9af7870ce1c08c853bf6b847f0db2 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/10.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | green | +Level 1 | orange | yellow | red | diff --git a/blocks/task5/maps/level5/output_table/11.txt b/blocks/task5/maps/level5/output_table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3f23f8f4eafe9e438e2016d4b7923cd3f48e269 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/11.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | green | yellow | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level5/output_table/12.txt b/blocks/task5/maps/level5/output_table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..7862acb61666d0535a21479b4d9f548c9c36a54e --- /dev/null +++ b/blocks/task5/maps/level5/output_table/12.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | red | yellow | +Level 1 | purple | green | diff --git a/blocks/task5/maps/level5/output_table/13.txt b/blocks/task5/maps/level5/output_table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..06c60cc7433fc31eab7cb9d2a25930b85f7a9e91 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/13.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | blue | +Level 1 | orange | purple | diff --git a/blocks/task5/maps/level5/output_table/14.txt b/blocks/task5/maps/level5/output_table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1fdcd46fc23eaf4496bd62777ee8adad8f7e575 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/14.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | purple | orange | +Level 1 | yellow | blue | red | diff --git a/blocks/task5/maps/level5/output_table/15.txt b/blocks/task5/maps/level5/output_table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2de2f19667d59a73b6b01defb96affd0d98852c --- /dev/null +++ b/blocks/task5/maps/level5/output_table/15.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | orange | +Level 1 | red | purple | yellow | diff --git a/blocks/task5/maps/level5/output_table/16.txt b/blocks/task5/maps/level5/output_table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..35c00071158e0674f97a16230d5665d0bd121155 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/16.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | orange | +Level 1 | purple | blue | green | diff --git a/blocks/task5/maps/level5/output_table/17.txt b/blocks/task5/maps/level5/output_table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..80d6b0ca2d7b44b13057d4489feac6aece3c202e --- /dev/null +++ b/blocks/task5/maps/level5/output_table/17.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level5/output_table/18.txt b/blocks/task5/maps/level5/output_table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..48c5e5d184f5c27f9c86493351884918ee1543b6 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/18.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | red | +Level 2 | | yellow | +Level 1 | purple | green | diff --git a/blocks/task5/maps/level5/output_table/19.txt b/blocks/task5/maps/level5/output_table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c93315915212c27507bc93daec7536b0915e733 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/19.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | green | +Level 2 | | orange | +Level 1 | red | purple | diff --git a/blocks/task5/maps/level5/output_table/2.txt b/blocks/task5/maps/level5/output_table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..732d21c335521593574c4d6c820cc7d2c7f4f75a --- /dev/null +++ b/blocks/task5/maps/level5/output_table/2.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | green | +Level 1 | blue | orange | red | diff --git a/blocks/task5/maps/level5/output_table/20.txt b/blocks/task5/maps/level5/output_table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..40b53ae09cf97ef85998046a6dc475d1b36f568d --- /dev/null +++ b/blocks/task5/maps/level5/output_table/20.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | +Level 2 | yellow | purple | +Level 1 | red | blue | diff --git a/blocks/task5/maps/level5/output_table/21.txt b/blocks/task5/maps/level5/output_table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a88fe2ff2a5f2ce6cad2a7058b7fa6e49251923 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/21.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | purple | +Level 1 | yellow | blue | red | diff --git a/blocks/task5/maps/level5/output_table/22.txt b/blocks/task5/maps/level5/output_table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..a98b620e94025e9e016a3eada8a5ee0309af90ca --- /dev/null +++ b/blocks/task5/maps/level5/output_table/22.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | orange | +Level 3 | yellow | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task5/maps/level5/output_table/23.txt b/blocks/task5/maps/level5/output_table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..c90a7598b578b7407366c1f513b823d5bac95a38 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/23.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | blue | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level5/output_table/24.txt b/blocks/task5/maps/level5/output_table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8ef75ac4463892739370c8132d491d191744018 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/24.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | red | +Level 2 | purple | +Level 1 | green | diff --git a/blocks/task5/maps/level5/output_table/25.txt b/blocks/task5/maps/level5/output_table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..6307c772dbc439633fc898c2e61068425c5d22cb --- /dev/null +++ b/blocks/task5/maps/level5/output_table/25.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | blue | +Level 1 | red | yellow | purple | diff --git a/blocks/task5/maps/level5/output_table/26.txt b/blocks/task5/maps/level5/output_table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..5486521c740d0c6ea44c1886b6fcc2d328f48a7c --- /dev/null +++ b/blocks/task5/maps/level5/output_table/26.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | green | purple | orange | diff --git a/blocks/task5/maps/level5/output_table/27.txt b/blocks/task5/maps/level5/output_table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..dea67da622fa3f587c88fa9ee47ada6408a7f175 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/27.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | yellow | +Level 3 | green | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task5/maps/level5/output_table/28.txt b/blocks/task5/maps/level5/output_table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..65f6bb10bcd26e9749e548305349325a343dfc77 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/28.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | purple | blue | +Level 1 | yellow | green | diff --git a/blocks/task5/maps/level5/output_table/29.txt b/blocks/task5/maps/level5/output_table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..77ff45971e94a4c9266d7cf76753a8384d3d7988 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/29.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | blue | red | orange | diff --git a/blocks/task5/maps/level5/output_table/3.txt b/blocks/task5/maps/level5/output_table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad7c385d3f02c98e0ba56b4c568de2a702530ba7 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/3.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | green | red | diff --git a/blocks/task5/maps/level5/output_table/30.txt b/blocks/task5/maps/level5/output_table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ec024c981d41107f969e80ae23a6c62355348a8 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/30.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | red | +Level 2 | | green | +Level 1 | yellow | orange | diff --git a/blocks/task5/maps/level5/output_table/31.txt b/blocks/task5/maps/level5/output_table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0a25301bfa22eb071f500da5add519a579e85ec --- /dev/null +++ b/blocks/task5/maps/level5/output_table/31.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | blue | red | diff --git a/blocks/task5/maps/level5/output_table/32.txt b/blocks/task5/maps/level5/output_table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f05cf0f856f59b0bce3bb71d0deb90263e69c265 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/32.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | blue | +Level 1 | orange | green | red | diff --git a/blocks/task5/maps/level5/output_table/33.txt b/blocks/task5/maps/level5/output_table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c1f915c92bb1b50bafc6b6fac96410d72d021bf --- /dev/null +++ b/blocks/task5/maps/level5/output_table/33.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | yellow | green | diff --git a/blocks/task5/maps/level5/output_table/34.txt b/blocks/task5/maps/level5/output_table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..86a8025f088db9682d7dbae1118c6f5d4bd49812 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/34.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | green | +Level 1 | orange | red | diff --git a/blocks/task5/maps/level5/output_table/35.txt b/blocks/task5/maps/level5/output_table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c5be344827ef21619cd5eeaa08fd3ab8da3e9de --- /dev/null +++ b/blocks/task5/maps/level5/output_table/35.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | red | +Level 3 | blue | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task5/maps/level5/output_table/36.txt b/blocks/task5/maps/level5/output_table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..2efd0e328b9bfa53eeebc2437890ce878f9ecc99 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/36.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | red | +Level 3 | yellow | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task5/maps/level5/output_table/37.txt b/blocks/task5/maps/level5/output_table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ecca396110fce7724e5f2c49eaad6d581268c19 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/37.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | blue | +Level 1 | red | yellow | green | orange | diff --git a/blocks/task5/maps/level5/output_table/38.txt b/blocks/task5/maps/level5/output_table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea5d0ef8b6d92f2581d1665b49f13ce09d6d8ea3 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/38.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | orange | +Level 2 | | | yellow | +Level 1 | purple | green | red | diff --git a/blocks/task5/maps/level5/output_table/39.txt b/blocks/task5/maps/level5/output_table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e184c8c1a2e9647b4e7dcc8f1c16c22a290605b --- /dev/null +++ b/blocks/task5/maps/level5/output_table/39.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | blue | +Level 3 | red | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task5/maps/level5/output_table/4.txt b/blocks/task5/maps/level5/output_table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d82aef4faa64f8ef0b70e29f1063640b15f8151e --- /dev/null +++ b/blocks/task5/maps/level5/output_table/4.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | green | +Level 2 | orange | +Level 1 | purple | diff --git a/blocks/task5/maps/level5/output_table/40.txt b/blocks/task5/maps/level5/output_table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2844223866ef70a4b8671f49f30cf1ffc2b4ec04 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/40.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | blue | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task5/maps/level5/output_table/41.txt b/blocks/task5/maps/level5/output_table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..daaac4bc784f5ebe172968367d98fbdc7e04454f --- /dev/null +++ b/blocks/task5/maps/level5/output_table/41.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | green | purple | +Level 1 | orange | blue | diff --git a/blocks/task5/maps/level5/output_table/42.txt b/blocks/task5/maps/level5/output_table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..2db3e99a08837f2b07c845a42ab14a023e344172 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/42.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | orange | yellow | blue | purple | diff --git a/blocks/task5/maps/level5/output_table/43.txt b/blocks/task5/maps/level5/output_table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..609239e1eaa9dfd5352946dac3a2594b574011e7 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/43.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | orange | +Level 1 | red | yellow | green | diff --git a/blocks/task5/maps/level5/output_table/44.txt b/blocks/task5/maps/level5/output_table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2656329111a0d72e6851a4285e9ffaff0930496 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/44.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | yellow | +Level 1 | green | orange | red | diff --git a/blocks/task5/maps/level5/output_table/45.txt b/blocks/task5/maps/level5/output_table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4f770add37a3af256334cc37c5f929de80a54a2 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/45.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level5/output_table/46.txt b/blocks/task5/maps/level5/output_table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..539a5ade497040ef17a4a797eafc83322b62778c --- /dev/null +++ b/blocks/task5/maps/level5/output_table/46.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | green | +Level 1 | yellow | red | blue | diff --git a/blocks/task5/maps/level5/output_table/47.txt b/blocks/task5/maps/level5/output_table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..f094713ac7bee6d61fb787fe18af03e765effd48 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/47.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | green | +Level 2 | purple | +Level 1 | yellow | diff --git a/blocks/task5/maps/level5/output_table/48.txt b/blocks/task5/maps/level5/output_table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..618a7cc3e97c27934b35a5cea91ad6245bfc4d70 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/48.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | purple | +Level 1 | orange | yellow | blue | diff --git a/blocks/task5/maps/level5/output_table/49.txt b/blocks/task5/maps/level5/output_table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e60980602a11e19a96375aed855088e96949b4d --- /dev/null +++ b/blocks/task5/maps/level5/output_table/49.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | red | +Level 2 | green | +Level 1 | blue | diff --git a/blocks/task5/maps/level5/output_table/5.txt b/blocks/task5/maps/level5/output_table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e25d80ec7bce529b4d7d21d32a12adb4af4a0d0a --- /dev/null +++ b/blocks/task5/maps/level5/output_table/5.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | red | green | +Level 1 | orange | purple | diff --git a/blocks/task5/maps/level5/output_table/50.txt b/blocks/task5/maps/level5/output_table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e6b5fdae666bae4b51360b3f2206c660622aaad --- /dev/null +++ b/blocks/task5/maps/level5/output_table/50.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | red | +Level 2 | | blue | +Level 1 | yellow | green | diff --git a/blocks/task5/maps/level5/output_table/51.txt b/blocks/task5/maps/level5/output_table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..5892678ac1f73681246c999740bd70a4b6ac14f4 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/51.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | green | orange | +Level 1 | yellow | purple | blue | diff --git a/blocks/task5/maps/level5/output_table/52.txt b/blocks/task5/maps/level5/output_table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..90aeb4eb5ea858c1c424f79fb4d063bd96a3fb34 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/52.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | yellow | orange | +Level 1 | red | purple | diff --git a/blocks/task5/maps/level5/output_table/53.txt b/blocks/task5/maps/level5/output_table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ef880420d3da4ea85c54633b0988ba965693bfd --- /dev/null +++ b/blocks/task5/maps/level5/output_table/53.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | yellow | orange | red | blue | diff --git a/blocks/task5/maps/level5/output_table/54.txt b/blocks/task5/maps/level5/output_table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..4287d0db10dd2c0ddcedbd6f06fadf83699b6073 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/54.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | blue | purple | +Level 1 | green | red | diff --git a/blocks/task5/maps/level5/output_table/55.txt b/blocks/task5/maps/level5/output_table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7a9e7f7c7b95538fefe0de0624d2645d6c2319c --- /dev/null +++ b/blocks/task5/maps/level5/output_table/55.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | red | +Level 3 | orange | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task5/maps/level5/output_table/56.txt b/blocks/task5/maps/level5/output_table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..0aa6dc66aaea970bb5c3681517d3c94789a02417 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/56.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | orange | +Level 2 | green | +Level 1 | blue | diff --git a/blocks/task5/maps/level5/output_table/57.txt b/blocks/task5/maps/level5/output_table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..d06d00a617c01f519e42c334dba754b170c86ff7 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/57.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | purple | +Level 2 | | green | +Level 1 | yellow | orange | diff --git a/blocks/task5/maps/level5/output_table/58.txt b/blocks/task5/maps/level5/output_table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..19d94335d5a60c2e039c69816a2bf80c9a76d63f --- /dev/null +++ b/blocks/task5/maps/level5/output_table/58.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | yellow | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task5/maps/level5/output_table/59.txt b/blocks/task5/maps/level5/output_table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..b379a4e9df2bea0c4f992e29700d9bbdc890687b --- /dev/null +++ b/blocks/task5/maps/level5/output_table/59.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | red | +Level 1 | purple | orange | green | blue | diff --git a/blocks/task5/maps/level5/output_table/6.txt b/blocks/task5/maps/level5/output_table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..75ae21e701685ebce565f26090e40db1c117e622 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/6.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | red | green | diff --git a/blocks/task5/maps/level5/output_table/60.txt b/blocks/task5/maps/level5/output_table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d3c5b16d08f3275df8de8521432c5604677a2b3 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/60.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | purple | +Level 2 | blue | +Level 1 | green | diff --git a/blocks/task5/maps/level5/output_table/61.txt b/blocks/task5/maps/level5/output_table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f24eb440083278b155d437d72da9cd3c6556f3e --- /dev/null +++ b/blocks/task5/maps/level5/output_table/61.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | orange | +Level 1 | blue | purple | green | diff --git a/blocks/task5/maps/level5/output_table/62.txt b/blocks/task5/maps/level5/output_table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bb6cda0a8bcaba9b1c1963ec45b42a9bd05f8c --- /dev/null +++ b/blocks/task5/maps/level5/output_table/62.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | purple | +Level 1 | red | yellow | green | diff --git a/blocks/task5/maps/level5/output_table/63.txt b/blocks/task5/maps/level5/output_table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..24f3b65f78b9854f88024e74fb00d56102457c8f --- /dev/null +++ b/blocks/task5/maps/level5/output_table/63.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level5/output_table/64.txt b/blocks/task5/maps/level5/output_table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..734d704a35ccd90825c8c72297286c8088c06ef6 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/64.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | yellow | +Level 2 | purple | +Level 1 | green | diff --git a/blocks/task5/maps/level5/output_table/65.txt b/blocks/task5/maps/level5/output_table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e4f9945ba295110b80b3c8dd94a7ded6f142812 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/65.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | orange | +Level 1 | green | red | purple | diff --git a/blocks/task5/maps/level5/output_table/66.txt b/blocks/task5/maps/level5/output_table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc3b42cd464387ed06f57c7b6fbad6ce89073950 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/66.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | purple | +Level 2 | blue | +Level 1 | orange | diff --git a/blocks/task5/maps/level5/output_table/67.txt b/blocks/task5/maps/level5/output_table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..302344980b3639d030c681e9897c0be453057075 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/67.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | orange | +Level 1 | blue | green | yellow | red | diff --git a/blocks/task5/maps/level5/output_table/68.txt b/blocks/task5/maps/level5/output_table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..38b41df8cf0a986aa59efd6d66c59b0409d5d33e --- /dev/null +++ b/blocks/task5/maps/level5/output_table/68.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | green | +Level 1 | purple | yellow | red | diff --git a/blocks/task5/maps/level5/output_table/69.txt b/blocks/task5/maps/level5/output_table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..c237f37fae2a86ee93af6ffa02aecb6d594f0c27 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/69.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | blue | +Level 1 | yellow | orange | diff --git a/blocks/task5/maps/level5/output_table/7.txt b/blocks/task5/maps/level5/output_table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a980927f3d654a84ca37a4fe6c03b650d86abb --- /dev/null +++ b/blocks/task5/maps/level5/output_table/7.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | orange | +Level 2 | | purple | +Level 1 | green | blue | diff --git a/blocks/task5/maps/level5/output_table/70.txt b/blocks/task5/maps/level5/output_table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b102d48db00e4ca13775fbd29652a5a001de923 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/70.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | orange | +Level 1 | purple | green | diff --git a/blocks/task5/maps/level5/output_table/71.txt b/blocks/task5/maps/level5/output_table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfed2ef6e1ced2b60109d96a06e209ec8bc0806f --- /dev/null +++ b/blocks/task5/maps/level5/output_table/71.txt @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | blue | +Level 3 | orange | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task5/maps/level5/output_table/72.txt b/blocks/task5/maps/level5/output_table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..67a831400829849cfb42eb17872d3fb5a52f4d80 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/72.txt @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | red | +Level 3 | orange | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task5/maps/level5/output_table/73.txt b/blocks/task5/maps/level5/output_table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..023b6629838298271b4c1cf087a285cf108e5ce7 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/73.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | green | +Level 2 | | yellow | +Level 1 | blue | orange | diff --git a/blocks/task5/maps/level5/output_table/74.txt b/blocks/task5/maps/level5/output_table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..86c6ae75f738e99abfef8c7d87752489b6251b91 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/74.txt @@ -0,0 +1,5 @@ + | Stack 1 | +Level 4 | blue | +Level 3 | red | +Level 2 | yellow | +Level 1 | purple | diff --git a/blocks/task5/maps/level5/output_table/75.txt b/blocks/task5/maps/level5/output_table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cd2a374057197cc519cb34f9f50da3ee2e0907c --- /dev/null +++ b/blocks/task5/maps/level5/output_table/75.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | green | +Level 1 | red | blue | orange | purple | diff --git a/blocks/task5/maps/level5/output_table/76.txt b/blocks/task5/maps/level5/output_table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..22d17204d91525f81c2d82ad291efb6efdb6cdf6 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/76.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | orange | +Level 2 | | green | +Level 1 | red | purple | diff --git a/blocks/task5/maps/level5/output_table/77.txt b/blocks/task5/maps/level5/output_table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..e33b10e088e2bbed32987bfebaf76260a76c19a8 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/77.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | yellow | +Level 1 | blue | purple | green | diff --git a/blocks/task5/maps/level5/output_table/78.txt b/blocks/task5/maps/level5/output_table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..049651d76851a0f451887233a427e8134ff48766 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/78.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | orange | blue | red | yellow | diff --git a/blocks/task5/maps/level5/output_table/79.txt b/blocks/task5/maps/level5/output_table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9c7bedfcbc88aeadbd0c89534e4f52c0331b9e2 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/79.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | Stack 4 | +Level 2 | | | | purple | +Level 1 | red | blue | yellow | green | diff --git a/blocks/task5/maps/level5/output_table/8.txt b/blocks/task5/maps/level5/output_table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..efc5cef8c55b39195bcd76dde93b02a8f2c5e54d --- /dev/null +++ b/blocks/task5/maps/level5/output_table/8.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | orange | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task5/maps/level5/output_table/80.txt b/blocks/task5/maps/level5/output_table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..354f9037f7cb4a7360d5c5cae3c4698f1b0d0e6b --- /dev/null +++ b/blocks/task5/maps/level5/output_table/80.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | green | +Level 2 | | red | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level5/output_table/81.txt b/blocks/task5/maps/level5/output_table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cf0f8cf37bad2caecb3c1598c2589eb8ed60a22 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/81.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | orange | green | +Level 1 | yellow | blue | purple | diff --git a/blocks/task5/maps/level5/output_table/82.txt b/blocks/task5/maps/level5/output_table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..81cdb0f01306c5cf7dd23e2a36973bd7654000ec --- /dev/null +++ b/blocks/task5/maps/level5/output_table/82.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | yellow | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level5/output_table/83.txt b/blocks/task5/maps/level5/output_table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..17f977b8afda9a335772d15df4001f4bcd928802 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/83.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | blue | +Level 1 | orange | green | purple | diff --git a/blocks/task5/maps/level5/output_table/84.txt b/blocks/task5/maps/level5/output_table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..86dc0d6a5c99bbd12699dfb2ff12be5cfb21476d --- /dev/null +++ b/blocks/task5/maps/level5/output_table/84.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | blue | red | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level5/output_table/85.txt b/blocks/task5/maps/level5/output_table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd41d004fb04d8c3d55ebd74e3de1014f177a8ff --- /dev/null +++ b/blocks/task5/maps/level5/output_table/85.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | orange | +Level 2 | | yellow | +Level 1 | green | red | diff --git a/blocks/task5/maps/level5/output_table/86.txt b/blocks/task5/maps/level5/output_table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..799b7a2a3c9866fa3bac64b8c05f312644e72af7 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/86.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | green | +Level 2 | | | red | +Level 1 | purple | orange | blue | diff --git a/blocks/task5/maps/level5/output_table/87.txt b/blocks/task5/maps/level5/output_table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f39cab786bf199d5b19bfd8f91eb8b9177501a30 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/87.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | yellow | +Level 2 | | | orange | +Level 1 | blue | green | purple | diff --git a/blocks/task5/maps/level5/output_table/88.txt b/blocks/task5/maps/level5/output_table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7e9116922d3b0c8a282c513886a06fdba135aff --- /dev/null +++ b/blocks/task5/maps/level5/output_table/88.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | purple | +Level 2 | | blue | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level5/output_table/89.txt b/blocks/task5/maps/level5/output_table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..f41095c3ded3c201630e36ec8ef4fc2a91e7fbc5 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/89.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | blue | +Level 1 | yellow | orange | red | diff --git a/blocks/task5/maps/level5/output_table/9.txt b/blocks/task5/maps/level5/output_table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b32171c7a024621bb21a7e8fb51d5d306744d17 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/9.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | purple | +Level 2 | | | red | +Level 1 | yellow | orange | green | diff --git a/blocks/task5/maps/level5/output_table/90.txt b/blocks/task5/maps/level5/output_table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..84ad761e41a5930dae0a8411cce574b2845352c9 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/90.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | yellow | +Level 1 | purple | orange | diff --git a/blocks/task5/maps/level5/output_table/91.txt b/blocks/task5/maps/level5/output_table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..87969b3dbe8bb352728026a8d8f041f40ff3c341 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/91.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | red | yellow | +Level 1 | blue | orange | green | diff --git a/blocks/task5/maps/level5/output_table/92.txt b/blocks/task5/maps/level5/output_table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cf62e12a98d5763eefcd506a070d70def775b21 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/92.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | yellow | +Level 1 | purple | green | diff --git a/blocks/task5/maps/level5/output_table/93.txt b/blocks/task5/maps/level5/output_table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2ff4dfaf7fad424c69e7b598e6d0b9b8db427cd --- /dev/null +++ b/blocks/task5/maps/level5/output_table/93.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | red | +Level 1 | orange | purple | diff --git a/blocks/task5/maps/level5/output_table/94.txt b/blocks/task5/maps/level5/output_table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..cadc1583be04eb074b0acc68f960a04ef3c6c351 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/94.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | red | +Level 3 | orange | +Level 2 | green | +Level 1 | blue | diff --git a/blocks/task5/maps/level5/output_table/95.txt b/blocks/task5/maps/level5/output_table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..abaf68f95184f7d218adb7f97d1bf2cfe49fbbba --- /dev/null +++ b/blocks/task5/maps/level5/output_table/95.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | yellow | orange | +Level 1 | blue | red | purple | diff --git a/blocks/task5/maps/level5/output_table/96.txt b/blocks/task5/maps/level5/output_table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c80d004a190ca5c3242b32acec07a51a6b4a630 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/96.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | purple | yellow | diff --git a/blocks/task5/maps/level5/output_table/97.txt b/blocks/task5/maps/level5/output_table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ed74309ec1217599ca1143bd08a55549a9b0b66 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/97.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | blue | green | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level5/output_table/98.txt b/blocks/task5/maps/level5/output_table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fa2963c14463d3af1eef56d0944a09321a5e67d --- /dev/null +++ b/blocks/task5/maps/level5/output_table/98.txt @@ -0,0 +1,3 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 2 | | blue | red | +Level 1 | purple | green | yellow | diff --git a/blocks/task5/maps/level5/output_table/99.txt b/blocks/task5/maps/level5/output_table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..f67f620623156c9e544fdb517951aa8d33fafc43 --- /dev/null +++ b/blocks/task5/maps/level5/output_table/99.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | Stack 3 | +Level 3 | | | blue | +Level 2 | | | red | +Level 1 | purple | yellow | orange | diff --git a/blocks/task5/maps/level5/output_text/0.txt b/blocks/task5/maps/level5/output_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..967c65be4b441e26bc178b3079dc0b298fb533ca --- /dev/null +++ b/blocks/task5/maps/level5/output_text/0.txt @@ -0,0 +1,2 @@ +- Stack with green block, purple block, from bottom to top +- Stack with red block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/1.txt b/blocks/task5/maps/level5/output_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e9d99a3d9a7c324483ab659e2dc29b14128b33a --- /dev/null +++ b/blocks/task5/maps/level5/output_text/1.txt @@ -0,0 +1 @@ +- Stack with red block, yellow block, purple block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/10.txt b/blocks/task5/maps/level5/output_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..57249ed859cc599fbd382aa9c4a5e79a4c927729 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/10.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/11.txt b/blocks/task5/maps/level5/output_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..88aba90a87006be2a3dcf51af15e02e0bdfeaa21 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/11.txt @@ -0,0 +1,2 @@ +- Stack with blue block, green block, from bottom to top +- Stack with purple block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/12.txt b/blocks/task5/maps/level5/output_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fa5ed4972b52bfa331f0d5555d97dfd20da4ab0 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/12.txt @@ -0,0 +1,2 @@ +- Stack with purple block, red block, from bottom to top +- Stack with green block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/13.txt b/blocks/task5/maps/level5/output_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b7647270737fffe09a6b5258049ca3617193cf6 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/13.txt @@ -0,0 +1,2 @@ +- Stack with orange block, yellow block, from bottom to top +- Stack with purple block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/14.txt b/blocks/task5/maps/level5/output_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c859f9df09f0ee7fc85c6472b38130880694452 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/14.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, purple block, from bottom to top +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/15.txt b/blocks/task5/maps/level5/output_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..03074c3fbf269146911f59d9e464e91182217994 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/15.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with purple block, blue block, from bottom to top +- Stack with yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/16.txt b/blocks/task5/maps/level5/output_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb9f77b80dc43c9e1b23f602240f646882e3ff12 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/16.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with blue block, red block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/17.txt b/blocks/task5/maps/level5/output_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b311429b2177e5b3df7b515c6fe920e1475e136 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/17.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, orange block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/18.txt b/blocks/task5/maps/level5/output_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0330fe648d4ae6a50889dace419f0e9dbe8d8a7 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/18.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, yellow block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/19.txt b/blocks/task5/maps/level5/output_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..e89f4c6cd9d6045b8e52bd24185a0707a7b5647e --- /dev/null +++ b/blocks/task5/maps/level5/output_text/19.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, orange block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/2.txt b/blocks/task5/maps/level5/output_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e73f3fd7235d813ba7325b4dd095801239cb7d91 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/2.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block, yellow block, from bottom to top +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/20.txt b/blocks/task5/maps/level5/output_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..861b9a4d897248fd518d3ad1adf4502f18492c71 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/20.txt @@ -0,0 +1,2 @@ +- Stack with red block, yellow block, from bottom to top +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/21.txt b/blocks/task5/maps/level5/output_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffdf05d9e1ebe470b8d1a6ef98f5d5f68a3bb616 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/21.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top +- Stack with red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/22.txt b/blocks/task5/maps/level5/output_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..10c2548af157637ec693125f407dbc75d5e4adca --- /dev/null +++ b/blocks/task5/maps/level5/output_text/22.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, yellow block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/23.txt b/blocks/task5/maps/level5/output_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d6d200b9678b1a385429bd0fb3607c559472019 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/23.txt @@ -0,0 +1 @@ +- Stack with green block, red block, blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/24.txt b/blocks/task5/maps/level5/output_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b9f534bbf36c1c4b3ab2d5ceeb81c446290f9f2 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/24.txt @@ -0,0 +1 @@ +- Stack with green block, purple block, red block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/25.txt b/blocks/task5/maps/level5/output_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..8abfca3b7f70b4c1db6dc521cf1053c9cc37af1e --- /dev/null +++ b/blocks/task5/maps/level5/output_text/25.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with purple block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/26.txt b/blocks/task5/maps/level5/output_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..165fd863ad2b0ef974fa7d4a19d4d9b45e8b75cc --- /dev/null +++ b/blocks/task5/maps/level5/output_text/26.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with purple block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/27.txt b/blocks/task5/maps/level5/output_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..86a00839bcb1ad8451c6774a711f04a0be3e2b7a --- /dev/null +++ b/blocks/task5/maps/level5/output_text/27.txt @@ -0,0 +1 @@ +- Stack with orange block, purple block, green block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/28.txt b/blocks/task5/maps/level5/output_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ee2161422911d4c6e56368120390387085955c8 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/28.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, purple block, from bottom to top +- Stack with green block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/29.txt b/blocks/task5/maps/level5/output_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7b21df7a4c3b34403a34ae2695f7a96ce85d5f5 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/29.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block +- Stack with orange block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/3.txt b/blocks/task5/maps/level5/output_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..6914c4c8e3c6523ef2fdc3ffd54f872889cfc319 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/3.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, orange block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/30.txt b/blocks/task5/maps/level5/output_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..05643829ca5c4b2371dad35a77287faaf077598a --- /dev/null +++ b/blocks/task5/maps/level5/output_text/30.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, green block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/31.txt b/blocks/task5/maps/level5/output_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..65748737b0c9b985b94a68d654504edda1d5669b --- /dev/null +++ b/blocks/task5/maps/level5/output_text/31.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, yellow block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/32.txt b/blocks/task5/maps/level5/output_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..470083499ae450c3e39e70ad667ef234255e6cd0 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/32.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with green block +- Stack with red block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/33.txt b/blocks/task5/maps/level5/output_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..c680f15d2723db6db19e4a6f2d384e1149a540fb --- /dev/null +++ b/blocks/task5/maps/level5/output_text/33.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, orange block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/34.txt b/blocks/task5/maps/level5/output_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..a78cbed363c3058a54e04e9bd86a803bcdb077b3 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/34.txt @@ -0,0 +1,2 @@ +- Stack with orange block, yellow block, from bottom to top +- Stack with red block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/35.txt b/blocks/task5/maps/level5/output_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d8d4e16ff2b48a6f2396d75ef7b5f5dad045e67 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/35.txt @@ -0,0 +1 @@ +- Stack with orange block, purple block, blue block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/36.txt b/blocks/task5/maps/level5/output_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d01088038e02c8dc9c39d2329efc4e761c081b0 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/36.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, yellow block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/37.txt b/blocks/task5/maps/level5/output_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecfef6de764265bbadfdef6162f32db62f8062be --- /dev/null +++ b/blocks/task5/maps/level5/output_text/37.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with yellow block +- Stack with green block +- Stack with orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/38.txt b/blocks/task5/maps/level5/output_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ac0d11dfadbeb3970abea1f5455b5ef8ee4850d --- /dev/null +++ b/blocks/task5/maps/level5/output_text/38.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block +- Stack with red block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/39.txt b/blocks/task5/maps/level5/output_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0c957bfaebb32d4fe9fb2754fee277a78817638 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/39.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, red block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/4.txt b/blocks/task5/maps/level5/output_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..36469b002528965b3b334174ae6fa5bc295e08ee --- /dev/null +++ b/blocks/task5/maps/level5/output_text/4.txt @@ -0,0 +1 @@ +- Stack with purple block, orange block, green block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/40.txt b/blocks/task5/maps/level5/output_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa84a402e3b1c2a6dc06efedaf3348cddbaedbf3 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/40.txt @@ -0,0 +1 @@ +- Stack with yellow block, orange block, blue block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/41.txt b/blocks/task5/maps/level5/output_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2438d8c8098be6022bcac7299a1cd3130f0a372 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/41.txt @@ -0,0 +1,2 @@ +- Stack with orange block, green block, from bottom to top +- Stack with blue block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/42.txt b/blocks/task5/maps/level5/output_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad6c56b5b9d4163cf5bbb0a998b87a802af0d317 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/42.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with yellow block +- Stack with blue block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/43.txt b/blocks/task5/maps/level5/output_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..967fef1f40404a976658946dc0fd033a0168a50f --- /dev/null +++ b/blocks/task5/maps/level5/output_text/43.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block +- Stack with green block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/44.txt b/blocks/task5/maps/level5/output_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ed839b187b99c9c52323944459cadd3c1473f3d --- /dev/null +++ b/blocks/task5/maps/level5/output_text/44.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with orange block +- Stack with red block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/45.txt b/blocks/task5/maps/level5/output_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..caee5247295058a09deb56c3e4334a2a07558598 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/45.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, purple block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/46.txt b/blocks/task5/maps/level5/output_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..36aa5628b3467b62cdd8314f5570454a2fd2e316 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/46.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with red block +- Stack with blue block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/47.txt b/blocks/task5/maps/level5/output_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9c1c215c3c9dc63c81bf7ceecc56456bbb15e73 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/47.txt @@ -0,0 +1 @@ +- Stack with yellow block, purple block, green block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/48.txt b/blocks/task5/maps/level5/output_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..59a75a3da89642800b584ad68c9022570fdb5a19 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/48.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with yellow block, green block, from bottom to top +- Stack with blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/49.txt b/blocks/task5/maps/level5/output_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..e39775b8e2d812521e06c5293b554e381635a63c --- /dev/null +++ b/blocks/task5/maps/level5/output_text/49.txt @@ -0,0 +1 @@ +- Stack with blue block, green block, red block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/5.txt b/blocks/task5/maps/level5/output_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d6420539e1c43aeb36f5c669ac0b819e2ce1678 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/5.txt @@ -0,0 +1,2 @@ +- Stack with orange block, red block, from bottom to top +- Stack with purple block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/50.txt b/blocks/task5/maps/level5/output_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5d68150befab04cf270bf152022ae7b339369cb --- /dev/null +++ b/blocks/task5/maps/level5/output_text/50.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, blue block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/51.txt b/blocks/task5/maps/level5/output_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cdb8334fee1e7c5274936df2f196b937bb99f5f --- /dev/null +++ b/blocks/task5/maps/level5/output_text/51.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with purple block, green block, from bottom to top +- Stack with blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/52.txt b/blocks/task5/maps/level5/output_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..453f20c27b4883a8ddedfdcc47b402793df6e00e --- /dev/null +++ b/blocks/task5/maps/level5/output_text/52.txt @@ -0,0 +1,2 @@ +- Stack with red block, yellow block, from bottom to top +- Stack with purple block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/53.txt b/blocks/task5/maps/level5/output_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..8991fdf2803b13b3c45fa182d4b47c85fb5a43cb --- /dev/null +++ b/blocks/task5/maps/level5/output_text/53.txt @@ -0,0 +1,4 @@ +- Stack with yellow block +- Stack with orange block +- Stack with red block +- Stack with blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/54.txt b/blocks/task5/maps/level5/output_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..13f3f5e202abbbe76973a51b95fc1ec384123f65 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/54.txt @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with red block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/55.txt b/blocks/task5/maps/level5/output_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..4368e6fbf57a08fc321dd6a0c9f907df1a7da36f --- /dev/null +++ b/blocks/task5/maps/level5/output_text/55.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, orange block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/56.txt b/blocks/task5/maps/level5/output_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fa45c991e0d61aefda161d2e709d6c7dd93c5ff --- /dev/null +++ b/blocks/task5/maps/level5/output_text/56.txt @@ -0,0 +1 @@ +- Stack with blue block, green block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/57.txt b/blocks/task5/maps/level5/output_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a19c55906fb74c877a5f46563e4c4c159dee1d6 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/57.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, green block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/58.txt b/blocks/task5/maps/level5/output_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c22dd3b8e84254a3ba88860d29b332861363579 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/58.txt @@ -0,0 +1 @@ +- Stack with orange block, purple block, yellow block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/59.txt b/blocks/task5/maps/level5/output_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7ad4cc0360e0b2e7560c39d53d58aad5b786c4d --- /dev/null +++ b/blocks/task5/maps/level5/output_text/59.txt @@ -0,0 +1,4 @@ +- Stack with purple block +- Stack with orange block +- Stack with green block +- Stack with blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/6.txt b/blocks/task5/maps/level5/output_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1707ff25c5305dc108cd044af7d53dae9ddd96a --- /dev/null +++ b/blocks/task5/maps/level5/output_text/6.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/60.txt b/blocks/task5/maps/level5/output_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5856948bdf6f2fcd02f0c86f25f107602fb8387 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/60.txt @@ -0,0 +1 @@ +- Stack with green block, blue block, purple block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/61.txt b/blocks/task5/maps/level5/output_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..002761cb9fe26d4373829391a30dbcdd5987b9ab --- /dev/null +++ b/blocks/task5/maps/level5/output_text/61.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with purple block, red block, from bottom to top +- Stack with green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/62.txt b/blocks/task5/maps/level5/output_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..119aaf3686a9e4ca7b7cba656fd561348f4ddadb --- /dev/null +++ b/blocks/task5/maps/level5/output_text/62.txt @@ -0,0 +1,3 @@ +- Stack with red block +- Stack with yellow block, blue block, from bottom to top +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/63.txt b/blocks/task5/maps/level5/output_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2f890c92e0a6575bd77cb64b8b4bb0c59eec44a --- /dev/null +++ b/blocks/task5/maps/level5/output_text/63.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, orange block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/64.txt b/blocks/task5/maps/level5/output_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..b927f6eda810da982721eff72812d8d7bad23d75 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/64.txt @@ -0,0 +1 @@ +- Stack with green block, purple block, yellow block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/65.txt b/blocks/task5/maps/level5/output_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6229449495d555c42fc3a126d1ec93303394acb --- /dev/null +++ b/blocks/task5/maps/level5/output_text/65.txt @@ -0,0 +1,3 @@ +- Stack with green block +- Stack with red block +- Stack with purple block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/66.txt b/blocks/task5/maps/level5/output_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..a780e1caea57119f651cedb51fbdf4fe8f989f5b --- /dev/null +++ b/blocks/task5/maps/level5/output_text/66.txt @@ -0,0 +1 @@ +- Stack with orange block, blue block, purple block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/67.txt b/blocks/task5/maps/level5/output_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..66db52a8da05c42dde48d9a648f81db793d27856 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/67.txt @@ -0,0 +1,4 @@ +- Stack with blue block +- Stack with green block +- Stack with yellow block +- Stack with red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/68.txt b/blocks/task5/maps/level5/output_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3698300d82935676d4cbeb391f6a47a04e53ff9 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/68.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with yellow block, blue block, from bottom to top +- Stack with red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/69.txt b/blocks/task5/maps/level5/output_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..998ce9b7185d08ec0cb1fb986d380e4c0c44c0f6 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/69.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, blue block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/7.txt b/blocks/task5/maps/level5/output_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7b203422e5b36a73baeb0b50d7cadea5e983e71 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/7.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, purple block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/70.txt b/blocks/task5/maps/level5/output_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..287d37afc3e98aa179c7a8d04bc2899fd47d733f --- /dev/null +++ b/blocks/task5/maps/level5/output_text/70.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with green block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/71.txt b/blocks/task5/maps/level5/output_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..33a92da7be517a716ca8da766d4028ac74ba1f8e --- /dev/null +++ b/blocks/task5/maps/level5/output_text/71.txt @@ -0,0 +1 @@ +- Stack with red block, green block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/72.txt b/blocks/task5/maps/level5/output_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a328786af263d20e3be910e1dc3b26f9c708f63 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/72.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/73.txt b/blocks/task5/maps/level5/output_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f126b83627f6623844f4bee7b26038c9dfe595f --- /dev/null +++ b/blocks/task5/maps/level5/output_text/73.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, yellow block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/74.txt b/blocks/task5/maps/level5/output_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..1535b90d7022a6e8aa1dc34de5bd1b277df32327 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/74.txt @@ -0,0 +1 @@ +- Stack with purple block, yellow block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/75.txt b/blocks/task5/maps/level5/output_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..f34b3676621ee38be7c62e91691f1eb5fa5bba5d --- /dev/null +++ b/blocks/task5/maps/level5/output_text/75.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with orange block +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/76.txt b/blocks/task5/maps/level5/output_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..d07e2c858c33ba4b25491140814ded4f4f240bb5 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/76.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, green block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/77.txt b/blocks/task5/maps/level5/output_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..10933ffd55c37d4d06544c0ec9b81ea30f995005 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/77.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with purple block, red block, from bottom to top +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/78.txt b/blocks/task5/maps/level5/output_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..755406244745c2a8d177d0fa5802930d4dc420cd --- /dev/null +++ b/blocks/task5/maps/level5/output_text/78.txt @@ -0,0 +1,4 @@ +- Stack with orange block +- Stack with blue block +- Stack with red block +- Stack with yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/79.txt b/blocks/task5/maps/level5/output_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6041231dac3b5411eb8db26059ba0d20517097d --- /dev/null +++ b/blocks/task5/maps/level5/output_text/79.txt @@ -0,0 +1,4 @@ +- Stack with red block +- Stack with blue block +- Stack with yellow block +- Stack with green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/8.txt b/blocks/task5/maps/level5/output_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eb7588bdc4ee1f6f44ff6f13c3a65c736b03085 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/8.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, orange block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/80.txt b/blocks/task5/maps/level5/output_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e37da01aed4fb8431ca62e8d618283163ceccda --- /dev/null +++ b/blocks/task5/maps/level5/output_text/80.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, red block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/81.txt b/blocks/task5/maps/level5/output_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee30a97fe22c51f3ff5cbe12b3474e805adf9609 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/81.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with blue block, orange block, from bottom to top +- Stack with purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/82.txt b/blocks/task5/maps/level5/output_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbfec6bee2da99e04ea92c2d653c3ca670f6fce8 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/82.txt @@ -0,0 +1,2 @@ +- Stack with purple block, red block, from bottom to top +- Stack with blue block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/83.txt b/blocks/task5/maps/level5/output_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..274899fceda8c4a29fd7150a264694496fa4cf04 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/83.txt @@ -0,0 +1,3 @@ +- Stack with orange block +- Stack with green block, red block, from bottom to top +- Stack with purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/84.txt b/blocks/task5/maps/level5/output_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..22afacdbf69ea46ca90e6c045872cc336bfa530e --- /dev/null +++ b/blocks/task5/maps/level5/output_text/84.txt @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with orange block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/85.txt b/blocks/task5/maps/level5/output_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb4d337a960016a8da6c9b24be6e104448113ddd --- /dev/null +++ b/blocks/task5/maps/level5/output_text/85.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with red block, yellow block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/86.txt b/blocks/task5/maps/level5/output_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..45977163672e1c2a4abe2b89dc00dea850ca50bc --- /dev/null +++ b/blocks/task5/maps/level5/output_text/86.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with orange block +- Stack with blue block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/87.txt b/blocks/task5/maps/level5/output_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1c967fd3d3a06369a82837ac35421d0fb4da10e --- /dev/null +++ b/blocks/task5/maps/level5/output_text/87.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with green block +- Stack with purple block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/88.txt b/blocks/task5/maps/level5/output_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..09e4d270238f40dfdb3d708a828a538d6eaa466c --- /dev/null +++ b/blocks/task5/maps/level5/output_text/88.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with orange block, blue block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/89.txt b/blocks/task5/maps/level5/output_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..9df1ade56289655755a2508b678cc0064283820a --- /dev/null +++ b/blocks/task5/maps/level5/output_text/89.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with red block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/9.txt b/blocks/task5/maps/level5/output_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c5d43267505a959f1c899f552493fae0503588f --- /dev/null +++ b/blocks/task5/maps/level5/output_text/9.txt @@ -0,0 +1,3 @@ +- Stack with yellow block +- Stack with orange block +- Stack with green block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/90.txt b/blocks/task5/maps/level5/output_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..88921ae3c890c4fd96a70fd8780dba7349cde437 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/90.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with orange block, yellow block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/91.txt b/blocks/task5/maps/level5/output_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5ae03431ff45d764d18f5d121bf07ed45600c6e --- /dev/null +++ b/blocks/task5/maps/level5/output_text/91.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with orange block, red block, from bottom to top +- Stack with green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/92.txt b/blocks/task5/maps/level5/output_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..379b32ff043d5d8b264f29c67fea804da64f239d --- /dev/null +++ b/blocks/task5/maps/level5/output_text/92.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with green block, yellow block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/93.txt b/blocks/task5/maps/level5/output_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2f37c8a920180afa810940ba6f1bb5e95575b37 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/93.txt @@ -0,0 +1,2 @@ +- Stack with orange block, yellow block, from bottom to top +- Stack with purple block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/94.txt b/blocks/task5/maps/level5/output_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..a867f0a9ceb40b8f311bb1c57bde90e9a2eae77d --- /dev/null +++ b/blocks/task5/maps/level5/output_text/94.txt @@ -0,0 +1 @@ +- Stack with blue block, green block, orange block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/95.txt b/blocks/task5/maps/level5/output_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b5d9fa51fd5fc44543fe4a253c677f7298d5ad7 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/95.txt @@ -0,0 +1,3 @@ +- Stack with blue block +- Stack with red block, yellow block, from bottom to top +- Stack with purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/96.txt b/blocks/task5/maps/level5/output_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..05e5fef54497fc23b0d0a5f63b4bfb7ad70de621 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/96.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, blue block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/97.txt b/blocks/task5/maps/level5/output_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe83f8e4642b858d4503d0f127f3e2b21df67b6f --- /dev/null +++ b/blocks/task5/maps/level5/output_text/97.txt @@ -0,0 +1,2 @@ +- Stack with red block, blue block, from bottom to top +- Stack with yellow block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/98.txt b/blocks/task5/maps/level5/output_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..430a28b3202d8d5a727746fe22dd56792ad8d935 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/98.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with green block, blue block, from bottom to top +- Stack with yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level5/output_text/99.txt b/blocks/task5/maps/level5/output_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..280232eb9b4942ac1ac08ed02780202d6b9a7028 --- /dev/null +++ b/blocks/task5/maps/level5/output_text/99.txt @@ -0,0 +1,3 @@ +- Stack with purple block +- Stack with yellow block +- Stack with orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/info.txt b/blocks/task5/maps/level7/info.txt new file mode 100644 index 0000000000000000000000000000000000000000..0df6c3886ff5046e9864fca2a0548946dff7dd6d --- /dev/null +++ b/blocks/task5/maps/level7/info.txt @@ -0,0 +1,100 @@ +GRBPO0-000000-000000-000000-000000-000000-000000 1Towers/5 OPGRB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(o,table,0) move(p,o,1) move(b,table,2) move(r,table,3) move(g,p,4) move(r,g,5) move(b,r,6) move(o,table,0) move(p,o,1) move(b,table,2) move(r,b,3) move(g,p,4) move(r,g,5) move(b,r,6) +PY0000-ROB000-000000-000000-000000-000000-000000 2Towers/23 RPYOB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(y,table,1) move(o,table,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) move(y,table,0) move(b,table,1) move(o,table,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) move(b,table,0) move(o,table,1) move(y,table,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) move(b,table,0) move(o,table,1) move(y,o,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) move(b,table,0) move(y,b,1) move(o,table,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) move(b,table,0) move(o,table,1) move(y,b,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) move(b,table,0) move(o,b,1) move(y,table,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) move(b,table,0) move(o,b,1) move(y,o,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) move(b,table,0) move(y,table,1) move(o,b,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) move(y,table,0) move(b,table,1) move(o,b,2) move(p,r,3) move(y,p,4) move(o,y,5) move(b,o,6) +B00000-RGPO00-000000-000000-000000-000000-000000 2Towers/14 GOPRB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(o,table,0) move(p,table,1) move(g,table,2) move(o,g,3) move(p,o,4) move(r,p,5) move(b,r,6) move(o,b,0) move(p,table,1) move(g,table,2) move(o,g,3) move(p,o,4) move(r,p,5) move(b,r,6) move(o,table,0) move(p,b,1) move(g,table,2) move(o,g,3) move(p,o,4) move(r,p,5) move(b,r,6) +GBOYP0-000000-000000-000000-000000-000000-000000 1Towers/5 BO0000-PGY000-000000-000000-000000-000000-000000 2Towers/23 7 move(p,table,0) move(y,table,1) move(o,table,2) move(b,table,3) move(g,p,4) move(y,g,5) move(o,b,6) move(p,table,0) move(y,table,1) move(o,table,2) move(b,table,3) move(o,b,4) move(g,p,5) move(y,g,6) move(p,table,0) move(y,table,1) move(o,p,2) move(b,table,3) move(o,b,4) move(g,p,5) move(y,g,6) move(p,table,0) move(y,table,1) move(o,y,2) move(b,table,3) move(o,b,4) move(g,p,5) move(y,g,6) move(p,table,0) move(y,table,1) move(o,table,2) move(b,table,3) move(g,p,4) move(o,b,5) move(y,g,6) move(p,table,0) move(y,table,1) move(o,y,2) move(b,table,3) move(g,p,4) move(o,b,5) move(y,g,6) +B00000-POYG00-000000-000000-000000-000000-000000 2Towers/14 PBOYG0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(y,table,1) move(o,table,2) move(b,p,3) move(o,b,4) move(y,o,5) move(g,y,6) move(g,table,0) move(y,table,1) move(o,y,2) move(b,p,3) move(o,b,4) move(y,o,5) move(g,y,6) move(g,table,0) move(y,table,1) move(o,g,2) move(b,p,3) move(o,b,4) move(y,o,5) move(g,y,6) move(g,table,0) move(y,g,1) move(o,table,2) move(b,p,3) move(o,b,4) move(y,o,5) move(g,y,6) move(g,table,0) move(y,g,1) move(o,y,2) move(b,p,3) move(o,b,4) move(y,o,5) move(g,y,6) +YB0000-OGR000-000000-000000-000000-000000-000000 2Towers/23 GYOBR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(g,table,1) move(b,table,2) move(y,g,3) move(o,y,4) move(b,o,5) move(r,b,6) move(b,table,0) move(r,table,1) move(g,table,2) move(y,g,3) move(o,y,4) move(b,o,5) move(r,b,6) move(r,table,0) move(b,table,1) move(g,table,2) move(y,g,3) move(o,y,4) move(b,o,5) move(r,b,6) move(r,table,0) move(g,table,1) move(b,r,2) move(y,g,3) move(o,y,4) move(b,o,5) move(r,b,6) move(r,table,0) move(b,r,1) move(g,table,2) move(y,g,3) move(o,y,4) move(b,o,5) move(r,b,6) +O00000-YBGP00-000000-000000-000000-000000-000000 2Towers/14 YGBOP0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(g,table,1) move(b,table,2) move(g,y,3) move(b,g,4) move(o,b,5) move(p,o,6) move(p,table,0) move(g,p,1) move(b,table,2) move(g,y,3) move(b,g,4) move(o,b,5) move(p,o,6) move(p,table,0) move(g,o,1) move(b,table,2) move(g,y,3) move(b,g,4) move(o,b,5) move(p,o,6) move(p,table,0) move(g,o,1) move(b,p,2) move(g,y,3) move(b,g,4) move(o,b,5) move(p,o,6) move(p,table,0) move(g,table,1) move(b,p,2) move(g,y,3) move(b,g,4) move(o,b,5) move(p,o,6) move(p,table,0) move(g,p,1) move(b,o,2) move(g,y,3) move(b,g,4) move(o,b,5) move(p,o,6) move(p,table,0) move(g,table,1) move(b,o,2) move(g,y,3) move(b,g,4) move(o,b,5) move(p,o,6) +GRPOY0-000000-000000-000000-000000-000000-000000 1Towers/5 RP0000-OYG000-000000-000000-000000-000000-000000 2Towers/23 7 move(y,table,0) move(o,table,1) move(p,table,2) move(r,table,3) move(y,o,4) move(g,y,5) move(p,r,6) move(y,table,0) move(o,table,1) move(p,table,2) move(y,o,3) move(r,table,4) move(g,y,5) move(p,r,6) move(y,table,0) move(o,table,1) move(y,o,2) move(p,table,3) move(r,table,4) move(g,y,5) move(p,r,6) move(y,table,0) move(o,table,1) move(y,o,2) move(p,y,3) move(r,table,4) move(p,r,5) move(g,y,6) move(y,table,0) move(o,table,1) move(y,o,2) move(p,table,3) move(r,table,4) move(p,r,5) move(g,y,6) move(y,table,0) move(o,table,1) move(p,table,2) move(y,o,3) move(r,table,4) move(p,r,5) move(g,y,6) move(y,table,0) move(o,table,1) move(p,table,2) move(r,table,3) move(y,o,4) move(p,r,5) move(g,y,6) move(y,table,0) move(o,table,1) move(p,o,2) move(r,table,3) move(p,r,4) move(y,o,5) move(g,y,6) move(y,table,0) move(o,table,1) move(p,y,2) move(r,table,3) move(p,r,4) move(y,o,5) move(g,y,6) move(y,table,0) move(o,table,1) move(p,table,2) move(r,table,3) move(p,r,4) move(y,o,5) move(g,y,6) +BY0000-RGO000-000000-000000-000000-000000-000000 2Towers/23 BRYGO0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(o,table,1) move(g,table,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) move(o,table,0) move(y,table,1) move(g,table,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) move(o,table,0) move(g,table,1) move(y,g,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) move(o,table,0) move(g,table,1) move(y,table,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) move(o,table,0) move(y,table,1) move(g,o,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) move(y,table,0) move(o,table,1) move(g,o,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) move(o,table,0) move(g,o,1) move(y,table,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) move(o,table,0) move(g,o,1) move(y,g,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) move(o,table,0) move(y,o,1) move(g,table,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) move(o,table,0) move(g,table,1) move(y,o,2) move(r,b,3) move(y,r,4) move(g,y,5) move(o,g,6) +B00000-ROGP00-000000-000000-000000-000000-000000 2Towers/14 OGPRB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(g,table,1) move(o,table,2) move(g,o,3) move(p,g,4) move(r,p,5) move(b,r,6) move(p,table,0) move(g,b,1) move(o,table,2) move(g,o,3) move(p,g,4) move(r,p,5) move(b,r,6) move(p,table,0) move(g,p,1) move(o,table,2) move(g,o,3) move(p,g,4) move(r,p,5) move(b,r,6) move(p,b,0) move(g,table,1) move(o,table,2) move(g,o,3) move(p,g,4) move(r,p,5) move(b,r,6) move(p,b,0) move(g,p,1) move(o,table,2) move(g,o,3) move(p,g,4) move(r,p,5) move(b,r,6) +ROPGY0-000000-000000-000000-000000-000000-000000 1Towers/5 YORGP0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(g,table,1) move(p,table,2) move(o,y,3) move(r,o,4) move(g,r,5) move(p,g,6) +GOYRB0-000000-000000-000000-000000-000000-000000 1Towers/5 BOGYR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(r,table,1) move(y,table,2) move(o,b,3) move(g,o,4) move(y,g,5) move(r,y,6) move(b,table,0) move(r,table,1) move(y,r,2) move(o,b,3) move(g,o,4) move(y,g,5) move(r,y,6) +OG0000-YRP000-000000-000000-000000-000000-000000 2Towers/23 OYRPG0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(r,table,1) move(g,table,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) move(p,table,0) move(g,table,1) move(r,table,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) move(g,table,0) move(p,table,1) move(r,table,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) move(g,table,0) move(p,g,1) move(r,table,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) move(p,table,0) move(g,table,1) move(r,g,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) move(g,table,0) move(p,table,1) move(r,g,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) move(p,table,0) move(r,p,1) move(g,table,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) move(p,table,0) move(g,table,1) move(r,p,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) move(g,table,0) move(p,table,1) move(r,p,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) move(g,table,0) move(p,g,1) move(r,p,2) move(y,o,3) move(r,y,4) move(p,r,5) move(g,p,6) +PRGBY0-000000-000000-000000-000000-000000-000000 1Towers/5 GRYBP0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(b,table,1) move(g,table,2) move(r,g,3) move(y,r,4) move(b,y,5) move(p,b,6) +OGYRB0-000000-000000-000000-000000-000000-000000 1Towers/5 Y00000-GRBO00-000000-000000-000000-000000-000000 2Towers/14 7 move(b,table,0) move(r,table,1) move(y,table,2) move(g,table,3) move(r,g,4) move(b,r,5) move(o,b,6) move(b,table,0) move(r,b,1) move(y,table,2) move(g,table,3) move(r,g,4) move(b,r,5) move(o,b,6) +BR0000-OYG000-000000-000000-000000-000000-000000 2Towers/23 OBGRY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(y,table,1) move(r,table,2) move(b,o,3) move(g,b,4) move(r,g,5) move(y,r,6) move(r,table,0) move(g,table,1) move(y,table,2) move(b,o,3) move(g,b,4) move(r,g,5) move(y,r,6) move(g,table,0) move(r,table,1) move(y,table,2) move(b,o,3) move(g,b,4) move(r,g,5) move(y,r,6) move(g,table,0) move(y,table,1) move(r,y,2) move(b,o,3) move(g,b,4) move(r,g,5) move(y,r,6) move(r,table,0) move(g,r,1) move(y,table,2) move(b,o,3) move(g,b,4) move(r,g,5) move(y,r,6) +YGRPO0-000000-000000-000000-000000-000000-000000 1Towers/5 RO0000-YPG000-000000-000000-000000-000000-000000 2Towers/23 7 move(o,table,0) move(p,table,1) move(r,table,2) move(g,table,3) move(o,r,4) move(p,y,5) move(g,p,6) move(o,table,0) move(p,table,1) move(r,table,2) move(g,table,3) move(p,y,4) move(o,r,5) move(g,p,6) move(o,table,0) move(p,o,1) move(r,table,2) move(g,table,3) move(p,y,4) move(o,r,5) move(g,p,6) move(o,table,0) move(p,table,1) move(r,table,2) move(o,r,3) move(g,table,4) move(p,y,5) move(g,p,6) move(o,table,0) move(p,table,1) move(r,table,2) move(o,r,3) move(g,o,4) move(p,y,5) move(g,p,6) move(o,table,0) move(p,table,1) move(r,table,2) move(g,table,3) move(p,y,4) move(g,p,5) move(o,r,6) move(o,table,0) move(p,o,1) move(r,table,2) move(g,table,3) move(p,y,4) move(g,p,5) move(o,r,6) move(o,table,0) move(p,table,1) move(r,table,2) move(g,r,3) move(p,y,4) move(g,p,5) move(o,r,6) move(o,table,0) move(p,o,1) move(r,table,2) move(g,r,3) move(p,y,4) move(g,p,5) move(o,r,6) move(o,table,0) move(p,table,1) move(r,table,2) move(g,o,3) move(p,y,4) move(g,p,5) move(o,r,6) +YBOPR0-000000-000000-000000-000000-000000-000000 1Towers/5 B00000-YRPO00-000000-000000-000000-000000-000000 2Towers/14 7 move(r,table,0) move(p,table,1) move(o,table,2) move(b,table,3) move(r,y,4) move(p,r,5) move(o,p,6) +YG0000-BOR000-000000-000000-000000-000000-000000 2Towers/23 OYGRB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(g,r,1) move(o,table,2) move(y,o,3) move(g,y,4) move(r,g,5) move(b,r,6) move(g,table,0) move(r,table,1) move(o,table,2) move(y,o,3) move(g,y,4) move(r,g,5) move(b,r,6) move(r,table,0) move(g,table,1) move(o,table,2) move(y,o,3) move(g,y,4) move(r,g,5) move(b,r,6) move(r,table,0) move(o,table,1) move(g,table,2) move(y,o,3) move(g,y,4) move(r,g,5) move(b,r,6) move(r,table,0) move(o,table,1) move(g,b,2) move(y,o,3) move(g,y,4) move(r,g,5) move(b,r,6) move(r,table,0) move(o,table,1) move(g,r,2) move(y,o,3) move(g,y,4) move(r,g,5) move(b,r,6) +GBORP0-000000-000000-000000-000000-000000-000000 1Towers/5 GP0000-BRO000-000000-000000-000000-000000-000000 2Towers/23 7 move(p,table,0) move(r,table,1) move(o,table,2) move(b,table,3) move(r,b,4) move(o,r,5) move(p,g,6) move(p,table,0) move(r,table,1) move(o,p,2) move(b,table,3) move(r,b,4) move(o,r,5) move(p,g,6) move(p,table,0) move(r,p,1) move(o,table,2) move(b,table,3) move(r,b,4) move(o,r,5) move(p,g,6) move(p,table,0) move(r,table,1) move(o,table,2) move(b,table,3) move(r,b,4) move(p,g,5) move(o,r,6) move(p,table,0) move(r,p,1) move(o,table,2) move(b,table,3) move(r,b,4) move(p,g,5) move(o,r,6) move(p,table,0) move(r,table,1) move(o,table,2) move(b,table,3) move(p,g,4) move(r,b,5) move(o,r,6) +BYPRG0-000000-000000-000000-000000-000000-000000 1Towers/5 R00000-YGPB00-000000-000000-000000-000000-000000 2Towers/14 7 move(g,table,0) move(r,table,1) move(p,table,2) move(y,table,3) move(g,y,4) move(p,g,5) move(b,p,6) move(g,table,0) move(r,table,1) move(p,r,2) move(y,table,3) move(g,y,4) move(p,g,5) move(b,p,6) +GYBRO0-000000-000000-000000-000000-000000-000000 1Towers/5 GO0000-YRB000-000000-000000-000000-000000-000000 2Towers/23 7 move(o,table,0) move(r,table,1) move(b,table,2) move(y,table,3) move(r,y,4) move(b,r,5) move(o,g,6) move(o,table,0) move(r,table,1) move(b,o,2) move(y,table,3) move(r,y,4) move(b,r,5) move(o,g,6) move(o,table,0) move(r,o,1) move(b,table,2) move(y,table,3) move(r,y,4) move(b,r,5) move(o,g,6) move(o,table,0) move(r,table,1) move(b,table,2) move(y,table,3) move(o,g,4) move(r,y,5) move(b,r,6) move(o,table,0) move(r,table,1) move(b,table,2) move(y,table,3) move(r,y,4) move(o,g,5) move(b,r,6) move(o,table,0) move(r,o,1) move(b,table,2) move(y,table,3) move(r,y,4) move(o,g,5) move(b,r,6) +BPROY0-000000-000000-000000-000000-000000-000000 1Towers/5 O00000-PBYR00-000000-000000-000000-000000-000000 2Towers/14 7 move(y,table,0) move(o,table,1) move(r,table,2) move(p,table,3) move(b,p,4) move(y,b,5) move(r,y,6) move(y,table,0) move(o,table,1) move(r,o,2) move(p,table,3) move(b,p,4) move(y,b,5) move(r,y,6) +RYBPG0-000000-000000-000000-000000-000000-000000 1Towers/5 R00000-YPBG00-000000-000000-000000-000000-000000 2Towers/14 7 move(g,table,0) move(p,table,1) move(b,table,2) move(y,table,3) move(p,y,4) move(b,p,5) move(g,b,6) move(g,table,0) move(p,table,1) move(b,g,2) move(y,table,3) move(p,y,4) move(b,p,5) move(g,b,6) move(g,table,0) move(p,g,1) move(b,table,2) move(y,table,3) move(p,y,4) move(b,p,5) move(g,b,6) +BOGRP0-000000-000000-000000-000000-000000-000000 1Towers/5 GROPB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(r,table,1) move(g,table,2) move(r,g,3) move(o,r,4) move(p,o,5) move(b,p,6) move(p,table,0) move(r,p,1) move(g,table,2) move(r,g,3) move(o,r,4) move(p,o,5) move(b,p,6) +G00000-BRYO00-000000-000000-000000-000000-000000 2Towers/14 RBOYG0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(o,table,0) move(y,table,1) move(r,table,2) move(b,r,3) move(o,b,4) move(y,o,5) move(g,y,6) move(o,g,0) move(y,table,1) move(r,table,2) move(b,r,3) move(o,b,4) move(y,o,5) move(g,y,6) move(o,table,0) move(y,g,1) move(r,table,2) move(b,r,3) move(o,b,4) move(y,o,5) move(g,y,6) +GO0000-YRP000-000000-000000-000000-000000-000000 2Towers/23 PGOYR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(r,table,1) move(o,table,2) move(g,p,3) move(o,g,4) move(y,o,5) move(r,y,6) move(o,table,0) move(p,table,1) move(r,table,2) move(g,p,3) move(o,g,4) move(y,o,5) move(r,y,6) move(p,table,0) move(o,table,1) move(r,table,2) move(g,p,3) move(o,g,4) move(y,o,5) move(r,y,6) move(p,table,0) move(r,table,1) move(o,y,2) move(g,p,3) move(o,g,4) move(y,o,5) move(r,y,6) move(p,table,0) move(r,table,1) move(o,r,2) move(g,p,3) move(o,g,4) move(y,o,5) move(r,y,6) move(p,table,0) move(o,table,1) move(g,p,2) move(r,table,3) move(o,g,4) move(y,o,5) move(r,y,6) move(o,table,0) move(p,table,1) move(g,p,2) move(r,table,3) move(o,g,4) move(y,o,5) move(r,y,6) move(p,table,0) move(o,r,1) move(g,p,2) move(o,g,3) move(r,table,4) move(y,o,5) move(r,y,6) move(p,table,0) move(o,table,1) move(g,p,2) move(o,g,3) move(r,table,4) move(y,o,5) move(r,y,6) move(o,table,0) move(p,table,1) move(g,p,2) move(o,g,3) move(r,table,4) move(y,o,5) move(r,y,6) +GORPY0-000000-000000-000000-000000-000000-000000 1Towers/5 G00000-ORPY00-000000-000000-000000-000000-000000 2Towers/14 7 move(y,table,0) move(p,table,1) move(r,table,2) move(o,table,3) move(r,o,4) move(p,r,5) move(y,p,6) move(y,table,0) move(p,table,1) move(r,y,2) move(o,table,3) move(r,o,4) move(p,r,5) move(y,p,6) move(y,table,0) move(p,table,1) move(r,p,2) move(o,table,3) move(r,o,4) move(p,r,5) move(y,p,6) move(y,table,0) move(p,y,1) move(r,table,2) move(o,table,3) move(r,o,4) move(p,r,5) move(y,p,6) move(y,table,0) move(p,y,1) move(r,p,2) move(o,table,3) move(r,o,4) move(p,r,5) move(y,p,6) +BP0000-YGR000-000000-000000-000000-000000-000000 2Towers/23 YBPGR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(p,r,1) move(g,table,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) move(r,table,0) move(p,table,1) move(g,table,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) move(p,table,0) move(r,table,1) move(g,table,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) move(r,table,0) move(g,table,1) move(p,g,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) move(r,table,0) move(g,table,1) move(p,table,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) move(r,table,0) move(g,table,1) move(p,r,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) move(p,table,0) move(r,table,1) move(g,r,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) move(r,table,0) move(p,table,1) move(g,r,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) move(r,table,0) move(g,r,1) move(p,g,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) move(r,table,0) move(g,r,1) move(p,table,2) move(b,y,3) move(p,b,4) move(g,p,5) move(r,g,6) +P00000-RBYG00-000000-000000-000000-000000-000000 2Towers/14 PRGYB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(y,table,1) move(b,table,2) move(r,p,3) move(g,r,4) move(y,g,5) move(b,y,6) +ORBPY0-000000-000000-000000-000000-000000-000000 1Towers/5 RB0000-YOP000-000000-000000-000000-000000-000000 2Towers/23 7 move(y,table,0) move(p,table,1) move(b,table,2) move(r,table,3) move(b,r,4) move(o,y,5) move(p,o,6) move(y,table,0) move(p,table,1) move(b,table,2) move(r,table,3) move(o,y,4) move(b,r,5) move(p,o,6) move(y,table,0) move(p,table,1) move(b,y,2) move(r,table,3) move(b,r,4) move(o,y,5) move(p,o,6) move(y,table,0) move(p,table,1) move(b,p,2) move(r,table,3) move(b,r,4) move(o,y,5) move(p,o,6) move(y,table,0) move(p,table,1) move(b,p,2) move(r,table,3) move(o,y,4) move(b,r,5) move(p,o,6) move(y,table,0) move(p,table,1) move(b,table,2) move(r,table,3) move(o,y,4) move(p,o,5) move(b,r,6) +O00000-PGBR00-000000-000000-000000-000000-000000 2Towers/14 PRBOG0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(b,table,1) move(g,table,2) move(r,p,3) move(b,r,4) move(o,b,5) move(g,o,6) move(r,o,0) move(b,table,1) move(g,table,2) move(r,p,3) move(b,r,4) move(o,b,5) move(g,o,6) move(r,table,0) move(b,o,1) move(g,table,2) move(r,p,3) move(b,r,4) move(o,b,5) move(g,o,6) +Y00000-ROGB00-000000-000000-000000-000000-000000 2Towers/14 RGYOB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(g,table,1) move(o,table,2) move(g,r,3) move(y,g,4) move(o,y,5) move(b,o,6) move(b,table,0) move(g,b,1) move(o,table,2) move(g,r,3) move(y,g,4) move(o,y,5) move(b,o,6) move(b,table,0) move(g,y,1) move(o,table,2) move(g,r,3) move(y,g,4) move(o,y,5) move(b,o,6) move(b,table,0) move(g,y,1) move(o,b,2) move(g,r,3) move(y,g,4) move(o,y,5) move(b,o,6) move(b,table,0) move(g,table,1) move(o,b,2) move(g,r,3) move(y,g,4) move(o,y,5) move(b,o,6) +YOBPR0-000000-000000-000000-000000-000000-000000 1Towers/5 RBPYO0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(p,table,1) move(b,r,2) move(o,table,3) move(p,b,4) move(y,p,5) move(o,y,6) move(r,table,0) move(p,table,1) move(b,r,2) move(p,b,3) move(o,table,4) move(y,p,5) move(o,y,6) +GRYBP0-000000-000000-000000-000000-000000-000000 1Towers/5 RP0000-YBG000-000000-000000-000000-000000-000000 2Towers/23 7 move(p,table,0) move(b,table,1) move(y,table,2) move(r,table,3) move(b,y,4) move(g,b,5) move(p,r,6) move(p,table,0) move(b,p,1) move(y,table,2) move(r,table,3) move(b,y,4) move(g,b,5) move(p,r,6) move(p,table,0) move(b,table,1) move(y,table,2) move(b,y,3) move(r,table,4) move(g,b,5) move(p,r,6) move(p,table,0) move(b,p,1) move(y,table,2) move(b,y,3) move(r,table,4) move(g,b,5) move(p,r,6) move(p,table,0) move(b,table,1) move(y,table,2) move(r,table,3) move(b,y,4) move(p,r,5) move(g,b,6) move(p,table,0) move(b,p,1) move(y,table,2) move(r,table,3) move(b,y,4) move(p,r,5) move(g,b,6) move(p,table,0) move(b,table,1) move(y,table,2) move(b,y,3) move(r,table,4) move(p,r,5) move(g,b,6) move(p,table,0) move(b,p,1) move(y,table,2) move(b,y,3) move(r,table,4) move(p,r,5) move(g,b,6) move(p,table,0) move(b,table,1) move(y,table,2) move(r,table,3) move(p,r,4) move(b,y,5) move(g,b,6) +GYBPR0-000000-000000-000000-000000-000000-000000 1Towers/5 B00000-PGYR00-000000-000000-000000-000000-000000 2Towers/14 7 move(r,table,0) move(p,table,1) move(b,table,2) move(y,table,3) move(g,p,4) move(y,g,5) move(r,y,6) move(r,table,0) move(p,table,1) move(b,table,2) move(y,r,3) move(g,p,4) move(y,g,5) move(r,y,6) move(r,table,0) move(p,table,1) move(b,table,2) move(y,b,3) move(g,p,4) move(y,g,5) move(r,y,6) +GOPYB0-000000-000000-000000-000000-000000-000000 1Towers/5 Y00000-BGOP00-000000-000000-000000-000000-000000 2Towers/14 7 move(b,table,0) move(y,table,1) move(p,table,2) move(o,table,3) move(g,b,4) move(o,g,5) move(p,o,6) move(b,table,0) move(y,table,1) move(p,y,2) move(o,table,3) move(g,b,4) move(o,g,5) move(p,o,6) move(b,table,0) move(y,table,1) move(p,table,2) move(o,y,3) move(g,b,4) move(o,g,5) move(p,o,6) move(b,table,0) move(y,table,1) move(p,table,2) move(o,p,3) move(g,b,4) move(o,g,5) move(p,o,6) move(b,table,0) move(y,table,1) move(p,y,2) move(o,p,3) move(g,b,4) move(o,g,5) move(p,o,6) +RPBOY0-000000-000000-000000-000000-000000-000000 1Towers/5 BOPRY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(o,table,1) move(b,table,2) move(o,b,3) move(p,o,4) move(r,p,5) move(y,r,6) move(y,table,0) move(o,y,1) move(b,table,2) move(o,b,3) move(p,o,4) move(r,p,5) move(y,r,6) +RP0000-GOY000-000000-000000-000000-000000-000000 2Towers/23 GRPYO0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(o,table,1) move(p,table,2) move(r,g,3) move(p,r,4) move(y,p,5) move(o,y,6) move(p,table,0) move(y,table,1) move(o,table,2) move(r,g,3) move(p,r,4) move(y,p,5) move(o,y,6) move(y,table,0) move(p,table,1) move(o,table,2) move(r,g,3) move(p,r,4) move(y,p,5) move(o,y,6) move(y,table,0) move(o,table,1) move(p,y,2) move(r,g,3) move(p,r,4) move(y,p,5) move(o,y,6) move(y,table,0) move(p,y,1) move(o,table,2) move(r,g,3) move(p,r,4) move(y,p,5) move(o,y,6) move(y,table,0) move(o,table,1) move(p,o,2) move(r,g,3) move(p,r,4) move(y,p,5) move(o,y,6) +BO0000-YPG000-000000-000000-000000-000000-000000 2Towers/23 PGBOY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(p,table,1) move(o,table,2) move(g,p,3) move(b,g,4) move(o,b,5) move(y,o,6) move(o,table,0) move(g,table,1) move(p,table,2) move(g,p,3) move(b,g,4) move(o,b,5) move(y,o,6) move(g,table,0) move(o,table,1) move(p,table,2) move(g,p,3) move(b,g,4) move(o,b,5) move(y,o,6) move(g,table,0) move(p,table,1) move(o,y,2) move(g,p,3) move(b,g,4) move(o,b,5) move(y,o,6) move(o,table,0) move(g,b,1) move(p,table,2) move(g,p,3) move(b,g,4) move(o,b,5) move(y,o,6) move(o,table,0) move(g,o,1) move(p,table,2) move(g,p,3) move(b,g,4) move(o,b,5) move(y,o,6) move(g,o,0) move(p,table,1) move(g,p,2) move(o,table,3) move(b,g,4) move(o,b,5) move(y,o,6) move(g,o,0) move(p,table,1) move(g,p,2) move(o,y,3) move(b,g,4) move(o,b,5) move(y,o,6) move(g,table,0) move(p,table,1) move(g,p,2) move(o,table,3) move(b,g,4) move(o,b,5) move(y,o,6) move(g,table,0) move(p,table,1) move(g,p,2) move(o,y,3) move(b,g,4) move(o,b,5) move(y,o,6) +BYGOR0-000000-000000-000000-000000-000000-000000 1Towers/5 GB0000-YOR000-000000-000000-000000-000000-000000 2Towers/23 7 move(r,table,0) move(o,table,1) move(g,table,2) move(y,table,3) move(b,g,4) move(o,y,5) move(r,o,6) move(r,table,0) move(o,r,1) move(g,table,2) move(y,table,3) move(b,g,4) move(o,y,5) move(r,o,6) move(r,table,0) move(o,table,1) move(g,table,2) move(y,table,3) move(o,y,4) move(b,g,5) move(r,o,6) move(r,table,0) move(o,r,1) move(g,table,2) move(y,table,3) move(o,y,4) move(b,g,5) move(r,o,6) move(r,table,0) move(o,table,1) move(g,table,2) move(y,table,3) move(o,y,4) move(r,o,5) move(b,g,6) move(r,table,0) move(o,r,1) move(g,table,2) move(y,table,3) move(o,y,4) move(r,o,5) move(b,g,6) +GOPRY0-000000-000000-000000-000000-000000-000000 1Towers/5 PORGY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(r,table,1) move(p,table,2) move(o,p,3) move(r,o,4) move(g,r,5) move(y,g,6) move(y,table,0) move(r,y,1) move(p,table,2) move(o,p,3) move(r,o,4) move(g,r,5) move(y,g,6) +PGRYO0-000000-000000-000000-000000-000000-000000 1Towers/5 GY0000-POR000-000000-000000-000000-000000-000000 2Towers/23 7 move(o,table,0) move(y,table,1) move(r,table,2) move(g,table,3) move(y,g,4) move(o,p,5) move(r,o,6) move(o,table,0) move(y,table,1) move(r,table,2) move(g,table,3) move(o,p,4) move(y,g,5) move(r,o,6) move(o,table,0) move(y,o,1) move(r,table,2) move(g,table,3) move(y,g,4) move(o,p,5) move(r,o,6) move(o,table,0) move(y,table,1) move(r,y,2) move(g,table,3) move(o,p,4) move(r,o,5) move(y,g,6) move(o,table,0) move(y,table,1) move(r,table,2) move(g,table,3) move(o,p,4) move(r,o,5) move(y,g,6) +ORYPB0-000000-000000-000000-000000-000000-000000 1Towers/5 RB0000-OPY000-000000-000000-000000-000000-000000 2Towers/23 7 move(b,table,0) move(p,table,1) move(y,table,2) move(r,table,3) move(b,r,4) move(p,o,5) move(y,p,6) move(b,table,0) move(p,table,1) move(y,table,2) move(r,table,3) move(p,o,4) move(b,r,5) move(y,p,6) move(b,table,0) move(p,b,1) move(y,table,2) move(r,table,3) move(p,o,4) move(b,r,5) move(y,p,6) move(b,table,0) move(p,table,1) move(y,table,2) move(r,table,3) move(p,o,4) move(y,p,5) move(b,r,6) move(b,table,0) move(p,b,1) move(y,table,2) move(r,table,3) move(p,o,4) move(y,p,5) move(b,r,6) move(b,table,0) move(p,table,1) move(y,b,2) move(r,table,3) move(p,o,4) move(y,p,5) move(b,r,6) +YO0000-RBG000-000000-000000-000000-000000-000000 2Towers/23 ORGYB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(b,table,1) move(o,table,2) move(r,o,3) move(g,r,4) move(y,g,5) move(b,y,6) move(g,table,0) move(o,table,1) move(b,table,2) move(r,o,3) move(g,r,4) move(y,g,5) move(b,y,6) move(o,table,0) move(g,table,1) move(b,table,2) move(r,o,3) move(g,r,4) move(y,g,5) move(b,y,6) move(o,table,0) move(g,y,1) move(b,table,2) move(r,o,3) move(g,r,4) move(y,g,5) move(b,y,6) +GRYBO0-000000-000000-000000-000000-000000-000000 1Towers/5 BOYGR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(o,table,0) move(b,table,1) move(o,b,2) move(y,o,3) move(r,table,4) move(g,y,5) move(r,g,6) +R00000-YBOP00-000000-000000-000000-000000-000000 2Towers/14 BYORP0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(o,table,1) move(b,table,2) move(y,b,3) move(o,y,4) move(r,o,5) move(p,r,6) move(p,table,0) move(o,r,1) move(b,table,2) move(y,b,3) move(o,y,4) move(r,o,5) move(p,r,6) move(p,table,0) move(o,p,1) move(b,table,2) move(y,b,3) move(o,y,4) move(r,o,5) move(p,r,6) +GYBPO0-000000-000000-000000-000000-000000-000000 1Towers/5 BG0000-YOP000-000000-000000-000000-000000-000000 2Towers/23 7 move(o,table,0) move(p,table,1) move(b,table,2) move(y,table,3) move(g,b,4) move(o,y,5) move(p,o,6) move(o,table,0) move(p,table,1) move(b,table,2) move(y,table,3) move(o,y,4) move(g,b,5) move(p,o,6) move(o,table,0) move(p,table,1) move(b,table,2) move(y,table,3) move(o,y,4) move(p,o,5) move(g,b,6) +GPYRO0-000000-000000-000000-000000-000000-000000 1Towers/5 RO0000-PYG000-000000-000000-000000-000000-000000 2Towers/23 7 move(o,table,0) move(r,table,1) move(y,table,2) move(p,table,3) move(y,p,4) move(g,y,5) move(o,r,6) move(o,table,0) move(r,table,1) move(y,r,2) move(p,table,3) move(y,p,4) move(g,y,5) move(o,r,6) move(o,table,0) move(r,table,1) move(y,o,2) move(p,table,3) move(y,p,4) move(g,y,5) move(o,r,6) move(o,table,0) move(r,table,1) move(y,table,2) move(p,table,3) move(y,p,4) move(o,r,5) move(g,y,6) move(o,table,0) move(r,table,1) move(y,o,2) move(p,table,3) move(y,p,4) move(o,r,5) move(g,y,6) move(o,table,0) move(r,table,1) move(y,r,2) move(p,table,3) move(y,p,4) move(o,r,5) move(g,y,6) move(o,table,0) move(r,table,1) move(o,r,2) move(y,table,3) move(p,table,4) move(y,p,5) move(g,y,6) move(o,table,0) move(r,table,1) move(o,r,2) move(y,o,3) move(p,table,4) move(y,p,5) move(g,y,6) move(o,table,0) move(r,table,1) move(y,table,2) move(o,r,3) move(p,table,4) move(y,p,5) move(g,y,6) move(o,table,0) move(r,table,1) move(y,table,2) move(p,table,3) move(o,r,4) move(y,p,5) move(g,y,6) +RYBGP0-000000-000000-000000-000000-000000-000000 1Towers/5 BP0000-YGR000-000000-000000-000000-000000-000000 2Towers/23 7 move(p,table,0) move(g,table,1) move(b,table,2) move(y,table,3) move(g,y,4) move(r,g,5) move(p,b,6) move(p,table,0) move(g,p,1) move(b,table,2) move(y,table,3) move(g,y,4) move(r,g,5) move(p,b,6) move(p,table,0) move(g,table,1) move(b,table,2) move(y,table,3) move(g,y,4) move(p,b,5) move(r,g,6) move(p,table,0) move(g,p,1) move(b,table,2) move(y,table,3) move(g,y,4) move(p,b,5) move(r,g,6) move(p,table,0) move(g,table,1) move(b,table,2) move(y,table,3) move(p,b,4) move(g,y,5) move(r,g,6) move(p,table,0) move(g,table,1) move(b,table,2) move(p,b,3) move(y,table,4) move(g,y,5) move(r,g,6) +PGBOY0-000000-000000-000000-000000-000000-000000 1Towers/5 O00000-YPBG00-000000-000000-000000-000000-000000 2Towers/14 7 move(y,table,0) move(o,table,1) move(b,table,2) move(g,table,3) move(p,y,4) move(b,p,5) move(g,b,6) move(y,table,0) move(o,table,1) move(b,o,2) move(g,table,3) move(p,y,4) move(b,p,5) move(g,b,6) move(y,table,0) move(o,table,1) move(b,table,2) move(g,o,3) move(p,y,4) move(b,p,5) move(g,b,6) +ORGYB0-000000-000000-000000-000000-000000-000000 1Towers/5 RG0000-OBY000-000000-000000-000000-000000-000000 2Towers/23 7 move(b,table,0) move(y,table,1) move(g,table,2) move(r,table,3) move(b,o,4) move(g,r,5) move(y,b,6) move(b,table,0) move(y,table,1) move(g,table,2) move(r,table,3) move(g,r,4) move(b,o,5) move(y,b,6) move(b,table,0) move(y,table,1) move(g,b,2) move(r,table,3) move(g,r,4) move(b,o,5) move(y,b,6) move(b,table,0) move(y,table,1) move(g,y,2) move(r,table,3) move(g,r,4) move(b,o,5) move(y,b,6) move(b,table,0) move(y,table,1) move(g,y,2) move(r,table,3) move(b,o,4) move(g,r,5) move(y,b,6) move(b,table,0) move(y,table,1) move(g,table,2) move(r,table,3) move(b,o,4) move(y,b,5) move(g,r,6) +PYBGR0-000000-000000-000000-000000-000000-000000 1Towers/5 BGYRP0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(g,table,1) move(b,table,2) move(g,b,3) move(y,g,4) move(r,y,5) move(p,r,6) move(r,table,0) move(g,r,1) move(b,table,2) move(g,b,3) move(y,g,4) move(r,y,5) move(p,r,6) +RBPYG0-000000-000000-000000-000000-000000-000000 1Towers/5 B00000-PGYR00-000000-000000-000000-000000-000000 2Towers/14 7 move(g,table,0) move(y,table,1) move(p,table,2) move(b,table,3) move(g,p,4) move(y,g,5) move(r,y,6) move(g,table,0) move(y,table,1) move(p,table,2) move(g,p,3) move(b,table,4) move(y,g,5) move(r,y,6) move(g,table,0) move(y,table,1) move(p,table,2) move(g,p,3) move(y,g,4) move(b,table,5) move(r,y,6) +B00000-YOGR00-000000-000000-000000-000000-000000 2Towers/14 OYRGB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(g,table,1) move(o,table,2) move(y,o,3) move(r,y,4) move(g,r,5) move(b,g,6) move(r,b,0) move(g,table,1) move(o,table,2) move(y,o,3) move(r,y,4) move(g,r,5) move(b,g,6) move(r,table,0) move(g,b,1) move(o,table,2) move(y,o,3) move(r,y,4) move(g,r,5) move(b,g,6) +O00000-RPBG00-000000-000000-000000-000000-000000 2Towers/14 RGBPO0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(b,table,1) move(p,table,2) move(g,r,3) move(b,g,4) move(p,b,5) move(o,p,6) move(g,o,0) move(b,table,1) move(p,table,2) move(g,r,3) move(b,g,4) move(p,b,5) move(o,p,6) move(g,table,0) move(b,o,1) move(p,table,2) move(g,r,3) move(b,g,4) move(p,b,5) move(o,p,6) move(g,table,0) move(b,table,1) move(p,o,2) move(g,r,3) move(b,g,4) move(p,b,5) move(o,p,6) +Y00000-BOGP00-000000-000000-000000-000000-000000 2Towers/14 BPOGY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(g,table,1) move(o,table,2) move(p,b,3) move(o,p,4) move(g,o,5) move(y,g,6) move(p,y,0) move(g,table,1) move(o,table,2) move(p,b,3) move(o,p,4) move(g,o,5) move(y,g,6) move(p,table,0) move(g,table,1) move(o,g,2) move(p,b,3) move(o,p,4) move(g,o,5) move(y,g,6) move(p,y,0) move(g,table,1) move(o,g,2) move(p,b,3) move(o,p,4) move(g,o,5) move(y,g,6) move(p,table,0) move(g,y,1) move(o,table,2) move(p,b,3) move(o,p,4) move(g,o,5) move(y,g,6) move(p,table,0) move(g,y,1) move(o,g,2) move(p,b,3) move(o,p,4) move(g,o,5) move(y,g,6) move(p,table,0) move(g,table,1) move(o,y,2) move(p,b,3) move(o,p,4) move(g,o,5) move(y,g,6) +PR0000-BYG000-000000-000000-000000-000000-000000 2Towers/23 GPBRY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(r,table,1) move(p,g,2) move(y,table,3) move(b,p,4) move(r,b,5) move(y,r,6) move(r,table,0) move(g,table,1) move(p,g,2) move(y,table,3) move(b,p,4) move(r,b,5) move(y,r,6) move(g,table,0) move(y,table,1) move(r,y,2) move(p,g,3) move(b,p,4) move(r,b,5) move(y,r,6) move(g,table,0) move(r,table,1) move(y,table,2) move(p,g,3) move(b,p,4) move(r,b,5) move(y,r,6) move(r,table,0) move(g,table,1) move(y,table,2) move(p,g,3) move(b,p,4) move(r,b,5) move(y,r,6) move(g,table,0) move(y,table,1) move(r,table,2) move(p,g,3) move(b,p,4) move(r,b,5) move(y,r,6) +RBGYO0-000000-000000-000000-000000-000000-000000 1Towers/5 O00000-BRGY00-000000-000000-000000-000000-000000 2Towers/14 7 move(o,table,0) move(y,table,1) move(g,table,2) move(b,table,3) move(r,b,4) move(g,r,5) move(y,g,6) move(o,table,0) move(y,table,1) move(g,o,2) move(b,table,3) move(r,b,4) move(g,r,5) move(y,g,6) move(o,table,0) move(y,o,1) move(g,table,2) move(b,table,3) move(r,b,4) move(g,r,5) move(y,g,6) move(o,table,0) move(y,table,1) move(g,y,2) move(b,table,3) move(r,b,4) move(g,r,5) move(y,g,6) move(o,table,0) move(y,o,1) move(g,y,2) move(b,table,3) move(r,b,4) move(g,r,5) move(y,g,6) +RP0000-BYG000-000000-000000-000000-000000-000000 2Towers/23 PRBGY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(y,table,1) move(p,table,2) move(r,p,3) move(b,r,4) move(g,b,5) move(y,g,6) move(p,table,0) move(g,table,1) move(y,table,2) move(r,p,3) move(b,r,4) move(g,b,5) move(y,g,6) move(g,table,0) move(p,table,1) move(y,table,2) move(r,p,3) move(b,r,4) move(g,b,5) move(y,g,6) move(p,table,0) move(r,p,1) move(g,table,2) move(y,table,3) move(b,r,4) move(g,b,5) move(y,g,6) move(p,table,0) move(g,table,1) move(r,p,2) move(y,table,3) move(b,r,4) move(g,b,5) move(y,g,6) move(g,table,0) move(p,table,1) move(r,p,2) move(y,table,3) move(b,r,4) move(g,b,5) move(y,g,6) +GPYOB0-000000-000000-000000-000000-000000-000000 1Towers/5 O00000-BGYP00-000000-000000-000000-000000-000000 2Towers/14 7 move(b,table,0) move(o,table,1) move(y,table,2) move(p,table,3) move(g,b,4) move(y,g,5) move(p,y,6) move(b,table,0) move(o,table,1) move(y,o,2) move(p,table,3) move(g,b,4) move(y,g,5) move(p,y,6) move(b,table,0) move(o,table,1) move(y,table,2) move(p,o,3) move(g,b,4) move(y,g,5) move(p,y,6) +RYOBG0-000000-000000-000000-000000-000000-000000 1Towers/5 BYROG0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(b,table,1) move(o,table,2) move(y,b,3) move(r,y,4) move(o,r,5) move(g,o,6) move(g,table,0) move(b,table,1) move(o,g,2) move(y,b,3) move(r,y,4) move(o,r,5) move(g,o,6) +GO0000-YPB000-000000-000000-000000-000000-000000 2Towers/23 OGYPB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(p,table,1) move(o,table,2) move(g,o,3) move(y,g,4) move(p,y,5) move(b,p,6) move(b,table,0) move(o,table,1) move(p,table,2) move(g,o,3) move(y,g,4) move(p,y,5) move(b,p,6) move(o,table,0) move(b,table,1) move(p,table,2) move(g,o,3) move(y,g,4) move(p,y,5) move(b,p,6) move(o,table,0) move(b,table,1) move(g,o,2) move(p,table,3) move(y,g,4) move(p,y,5) move(b,p,6) move(o,table,0) move(g,o,1) move(b,table,2) move(p,table,3) move(y,g,4) move(p,y,5) move(b,p,6) move(b,table,0) move(o,table,1) move(g,o,2) move(p,table,3) move(y,g,4) move(p,y,5) move(b,p,6) move(o,table,0) move(b,table,1) move(p,b,2) move(g,o,3) move(y,g,4) move(p,y,5) move(b,p,6) move(o,table,0) move(g,o,1) move(b,table,2) move(p,b,3) move(y,g,4) move(p,y,5) move(b,p,6) move(o,table,0) move(b,table,1) move(g,o,2) move(p,b,3) move(y,g,4) move(p,y,5) move(b,p,6) move(b,table,0) move(o,table,1) move(p,b,2) move(g,o,3) move(y,g,4) move(p,y,5) move(b,p,6) move(b,table,0) move(p,b,1) move(o,table,2) move(g,o,3) move(y,g,4) move(p,y,5) move(b,p,6) move(b,table,0) move(o,table,1) move(g,o,2) move(p,b,3) move(y,g,4) move(p,y,5) move(b,p,6) +OPBRY0-000000-000000-000000-000000-000000-000000 1Towers/5 RPBOY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(r,table,1) move(b,table,2) move(p,r,3) move(b,p,4) move(o,b,5) move(y,o,6) move(y,table,0) move(r,table,1) move(b,y,2) move(p,r,3) move(b,p,4) move(o,b,5) move(y,o,6) +G00000-YOPR00-000000-000000-000000-000000-000000 2Towers/14 OYPGR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(p,table,1) move(o,table,2) move(y,o,3) move(p,y,4) move(g,p,5) move(r,g,6) move(r,table,0) move(p,g,1) move(o,table,2) move(y,o,3) move(p,y,4) move(g,p,5) move(r,g,6) move(r,table,0) move(p,r,1) move(o,table,2) move(y,o,3) move(p,y,4) move(g,p,5) move(r,g,6) +Y00000-OPRG00-000000-000000-000000-000000-000000 2Towers/14 PYGRO0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(r,table,1) move(p,table,2) move(y,p,3) move(g,y,4) move(r,g,5) move(o,r,6) +B00000-YOPR00-000000-000000-000000-000000-000000 2Towers/14 OYRPB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(p,table,1) move(o,table,2) move(y,o,3) move(r,y,4) move(p,r,5) move(b,p,6) move(r,b,0) move(p,table,1) move(o,table,2) move(y,o,3) move(r,y,4) move(p,r,5) move(b,p,6) move(r,table,0) move(p,b,1) move(o,table,2) move(y,o,3) move(r,y,4) move(p,r,5) move(b,p,6) +GBYOP0-000000-000000-000000-000000-000000-000000 1Towers/5 Y00000-GOPB00-000000-000000-000000-000000-000000 2Towers/14 7 move(p,table,0) move(o,table,1) move(y,table,2) move(b,table,3) move(o,g,4) move(p,o,5) move(b,p,6) move(p,table,0) move(o,p,1) move(y,table,2) move(b,table,3) move(o,g,4) move(p,o,5) move(b,p,6) move(p,table,0) move(o,table,1) move(y,table,2) move(b,y,3) move(o,g,4) move(p,o,5) move(b,p,6) move(p,table,0) move(o,p,1) move(y,table,2) move(b,y,3) move(o,g,4) move(p,o,5) move(b,p,6) +R00000-PGOY00-000000-000000-000000-000000-000000 2Towers/14 PORYG0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(o,table,1) move(g,table,2) move(o,p,3) move(r,o,4) move(y,r,5) move(g,y,6) move(y,table,0) move(o,r,1) move(g,table,2) move(o,p,3) move(r,o,4) move(y,r,5) move(g,y,6) move(y,table,0) move(o,y,1) move(g,table,2) move(o,p,3) move(r,o,4) move(y,r,5) move(g,y,6) +GBOPY0-000000-000000-000000-000000-000000-000000 1Towers/5 OBPYG0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(p,table,1) move(o,table,2) move(b,o,3) move(p,b,4) move(y,p,5) move(g,y,6) move(y,table,0) move(p,y,1) move(o,table,2) move(b,o,3) move(p,b,4) move(y,p,5) move(g,y,6) +GBYOR0-000000-000000-000000-000000-000000-000000 1Towers/5 Y00000-OGRB00-000000-000000-000000-000000-000000 2Towers/14 7 move(r,table,0) move(o,table,1) move(y,table,2) move(b,table,3) move(g,o,4) move(r,g,5) move(b,r,6) move(r,table,0) move(o,table,1) move(y,table,2) move(b,y,3) move(g,o,4) move(r,g,5) move(b,r,6) +G00000-PBOY00-000000-000000-000000-000000-000000 2Towers/14 BGPYO0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(o,table,1) move(b,table,2) move(g,b,3) move(p,g,4) move(y,p,5) move(o,y,6) +Y00000-RGBO00-000000-000000-000000-000000-000000 2Towers/14 ROGBY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(o,table,0) move(b,table,1) move(g,table,2) move(o,r,3) move(g,o,4) move(b,g,5) move(y,b,6) move(o,y,0) move(b,table,1) move(g,table,2) move(o,r,3) move(g,o,4) move(b,g,5) move(y,b,6) move(o,table,0) move(b,y,1) move(g,table,2) move(o,r,3) move(g,o,4) move(b,g,5) move(y,b,6) move(o,table,0) move(b,table,1) move(g,y,2) move(o,r,3) move(g,o,4) move(b,g,5) move(y,b,6) move(o,table,0) move(b,table,1) move(g,b,2) move(o,r,3) move(g,o,4) move(b,g,5) move(y,b,6) move(o,y,0) move(b,table,1) move(g,b,2) move(o,r,3) move(g,o,4) move(b,g,5) move(y,b,6) move(o,table,0) move(b,y,1) move(g,b,2) move(o,r,3) move(g,o,4) move(b,g,5) move(y,b,6) +PGBOY0-000000-000000-000000-000000-000000-000000 1Towers/5 GO0000-PYB000-000000-000000-000000-000000-000000 2Towers/23 7 move(y,table,0) move(o,table,1) move(b,table,2) move(g,table,3) move(y,p,4) move(b,y,5) move(o,g,6) move(y,table,0) move(o,table,1) move(b,o,2) move(g,table,3) move(y,p,4) move(b,y,5) move(o,g,6) move(y,table,0) move(o,table,1) move(b,table,2) move(g,table,3) move(y,p,4) move(o,g,5) move(b,y,6) move(y,table,0) move(o,table,1) move(b,table,2) move(g,table,3) move(o,g,4) move(y,p,5) move(b,y,6) move(y,table,0) move(o,y,1) move(b,table,2) move(g,table,3) move(o,g,4) move(y,p,5) move(b,y,6) +BROGY0-000000-000000-000000-000000-000000-000000 1Towers/5 YROGB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(g,table,1) move(o,table,2) move(r,y,3) move(o,r,4) move(g,o,5) move(b,g,6) move(y,table,0) move(g,table,1) move(o,g,2) move(r,y,3) move(o,r,4) move(g,o,5) move(b,g,6) +Y00000-BRGP00-000000-000000-000000-000000-000000 2Towers/14 RBGYP0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(g,table,1) move(r,table,2) move(b,r,3) move(g,b,4) move(y,g,5) move(p,y,6) move(p,table,0) move(g,y,1) move(r,table,2) move(b,r,3) move(g,b,4) move(y,g,5) move(p,y,6) move(p,table,0) move(g,p,1) move(r,table,2) move(b,r,3) move(g,b,4) move(y,g,5) move(p,y,6) +ROYPG0-000000-000000-000000-000000-000000-000000 1Towers/5 P00000-YGRO00-000000-000000-000000-000000-000000 2Towers/14 7 move(g,table,0) move(p,table,1) move(y,table,2) move(o,table,3) move(g,y,4) move(r,g,5) move(o,r,6) move(g,table,0) move(p,table,1) move(y,table,2) move(g,y,3) move(o,table,4) move(r,g,5) move(o,r,6) move(g,table,0) move(p,table,1) move(y,table,2) move(g,y,3) move(o,p,4) move(r,g,5) move(o,r,6) move(g,table,0) move(p,table,1) move(y,table,2) move(o,p,3) move(g,y,4) move(r,g,5) move(o,r,6) +O00000-RPGB00-000000-000000-000000-000000-000000 2Towers/14 RBPGO0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(g,table,1) move(p,table,2) move(b,r,3) move(p,b,4) move(g,p,5) move(o,g,6) move(b,o,0) move(g,table,1) move(p,table,2) move(b,r,3) move(p,b,4) move(g,p,5) move(o,g,6) move(b,table,0) move(g,o,1) move(p,table,2) move(b,r,3) move(p,b,4) move(g,p,5) move(o,g,6) move(b,table,0) move(g,table,1) move(p,o,2) move(b,r,3) move(p,b,4) move(g,p,5) move(o,g,6) move(b,table,0) move(g,table,1) move(p,g,2) move(b,r,3) move(p,b,4) move(g,p,5) move(o,g,6) move(b,o,0) move(g,table,1) move(p,g,2) move(b,r,3) move(p,b,4) move(g,p,5) move(o,g,6) move(b,table,0) move(g,o,1) move(p,g,2) move(b,r,3) move(p,b,4) move(g,p,5) move(o,g,6) +POYBG0-000000-000000-000000-000000-000000-000000 1Towers/5 B00000-OYPG00-000000-000000-000000-000000-000000 2Towers/14 7 move(g,table,0) move(b,table,1) move(y,table,2) move(o,table,3) move(y,o,4) move(p,y,5) move(g,p,6) move(g,table,0) move(b,table,1) move(y,b,2) move(o,table,3) move(y,o,4) move(p,y,5) move(g,p,6) move(g,table,0) move(b,table,1) move(y,g,2) move(o,table,3) move(y,o,4) move(p,y,5) move(g,p,6) +B00000-POYR00-000000-000000-000000-000000-000000 2Towers/14 RPBOY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(y,table,1) move(o,table,2) move(p,r,3) move(b,p,4) move(o,b,5) move(y,o,6) move(r,table,0) move(y,table,1) move(o,y,2) move(p,r,3) move(b,p,4) move(o,b,5) move(y,o,6) +B00000-YPGR00-000000-000000-000000-000000-000000 2Towers/14 YBGPR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(g,table,1) move(p,table,2) move(b,y,3) move(g,b,4) move(p,g,5) move(r,p,6) move(r,table,0) move(g,r,1) move(p,table,2) move(b,y,3) move(g,b,4) move(p,g,5) move(r,p,6) move(r,table,0) move(g,table,1) move(p,r,2) move(b,y,3) move(g,b,4) move(p,g,5) move(r,p,6) +OR0000-GPY000-000000-000000-000000-000000-000000 2Towers/23 GOPRY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(p,table,1) move(r,table,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(r,table,0) move(y,table,1) move(p,table,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(y,table,0) move(r,table,1) move(p,table,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(y,table,0) move(r,y,1) move(p,table,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(y,table,0) move(p,table,1) move(r,y,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(y,table,0) move(p,y,1) move(r,table,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(y,table,0) move(r,table,1) move(p,y,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(r,table,0) move(y,table,1) move(p,y,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(y,table,0) move(r,y,1) move(p,r,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(y,table,0) move(r,table,1) move(p,r,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) move(r,table,0) move(y,table,1) move(p,r,2) move(o,g,3) move(p,o,4) move(r,p,5) move(y,r,6) +Y00000-PGBR00-000000-000000-000000-000000-000000 2Towers/14 PRGBY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(r,table,0) move(b,table,1) move(g,table,2) move(r,p,3) move(g,r,4) move(b,g,5) move(y,b,6) move(r,y,0) move(b,table,1) move(g,table,2) move(r,p,3) move(g,r,4) move(b,g,5) move(y,b,6) move(r,table,0) move(b,y,1) move(g,table,2) move(r,p,3) move(g,r,4) move(b,g,5) move(y,b,6) move(r,table,0) move(b,table,1) move(g,b,2) move(r,p,3) move(g,r,4) move(b,g,5) move(y,b,6) move(r,y,0) move(b,table,1) move(g,b,2) move(r,p,3) move(g,r,4) move(b,g,5) move(y,b,6) move(r,table,0) move(b,y,1) move(g,b,2) move(r,p,3) move(g,r,4) move(b,g,5) move(y,b,6) move(r,table,0) move(b,table,1) move(g,y,2) move(r,p,3) move(g,r,4) move(b,g,5) move(y,b,6) +PG0000-YOB000-000000-000000-000000-000000-000000 2Towers/23 YBOPG0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(o,table,1) move(g,table,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(g,table,0) move(b,g,1) move(o,table,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(g,table,0) move(b,table,1) move(o,table,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(b,table,0) move(g,table,1) move(o,table,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(b,g,0) move(o,table,1) move(b,y,2) move(g,table,3) move(o,b,4) move(p,o,5) move(g,p,6) move(b,table,0) move(o,table,1) move(b,y,2) move(g,table,3) move(o,b,4) move(p,o,5) move(g,p,6) move(g,table,0) move(b,p,1) move(o,table,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(b,table,0) move(g,table,1) move(o,p,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(g,table,0) move(b,g,1) move(o,p,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(g,table,0) move(b,table,1) move(o,p,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(g,table,0) move(b,table,1) move(o,g,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(g,table,0) move(b,p,1) move(o,g,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(b,table,0) move(g,table,1) move(o,g,2) move(b,y,3) move(o,b,4) move(p,o,5) move(g,p,6) move(b,table,0) move(o,table,1) move(b,y,2) move(o,b,3) move(g,table,4) move(p,o,5) move(g,p,6) move(b,g,0) move(o,table,1) move(b,y,2) move(o,b,3) move(g,table,4) move(p,o,5) move(g,p,6) move(b,table,0) move(o,g,1) move(b,y,2) move(o,b,3) move(g,table,4) move(p,o,5) move(g,p,6) +OPRGB0-000000-000000-000000-000000-000000-000000 1Towers/5 GO0000-PBR000-000000-000000-000000-000000-000000 2Towers/23 7 move(b,table,0) move(g,table,1) move(r,table,2) move(p,table,3) move(b,p,4) move(r,b,5) move(o,g,6) move(b,table,0) move(g,table,1) move(r,g,2) move(p,table,3) move(b,p,4) move(r,b,5) move(o,g,6) move(b,table,0) move(g,table,1) move(r,table,2) move(p,table,3) move(o,g,4) move(b,p,5) move(r,b,6) move(b,table,0) move(g,table,1) move(r,table,2) move(p,table,3) move(b,p,4) move(o,g,5) move(r,b,6) +PROBY0-000000-000000-000000-000000-000000-000000 1Towers/5 RB0000-PYO000-000000-000000-000000-000000-000000 2Towers/23 7 move(y,table,0) move(b,table,1) move(o,table,2) move(r,table,3) move(b,r,4) move(y,p,5) move(o,y,6) move(y,table,0) move(b,table,1) move(o,table,2) move(r,table,3) move(y,p,4) move(b,r,5) move(o,y,6) move(y,table,0) move(b,y,1) move(o,table,2) move(r,table,3) move(b,r,4) move(y,p,5) move(o,y,6) move(y,table,0) move(b,table,1) move(o,b,2) move(r,table,3) move(y,p,4) move(o,y,5) move(b,r,6) move(y,table,0) move(b,table,1) move(o,table,2) move(r,table,3) move(y,p,4) move(o,y,5) move(b,r,6) +OP0000-YRB000-000000-000000-000000-000000-000000 2Towers/23 POYBR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(r,table,1) move(p,table,2) move(o,p,3) move(y,o,4) move(b,y,5) move(r,b,6) move(b,table,0) move(p,table,1) move(r,table,2) move(o,p,3) move(y,o,4) move(b,y,5) move(r,b,6) move(p,table,0) move(b,table,1) move(r,table,2) move(o,p,3) move(y,o,4) move(b,y,5) move(r,b,6) move(b,table,0) move(p,table,1) move(o,p,2) move(r,table,3) move(y,o,4) move(b,y,5) move(r,b,6) move(p,table,0) move(o,p,1) move(b,table,2) move(r,table,3) move(y,o,4) move(b,y,5) move(r,b,6) move(p,table,0) move(b,table,1) move(o,p,2) move(r,table,3) move(y,o,4) move(b,y,5) move(r,b,6) +YGORB0-000000-000000-000000-000000-000000-000000 1Towers/5 RGBYO0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(r,table,1) move(o,table,2) move(g,r,3) move(b,g,4) move(y,b,5) move(o,y,6) +PRYBG0-000000-000000-000000-000000-000000-000000 1Towers/5 BGRPY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(b,table,1) move(y,table,2) move(g,b,3) move(r,g,4) move(p,r,5) move(y,p,6) move(g,table,0) move(b,table,1) move(g,b,2) move(y,table,3) move(r,g,4) move(p,r,5) move(y,p,6) +GY0000-RPB000-000000-000000-000000-000000-000000 2Towers/23 RGBYP0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(b,table,1) move(p,table,2) move(g,r,3) move(b,g,4) move(y,b,5) move(p,y,6) move(b,table,0) move(y,table,1) move(p,table,2) move(g,r,3) move(b,g,4) move(y,b,5) move(p,y,6) move(y,table,0) move(b,y,1) move(p,table,2) move(g,r,3) move(b,g,4) move(y,b,5) move(p,y,6) move(b,table,0) move(p,table,1) move(y,p,2) move(g,r,3) move(b,g,4) move(y,b,5) move(p,y,6) move(b,table,0) move(p,table,1) move(y,table,2) move(g,r,3) move(b,g,4) move(y,b,5) move(p,y,6) +PRGYB0-000000-000000-000000-000000-000000-000000 1Towers/5 GRBPY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(y,table,1) move(g,table,2) move(r,g,3) move(b,r,4) move(p,b,5) move(y,p,6) +GOYPR0-000000-000000-000000-000000-000000-000000 1Towers/5 OY0000-PRG000-000000-000000-000000-000000-000000 2Towers/23 7 move(r,table,0) move(p,table,1) move(y,table,2) move(o,table,3) move(r,p,4) move(g,r,5) move(y,o,6) move(r,table,0) move(p,table,1) move(r,p,2) move(y,table,3) move(o,table,4) move(g,r,5) move(y,o,6) move(r,table,0) move(p,table,1) move(y,table,2) move(r,p,3) move(o,table,4) move(g,r,5) move(y,o,6) move(r,table,0) move(p,table,1) move(y,r,2) move(o,table,3) move(y,o,4) move(r,p,5) move(g,r,6) move(r,table,0) move(p,table,1) move(y,p,2) move(o,table,3) move(y,o,4) move(r,p,5) move(g,r,6) move(r,table,0) move(p,table,1) move(y,table,2) move(o,table,3) move(y,o,4) move(r,p,5) move(g,r,6) move(r,table,0) move(p,table,1) move(y,table,2) move(o,table,3) move(r,p,4) move(y,o,5) move(g,r,6) move(r,table,0) move(p,table,1) move(y,table,2) move(r,p,3) move(o,table,4) move(y,o,5) move(g,r,6) move(r,table,0) move(p,table,1) move(r,p,2) move(y,r,3) move(o,table,4) move(y,o,5) move(g,r,6) move(r,table,0) move(p,table,1) move(r,p,2) move(y,table,3) move(o,table,4) move(y,o,5) move(g,r,6) +OPRGY0-000000-000000-000000-000000-000000-000000 1Towers/5 O00000-PGRY00-000000-000000-000000-000000-000000 2Towers/14 7 move(y,table,0) move(g,table,1) move(r,table,2) move(p,table,3) move(g,p,4) move(r,g,5) move(y,r,6) move(y,table,0) move(g,y,1) move(r,table,2) move(p,table,3) move(g,p,4) move(r,g,5) move(y,r,6) move(y,table,0) move(g,table,1) move(r,y,2) move(p,table,3) move(g,p,4) move(r,g,5) move(y,r,6) +O00000-PRYB00-000000-000000-000000-000000-000000 2Towers/14 YBPRO0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(b,table,0) move(y,table,1) move(r,table,2) move(b,y,3) move(p,b,4) move(r,p,5) move(o,r,6) move(b,o,0) move(y,table,1) move(r,table,2) move(b,y,3) move(p,b,4) move(r,p,5) move(o,r,6) move(b,table,0) move(y,table,1) move(r,o,2) move(b,y,3) move(p,b,4) move(r,p,5) move(o,r,6) move(b,table,0) move(y,table,1) move(b,y,2) move(r,table,3) move(p,b,4) move(r,p,5) move(o,r,6) move(b,o,0) move(y,table,1) move(b,y,2) move(r,table,3) move(p,b,4) move(r,p,5) move(o,r,6) move(b,table,0) move(y,table,1) move(b,y,2) move(r,o,3) move(p,b,4) move(r,p,5) move(o,r,6) move(b,o,0) move(y,table,1) move(b,y,2) move(r,o,3) move(p,b,4) move(r,p,5) move(o,r,6) +Y00000-GRBP00-000000-000000-000000-000000-000000 2Towers/14 BGPYR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(b,table,1) move(r,table,2) move(g,b,3) move(p,g,4) move(y,p,5) move(r,y,6) move(p,y,0) move(b,table,1) move(r,table,2) move(g,b,3) move(p,g,4) move(y,p,5) move(r,y,6) +R00000-GOBY00-000000-000000-000000-000000-000000 2Towers/14 YGROB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(b,table,1) move(o,table,2) move(g,y,3) move(r,g,4) move(o,r,5) move(b,o,6) move(y,table,0) move(b,table,1) move(o,b,2) move(g,y,3) move(r,g,4) move(o,r,5) move(b,o,6) +BR0000-PYG000-000000-000000-000000-000000-000000 2Towers/23 YGPBR0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(g,table,0) move(r,table,1) move(y,table,2) move(g,y,3) move(p,g,4) move(b,p,5) move(r,b,6) move(g,table,0) move(y,table,1) move(r,table,2) move(g,y,3) move(p,g,4) move(b,p,5) move(r,b,6) move(r,table,0) move(g,table,1) move(y,table,2) move(g,y,3) move(p,g,4) move(b,p,5) move(r,b,6) move(r,table,0) move(g,b,1) move(y,table,2) move(g,y,3) move(p,g,4) move(b,p,5) move(r,b,6) move(r,table,0) move(g,r,1) move(y,table,2) move(g,y,3) move(p,g,4) move(b,p,5) move(r,b,6) move(g,table,0) move(y,table,1) move(g,y,2) move(r,table,3) move(p,g,4) move(b,p,5) move(r,b,6) move(g,r,0) move(y,table,1) move(g,y,2) move(r,table,3) move(p,g,4) move(b,p,5) move(r,b,6) move(g,table,0) move(y,table,1) move(g,y,2) move(p,g,3) move(r,table,4) move(b,p,5) move(r,b,6) move(g,r,0) move(y,table,1) move(g,y,2) move(p,g,3) move(r,table,4) move(b,p,5) move(r,b,6) +P00000-BROY00-000000-000000-000000-000000-000000 2Towers/14 PBROY0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(y,table,0) move(o,table,1) move(r,table,2) move(b,p,3) move(r,b,4) move(o,r,5) move(y,o,6) move(y,table,0) move(o,table,1) move(r,y,2) move(b,p,3) move(r,b,4) move(o,r,5) move(y,o,6) move(y,table,0) move(o,y,1) move(r,table,2) move(b,p,3) move(r,b,4) move(o,r,5) move(y,o,6) move(y,table,0) move(o,table,1) move(r,o,2) move(b,p,3) move(r,b,4) move(o,r,5) move(y,o,6) move(y,table,0) move(o,y,1) move(r,o,2) move(b,p,3) move(r,b,4) move(o,r,5) move(y,o,6) +BY0000-OGP000-000000-000000-000000-000000-000000 2Towers/23 YBOGP0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(g,table,1) move(y,table,2) move(b,y,3) move(o,b,4) move(g,o,5) move(p,g,6) move(y,table,0) move(p,table,1) move(g,table,2) move(b,y,3) move(o,b,4) move(g,o,5) move(p,g,6) move(p,table,0) move(y,table,1) move(g,table,2) move(b,y,3) move(o,b,4) move(g,o,5) move(p,g,6) move(y,table,0) move(p,table,1) move(g,p,2) move(b,y,3) move(o,b,4) move(g,o,5) move(p,g,6) move(p,table,0) move(y,table,1) move(g,p,2) move(b,y,3) move(o,b,4) move(g,o,5) move(p,g,6) move(p,table,0) move(g,p,1) move(y,table,2) move(b,y,3) move(o,b,4) move(g,o,5) move(p,g,6) move(y,table,0) move(p,table,1) move(b,y,2) move(g,table,3) move(o,b,4) move(g,o,5) move(p,g,6) move(y,table,0) move(p,table,1) move(b,y,2) move(g,p,3) move(o,b,4) move(g,o,5) move(p,g,6) move(p,table,0) move(y,table,1) move(b,y,2) move(g,table,3) move(o,b,4) move(g,o,5) move(p,g,6) move(p,table,0) move(y,table,1) move(b,y,2) move(g,p,3) move(o,b,4) move(g,o,5) move(p,g,6) move(y,table,0) move(b,y,1) move(p,table,2) move(g,table,3) move(o,b,4) move(g,o,5) move(p,g,6) move(y,table,0) move(b,y,1) move(p,table,2) move(g,p,3) move(o,b,4) move(g,o,5) move(p,g,6) +B00000-GORP00-000000-000000-000000-000000-000000 2Towers/14 ORPGB0-000000-000000-000000-000000-000000-000000 1Towers/5 7 move(p,table,0) move(r,table,1) move(o,table,2) move(r,o,3) move(p,r,4) move(g,p,5) move(b,g,6) move(p,table,0) move(r,p,1) move(o,table,2) move(r,o,3) move(p,r,4) move(g,p,5) move(b,g,6) move(p,table,0) move(r,b,1) move(o,table,2) move(r,o,3) move(p,r,4) move(g,p,5) move(b,g,6) move(p,b,0) move(r,table,1) move(o,table,2) move(r,o,3) move(p,r,4) move(g,p,5) move(b,g,6) move(p,b,0) move(r,p,1) move(o,table,2) move(r,o,3) move(p,r,4) move(g,p,5) move(b,g,6) diff --git a/blocks/task5/maps/level7/input_img/0.jpg b/blocks/task5/maps/level7/input_img/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..844f1268cf43e76669828e9811e762c4388be990 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e2447fd6226c3d1eb49d8617aa4dc5251151993ba77b26c31fd73bb527802f7 +size 10149 diff --git a/blocks/task5/maps/level7/input_img/1.jpg b/blocks/task5/maps/level7/input_img/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0f4a1bc9d8865e1fc0dea85ead88de65bff7257 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8d361d7e58c17bd5661fe5e3d90bf00d77e2fdc59ff98a2ccfb3741276d0ae +size 9994 diff --git a/blocks/task5/maps/level7/input_img/10.jpg b/blocks/task5/maps/level7/input_img/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63cfc3493444af0862edbea473378a00934440d1 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f6e0bc4b8c58188558adcdc9802f13e8263f759cd2c18f578d4359b6d212a90 +size 10544 diff --git a/blocks/task5/maps/level7/input_img/11.jpg b/blocks/task5/maps/level7/input_img/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..634dc4568f2d9fd50608a8ab94728618625d3820 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849e233044ccc94051670d9dc042e492ffa733fda16910b313b06bcfa963ab5d +size 10398 diff --git a/blocks/task5/maps/level7/input_img/12.jpg b/blocks/task5/maps/level7/input_img/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bc6788b563d7d04283be4dd792502642dbd98e2 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169475ee8e82e44fc9d1eba10c88e3a3641456759ef9a4376f3a48d0574fc3a5 +size 10236 diff --git a/blocks/task5/maps/level7/input_img/13.jpg b/blocks/task5/maps/level7/input_img/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de5c96a27f819ed8986d8f8e7a52b147a9c4434b --- /dev/null +++ b/blocks/task5/maps/level7/input_img/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906fdbf88a27082c73cd6c9df0d57ce388855e2279501b95406182f30d797c0e +size 10116 diff --git a/blocks/task5/maps/level7/input_img/14.jpg b/blocks/task5/maps/level7/input_img/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16c6fdcc11be4f9109f43f0d06e9fff14558310e --- /dev/null +++ b/blocks/task5/maps/level7/input_img/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a205eac596a25b98a0995eef0896c5da5c0275643bce13ce4351c9ad55f79e +size 9605 diff --git a/blocks/task5/maps/level7/input_img/15.jpg b/blocks/task5/maps/level7/input_img/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dc9e083be9b25d01d608c109fa106f338592842 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbc433c041654ed78034c88c2de0b7d8535b4e1960089920c44a5757a34a17dd +size 10717 diff --git a/blocks/task5/maps/level7/input_img/16.jpg b/blocks/task5/maps/level7/input_img/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f4ac3ffcb2a1c9348450e7eda55bdb26a9e5dff --- /dev/null +++ b/blocks/task5/maps/level7/input_img/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b45f34748e6fe176b40f5ba75a33f5792e9975e85f8fb253f19048a68c5b3a0 +size 10496 diff --git a/blocks/task5/maps/level7/input_img/17.jpg b/blocks/task5/maps/level7/input_img/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6df7bd88ac4737515d2cccb4a91068f96ab7c11a --- /dev/null +++ b/blocks/task5/maps/level7/input_img/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ef2e2626584bc71e54987abbdd31c6cdf6eb2df9733871401dbb8bd71e5d41 +size 10658 diff --git a/blocks/task5/maps/level7/input_img/18.jpg b/blocks/task5/maps/level7/input_img/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03bebb3ae50d608795e04081b462baf945ffb967 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7ebaea36b783f7fc7a76d1149a0e4c2f200122e13374af866c7eecf1668a17 +size 10251 diff --git a/blocks/task5/maps/level7/input_img/19.jpg b/blocks/task5/maps/level7/input_img/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba12f230526192b9bc610c940a9541d8dc2b4125 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28be5ac3c29e63d932a376ab45d80fbb1360cc9889978eb0722b07f7c8a0ec48 +size 10096 diff --git a/blocks/task5/maps/level7/input_img/2.jpg b/blocks/task5/maps/level7/input_img/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79d8a439fc31ba17fe244d109ece8f331efcc72c --- /dev/null +++ b/blocks/task5/maps/level7/input_img/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f387099c30ed74630ab233bf777eb78c2359573a741af4e25b2b98e8a673ff3b +size 11142 diff --git a/blocks/task5/maps/level7/input_img/20.jpg b/blocks/task5/maps/level7/input_img/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88337b56b4fcb1fe6a4022f945b18a442efbd943 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4987c88ccc9bcb8c17f678c3057164edecf6fa36c5d00a419652a8e543fcea3f +size 10355 diff --git a/blocks/task5/maps/level7/input_img/21.jpg b/blocks/task5/maps/level7/input_img/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fff526f6993ad26287f920d0ebc5684e42f3b883 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d78a9b1811cfd09c775223a4f079874abf8f27400d7aa287a10f5a468b692ad +size 10725 diff --git a/blocks/task5/maps/level7/input_img/22.jpg b/blocks/task5/maps/level7/input_img/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcb975ff0a3b12aeef13e6421c43b1ae24e1bc06 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a61cfb9eb7938cebb9a8e57e1fbb1a248c6395d119d152aab731ef009485638 +size 10221 diff --git a/blocks/task5/maps/level7/input_img/23.jpg b/blocks/task5/maps/level7/input_img/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09e31de2023b312db7ba742b5a4eab87ba005779 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de38a65fe44ffdacf995144c0fc2cf0cf42bee2ae1043cc80214de9ba9b298fc +size 10736 diff --git a/blocks/task5/maps/level7/input_img/24.jpg b/blocks/task5/maps/level7/input_img/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f8bc9175312f5a060c15a8ab2be7d41e5cfd835 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92c499e20169d558142b546867a628c42559ea335c491037570bd40fa3958bb +size 10603 diff --git a/blocks/task5/maps/level7/input_img/25.jpg b/blocks/task5/maps/level7/input_img/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22c21599a7628124263dd12444b7c6a7c29899ef --- /dev/null +++ b/blocks/task5/maps/level7/input_img/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb61648d0de08036d6bc27562cd9a1d3c398bafb0af2a8e38d42b78f136fca79 +size 11758 diff --git a/blocks/task5/maps/level7/input_img/26.jpg b/blocks/task5/maps/level7/input_img/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df569f62db26a42d19c0d02a81a4e3b77260d2bd --- /dev/null +++ b/blocks/task5/maps/level7/input_img/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e476782853394d04887d104a9ba5742a23c794c4a6f61504aac39abd2cf5de5 +size 9718 diff --git a/blocks/task5/maps/level7/input_img/27.jpg b/blocks/task5/maps/level7/input_img/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62d647ed32911c54c1c5fda73a54f019e4e7b866 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5547624c176350ea09029a3536da1963c3303629a62b9871deab694589cf48 +size 10107 diff --git a/blocks/task5/maps/level7/input_img/28.jpg b/blocks/task5/maps/level7/input_img/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f2214e78df58902dcd72ca06a0491fd7c177035 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22beb6acbe6717560402ca7e4ecd38eadcbbd42861821590e55ab5b483988a2 +size 10787 diff --git a/blocks/task5/maps/level7/input_img/29.jpg b/blocks/task5/maps/level7/input_img/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ef853a3cc692c81221cca2f4bfa537786f3a1ab --- /dev/null +++ b/blocks/task5/maps/level7/input_img/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:761b851a34971058214d7cc6a1fb96252085711956fcc4228cf08d79106c480f +size 11759 diff --git a/blocks/task5/maps/level7/input_img/3.jpg b/blocks/task5/maps/level7/input_img/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed2be2d023190fff282dd4dea608a93fa8b94291 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990726467418ff46f459d5ab8aa6ed0d5a45a4d3031d773bdeea9a3a7eb90a39 +size 10195 diff --git a/blocks/task5/maps/level7/input_img/30.jpg b/blocks/task5/maps/level7/input_img/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2179f1f152b161f01778927f4aa9524fbc5230a0 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9789bd0e7ba99e24a65cae54a87ef7a36c77ea64837d7492e9a6eceb10c04ae +size 10262 diff --git a/blocks/task5/maps/level7/input_img/31.jpg b/blocks/task5/maps/level7/input_img/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27703be39319a15bb13ba93b433051ea87b7264 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862421d1342dca9e19535d6220b09790466ee04b1ec3898e19ea298977441e05 +size 12119 diff --git a/blocks/task5/maps/level7/input_img/32.jpg b/blocks/task5/maps/level7/input_img/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..394f38e9a274abcfa9c16060f901c9118743feea --- /dev/null +++ b/blocks/task5/maps/level7/input_img/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1972ec60ab3115f11837739a0e5dab9571476093fb7362bc6b6cf656cafcb9 +size 11089 diff --git a/blocks/task5/maps/level7/input_img/33.jpg b/blocks/task5/maps/level7/input_img/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7fdc376bcbc1c99a37c301f3fbb608c89af7546 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d54b8a40ec35b057e162d17e9e839fe2467b5e886fa0b3e23d0dd86a14c47ece +size 10063 diff --git a/blocks/task5/maps/level7/input_img/34.jpg b/blocks/task5/maps/level7/input_img/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0052ce69c58c96a324ca8752db7ec1e0690e8eb --- /dev/null +++ b/blocks/task5/maps/level7/input_img/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7713ed82e9b0b45527f3feee2a007efc78d1784b10a7547bb8d5980435bd6b9e +size 10682 diff --git a/blocks/task5/maps/level7/input_img/35.jpg b/blocks/task5/maps/level7/input_img/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..639f1d0a0c1817803a7e1345303e87c8e808af36 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7f5a2eafb7ebb4688ad4b59e0bcb89206d40b47372590a4eecd7d64d7debb0c +size 9897 diff --git a/blocks/task5/maps/level7/input_img/36.jpg b/blocks/task5/maps/level7/input_img/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..345f8d774db2050c8bb4f9423ec1b13aa940458a --- /dev/null +++ b/blocks/task5/maps/level7/input_img/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:297fcdc78e2118293c004b69e01a5534492633153e0f4b5b717ed3b5da74814f +size 10995 diff --git a/blocks/task5/maps/level7/input_img/37.jpg b/blocks/task5/maps/level7/input_img/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56b36e264c40bfedbe653b382f10dbc944053371 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dfb24c6818ce5232aed47a471e72d306856b9fe8bf12ea35bfc1eb1f924b926 +size 10015 diff --git a/blocks/task5/maps/level7/input_img/38.jpg b/blocks/task5/maps/level7/input_img/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fd73b6b8c102b5960a8e34e5d495fb84e3e1830 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad4e253af01c45c715d4b7a46dcb0e0c1bc90c07d503fb3d2676fb26f68d17eb +size 11271 diff --git a/blocks/task5/maps/level7/input_img/39.jpg b/blocks/task5/maps/level7/input_img/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0d42e6e2e4b7fdfb5b87ae3d53e0fd693984f4c --- /dev/null +++ b/blocks/task5/maps/level7/input_img/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6c271b4482ebe8b130026783bc9689c3966579fe190bfc93b303f2104c2aca +size 10748 diff --git a/blocks/task5/maps/level7/input_img/4.jpg b/blocks/task5/maps/level7/input_img/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e4ab0cf47a33844f10faa3d9b4619cfea2b554c --- /dev/null +++ b/blocks/task5/maps/level7/input_img/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20a483c87ce1d34b061a3913b692f9e6cbf3372a44919b28f832865ce452235 +size 11755 diff --git a/blocks/task5/maps/level7/input_img/40.jpg b/blocks/task5/maps/level7/input_img/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc81394b3c380892c6c5559acedf112441261e66 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f052dac4db324aa47d962362a4b1652e3eb07fb52742fc9e2f1bfa7e07c7cb +size 10332 diff --git a/blocks/task5/maps/level7/input_img/41.jpg b/blocks/task5/maps/level7/input_img/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5f3302e11662ca4d9bf4b177d75695b3a8a7ae0 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d0af89867944e21347db652beddcdca584ae3b849e8b154cf19363cbeaeb82c +size 10880 diff --git a/blocks/task5/maps/level7/input_img/42.jpg b/blocks/task5/maps/level7/input_img/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..032e916bda12f55d9d684a9ff8cd305c2bbba636 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ff19c932eb8992bc19187f3182a296bf373a3f621a2a4a4b0429b30754691a +size 9993 diff --git a/blocks/task5/maps/level7/input_img/43.jpg b/blocks/task5/maps/level7/input_img/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1be5a823ca0245a679093bee17c077c9895e0fec --- /dev/null +++ b/blocks/task5/maps/level7/input_img/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f7f8b8df8ec339bc55dc65722aecbd3fdea4eb878409e9b48ed81550f462d9 +size 10099 diff --git a/blocks/task5/maps/level7/input_img/44.jpg b/blocks/task5/maps/level7/input_img/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa052f015389802ecc5eb574d4b3ff7b58f3444a --- /dev/null +++ b/blocks/task5/maps/level7/input_img/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2c9353b79c99541db78abd35b116b9aabc950327470b1f1cd6e5e1bcbdb709 +size 9837 diff --git a/blocks/task5/maps/level7/input_img/45.jpg b/blocks/task5/maps/level7/input_img/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75a607d7af5f6235c06e64fb11ef791ae3cab02b --- /dev/null +++ b/blocks/task5/maps/level7/input_img/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0cef624fbe700f49bc07953f8fb8f636640027d446584e94b6275fd2751101 +size 10870 diff --git a/blocks/task5/maps/level7/input_img/46.jpg b/blocks/task5/maps/level7/input_img/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e81644e8ce76a4ad134341d1a8d1fce36014b377 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad25457d51a457b7bd27e36ca1701bbf8dfb8d5ed063adb6e3566a02568ca25 +size 9915 diff --git a/blocks/task5/maps/level7/input_img/47.jpg b/blocks/task5/maps/level7/input_img/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef17ef0cb6814d56a36f079bc0a2ffea441e6194 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e114bc28073d5f39f9e1f3045b8d13123024acf43365483e01fafd2c35776790 +size 10456 diff --git a/blocks/task5/maps/level7/input_img/48.jpg b/blocks/task5/maps/level7/input_img/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e213d788ce7a84d268ca19ef91a42587f20bd40 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1931e4ff8ecb89cb89ff15404ac625796ead17fac36d93c0cf56d6763376dc +size 10527 diff --git a/blocks/task5/maps/level7/input_img/49.jpg b/blocks/task5/maps/level7/input_img/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c0ac1725adedc13813dd9f477e995105b7a47ee --- /dev/null +++ b/blocks/task5/maps/level7/input_img/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be596e5e2acd31149e943f27d79f2b4560d8235929e4c78d2a34765886952ccc +size 10303 diff --git a/blocks/task5/maps/level7/input_img/5.jpg b/blocks/task5/maps/level7/input_img/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfad66aeaf36c5743415befef561f9c2b257082a --- /dev/null +++ b/blocks/task5/maps/level7/input_img/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a40c3fb883365f7d8d23dd91b5e7f5232af0afd867b270c2a39fd8a2cc7c619 +size 10281 diff --git a/blocks/task5/maps/level7/input_img/50.jpg b/blocks/task5/maps/level7/input_img/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d30372a83ede140f8a0e9a8822e9a4d5026d64e --- /dev/null +++ b/blocks/task5/maps/level7/input_img/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae3a719e81fd7f8da3dfbc7f4bd920663a8bf7340d92b742202a2f0b932db20 +size 10413 diff --git a/blocks/task5/maps/level7/input_img/51.jpg b/blocks/task5/maps/level7/input_img/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c353e4f96f640c3c6db983945beb8d22fe532ac --- /dev/null +++ b/blocks/task5/maps/level7/input_img/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800a162469082fc73041bbfdf646a411d1fe1e854238e5fc30c1bc4601ed962a +size 10516 diff --git a/blocks/task5/maps/level7/input_img/52.jpg b/blocks/task5/maps/level7/input_img/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dc0c165ab2ff1d48b6d4778d49f2cb1c725eeab --- /dev/null +++ b/blocks/task5/maps/level7/input_img/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705044c7fc43fa89eb9ed71893a507b48d93d718cfa6248ec61e460f9ad6821d +size 10729 diff --git a/blocks/task5/maps/level7/input_img/53.jpg b/blocks/task5/maps/level7/input_img/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0ef6373fa7f4dcbe2e65baf65ff856edbf0d172 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93437cb6a7c5ceac041a02470adff03649b8be2a3b49a33ae3c7c55464abc31b +size 10883 diff --git a/blocks/task5/maps/level7/input_img/54.jpg b/blocks/task5/maps/level7/input_img/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4a6f7fcb2414fc5564952390f8dd0617600ec7c --- /dev/null +++ b/blocks/task5/maps/level7/input_img/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6138166bb44c6c1d87a88fa363e89173efc1771f5c51c8729728ea99d9cc7832 +size 11956 diff --git a/blocks/task5/maps/level7/input_img/55.jpg b/blocks/task5/maps/level7/input_img/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8cb6a550441c76ddd1002ed02dd872aa5fcb452 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:712b3699e8358c7739848c29c63670d9ab25fee223ac8dd58f748d07d70374b4 +size 11363 diff --git a/blocks/task5/maps/level7/input_img/56.jpg b/blocks/task5/maps/level7/input_img/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6368004cde2f63b3424655f21144f91d22efe1bc --- /dev/null +++ b/blocks/task5/maps/level7/input_img/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2eb05e1a66fe13d298f53ebf8ddff7eba7c0797e469f5e8a26e8aad7590db78 +size 11133 diff --git a/blocks/task5/maps/level7/input_img/57.jpg b/blocks/task5/maps/level7/input_img/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebeea638104b03a07d64af29dd09d2f917e45e50 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:badaae49ae5f4bde444679f311de27d8c4c5570e5e6fc0a61a174720784197e3 +size 10185 diff --git a/blocks/task5/maps/level7/input_img/58.jpg b/blocks/task5/maps/level7/input_img/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b30e92f24a2e151354524276bc401386981d1604 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8773a8900e738f720cf6769a708e89183e26e96cb583cd74735907783391b5c +size 10590 diff --git a/blocks/task5/maps/level7/input_img/59.jpg b/blocks/task5/maps/level7/input_img/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..390432e633ae105619641e8e584b62bcb07c974a --- /dev/null +++ b/blocks/task5/maps/level7/input_img/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f874e81f64215d2eda982b39210bbec5d75fbe35a038309f65519751b4fd3e49 +size 10195 diff --git a/blocks/task5/maps/level7/input_img/6.jpg b/blocks/task5/maps/level7/input_img/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e15d463c533fbabf41213aa4a19a64870dac22f --- /dev/null +++ b/blocks/task5/maps/level7/input_img/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae898976d3be4a246199e06c832c1fc226e19e77d2cc59daae64f2472bfa443 +size 11793 diff --git a/blocks/task5/maps/level7/input_img/60.jpg b/blocks/task5/maps/level7/input_img/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..350c09f8e25bf3720c05c872af6066e9fa454b7f --- /dev/null +++ b/blocks/task5/maps/level7/input_img/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b453728c93968a448dde40e2164d6ede7fc5a166d0bc851081e8f967a8a09453 +size 10324 diff --git a/blocks/task5/maps/level7/input_img/61.jpg b/blocks/task5/maps/level7/input_img/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a47ec3201c4dfdc0357265841a538ab64c0ee9fc --- /dev/null +++ b/blocks/task5/maps/level7/input_img/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88ca64f733b0822f3889a30e251071945ca7b8f962fa28d296ec5a443cd8b188 +size 10620 diff --git a/blocks/task5/maps/level7/input_img/62.jpg b/blocks/task5/maps/level7/input_img/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68adefb9bd0ede4d88a186385f644f833541ce76 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b128ce3147323faa92068b41d2a1843d16b0fe4fe028c2600cd459584c3d0c +size 10290 diff --git a/blocks/task5/maps/level7/input_img/63.jpg b/blocks/task5/maps/level7/input_img/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78e4311bea952dd2ba13721646c8896d75548966 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:574d402bea045a2a262822a3aa57423ad4ea3b0a4210633492f9efcb3b4a860d +size 9564 diff --git a/blocks/task5/maps/level7/input_img/64.jpg b/blocks/task5/maps/level7/input_img/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35711a1357adaf1895aa23221686dd95869de86d --- /dev/null +++ b/blocks/task5/maps/level7/input_img/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7272bf95e9fe470ca584220f1c511fcaa83234a37e790d2fe67f1c33ab59a23 +size 11900 diff --git a/blocks/task5/maps/level7/input_img/65.jpg b/blocks/task5/maps/level7/input_img/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2623e8fbb960852ac9841162419ba7fa7484055 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc8c51c25761d9c1b9911b66d58b7f6da5b1e670a7e7a98adf799aedf475fbd +size 11273 diff --git a/blocks/task5/maps/level7/input_img/66.jpg b/blocks/task5/maps/level7/input_img/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f4e5ab354dee7b9b5bd73c370d1f4c79bae8f2a --- /dev/null +++ b/blocks/task5/maps/level7/input_img/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aee7b7d4a88312e393a2b9b109ada33f28dc5fad5ec6853cbf9cf66f59a2e57 +size 11925 diff --git a/blocks/task5/maps/level7/input_img/67.jpg b/blocks/task5/maps/level7/input_img/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f002d10a1bd9f631ce441c307dbd0620479f5b9 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6aba3d1fd37256a39aa3997ba3a22c32a979f973e7c9cdb681e9bbd5e36c5d4 +size 10352 diff --git a/blocks/task5/maps/level7/input_img/68.jpg b/blocks/task5/maps/level7/input_img/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c15f97c817db3175ec6458b2fb5ea5b32b7d01bb --- /dev/null +++ b/blocks/task5/maps/level7/input_img/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00f301b1ab2d1a28819be5b986fa772bc76b096e714af52916d43f47e285f9ee +size 9965 diff --git a/blocks/task5/maps/level7/input_img/69.jpg b/blocks/task5/maps/level7/input_img/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d98df379610542e8e604f25f8bb0d86e11957a5d --- /dev/null +++ b/blocks/task5/maps/level7/input_img/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740a6ae062479385596d17916a8852cfc9771346a402cc704ce45a9f66993ac8 +size 10276 diff --git a/blocks/task5/maps/level7/input_img/7.jpg b/blocks/task5/maps/level7/input_img/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2db414745d0b9a7349f1b0cfb16d158e01ee9c5 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1041b2df3be968fb7637b11d07be21be8f29dfa85ff1249e10e855a4b58ff146 +size 10340 diff --git a/blocks/task5/maps/level7/input_img/70.jpg b/blocks/task5/maps/level7/input_img/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac980ce6c0e91ac04fe960ee09544f4485478441 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8f9eaf50e065d3b2ba082094b0e428c2f4db227a83ea52618ee780173322586 +size 10595 diff --git a/blocks/task5/maps/level7/input_img/71.jpg b/blocks/task5/maps/level7/input_img/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c0d9301da9a90d3e90158a8d493705645336829 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3033fa6ace63067e8a009ac667bc6a8f158e24174038b316433341144378ce79 +size 11087 diff --git a/blocks/task5/maps/level7/input_img/72.jpg b/blocks/task5/maps/level7/input_img/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdb167c09d9b93b0f1efc9637329b3cc5f8aa93d --- /dev/null +++ b/blocks/task5/maps/level7/input_img/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a516d545cd646e4fab6520bbf894e6784ba44fdfceb42e3c2ebba273a38d3fe +size 11527 diff --git a/blocks/task5/maps/level7/input_img/73.jpg b/blocks/task5/maps/level7/input_img/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d30372a83ede140f8a0e9a8822e9a4d5026d64e --- /dev/null +++ b/blocks/task5/maps/level7/input_img/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae3a719e81fd7f8da3dfbc7f4bd920663a8bf7340d92b742202a2f0b932db20 +size 10413 diff --git a/blocks/task5/maps/level7/input_img/74.jpg b/blocks/task5/maps/level7/input_img/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4be59b59fea661de6befe3457776c5d17bd6494e --- /dev/null +++ b/blocks/task5/maps/level7/input_img/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb1052b679e0f97586e813966e91c4fc24f0e981fd616d9f33c5ea9f60b0be6d +size 10308 diff --git a/blocks/task5/maps/level7/input_img/75.jpg b/blocks/task5/maps/level7/input_img/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16fbefcf8ee3e765717df9541e20f2a4c13cf259 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e387194502ec58ba92bc6a3e23f64ab92901c0a54cff2213576ab449cd35aa2 +size 11991 diff --git a/blocks/task5/maps/level7/input_img/76.jpg b/blocks/task5/maps/level7/input_img/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..542ed4933ec4fc0f1ae648c5f42206632fada445 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a753f5bf0626ffbc50f051b7d455c84e1f6dcb62a93bf54e6fcd6f6310252b1 +size 10559 diff --git a/blocks/task5/maps/level7/input_img/77.jpg b/blocks/task5/maps/level7/input_img/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c54e23b78466916e80e44a1898e35657337afe58 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4182356cfcc6ff27fe1d3c402343edcb0bf876a5a18883e9642a0a05001b66 +size 11307 diff --git a/blocks/task5/maps/level7/input_img/78.jpg b/blocks/task5/maps/level7/input_img/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..476ac54e43943ef186229b1017f13ce8d9615055 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:346a673beb26da99e2992b4299b034b18a8bece3ae8a1677e776ddb2c901c7e7 +size 10315 diff --git a/blocks/task5/maps/level7/input_img/79.jpg b/blocks/task5/maps/level7/input_img/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2f4cdc897628f5bdb128669c632029f09aa6d2b --- /dev/null +++ b/blocks/task5/maps/level7/input_img/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa15f29ad62e40a499ddd373bde6fc7e6956f512c0b0dc36d080ed745127354 +size 11959 diff --git a/blocks/task5/maps/level7/input_img/8.jpg b/blocks/task5/maps/level7/input_img/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a5e20493b3fc96e0bba1267b91261a891355d0b --- /dev/null +++ b/blocks/task5/maps/level7/input_img/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea6412976e0f6cf90e9d50557aac56b68a78883757546ef6b2b2b2c71208c7e +size 10403 diff --git a/blocks/task5/maps/level7/input_img/80.jpg b/blocks/task5/maps/level7/input_img/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1f7296579e3fc3e2164bccc479758298a54f860 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:163af2ac4a9ef58009418aad1850c5070f53fcbc68ec20648bfe6d4dd877ed6a +size 11967 diff --git a/blocks/task5/maps/level7/input_img/81.jpg b/blocks/task5/maps/level7/input_img/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3645f8843002c2efad9f6303b88abfb1f1bdf36 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e3b6ce9c5ad89d165f6d3e91e9aa85835df2d585af4af3bff6a02d56f9b4c7 +size 10233 diff --git a/blocks/task5/maps/level7/input_img/82.jpg b/blocks/task5/maps/level7/input_img/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b50e064e685db0a0c24b17018bcc6c8095959fd1 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4d8af7ad922341d10f1c5cc1dc74939a7b71ee27f904007e2640f74b89a4d87 +size 10789 diff --git a/blocks/task5/maps/level7/input_img/83.jpg b/blocks/task5/maps/level7/input_img/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6cbc23df76f24190f15ab92a031f364002255d7 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124b6309c258bce773e282b566e9566f381def00a234ad2f7c6a558b983ed95d +size 10381 diff --git a/blocks/task5/maps/level7/input_img/84.jpg b/blocks/task5/maps/level7/input_img/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4644f6f1edbffa729504913110fa5cef95f63688 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547a6605b562e10d8f67df2e1a44d1c0aebfb91aff1675ce266a34bf313e32a5 +size 9911 diff --git a/blocks/task5/maps/level7/input_img/85.jpg b/blocks/task5/maps/level7/input_img/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..121f15f07166e5fb3d77dda78ee56d6f10bad3b9 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3db649b8f5b8363f5bb4418f333bff9eaa24d7a591607acdbdc19eae4d3dbe +size 10301 diff --git a/blocks/task5/maps/level7/input_img/86.jpg b/blocks/task5/maps/level7/input_img/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d42bdfddbab8836f9444f81ad7f89ac0a1be5cbd --- /dev/null +++ b/blocks/task5/maps/level7/input_img/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d5f10951f782109548ec58ab59ed93507a81e89cb9b917b416e8d7b33f0532 +size 10528 diff --git a/blocks/task5/maps/level7/input_img/87.jpg b/blocks/task5/maps/level7/input_img/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8714ebe4ccb4ec7b4727f7f21f1d8707ac8f0707 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96247d59ba27ef77d605e31b96dcb7e8d8cc75278cba25b05eb99766e816db7c +size 10697 diff --git a/blocks/task5/maps/level7/input_img/88.jpg b/blocks/task5/maps/level7/input_img/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..401e7d49aa12b90caa641e95ffb5247d220af7a3 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b93c57d77d69a148a14915e480b71ade7dea9b4d6fcca7d4ccd43a5d2e25c1b +size 10243 diff --git a/blocks/task5/maps/level7/input_img/89.jpg b/blocks/task5/maps/level7/input_img/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..490e24dbb1027b1e8aeb63421219ff0014ea3769 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25cfbfab553ef03c099158815563d64bef6804c8a7a94b8652bd0d6e35edcfb5 +size 10465 diff --git a/blocks/task5/maps/level7/input_img/9.jpg b/blocks/task5/maps/level7/input_img/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a522a10f9f28f88ceefb7c02062a7ac26b685e0 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b455493430d4956d4f951a60d900166aa95df10222c70a7899ded0bf53adfd9 +size 11966 diff --git a/blocks/task5/maps/level7/input_img/90.jpg b/blocks/task5/maps/level7/input_img/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e001dbb7a57b90d389012bb37c1d3fea7f391f43 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb1ea8d6bb717554cd86229bc034e82356528f4a918b7ba7c62220745d8668c3 +size 10558 diff --git a/blocks/task5/maps/level7/input_img/91.jpg b/blocks/task5/maps/level7/input_img/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..440d7c984f980bacbc4817c8defb9e79e3f691ee --- /dev/null +++ b/blocks/task5/maps/level7/input_img/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2164c460bdd4a49a3e64cd50ae578f20ace71bf192ac7b100fb7a5e8fdbaca +size 10170 diff --git a/blocks/task5/maps/level7/input_img/92.jpg b/blocks/task5/maps/level7/input_img/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bba55a934786339bebc7a3cff77da4d9c672833b --- /dev/null +++ b/blocks/task5/maps/level7/input_img/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88856bc4ff5bfd3e736932977bab3465f20a2bdf8e042937744d11df0668d1a0 +size 9697 diff --git a/blocks/task5/maps/level7/input_img/93.jpg b/blocks/task5/maps/level7/input_img/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef864f76a3669ca3fae25341ce12250a8e6624a0 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893c77c8bb38855f0530e8c7563a28a279c49a96eb40c90a1082958f15d6615d +size 12883 diff --git a/blocks/task5/maps/level7/input_img/94.jpg b/blocks/task5/maps/level7/input_img/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fa39960620e552b297cd7ad7302a5f044900d47 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8d80ba4119ea4a0c95145f95eb36e8afedd1dc06bb6b4987c3f859c82525ea9 +size 11472 diff --git a/blocks/task5/maps/level7/input_img/95.jpg b/blocks/task5/maps/level7/input_img/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90cb7d89aaaf73fb44d828dd712b90c473e6c952 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e8979cdf7e497e90fd9e6ce9135064687c8f7e25536d2504a305d8317465b6f +size 10206 diff --git a/blocks/task5/maps/level7/input_img/96.jpg b/blocks/task5/maps/level7/input_img/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64aed6c180d146e93ddfc34b2450fbe3d8dbca00 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f72ac82c5c7a7e3fdef6bde6d786f6853941ac29b611299246705f7d243c03 +size 10973 diff --git a/blocks/task5/maps/level7/input_img/97.jpg b/blocks/task5/maps/level7/input_img/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd642c688c50c37ef3d7f6c156f99c866897ce18 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed93352d3f24b6d7ecfc3e6bb3d6c417110dbc925b3f44842cf04599630672af +size 11685 diff --git a/blocks/task5/maps/level7/input_img/98.jpg b/blocks/task5/maps/level7/input_img/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..450ebf3120bca1d76d57e4692ef3b2fa5d66c2dd --- /dev/null +++ b/blocks/task5/maps/level7/input_img/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bccf812546fdc71296eaf4afa26d6fc79529af7905ae23b906b3db2a2dd9029 +size 10642 diff --git a/blocks/task5/maps/level7/input_img/99.jpg b/blocks/task5/maps/level7/input_img/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2ad209a7e6b973c34b8b92f3d6b510a8d926a68 --- /dev/null +++ b/blocks/task5/maps/level7/input_img/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9042e9bc537e471ac82a10656f851f696528c3d3475c542db92cdd8f897a33d +size 12375 diff --git a/blocks/task5/maps/level7/input_table/0.txt b/blocks/task5/maps/level7/input_table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed56224d4f169fbc66f1cc2896104473c2de9eb --- /dev/null +++ b/blocks/task5/maps/level7/input_table/0.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | purple | +Level 3 | blue | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/1.txt b/blocks/task5/maps/level7/input_table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c31d89976acf26e0cc1343fe985c9dbd2a75caf8 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/1.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | orange | +Level 1 | purple | red | diff --git a/blocks/task5/maps/level7/input_table/10.txt b/blocks/task5/maps/level7/input_table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..dba6ddc4ed10eb7dfd78321e4e5a3e70dba816ff --- /dev/null +++ b/blocks/task5/maps/level7/input_table/10.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | purple | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task5/maps/level7/input_table/11.txt b/blocks/task5/maps/level7/input_table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a004275bd845c9789a010afb3da1728cb00ff44 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/11.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | yellow | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/12.txt b/blocks/task5/maps/level7/input_table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..42917c7931961d5d0ced2449ec0cfb31e29a8732 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/12.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | green | red | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level7/input_table/13.txt b/blocks/task5/maps/level7/input_table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..b78bef190f1e9f4553e3ba7f1bc1ac704acd0185 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/13.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | green | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/input_table/14.txt b/blocks/task5/maps/level7/input_table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..93613e4d307c2e387e09b536252f1dce57f80de6 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/14.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | yellow | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/input_table/15.txt b/blocks/task5/maps/level7/input_table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9bf297f9935e3447f9cf2c806b781636d6c4686 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/15.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | yellow | +Level 1 | blue | orange | diff --git a/blocks/task5/maps/level7/input_table/16.txt b/blocks/task5/maps/level7/input_table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2af659f2d90317f2911b9490aa3f896e9e85e7f3 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/16.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | purple | +Level 3 | red | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/input_table/17.txt b/blocks/task5/maps/level7/input_table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..5be8fe46a726b48f7c3c26fe801e25c05ee04473 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/17.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | orange | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/input_table/18.txt b/blocks/task5/maps/level7/input_table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..362157ec46004c348beef95068a666b21824fd12 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/18.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | green | orange | +Level 1 | yellow | blue | diff --git a/blocks/task5/maps/level7/input_table/19.txt b/blocks/task5/maps/level7/input_table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..28fff7293e6edacdda9ab70858b8a48bf18af89c --- /dev/null +++ b/blocks/task5/maps/level7/input_table/19.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | red | +Level 3 | orange | +Level 2 | blue | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/2.txt b/blocks/task5/maps/level7/input_table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..92820ea4fbf855230d9c7e27cc8b0e816085dc03 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/2.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | purple | +Level 2 | | green | +Level 1 | blue | red | diff --git a/blocks/task5/maps/level7/input_table/20.txt b/blocks/task5/maps/level7/input_table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdf3102c4eb075e9f428e454107ce26daf93a777 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/20.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | red | +Level 3 | purple | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/input_table/21.txt b/blocks/task5/maps/level7/input_table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..282412cf2d7b2feaccca85be48326b5870d1e68b --- /dev/null +++ b/blocks/task5/maps/level7/input_table/21.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | red | +Level 3 | blue | +Level 2 | yellow | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/22.txt b/blocks/task5/maps/level7/input_table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..0afe4b6b304b5bc90debb05930314c37798bd64c --- /dev/null +++ b/blocks/task5/maps/level7/input_table/22.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | red | +Level 2 | purple | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/input_table/23.txt b/blocks/task5/maps/level7/input_table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..83695e41475127ee50cdfdfd50931c592359520b --- /dev/null +++ b/blocks/task5/maps/level7/input_table/23.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | purple | +Level 3 | blue | +Level 2 | yellow | +Level 1 | red | diff --git a/blocks/task5/maps/level7/input_table/24.txt b/blocks/task5/maps/level7/input_table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d6af39e2766d342c4aa28de8f624c81a97e0a00 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/24.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | red | +Level 3 | green | +Level 2 | orange | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/input_table/25.txt b/blocks/task5/maps/level7/input_table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..f163130d06fbea5b76c2f4f3d29ec16283981c4c --- /dev/null +++ b/blocks/task5/maps/level7/input_table/25.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | green | blue | diff --git a/blocks/task5/maps/level7/input_table/26.txt b/blocks/task5/maps/level7/input_table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..b79ef10911528e38ee51418ff4a300c78f592420 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/26.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | orange | red | +Level 1 | green | yellow | diff --git a/blocks/task5/maps/level7/input_table/27.txt b/blocks/task5/maps/level7/input_table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..fad0de058387147ceea7e17a7edad69ba91870e3 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/27.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | purple | +Level 3 | red | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/28.txt b/blocks/task5/maps/level7/input_table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ef15ea7b7b4a33a845f20a4ab728dd1cf93d3cc --- /dev/null +++ b/blocks/task5/maps/level7/input_table/28.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | purple | green | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level7/input_table/29.txt b/blocks/task5/maps/level7/input_table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..42358156cd9b21d7b7037da8cefbd9366436e9b0 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/29.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | purple | red | diff --git a/blocks/task5/maps/level7/input_table/3.txt b/blocks/task5/maps/level7/input_table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e93792056cdecf54800ff24f5de61de48908ed8a --- /dev/null +++ b/blocks/task5/maps/level7/input_table/3.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | orange | +Level 2 | blue | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/30.txt b/blocks/task5/maps/level7/input_table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5b40a32e0d7f208f8ebb2711eb981cc88a8444a --- /dev/null +++ b/blocks/task5/maps/level7/input_table/30.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | purple | +Level 3 | blue | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/input_table/31.txt b/blocks/task5/maps/level7/input_table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c6a03e538f94ff42d1f9e5f53549435904ad705 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/31.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | green | +Level 1 | orange | purple | diff --git a/blocks/task5/maps/level7/input_table/32.txt b/blocks/task5/maps/level7/input_table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..656281d89b48fd026c523d510d02e629fda35257 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/32.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | green | +Level 2 | | orange | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level7/input_table/33.txt b/blocks/task5/maps/level7/input_table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..95a4330ffd1f27aa0795b19c8774f0ea114181ea --- /dev/null +++ b/blocks/task5/maps/level7/input_table/33.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | blue | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/input_table/34.txt b/blocks/task5/maps/level7/input_table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..513049d7e6ed4693f77e4d64705936d50fd34123 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/34.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | blue | +Level 3 | yellow | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/35.txt b/blocks/task5/maps/level7/input_table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a26309554d3cb7a65d1306bca6daa228e1fd74e2 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/35.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | blue | +Level 2 | yellow | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/36.txt b/blocks/task5/maps/level7/input_table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..3fb9143a9198be96cf23b1f02df5a3e75e409a95 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/36.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | yellow | +Level 3 | purple | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/37.txt b/blocks/task5/maps/level7/input_table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..711a1ac77d21112e71c21702e92e50defb8372f6 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/37.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | blue | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task5/maps/level7/input_table/38.txt b/blocks/task5/maps/level7/input_table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3df662ca81706bdbbd63b7114ae5c1cef2cfc1bb --- /dev/null +++ b/blocks/task5/maps/level7/input_table/38.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | purple | orange | +Level 1 | red | green | diff --git a/blocks/task5/maps/level7/input_table/39.txt b/blocks/task5/maps/level7/input_table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf7c02d1a6d261bbd5a6bd43f38d33172276cbd9 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/39.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | orange | purple | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level7/input_table/4.txt b/blocks/task5/maps/level7/input_table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..437730494e9d11ba30be24d30f2d29588eac7ca3 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/4.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level7/input_table/40.txt b/blocks/task5/maps/level7/input_table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f88eede38a342a0b355a1cb499619d3edaaaf5b4 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/40.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | orange | +Level 3 | green | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/input_table/41.txt b/blocks/task5/maps/level7/input_table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..9115d7aca043140a7e6d39c79a5111ba1cd02c8b --- /dev/null +++ b/blocks/task5/maps/level7/input_table/41.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | purple | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/42.txt b/blocks/task5/maps/level7/input_table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..964555ec660c2fb89ba2b14177e407c650dc27a8 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/42.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | red | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/input_table/43.txt b/blocks/task5/maps/level7/input_table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eaffdb73563fd5bc4a583117768c03ce822fb82 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/43.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | purple | +Level 3 | yellow | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/input_table/44.txt b/blocks/task5/maps/level7/input_table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..855b74c9e94e88bfb757d02f4004e11de7ce105d --- /dev/null +++ b/blocks/task5/maps/level7/input_table/44.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | orange | blue | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level7/input_table/45.txt b/blocks/task5/maps/level7/input_table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..5049476bc8293bf459f0f15fcab655f6858b94e7 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/45.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | blue | +Level 3 | yellow | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/46.txt b/blocks/task5/maps/level7/input_table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..af0c139df5b7c1dae098e9db8a96deb1b416fd4e --- /dev/null +++ b/blocks/task5/maps/level7/input_table/46.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level7/input_table/47.txt b/blocks/task5/maps/level7/input_table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..7de7198edbd167bdab37e42910c4b1b183c31a8b --- /dev/null +++ b/blocks/task5/maps/level7/input_table/47.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | purple | +Level 3 | blue | +Level 2 | yellow | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/48.txt b/blocks/task5/maps/level7/input_table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a0cd0b977721b585ed0f3173911e79f41764410 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/48.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | red | +Level 3 | yellow | +Level 2 | purple | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/49.txt b/blocks/task5/maps/level7/input_table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..01b6521550e0f70da3f10b91b735c52095ae4197 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/49.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | blue | +Level 2 | yellow | +Level 1 | red | diff --git a/blocks/task5/maps/level7/input_table/5.txt b/blocks/task5/maps/level7/input_table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..aaa772ecdc89b5e50f9e203f7dd09af253b1aaa7 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/5.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | blue | green | +Level 1 | yellow | orange | diff --git a/blocks/task5/maps/level7/input_table/50.txt b/blocks/task5/maps/level7/input_table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..563bce0f6d28ec9cbccb50bd448184c99ca714db --- /dev/null +++ b/blocks/task5/maps/level7/input_table/50.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | blue | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/input_table/51.txt b/blocks/task5/maps/level7/input_table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..90997358b5df9db351d7d5936422ebf4c7967e3e --- /dev/null +++ b/blocks/task5/maps/level7/input_table/51.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | yellow | +Level 3 | green | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/input_table/52.txt b/blocks/task5/maps/level7/input_table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..285811ad41f13aed898e7b93dd7dd3545091cc89 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/52.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | green | +Level 3 | blue | +Level 2 | yellow | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/input_table/53.txt b/blocks/task5/maps/level7/input_table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4c9e5148b6f1593b2f3458eb13a13eae35584ec --- /dev/null +++ b/blocks/task5/maps/level7/input_table/53.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | yellow | +Level 3 | purple | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task5/maps/level7/input_table/54.txt b/blocks/task5/maps/level7/input_table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..c673b478e07e9e997d3f690f93d5f2de3e47a7b4 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/54.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | green | +Level 2 | | orange | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level7/input_table/55.txt b/blocks/task5/maps/level7/input_table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..64f0286abbc9349f8ea826681cad4566e962fff4 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/55.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | orange | red | diff --git a/blocks/task5/maps/level7/input_table/56.txt b/blocks/task5/maps/level7/input_table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d5c1205f0afe1c71a09b3638af4ffab265b5783 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/56.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | green | +Level 2 | | orange | +Level 1 | yellow | blue | diff --git a/blocks/task5/maps/level7/input_table/57.txt b/blocks/task5/maps/level7/input_table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..81cdb0f01306c5cf7dd23e2a36973bd7654000ec --- /dev/null +++ b/blocks/task5/maps/level7/input_table/57.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | yellow | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level7/input_table/58.txt b/blocks/task5/maps/level7/input_table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..9babc4a3f7d9c9cc58f38caceea850d3c10273cc --- /dev/null +++ b/blocks/task5/maps/level7/input_table/58.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | green | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task5/maps/level7/input_table/59.txt b/blocks/task5/maps/level7/input_table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d823a6a5988b3a55093aad384f8ede6d189e45a --- /dev/null +++ b/blocks/task5/maps/level7/input_table/59.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | purple | yellow | +Level 1 | red | blue | diff --git a/blocks/task5/maps/level7/input_table/6.txt b/blocks/task5/maps/level7/input_table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..99c18367c132f4e32734e736c3cccec2a22d36ce --- /dev/null +++ b/blocks/task5/maps/level7/input_table/6.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | green | +Level 2 | | blue | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level7/input_table/60.txt b/blocks/task5/maps/level7/input_table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..eddbdbc822ea40015e1ca8ea157e8a299159a9bb --- /dev/null +++ b/blocks/task5/maps/level7/input_table/60.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | orange | +Level 3 | yellow | +Level 2 | purple | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/61.txt b/blocks/task5/maps/level7/input_table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..a832551f0fb402c827ce39496e811e1374d29660 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/61.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | blue | +Level 3 | orange | +Level 2 | yellow | +Level 1 | red | diff --git a/blocks/task5/maps/level7/input_table/62.txt b/blocks/task5/maps/level7/input_table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5fad75b0cb4ecc2f21a0f7dd27c81825aa893be --- /dev/null +++ b/blocks/task5/maps/level7/input_table/62.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | orange | purple | +Level 1 | green | yellow | diff --git a/blocks/task5/maps/level7/input_table/63.txt b/blocks/task5/maps/level7/input_table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9d1881ffae8fc9de5ae70fbfa07756c8ef02789 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/63.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | blue | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/input_table/64.txt b/blocks/task5/maps/level7/input_table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c141a2b69289a686972cfd30cb527632295c4eb --- /dev/null +++ b/blocks/task5/maps/level7/input_table/64.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | green | yellow | diff --git a/blocks/task5/maps/level7/input_table/65.txt b/blocks/task5/maps/level7/input_table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..32d5ef46fc53778e6d934716112656e5c51deb54 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/65.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | red | +Level 2 | | purple | +Level 1 | yellow | orange | diff --git a/blocks/task5/maps/level7/input_table/66.txt b/blocks/task5/maps/level7/input_table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8bf8ebac121680ae5bb392bac000016af37aeec --- /dev/null +++ b/blocks/task5/maps/level7/input_table/66.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level7/input_table/67.txt b/blocks/task5/maps/level7/input_table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa2032aab31e942686a8a7dc8e625c33a598c7b6 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/67.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | orange | +Level 3 | yellow | +Level 2 | blue | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/68.txt b/blocks/task5/maps/level7/input_table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b0c89fd36c1b8de8cbb64caf3d41bed5c6ca4d3 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/68.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | orange | +Level 2 | | green | +Level 1 | red | purple | diff --git a/blocks/task5/maps/level7/input_table/69.txt b/blocks/task5/maps/level7/input_table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cf10f866d5ecb9c72ad8857405ba74e3a990d1e --- /dev/null +++ b/blocks/task5/maps/level7/input_table/69.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | purple | +Level 3 | orange | +Level 2 | blue | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/7.txt b/blocks/task5/maps/level7/input_table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..18cbf765a93040ce112c7ff5cb4d617908cdbf2b --- /dev/null +++ b/blocks/task5/maps/level7/input_table/7.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | purple | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/70.txt b/blocks/task5/maps/level7/input_table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..28ee461b19f6db5cd14cc242417c9a743cd24ebe --- /dev/null +++ b/blocks/task5/maps/level7/input_table/70.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | orange | +Level 3 | yellow | +Level 2 | blue | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/71.txt b/blocks/task5/maps/level7/input_table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfd6a9f584e58e4728c3c7e3708bec3cabcf2997 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/71.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | orange | +Level 2 | | blue | +Level 1 | green | purple | diff --git a/blocks/task5/maps/level7/input_table/72.txt b/blocks/task5/maps/level7/input_table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..41e5fe58f3005b5fdb1d27bbdc7b9b68eae24b6a --- /dev/null +++ b/blocks/task5/maps/level7/input_table/72.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | blue | +Level 2 | | green | +Level 1 | yellow | red | diff --git a/blocks/task5/maps/level7/input_table/73.txt b/blocks/task5/maps/level7/input_table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..563bce0f6d28ec9cbccb50bd448184c99ca714db --- /dev/null +++ b/blocks/task5/maps/level7/input_table/73.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | blue | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/input_table/74.txt b/blocks/task5/maps/level7/input_table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a25aa49932814ddc10fb838501da3a16407a51 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/74.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | orange | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/input_table/75.txt b/blocks/task5/maps/level7/input_table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdbfef56f60eab5166ef76b14869731771ef2dec --- /dev/null +++ b/blocks/task5/maps/level7/input_table/75.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | green | +Level 2 | | red | +Level 1 | yellow | blue | diff --git a/blocks/task5/maps/level7/input_table/76.txt b/blocks/task5/maps/level7/input_table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8c80b3dac8624b9d471e3bb853c1318ca395408 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/76.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | purple | +Level 3 | yellow | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task5/maps/level7/input_table/77.txt b/blocks/task5/maps/level7/input_table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1fd7d3419fee84f5ff96e62040e6a7c068ab0cb --- /dev/null +++ b/blocks/task5/maps/level7/input_table/77.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | green | +Level 2 | | purple | +Level 1 | orange | red | diff --git a/blocks/task5/maps/level7/input_table/78.txt b/blocks/task5/maps/level7/input_table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b43f255e269e0951e5da7d87c75c454f636680d --- /dev/null +++ b/blocks/task5/maps/level7/input_table/78.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | blue | +Level 3 | yellow | +Level 2 | orange | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/input_table/79.txt b/blocks/task5/maps/level7/input_table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..17ffe81c89fe6d0cd33fa8aeeb9ab5ffafd54840 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/79.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | yellow | +Level 2 | | orange | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level7/input_table/8.txt b/blocks/task5/maps/level7/input_table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..75b047430587ecde71e4a011dfb2881a7772715d --- /dev/null +++ b/blocks/task5/maps/level7/input_table/8.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | yellow | green | +Level 1 | blue | red | diff --git a/blocks/task5/maps/level7/input_table/80.txt b/blocks/task5/maps/level7/input_table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c726dfff6349597b15741b3520200a8a2dca973b --- /dev/null +++ b/blocks/task5/maps/level7/input_table/80.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | green | +Level 2 | | purple | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level7/input_table/81.txt b/blocks/task5/maps/level7/input_table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e8b405a0305c418c6f0b4a4cd3957983e6953e8 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/81.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | red | purple | +Level 1 | orange | green | diff --git a/blocks/task5/maps/level7/input_table/82.txt b/blocks/task5/maps/level7/input_table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..a033167ed231df05d8c609e9aa3a56fd6109233c --- /dev/null +++ b/blocks/task5/maps/level7/input_table/82.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | blue | +Level 2 | | green | +Level 1 | yellow | purple | diff --git a/blocks/task5/maps/level7/input_table/83.txt b/blocks/task5/maps/level7/input_table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..57a7dca002ea1c2ee70f06ff85e48bbed8e8e3d6 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/83.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | green | orange | +Level 1 | purple | yellow | diff --git a/blocks/task5/maps/level7/input_table/84.txt b/blocks/task5/maps/level7/input_table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd9ccd5b2f57aa7140e827a0008093695132d401 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/84.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | green | +Level 3 | red | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/input_table/85.txt b/blocks/task5/maps/level7/input_table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ea6112dfe8cca8b40f8f64fcf3548f77abce74b --- /dev/null +++ b/blocks/task5/maps/level7/input_table/85.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | orange | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/input_table/86.txt b/blocks/task5/maps/level7/input_table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a89ed5c75e346dfcb9d2e179767eee092fcd3010 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/86.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | purple | red | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level7/input_table/87.txt b/blocks/task5/maps/level7/input_table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddb2a0707622916ca0646741e10c4b348cdc9d76 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/87.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | orange | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/input_table/88.txt b/blocks/task5/maps/level7/input_table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..c95c7366f6dded77ee492cbbce90e95045b50754 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/88.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | blue | +Level 3 | yellow | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/input_table/89.txt b/blocks/task5/maps/level7/input_table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..8dbf6f9383dd01b451752aad7436915a993826cb --- /dev/null +++ b/blocks/task5/maps/level7/input_table/89.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | yellow | purple | +Level 1 | green | red | diff --git a/blocks/task5/maps/level7/input_table/9.txt b/blocks/task5/maps/level7/input_table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..685e8e8974af5dd9cd6cc48f1f6e2f15a359dd86 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/9.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | green | +Level 2 | | orange | +Level 1 | blue | red | diff --git a/blocks/task5/maps/level7/input_table/90.txt b/blocks/task5/maps/level7/input_table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c67ede514bdc2d656e56e4efe71b8867a2e230e --- /dev/null +++ b/blocks/task5/maps/level7/input_table/90.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | yellow | +Level 3 | green | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/input_table/91.txt b/blocks/task5/maps/level7/input_table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f95f33499e43cfce879a4eeb7283b8796dfaa82 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/91.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | yellow | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task5/maps/level7/input_table/92.txt b/blocks/task5/maps/level7/input_table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..97802942110d288d448c5eccb7a326fab1fbaa7c --- /dev/null +++ b/blocks/task5/maps/level7/input_table/92.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | red | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/input_table/93.txt b/blocks/task5/maps/level7/input_table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..588732aa7e1fc6423a2da7e19cb76ed39b400bf0 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/93.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | yellow | +Level 2 | | red | +Level 1 | orange | purple | diff --git a/blocks/task5/maps/level7/input_table/94.txt b/blocks/task5/maps/level7/input_table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..fed7474c5c6b5f7a64ba34035c09c6125a2272ab --- /dev/null +++ b/blocks/task5/maps/level7/input_table/94.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | blue | +Level 2 | | red | +Level 1 | yellow | green | diff --git a/blocks/task5/maps/level7/input_table/95.txt b/blocks/task5/maps/level7/input_table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..73f5f577ea4a08b3eac7a55b092097832daaa09e --- /dev/null +++ b/blocks/task5/maps/level7/input_table/95.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | blue | +Level 2 | | orange | +Level 1 | red | green | diff --git a/blocks/task5/maps/level7/input_table/96.txt b/blocks/task5/maps/level7/input_table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f57b856f2cbb10b52847c4385b159eb80c92862 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/96.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | red | yellow | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level7/input_table/97.txt b/blocks/task5/maps/level7/input_table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1e5f62916eacbabb7e31714024ab8d0697b3359 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/97.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | orange | +Level 2 | | red | +Level 1 | purple | blue | diff --git a/blocks/task5/maps/level7/input_table/98.txt b/blocks/task5/maps/level7/input_table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..1462edab9830f2046bcf15458c3ae992ce50f085 --- /dev/null +++ b/blocks/task5/maps/level7/input_table/98.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | yellow | green | +Level 1 | blue | orange | diff --git a/blocks/task5/maps/level7/input_table/99.txt b/blocks/task5/maps/level7/input_table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..401395975bfee92ac4d275610a457e462dea1cfd --- /dev/null +++ b/blocks/task5/maps/level7/input_table/99.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | red | +Level 2 | | orange | +Level 1 | blue | green | diff --git a/blocks/task5/maps/level7/input_text/0.txt b/blocks/task5/maps/level7/input_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..251c332c3c5908ad9d4b2939e556f0dcc0d9a5fa --- /dev/null +++ b/blocks/task5/maps/level7/input_text/0.txt @@ -0,0 +1 @@ +- Stack with green block, red block, blue block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/1.txt b/blocks/task5/maps/level7/input_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d86e8b421ee489a89505ba95c13d54f2ef55a5b1 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/1.txt @@ -0,0 +1,2 @@ +- Stack with purple block, yellow block, from bottom to top +- Stack with red block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/10.txt b/blocks/task5/maps/level7/input_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e580b0f9325c51a26bff16b588b44295a02f25e --- /dev/null +++ b/blocks/task5/maps/level7/input_text/10.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, purple block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/11.txt b/blocks/task5/maps/level7/input_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb99364e1aaf5809dd6c925afc87697c4a38e01c --- /dev/null +++ b/blocks/task5/maps/level7/input_text/11.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, yellow block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/12.txt b/blocks/task5/maps/level7/input_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eb4148dcc790a60079b1e5d7f24b314be5daf4a --- /dev/null +++ b/blocks/task5/maps/level7/input_text/12.txt @@ -0,0 +1,2 @@ +- Stack with orange block, green block, from bottom to top +- Stack with yellow block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/13.txt b/blocks/task5/maps/level7/input_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fa4bc50a2cbf7ff2b9bf0ba9f51808ba2e42e4e --- /dev/null +++ b/blocks/task5/maps/level7/input_text/13.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, green block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/14.txt b/blocks/task5/maps/level7/input_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..f31a298c71f96daec75a722dee6f7547af474875 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/14.txt @@ -0,0 +1 @@ +- Stack with orange block, green block, yellow block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/15.txt b/blocks/task5/maps/level7/input_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..42e9f13c0b5c8908edca0286605cf93fc8d2a9f1 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/15.txt @@ -0,0 +1,2 @@ +- Stack with blue block, red block, from bottom to top +- Stack with orange block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/16.txt b/blocks/task5/maps/level7/input_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..875d1ca2ed9a501c058a589a1939408fee3beb64 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/16.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, red block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/17.txt b/blocks/task5/maps/level7/input_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..86fb6377d071a2967a99cac7bcb1c912cf9d2537 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/17.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/18.txt b/blocks/task5/maps/level7/input_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..50816ffe147b12aaa94a032637b912ceaa6fa95c --- /dev/null +++ b/blocks/task5/maps/level7/input_text/18.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, green block, from bottom to top +- Stack with blue block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/19.txt b/blocks/task5/maps/level7/input_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea5d4369c5b29064c9e81053362a1fc1df051acb --- /dev/null +++ b/blocks/task5/maps/level7/input_text/19.txt @@ -0,0 +1 @@ +- Stack with green block, blue block, orange block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/2.txt b/blocks/task5/maps/level7/input_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8c1130628f111c1c690bb4dc7ceec80f1aaa9a7 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/2.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, green block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/20.txt b/blocks/task5/maps/level7/input_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..670bf26b59d91c31fd57239e43085a18f5bd6cc8 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/20.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, purple block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/21.txt b/blocks/task5/maps/level7/input_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd9b81b7fd82b35b7bc9af3a6ca9fa563f49383e --- /dev/null +++ b/blocks/task5/maps/level7/input_text/21.txt @@ -0,0 +1 @@ +- Stack with green block, yellow block, blue block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/22.txt b/blocks/task5/maps/level7/input_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8761198755ccc8f8fe1e5c26d13aa2d6dc3fab0 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/22.txt @@ -0,0 +1 @@ +- Stack with blue block, purple block, red block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/23.txt b/blocks/task5/maps/level7/input_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..667b5420a0a8bfff48c96dd9cb2e1ce114b14590 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/23.txt @@ -0,0 +1 @@ +- Stack with red block, yellow block, blue block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/24.txt b/blocks/task5/maps/level7/input_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4621b9b1bef9eae5ebdb47639412b15cd19f684 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/24.txt @@ -0,0 +1 @@ +- Stack with blue block, orange block, green block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/25.txt b/blocks/task5/maps/level7/input_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a7aec7da70b349bd6bb872a8111923cb04df986 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/25.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with blue block, red block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/26.txt b/blocks/task5/maps/level7/input_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbbfcb730f1dfe3859a2fcd2da4ec1aa4d54da48 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/26.txt @@ -0,0 +1,2 @@ +- Stack with green block, orange block, from bottom to top +- Stack with yellow block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/27.txt b/blocks/task5/maps/level7/input_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5d05ff7c94580d00d84e46de1f391284d49a92d --- /dev/null +++ b/blocks/task5/maps/level7/input_text/27.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, red block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/28.txt b/blocks/task5/maps/level7/input_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..eada71c430ec60ab75d4f1abd2a72bdf98cfe32a --- /dev/null +++ b/blocks/task5/maps/level7/input_text/28.txt @@ -0,0 +1,2 @@ +- Stack with blue block, purple block, from bottom to top +- Stack with yellow block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/29.txt b/blocks/task5/maps/level7/input_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e129efd271c0d0a5677483c3597c6d9016d5a9 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/29.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with red block, blue block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/3.txt b/blocks/task5/maps/level7/input_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8435ec132525f7538a2ffcc546b05375dc60523 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/3.txt @@ -0,0 +1 @@ +- Stack with green block, blue block, orange block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/30.txt b/blocks/task5/maps/level7/input_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..144ca7b446d727fc88bff957c77c016377c441c9 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/30.txt @@ -0,0 +1 @@ +- Stack with orange block, red block, blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/31.txt b/blocks/task5/maps/level7/input_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2dd42b876d25e486845000d3fa28ad1d8a392a5 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/31.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, green block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/32.txt b/blocks/task5/maps/level7/input_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..560e6fd96e043997118424fd50ae0f8011a55da2 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/32.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, orange block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/33.txt b/blocks/task5/maps/level7/input_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..574e8c26e92038b9615daf727a958974aaa5af10 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/33.txt @@ -0,0 +1 @@ +- Stack with yellow block, orange block, blue block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/34.txt b/blocks/task5/maps/level7/input_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd19a43c07a47661935619eca1559dc2ba6d015d --- /dev/null +++ b/blocks/task5/maps/level7/input_text/34.txt @@ -0,0 +1 @@ +- Stack with green block, red block, yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/35.txt b/blocks/task5/maps/level7/input_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..54b60432abd31011f05311dc252020a284b28e67 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/35.txt @@ -0,0 +1 @@ +- Stack with green block, yellow block, blue block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/36.txt b/blocks/task5/maps/level7/input_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3f2c55486a00e8c7d68eb3001a8c3f5bf3884f9 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/36.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, purple block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/37.txt b/blocks/task5/maps/level7/input_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..b308beb85ac1b61ba06e81426ce8ebf4184df0d8 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/37.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/38.txt b/blocks/task5/maps/level7/input_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..079e42c801ea11385b4bdf8e45f09aac974da274 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/38.txt @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with green block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/39.txt b/blocks/task5/maps/level7/input_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..181f6ea47844de636ed6bcc540986c9f589d3b33 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/39.txt @@ -0,0 +1,2 @@ +- Stack with blue block, orange block, from bottom to top +- Stack with yellow block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/4.txt b/blocks/task5/maps/level7/input_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..52a0c8fc37aef18ad080f1733e190644c15961b6 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/4.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with purple block, orange block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/40.txt b/blocks/task5/maps/level7/input_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..bec2ce199744ecd8d53dd2c9e776cc301bfbb5c0 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/40.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, green block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/41.txt b/blocks/task5/maps/level7/input_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..77c40ebeb28bbfee2ecf720570bed08020dc044c --- /dev/null +++ b/blocks/task5/maps/level7/input_text/41.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/42.txt b/blocks/task5/maps/level7/input_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..a85836e5bfd7ae1311df7c6f72458029bdbfd668 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/42.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, red block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/43.txt b/blocks/task5/maps/level7/input_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..de3979800b558474a1ec817f5ad250a1769387ef --- /dev/null +++ b/blocks/task5/maps/level7/input_text/43.txt @@ -0,0 +1 @@ +- Stack with orange block, red block, yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/44.txt b/blocks/task5/maps/level7/input_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..0688f2abdbac3add352dd0d9d5318fbb255da4d4 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/44.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, orange block, from bottom to top +- Stack with red block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/45.txt b/blocks/task5/maps/level7/input_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9516ac26a127a87b2c3429f65c676343b4b23d3 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/45.txt @@ -0,0 +1 @@ +- Stack with green block, red block, yellow block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/46.txt b/blocks/task5/maps/level7/input_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bf45c5183f4f971ae2f344c08e57e5e6b0ef1bf --- /dev/null +++ b/blocks/task5/maps/level7/input_text/46.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, blue block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/47.txt b/blocks/task5/maps/level7/input_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..1597d4b9bde935f3216664fadd5caee2013c7607 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/47.txt @@ -0,0 +1 @@ +- Stack with green block, yellow block, blue block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/48.txt b/blocks/task5/maps/level7/input_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a046eceb4f922e4276c9b9078b9b16a79e063b0 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/48.txt @@ -0,0 +1 @@ +- Stack with green block, purple block, yellow block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/49.txt b/blocks/task5/maps/level7/input_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..e02bd9b8198b37411bc67e2cdce80ac9cd5f63a7 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/49.txt @@ -0,0 +1 @@ +- Stack with red block, yellow block, blue block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/5.txt b/blocks/task5/maps/level7/input_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2592cf8d53ae8e85133cb0771a266764bb641c4f --- /dev/null +++ b/blocks/task5/maps/level7/input_text/5.txt @@ -0,0 +1,2 @@ +- Stack with yellow block, blue block, from bottom to top +- Stack with orange block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/50.txt b/blocks/task5/maps/level7/input_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..646d6bf33571d3083fc93430c1f73ec6f139ab3e --- /dev/null +++ b/blocks/task5/maps/level7/input_text/50.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/51.txt b/blocks/task5/maps/level7/input_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..43def702af9adeb5393ae220287e3a1cda61e0f5 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/51.txt @@ -0,0 +1 @@ +- Stack with orange block, red block, green block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/52.txt b/blocks/task5/maps/level7/input_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd5f8fac8bcd32799be3fbbf672388522112556b --- /dev/null +++ b/blocks/task5/maps/level7/input_text/52.txt @@ -0,0 +1 @@ +- Stack with purple block, yellow block, blue block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/53.txt b/blocks/task5/maps/level7/input_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ca324c93449347fbcecbfa22fbbd3ff9cfb95b5 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/53.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, purple block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/54.txt b/blocks/task5/maps/level7/input_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..5bea6735a20e8234e3f57424d57412c9e1e0c4bb --- /dev/null +++ b/blocks/task5/maps/level7/input_text/54.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, orange block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/55.txt b/blocks/task5/maps/level7/input_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3c71745ae9783b57125f66621a789e03dab2e48 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/55.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, purple block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/56.txt b/blocks/task5/maps/level7/input_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfb2e5c1c1e76bdda01bd3a4fbc89043b5a5d63e --- /dev/null +++ b/blocks/task5/maps/level7/input_text/56.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, orange block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/57.txt b/blocks/task5/maps/level7/input_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbfec6bee2da99e04ea92c2d653c3ca670f6fce8 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/57.txt @@ -0,0 +1,2 @@ +- Stack with purple block, red block, from bottom to top +- Stack with blue block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/58.txt b/blocks/task5/maps/level7/input_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e62fbfc3c3f72d7cfa6bce0f47455df45991c84 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/58.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, green block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/59.txt b/blocks/task5/maps/level7/input_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..0478157f5fb9da2a38643f9763e294942d7071cf --- /dev/null +++ b/blocks/task5/maps/level7/input_text/59.txt @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with blue block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/6.txt b/blocks/task5/maps/level7/input_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d4789d009b97b0248ca033502c1d3a3b8693f07 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/6.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, blue block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/60.txt b/blocks/task5/maps/level7/input_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..e48f6f4476dc95670eeb8ee4f075061a4a78ef9e --- /dev/null +++ b/blocks/task5/maps/level7/input_text/60.txt @@ -0,0 +1 @@ +- Stack with green block, purple block, yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/61.txt b/blocks/task5/maps/level7/input_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..e30d9d502bb1df61daff1ac5cceb98ebd961fa00 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/61.txt @@ -0,0 +1 @@ +- Stack with red block, yellow block, orange block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/62.txt b/blocks/task5/maps/level7/input_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c16e4728518d80a79139f45aac6a099e4001af5 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/62.txt @@ -0,0 +1,2 @@ +- Stack with green block, orange block, from bottom to top +- Stack with yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/63.txt b/blocks/task5/maps/level7/input_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..edea8e3acd88ef98300e111213f324bc23b2ebb3 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/63.txt @@ -0,0 +1 @@ +- Stack with orange block, purple block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/64.txt b/blocks/task5/maps/level7/input_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e512c8a13c259868eb3e894daa06b75cc5c92cb1 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/64.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with yellow block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/65.txt b/blocks/task5/maps/level7/input_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b2f478e767f2a5a0db02a8b0eca4a9a90c26f18 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/65.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, purple block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/66.txt b/blocks/task5/maps/level7/input_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..7909c94bbee3d4358366ce9f5cb141b9583e05b5 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/66.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, orange block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/67.txt b/blocks/task5/maps/level7/input_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..0daebf014cd4e7720d3d0b5b2004c0788b913e8c --- /dev/null +++ b/blocks/task5/maps/level7/input_text/67.txt @@ -0,0 +1 @@ +- Stack with green block, blue block, yellow block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/68.txt b/blocks/task5/maps/level7/input_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..422cfeb62b871dfecaa62eac6cb6ae9c69fdc4ed --- /dev/null +++ b/blocks/task5/maps/level7/input_text/68.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with purple block, green block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/69.txt b/blocks/task5/maps/level7/input_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..42887aafa61fc00b62a723a64a906d1757ee9aa9 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/69.txt @@ -0,0 +1 @@ +- Stack with green block, blue block, orange block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/7.txt b/blocks/task5/maps/level7/input_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d20cf9f8e7f8b218c053477b16d3c21ae46748d --- /dev/null +++ b/blocks/task5/maps/level7/input_text/7.txt @@ -0,0 +1 @@ +- Stack with green block, red block, purple block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/70.txt b/blocks/task5/maps/level7/input_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..635928f2192bc60b90a83763a2c4737b8d24a939 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/70.txt @@ -0,0 +1 @@ +- Stack with green block, blue block, yellow block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/71.txt b/blocks/task5/maps/level7/input_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..54bc83e83b1515067c412987a07d9e8af5350a5a --- /dev/null +++ b/blocks/task5/maps/level7/input_text/71.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with purple block, blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/72.txt b/blocks/task5/maps/level7/input_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd0973eb6873dd01ff07d8582bfe3055f91956a7 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/72.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with red block, green block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/73.txt b/blocks/task5/maps/level7/input_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..646d6bf33571d3083fc93430c1f73ec6f139ab3e --- /dev/null +++ b/blocks/task5/maps/level7/input_text/73.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/74.txt b/blocks/task5/maps/level7/input_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee9abdd689fb7aaf3e1d0f6b654a1866707a04ec --- /dev/null +++ b/blocks/task5/maps/level7/input_text/74.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, orange block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/75.txt b/blocks/task5/maps/level7/input_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c211d06b5d45e902d5ebcbef85fadc4a76c740f --- /dev/null +++ b/blocks/task5/maps/level7/input_text/75.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, red block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/76.txt b/blocks/task5/maps/level7/input_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..e03728021df7fc9c0a544926ffe6ac7d410e4e0d --- /dev/null +++ b/blocks/task5/maps/level7/input_text/76.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, yellow block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/77.txt b/blocks/task5/maps/level7/input_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b0fd91b34134903641f8cc91a1db1cda787cfb2 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/77.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with red block, purple block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/78.txt b/blocks/task5/maps/level7/input_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..07d17ba5087c33d7725df23a5048bbeab85f9d6f --- /dev/null +++ b/blocks/task5/maps/level7/input_text/78.txt @@ -0,0 +1 @@ +- Stack with purple block, orange block, yellow block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/79.txt b/blocks/task5/maps/level7/input_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0aa7e69204eec74ef6deb9fda146900ab743dd1 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/79.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with purple block, orange block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/8.txt b/blocks/task5/maps/level7/input_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6cbf8dc02978e443b9716e4697e35986fbd6399 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/8.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with red block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/80.txt b/blocks/task5/maps/level7/input_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9500d8d2c1da29c515ff7b1c668d2dfd5a65e81 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/80.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, purple block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/81.txt b/blocks/task5/maps/level7/input_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..e20904f51dd2d5bcf12c75f01fb29d1166157ac8 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/81.txt @@ -0,0 +1,2 @@ +- Stack with orange block, red block, from bottom to top +- Stack with green block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/82.txt b/blocks/task5/maps/level7/input_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a7767730b0e4e892b8bdc741c60d6477a50e3f6 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/82.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with purple block, green block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/83.txt b/blocks/task5/maps/level7/input_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..da12f17dabfaf09ec6999c356370b59437f77890 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/83.txt @@ -0,0 +1,2 @@ +- Stack with purple block, green block, from bottom to top +- Stack with yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/84.txt b/blocks/task5/maps/level7/input_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..fde39672d9a98a9d10182e9bd48cc3089c6fde75 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/84.txt @@ -0,0 +1 @@ +- Stack with orange block, purple block, red block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/85.txt b/blocks/task5/maps/level7/input_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..9de8abc3e6623e8f10fc9e70f4ff2de09c563355 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/85.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/86.txt b/blocks/task5/maps/level7/input_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..8caa0d65cba5e200f7d6a151ec75bb33a3a86b9c --- /dev/null +++ b/blocks/task5/maps/level7/input_text/86.txt @@ -0,0 +1,2 @@ +- Stack with orange block, purple block, from bottom to top +- Stack with yellow block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/87.txt b/blocks/task5/maps/level7/input_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..62c3c31f8c657336653473001547670c1a0c0d72 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/87.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, orange block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/88.txt b/blocks/task5/maps/level7/input_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8b3b4e6a20f542c3879ed88c10731b89179a95c --- /dev/null +++ b/blocks/task5/maps/level7/input_text/88.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, yellow block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/89.txt b/blocks/task5/maps/level7/input_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6630337838ffe9d5cf50e3a103504c3892c3dbac --- /dev/null +++ b/blocks/task5/maps/level7/input_text/89.txt @@ -0,0 +1,2 @@ +- Stack with green block, yellow block, from bottom to top +- Stack with red block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/9.txt b/blocks/task5/maps/level7/input_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..be8f636d4adb428df81b3884ffb1ce34d6eccaa9 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/9.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with red block, orange block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/90.txt b/blocks/task5/maps/level7/input_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..584c5cb3fe2c2a2cb9453ad466fecc3d51dc3b71 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/90.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, green block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/91.txt b/blocks/task5/maps/level7/input_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1a81de155bb7fc6f8d6f5390b0e0c3b24df34f2 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/91.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, yellow block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/92.txt b/blocks/task5/maps/level7/input_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..17079036535d87f68b673eef33d35cf4df76b016 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/92.txt @@ -0,0 +1 @@ +- Stack with orange block, purple block, red block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/93.txt b/blocks/task5/maps/level7/input_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d246337dcf927a1d734b77b4373525b821ccd9b --- /dev/null +++ b/blocks/task5/maps/level7/input_text/93.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, red block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/94.txt b/blocks/task5/maps/level7/input_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a932df1b93c1ff282780d3bbceace6db9976151 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/94.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, red block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/95.txt b/blocks/task5/maps/level7/input_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..86138f8e76c6edf3d8c11c035fc151704c2857ba --- /dev/null +++ b/blocks/task5/maps/level7/input_text/95.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with green block, orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/96.txt b/blocks/task5/maps/level7/input_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cbcaa4b85711dbec7d863477a4c492cfa1e8092 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/96.txt @@ -0,0 +1,2 @@ +- Stack with blue block, red block, from bottom to top +- Stack with purple block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/97.txt b/blocks/task5/maps/level7/input_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..7005e6437b7c2f623dfe4e698ecdc15b2f690053 --- /dev/null +++ b/blocks/task5/maps/level7/input_text/97.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with blue block, red block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/98.txt b/blocks/task5/maps/level7/input_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..87bb410c8b0154ee44661fd89c331ead5b7f152c --- /dev/null +++ b/blocks/task5/maps/level7/input_text/98.txt @@ -0,0 +1,2 @@ +- Stack with blue block, yellow block, from bottom to top +- Stack with orange block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/input_text/99.txt b/blocks/task5/maps/level7/input_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..86f31ad662da268a27a68802bf557fb641d9a7fd --- /dev/null +++ b/blocks/task5/maps/level7/input_text/99.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with green block, orange block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_img/0.jpg b/blocks/task5/maps/level7/output_img/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9ba08aa4dc57a884c7f878ce86ab95d8fd8c2ca --- /dev/null +++ b/blocks/task5/maps/level7/output_img/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ee287d93c303a468023c599d6e9e42c0ad31972902b5a0f45355f180cbee815 +size 9805 diff --git a/blocks/task5/maps/level7/output_img/1.jpg b/blocks/task5/maps/level7/output_img/1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07add98d86e343b21db31961de5f0e15c443e736 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6f03e44b78a941b05f8369cbe7280c34dc388f78c181e0e66c850060fe4a6d +size 10178 diff --git a/blocks/task5/maps/level7/output_img/10.jpg b/blocks/task5/maps/level7/output_img/10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65675ef4e9c220ea74ef063253a8348df5787690 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e07d05c84175968662da29f82ef47c9f6c7bd6fb0c91fdc0b023a88552d76cf +size 9257 diff --git a/blocks/task5/maps/level7/output_img/11.jpg b/blocks/task5/maps/level7/output_img/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d02207913c19a1d13221f0f4c1720d2f24e7edf5 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab507728bc2efe413020d1c83d527661ec4908e0c3d87cfac4412f79449f407e +size 10645 diff --git a/blocks/task5/maps/level7/output_img/12.jpg b/blocks/task5/maps/level7/output_img/12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92a0226edc8062ea833f5cdbaa310bbaede8ec57 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4660e60b7ca2f7c23b41ffd1e179161eaf7a2c220698f37df671e6cceb4dc8 +size 9936 diff --git a/blocks/task5/maps/level7/output_img/13.jpg b/blocks/task5/maps/level7/output_img/13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0052ce69c58c96a324ca8752db7ec1e0690e8eb --- /dev/null +++ b/blocks/task5/maps/level7/output_img/13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7713ed82e9b0b45527f3feee2a007efc78d1784b10a7547bb8d5980435bd6b9e +size 10682 diff --git a/blocks/task5/maps/level7/output_img/14.jpg b/blocks/task5/maps/level7/output_img/14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51867bc0e7ce21068035e960ed3372ab9e42fd5e --- /dev/null +++ b/blocks/task5/maps/level7/output_img/14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f41a623fd8ae2471733b621a4a20057bd8ea9bb55c4b435ad11738c1f61201 +size 10412 diff --git a/blocks/task5/maps/level7/output_img/15.jpg b/blocks/task5/maps/level7/output_img/15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44d033045bb22fa21a81e54b60eb9c5613542b62 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71084f3fa34f5b182b7736dbc47b43e3706352d16974bf1e5221e3dc632104a7 +size 9704 diff --git a/blocks/task5/maps/level7/output_img/16.jpg b/blocks/task5/maps/level7/output_img/16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8729a123e5368ac90002b97099b64e04ff6be56 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ac08f6c9687a69fea9876d4912becc36b5b8dfec836f5d6c5ac6af524320ca +size 10782 diff --git a/blocks/task5/maps/level7/output_img/17.jpg b/blocks/task5/maps/level7/output_img/17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de8c047affe0ffb3ed0111f53ca2fa6e7fae5be9 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f62e8df6f956d39bc48b80356527073a7d5e337e50d460a46dd22d3e38830e +size 12046 diff --git a/blocks/task5/maps/level7/output_img/18.jpg b/blocks/task5/maps/level7/output_img/18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ec15f2f45fdf5d0a8e016f02039cd9180096a68 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e0caf2da8de9e7c94a49405de43c538f07381e81573b12a056b160b9d65bec1 +size 10007 diff --git a/blocks/task5/maps/level7/output_img/19.jpg b/blocks/task5/maps/level7/output_img/19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f57bbbb002a1ddc472559e7ea5f2c96676df35a --- /dev/null +++ b/blocks/task5/maps/level7/output_img/19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34528488c781d9e3668cb6dba85d8d15325ed1a43109a06a2fbec7e6c944e7fa +size 10784 diff --git a/blocks/task5/maps/level7/output_img/2.jpg b/blocks/task5/maps/level7/output_img/2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97842b55be800ef1c43cdcc976d29bf473848364 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36d3b247fc8b6fc538f317254bf98657e048508e8275f37c309982618c7e061 +size 11026 diff --git a/blocks/task5/maps/level7/output_img/20.jpg b/blocks/task5/maps/level7/output_img/20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1fc8d93cfed609c43af7d3f71aad6ea9c99a94e --- /dev/null +++ b/blocks/task5/maps/level7/output_img/20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88aaa36806549efed40ef8fc07f8a34e3ff508568a21e2542397749be4ff319a +size 10002 diff --git a/blocks/task5/maps/level7/output_img/21.jpg b/blocks/task5/maps/level7/output_img/21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..132b672e90a323c4ca7850da932ae01532c27876 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8561984cb9b731e2060bd677ed53468e27701a9b52c6e156eb86b1f6c6c0bf6b +size 10308 diff --git a/blocks/task5/maps/level7/output_img/22.jpg b/blocks/task5/maps/level7/output_img/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acb6a419c4d25f3edaa47b3e7ff470498abeb63d --- /dev/null +++ b/blocks/task5/maps/level7/output_img/22.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b033461a979ffa12eb9512125c2774ae204ee65d90c398dedb91879dcf5f400 +size 12001 diff --git a/blocks/task5/maps/level7/output_img/23.jpg b/blocks/task5/maps/level7/output_img/23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2c8bb32439a2b5da7f861b64682f241c05ec8a0 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e8ee04bb8affaab0ce9dfdb0c76fa526901e09a79a865e4d9aa9c8266c21c6 +size 10393 diff --git a/blocks/task5/maps/level7/output_img/24.jpg b/blocks/task5/maps/level7/output_img/24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83f13e0fbe71029865eb69623c8c7b850b64f639 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdd02494baaa7c4ee1f7f18fd728ce1a53fc49767c256daaf142bbd6aef1516b +size 11064 diff --git a/blocks/task5/maps/level7/output_img/25.jpg b/blocks/task5/maps/level7/output_img/25.jpg new file mode 100644 index 0000000000000000000000000000000000000000..066b715f14e56065cdec8aad3c2df9330f555a5a --- /dev/null +++ b/blocks/task5/maps/level7/output_img/25.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce62b1e8b7c41df70c658aa239e76fcb4298436c6ff1407199217f5af4747c90 +size 11178 diff --git a/blocks/task5/maps/level7/output_img/26.jpg b/blocks/task5/maps/level7/output_img/26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..599a66d82304812382c6011c1839825d62323ecd --- /dev/null +++ b/blocks/task5/maps/level7/output_img/26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185bbfc12cc19a878bc82fb7737163ebbebde7a3417abe8689cd4383ed480164 +size 10316 diff --git a/blocks/task5/maps/level7/output_img/27.jpg b/blocks/task5/maps/level7/output_img/27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48f3fc435106771195c5929cf384ac7b3f3241d8 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dcffbd21e3cb7e20dcf7db5aae3dd8cc3d22fcb77b2c52734effcb552cda3ea +size 11110 diff --git a/blocks/task5/maps/level7/output_img/28.jpg b/blocks/task5/maps/level7/output_img/28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93121a916abf985d6ab9c0ed41e6b5ec7d458621 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d65c0b72b2f921ceccad601f94a44f8c3488a86bb62b896da02524bb52e0c1 +size 10330 diff --git a/blocks/task5/maps/level7/output_img/29.jpg b/blocks/task5/maps/level7/output_img/29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e001dbb7a57b90d389012bb37c1d3fea7f391f43 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb1ea8d6bb717554cd86229bc034e82356528f4a918b7ba7c62220745d8668c3 +size 10558 diff --git a/blocks/task5/maps/level7/output_img/3.jpg b/blocks/task5/maps/level7/output_img/3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32b7ed62c43651bf04a322eceff8e44e61711d19 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5d43f2cdd0f6d0309d3df428738fb0a3f103a0cf41d2a2e27d7a9b435c1470 +size 10750 diff --git a/blocks/task5/maps/level7/output_img/30.jpg b/blocks/task5/maps/level7/output_img/30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e5485b3951b299c133c753c60b07368f00fa76b --- /dev/null +++ b/blocks/task5/maps/level7/output_img/30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0739793cf7db891d4c0b49389e35707c91f2e118219dd72df36d8f6b2031c0bf +size 10924 diff --git a/blocks/task5/maps/level7/output_img/31.jpg b/blocks/task5/maps/level7/output_img/31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87aeb9e94f6c024e565699c379eed3ab7b5b8f47 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f987d4381ed3eecf42c1a53b8daf849bbc703062dc1341e5a355b4ea82d14a +size 10494 diff --git a/blocks/task5/maps/level7/output_img/32.jpg b/blocks/task5/maps/level7/output_img/32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b56dc7e47ada9cc4a727825d8ddf72e1985e78f3 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:947d6465f86eaa0102b9f472caca7433afe80de216bbc7711904d6dddbaa3c99 +size 10397 diff --git a/blocks/task5/maps/level7/output_img/33.jpg b/blocks/task5/maps/level7/output_img/33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6777870bef38e5f636e5678b5786a85d27be7f21 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022eb3697501adbe720ee062f37da47ce3e5dc8cc4bdfdb2cc861c9d943bc98c +size 11468 diff --git a/blocks/task5/maps/level7/output_img/34.jpg b/blocks/task5/maps/level7/output_img/34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c042de59ae6f054b948d2feefe1e0d2769b86585 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a601554d7918acd44d50a602aea69cad9b3bc57bee9f39eb7bacef711c8200 +size 10097 diff --git a/blocks/task5/maps/level7/output_img/35.jpg b/blocks/task5/maps/level7/output_img/35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f73385de9dbcb4d33af6c59bb1d91589aaa860f8 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c34b0a9bd31877711089a0450eef8d6dd6cd14fde3ad4b77374efdf9dedf70c +size 12153 diff --git a/blocks/task5/maps/level7/output_img/36.jpg b/blocks/task5/maps/level7/output_img/36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5343910c721f737fe8be83b4765506025d21501f --- /dev/null +++ b/blocks/task5/maps/level7/output_img/36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fd95591f537f3660ebea14e5bf60881f67f01779aa8963cdad7215ec74f971 +size 11118 diff --git a/blocks/task5/maps/level7/output_img/37.jpg b/blocks/task5/maps/level7/output_img/37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ad13f2da6335c2a89b3586e575e7411ecf91f49 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2693a40128b5c901cdce1f3bba3830d65b3ef401dab681701798c56bf9a1f615 +size 10146 diff --git a/blocks/task5/maps/level7/output_img/38.jpg b/blocks/task5/maps/level7/output_img/38.jpg new file mode 100644 index 0000000000000000000000000000000000000000..247dbf5d83ff8c1b9bd8c691c4c90963c3ddb5bf --- /dev/null +++ b/blocks/task5/maps/level7/output_img/38.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5984836ecee124bde28bf87f1eb632807cd1eaf8eb22149686fa3cacca1d9cca +size 10745 diff --git a/blocks/task5/maps/level7/output_img/39.jpg b/blocks/task5/maps/level7/output_img/39.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d30372a83ede140f8a0e9a8822e9a4d5026d64e --- /dev/null +++ b/blocks/task5/maps/level7/output_img/39.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae3a719e81fd7f8da3dfbc7f4bd920663a8bf7340d92b742202a2f0b932db20 +size 10413 diff --git a/blocks/task5/maps/level7/output_img/4.jpg b/blocks/task5/maps/level7/output_img/4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73356f9676055acbf3487cdd8d8ced23d7450a97 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbe7ceae89658e944ddd45040e4e54bbfabb578fcb317cfe1151130f477c428 +size 11049 diff --git a/blocks/task5/maps/level7/output_img/40.jpg b/blocks/task5/maps/level7/output_img/40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f049b0f086fdcbd3e6cf378ffaef2da1cd62636 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff4f5907862d45072436d03e609dc170d4deebbd6f02d678be9538d919ef9ff +size 10405 diff --git a/blocks/task5/maps/level7/output_img/41.jpg b/blocks/task5/maps/level7/output_img/41.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80651e7eb54a237a856b52ada4e7be0ac7babb02 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/41.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f3a8acfeb2083ee3f6a3bc8cc62b6f8423d96470be772fde44ebdde9ee7ba6 +size 10381 diff --git a/blocks/task5/maps/level7/output_img/42.jpg b/blocks/task5/maps/level7/output_img/42.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf55ddd99512fa513fbf96e74024af2d5fbf13ae --- /dev/null +++ b/blocks/task5/maps/level7/output_img/42.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f989773d56adc4df98ed1479b81487bfa3de563f030de1d3e794a92f9f7bb357 +size 10554 diff --git a/blocks/task5/maps/level7/output_img/43.jpg b/blocks/task5/maps/level7/output_img/43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..218a5411fd07382e0007bcc56273f8538c164c1a --- /dev/null +++ b/blocks/task5/maps/level7/output_img/43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2b1b24fa933a81e22b382fbe82354d31cf89a54fded810a82190448b2644b3 +size 11033 diff --git a/blocks/task5/maps/level7/output_img/44.jpg b/blocks/task5/maps/level7/output_img/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c353e4f96f640c3c6db983945beb8d22fe532ac --- /dev/null +++ b/blocks/task5/maps/level7/output_img/44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800a162469082fc73041bbfdf646a411d1fe1e854238e5fc30c1bc4601ed962a +size 10516 diff --git a/blocks/task5/maps/level7/output_img/45.jpg b/blocks/task5/maps/level7/output_img/45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b0f6d329c556c37149d3e5fcbe922a6366f9255 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfe772b622692f98302ddeb642af984dbf1ca697221ca505b18140bdaf171bc +size 10451 diff --git a/blocks/task5/maps/level7/output_img/46.jpg b/blocks/task5/maps/level7/output_img/46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..996574db4bc51da1823a800c56fb5961f127f2ea --- /dev/null +++ b/blocks/task5/maps/level7/output_img/46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118cb419b70fe9f66fe044c726479df2d74790c775c8805f8888836042dbc130 +size 9874 diff --git a/blocks/task5/maps/level7/output_img/47.jpg b/blocks/task5/maps/level7/output_img/47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..091a196575080ee2d4b1851082897f5c0d04b3ea --- /dev/null +++ b/blocks/task5/maps/level7/output_img/47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18094a9741ba82da6c4d244867e1cdcac3d10289bdc9f45efd06d4416e6ac3c5 +size 10933 diff --git a/blocks/task5/maps/level7/output_img/48.jpg b/blocks/task5/maps/level7/output_img/48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02a286277e7a9591f96d4464542615af274b99c1 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1743a2ec5b91102f45756cde57ca8b424218a2e19217a1c3fcb8500d569e6401 +size 10682 diff --git a/blocks/task5/maps/level7/output_img/49.jpg b/blocks/task5/maps/level7/output_img/49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f2214e78df58902dcd72ca06a0491fd7c177035 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22beb6acbe6717560402ca7e4ecd38eadcbbd42861821590e55ab5b483988a2 +size 10787 diff --git a/blocks/task5/maps/level7/output_img/5.jpg b/blocks/task5/maps/level7/output_img/5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b2f97da8501618d6ce923626b850b6af717b15a --- /dev/null +++ b/blocks/task5/maps/level7/output_img/5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf9a8fa66a56ea365ba9f4decb06cf59b629742593c8163212f83b385f1bd57 +size 10017 diff --git a/blocks/task5/maps/level7/output_img/50.jpg b/blocks/task5/maps/level7/output_img/50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a37345474e2d02eae8ef9da71264d6603df9dd7 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87179d51027376d03d1ae7c790c2a54a57f9318d9abf3a7e32666f6b49be5d4 +size 11703 diff --git a/blocks/task5/maps/level7/output_img/51.jpg b/blocks/task5/maps/level7/output_img/51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5d593ce159e825fed14122758252bafaf454d05 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464dc380b001137066b42f3271954c7b8494761b359e978b1f61c34030b9a8b3 +size 10843 diff --git a/blocks/task5/maps/level7/output_img/52.jpg b/blocks/task5/maps/level7/output_img/52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c2a77f63210b998ea382fde3a83365a5e8ad0ea --- /dev/null +++ b/blocks/task5/maps/level7/output_img/52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b6ced631ccba90b172a6762678fe7c7c25675616c17d307393de7cc385f1d5 +size 10018 diff --git a/blocks/task5/maps/level7/output_img/53.jpg b/blocks/task5/maps/level7/output_img/53.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f73385de9dbcb4d33af6c59bb1d91589aaa860f8 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/53.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c34b0a9bd31877711089a0450eef8d6dd6cd14fde3ad4b77374efdf9dedf70c +size 12153 diff --git a/blocks/task5/maps/level7/output_img/54.jpg b/blocks/task5/maps/level7/output_img/54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9c7a6c1b24853ae0350af70095f0ea03a94e0c0 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0d83708c2f352bdf1ddcf14cf1d476b6958a7923a6e7c122e332770614a27f +size 10043 diff --git a/blocks/task5/maps/level7/output_img/55.jpg b/blocks/task5/maps/level7/output_img/55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..553a2541039580691be296e1a673ffeb205d0275 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adac879858633a51dd056720ab4e9af871530f8dc2f06e1b0e8b9e70cd5c2e91 +size 11514 diff --git a/blocks/task5/maps/level7/output_img/56.jpg b/blocks/task5/maps/level7/output_img/56.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a75118460c5fd0545232be022effe0d40e70efc1 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/56.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b206eb8d6ae782db75b84d257a4b2ec25a740661ca8ab60c6c11950f3b068b15 +size 10685 diff --git a/blocks/task5/maps/level7/output_img/57.jpg b/blocks/task5/maps/level7/output_img/57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a03209a2e7dda5d97f6b5680bccb4be4b1e8374 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1945401530fe29c8b9fc3b486c7a8f58925135a8fca06ac3cd49ce4b6e30b087 +size 10214 diff --git a/blocks/task5/maps/level7/output_img/58.jpg b/blocks/task5/maps/level7/output_img/58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffc9c4929368e3660482549bc5b34827312626f5 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c67ed6bc2f6098adf74c73383c65d61ce03bfeb4fa0ce86bcb1c5763b440fa78 +size 12123 diff --git a/blocks/task5/maps/level7/output_img/59.jpg b/blocks/task5/maps/level7/output_img/59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a67bae385d632654cb18253abad4751475582a2b --- /dev/null +++ b/blocks/task5/maps/level7/output_img/59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7424093490a2f60bfc54ffc55a96d8ddf81ad8d5664cb45fe6c0da321563f4d1 +size 10022 diff --git a/blocks/task5/maps/level7/output_img/6.jpg b/blocks/task5/maps/level7/output_img/6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea3393106ba7571246dfe2c7b4666cd638ec9ac6 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7834b1f962de8fe505fd63ece9ea5891e08be6807cc65497c6747ec642819c1f +size 10701 diff --git a/blocks/task5/maps/level7/output_img/60.jpg b/blocks/task5/maps/level7/output_img/60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9025c7b287ba4136328d61f6c496005719284686 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d7861884ebdd7ccbbc67bbd87d0caf9e4d67ff9180d48b4a61488610d925081 +size 11903 diff --git a/blocks/task5/maps/level7/output_img/61.jpg b/blocks/task5/maps/level7/output_img/61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3d4b80b47407f83f415acecdd347fbcf02b4863 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb19b1a94a34e1a0ff44a3d28da6befb763b86b1c9c756fde1e6e20c9e2f6e24 +size 9711 diff --git a/blocks/task5/maps/level7/output_img/62.jpg b/blocks/task5/maps/level7/output_img/62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10ea8608d41b71fba2c5e2b4a89b634d9683ce1e --- /dev/null +++ b/blocks/task5/maps/level7/output_img/62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5544e61f2ff41ac49585e355909d8820aa05589dc3a7d0ab92a94974e5a60a +size 9782 diff --git a/blocks/task5/maps/level7/output_img/63.jpg b/blocks/task5/maps/level7/output_img/63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56b36e264c40bfedbe653b382f10dbc944053371 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dfb24c6818ce5232aed47a471e72d306856b9fe8bf12ea35bfc1eb1f924b926 +size 10015 diff --git a/blocks/task5/maps/level7/output_img/64.jpg b/blocks/task5/maps/level7/output_img/64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fc9efca0a9b576ea48a774b57de9de1ca510527 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31a6517c0647a47ea4a2e33100110a74d9cb82b93184b8ab09dace3339fa72d +size 9596 diff --git a/blocks/task5/maps/level7/output_img/65.jpg b/blocks/task5/maps/level7/output_img/65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ef3fec5b6df37afbc308ed15d22c02e1ee4f740 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35bebb9014118d488bb1fc0222ade41df1c84f1ebfb02945d4ad24928a00df6a +size 11239 diff --git a/blocks/task5/maps/level7/output_img/66.jpg b/blocks/task5/maps/level7/output_img/66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a5196a54e9c31abfddd560d67756c9d76c358da --- /dev/null +++ b/blocks/task5/maps/level7/output_img/66.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b075e5ad9f3e9cf1dba4c48e9663e0d7310bf27ccfc5a87f16dee29fd2fb4f8 +size 10133 diff --git a/blocks/task5/maps/level7/output_img/67.jpg b/blocks/task5/maps/level7/output_img/67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d46c6fcaba55390124001e40d071e7c680771249 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c64bd81fff6754cd0ca3daeaa7697bd5fe70fd7b49c94ab145778a946163b9 +size 11557 diff --git a/blocks/task5/maps/level7/output_img/68.jpg b/blocks/task5/maps/level7/output_img/68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebef10bea61f10e129fb6a06202c4d77125656cb --- /dev/null +++ b/blocks/task5/maps/level7/output_img/68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdcfc0ac42dd1f55592ef04a910fcde88c76e03255c2a305d1f1533257b64bfd +size 10549 diff --git a/blocks/task5/maps/level7/output_img/69.jpg b/blocks/task5/maps/level7/output_img/69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ac32ebaf7f53c42f905b38d98a480f321570266 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57eaa9ea25a6fa1f8669e6c9b2222f976284c56407d49242a6199177246e51be +size 9506 diff --git a/blocks/task5/maps/level7/output_img/7.jpg b/blocks/task5/maps/level7/output_img/7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55962abd05feabe70e09d488c5dd94c2dbdeeddc --- /dev/null +++ b/blocks/task5/maps/level7/output_img/7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b05ad5022bef1f1cf3c599ce03ecbd007b99c18dff263d48b817a695d2a6bd23 +size 10282 diff --git a/blocks/task5/maps/level7/output_img/70.jpg b/blocks/task5/maps/level7/output_img/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4be091e35b961f799e06e182c5b49bf936a2b205 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e909bcab40a566cc6b6dd894c86fd52705ed21929b942c4a6f57c679c41880 +size 10994 diff --git a/blocks/task5/maps/level7/output_img/71.jpg b/blocks/task5/maps/level7/output_img/71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bd674016c3b30399c4c068b08f26991eca0b322 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d4dbf3fe01b568d4a731f445139b96f09bb5a855137f1a681f6be86b84930b +size 10827 diff --git a/blocks/task5/maps/level7/output_img/72.jpg b/blocks/task5/maps/level7/output_img/72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d42178eab8438a54d3bf8e283a9b4c3c14b181c --- /dev/null +++ b/blocks/task5/maps/level7/output_img/72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba78849ab5fa397bcd6d1c1575b2039f71d0e9731a0b23565c481522a46b1f4 +size 10227 diff --git a/blocks/task5/maps/level7/output_img/73.jpg b/blocks/task5/maps/level7/output_img/73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2e677652a8157ea5397e3b6226f195ca8b283ca --- /dev/null +++ b/blocks/task5/maps/level7/output_img/73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edfe67130828d9a1f975c4b8948be1106db5c9d0231949603f1464e260e986e3 +size 11113 diff --git a/blocks/task5/maps/level7/output_img/74.jpg b/blocks/task5/maps/level7/output_img/74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41c2851d51c94e75750810595899c53f33d98a6c --- /dev/null +++ b/blocks/task5/maps/level7/output_img/74.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ab301f11b6cf44585e5bd8a431b85666af24075245b9eaa1fe971ac0d9108a +size 10400 diff --git a/blocks/task5/maps/level7/output_img/75.jpg b/blocks/task5/maps/level7/output_img/75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a3f8327bd55647d9d57d426b2e20f6ae387b962 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeefb2af7fe95ccb24afd3c17821a16eae438f2c8834b398993365dcba58c4e3 +size 10358 diff --git a/blocks/task5/maps/level7/output_img/76.jpg b/blocks/task5/maps/level7/output_img/76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b7bdea48364a1a54594fff12347dedeb3c02b04 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80bfaa229af603aaca2fb9679fea1906dfaa3b0ac126aa8d3235fa89938926b +size 11511 diff --git a/blocks/task5/maps/level7/output_img/77.jpg b/blocks/task5/maps/level7/output_img/77.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d663d6714f13da2cf46bb27c94a6999ae69c55c --- /dev/null +++ b/blocks/task5/maps/level7/output_img/77.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b3be5c9976d0cc161790dabf62fe3176ffcbf8f5a74d8e15602a5f61a88df37 +size 11163 diff --git a/blocks/task5/maps/level7/output_img/78.jpg b/blocks/task5/maps/level7/output_img/78.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7683e8e52b3802368e07d7db0c614d1fff20be06 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/78.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e299d60b5fa8949f39dc37f86bd7bdd595d2b529a92c0918ec81e2d262862c7 +size 11135 diff --git a/blocks/task5/maps/level7/output_img/79.jpg b/blocks/task5/maps/level7/output_img/79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56b36e264c40bfedbe653b382f10dbc944053371 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dfb24c6818ce5232aed47a471e72d306856b9fe8bf12ea35bfc1eb1f924b926 +size 10015 diff --git a/blocks/task5/maps/level7/output_img/8.jpg b/blocks/task5/maps/level7/output_img/8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f08bfeb0902eb9a27fe7fd7cf3ca39f7dbb7236 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da444241d32c2f394f8fc06b2d225dc3e0fd2a255638c15cb5a4621b2816b64e +size 10438 diff --git a/blocks/task5/maps/level7/output_img/80.jpg b/blocks/task5/maps/level7/output_img/80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6cdae237217474b63737e59d3d343d65e209858 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:943a156e612a438bf3132a17cd42c2715f647e92e7731f05221731aa67fad107 +size 9548 diff --git a/blocks/task5/maps/level7/output_img/81.jpg b/blocks/task5/maps/level7/output_img/81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5f3302e11662ca4d9bf4b177d75695b3a8a7ae0 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d0af89867944e21347db652beddcdca584ae3b849e8b154cf19363cbeaeb82c +size 10880 diff --git a/blocks/task5/maps/level7/output_img/82.jpg b/blocks/task5/maps/level7/output_img/82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de5c96a27f819ed8986d8f8e7a52b147a9c4434b --- /dev/null +++ b/blocks/task5/maps/level7/output_img/82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906fdbf88a27082c73cd6c9df0d57ce388855e2279501b95406182f30d797c0e +size 10116 diff --git a/blocks/task5/maps/level7/output_img/83.jpg b/blocks/task5/maps/level7/output_img/83.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c91310262ac75bec39bd9fe1ad7a94899db5a1c1 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/83.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2040b38ed57d211b7d61737c1716290dddc1a4848f5ba1d930b8c3f5e3707a96 +size 10840 diff --git a/blocks/task5/maps/level7/output_img/84.jpg b/blocks/task5/maps/level7/output_img/84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08d2ad0f56c538d9fa0d7bab2b7e8388b02bfce0 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304f0304dc13cd9377a3b7159afe233cb138195e58b0121a32af728d88db9fa0 +size 10973 diff --git a/blocks/task5/maps/level7/output_img/85.jpg b/blocks/task5/maps/level7/output_img/85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..755eb0dc6a9973a7c179be8a02c0805233346c7e --- /dev/null +++ b/blocks/task5/maps/level7/output_img/85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b50e53978b4c2ba46e68cb4cea33ba443724897f07a9ea3bcd0407ccf888508 +size 11188 diff --git a/blocks/task5/maps/level7/output_img/86.jpg b/blocks/task5/maps/level7/output_img/86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bac88f527f8e66f3f29e811ef9af9dbae2ef642 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24bf357dc0c9d3f0394d5ccfa4bebe63a852c98b7469ad92760f132c07ce2a81 +size 10380 diff --git a/blocks/task5/maps/level7/output_img/87.jpg b/blocks/task5/maps/level7/output_img/87.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a335fa2c2c6e7a81d02a77a97c1421c37e2c4799 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/87.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44bfc458bf72efcb802ce267a96289fb4732f1d5e7ae4119107efc4197d4423 +size 11357 diff --git a/blocks/task5/maps/level7/output_img/88.jpg b/blocks/task5/maps/level7/output_img/88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f13e68410fc60fc8bb3fa404b8ab4b9f994345e --- /dev/null +++ b/blocks/task5/maps/level7/output_img/88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a1a50e1ec0945372182ad0bd6b59516cea4ca62e4b85294dc2469b64a2ab0d +size 9889 diff --git a/blocks/task5/maps/level7/output_img/89.jpg b/blocks/task5/maps/level7/output_img/89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a90775a99dd145363a732bfe35f328f18287b899 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/89.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:759573bc3dbf74ab90deb501e5448053ed818546cd887981eaa7258d5f63e9d4 +size 11196 diff --git a/blocks/task5/maps/level7/output_img/9.jpg b/blocks/task5/maps/level7/output_img/9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ae7ae658f4a87e865e69912d97262c50ac10a42 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96bb8439923ea6ca71d921211bc992852a95387c7ca78943ca5f5504d7aaf2a3 +size 9412 diff --git a/blocks/task5/maps/level7/output_img/90.jpg b/blocks/task5/maps/level7/output_img/90.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68c6a6f6f7c0964ab9e20547c1a66477f4d81e8b --- /dev/null +++ b/blocks/task5/maps/level7/output_img/90.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a926725c556ee9ef11bf834c5212a9270e2992d59cc612ee24af90d616ac1e90 +size 9966 diff --git a/blocks/task5/maps/level7/output_img/91.jpg b/blocks/task5/maps/level7/output_img/91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5478c0d2e6aa07e969b7d6c96fc284751a2fc16 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47c099e6b53b42f59f374f912705e3b2ceeb5c53529fb27f34122d4753b8d49a +size 10116 diff --git a/blocks/task5/maps/level7/output_img/92.jpg b/blocks/task5/maps/level7/output_img/92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b23f972d5fa11c228a69f931627f05bd040ce7d1 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30360a4bdcbc507fa3741310fadbd9ce472a0e0dc01707a29fc4f2b0be26f424 +size 12982 diff --git a/blocks/task5/maps/level7/output_img/93.jpg b/blocks/task5/maps/level7/output_img/93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f1b0b9404728b33d7bf0bb6fed291cd95f4dd2b --- /dev/null +++ b/blocks/task5/maps/level7/output_img/93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bca8baf60828cde5b5cf0869553b64994889ba60b95d66165406ea1cd9aae2 +size 9447 diff --git a/blocks/task5/maps/level7/output_img/94.jpg b/blocks/task5/maps/level7/output_img/94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e71b68450ad0f160f47afc351b533da300fe3e9c --- /dev/null +++ b/blocks/task5/maps/level7/output_img/94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0bb73271e8961c01473ddfbcb44b5aa3eb15f73e56dd616f478d12ea7e756a7 +size 10658 diff --git a/blocks/task5/maps/level7/output_img/95.jpg b/blocks/task5/maps/level7/output_img/95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ce38ebd6ee5f332b39dbf6cced6788f7e3bbe4c --- /dev/null +++ b/blocks/task5/maps/level7/output_img/95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c9ac04e388db22adfb2bf64aee7f28db0a96ddb8cfe0bbebfa54918ea91883b +size 10205 diff --git a/blocks/task5/maps/level7/output_img/96.jpg b/blocks/task5/maps/level7/output_img/96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..474e56a28bc4d3caee3d6969349f720f8a0ef6cf --- /dev/null +++ b/blocks/task5/maps/level7/output_img/96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e97935dac6d219ca865d3b41b2678ab0b40bb99eb4f60ce531451d7d365d18 +size 10155 diff --git a/blocks/task5/maps/level7/output_img/97.jpg b/blocks/task5/maps/level7/output_img/97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..413c06ad2fa560fc124eae692939b33e885100f7 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d1fc856521c09d8ad74dd83224ae3ef48dc86225b867a19f3604fce12adeaf +size 10187 diff --git a/blocks/task5/maps/level7/output_img/98.jpg b/blocks/task5/maps/level7/output_img/98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e12a78924feb37b6c600b8d4c16035864b8c251 --- /dev/null +++ b/blocks/task5/maps/level7/output_img/98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10151b968b858e908db6adc53ecf78b0999f547c8bf5b98c733911388487ec72 +size 10195 diff --git a/blocks/task5/maps/level7/output_img/99.jpg b/blocks/task5/maps/level7/output_img/99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bacb3b5cf57d1b21d007215a7d5c8e188e32fca --- /dev/null +++ b/blocks/task5/maps/level7/output_img/99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a6d1ed98895017943196d8b5cbac58ae2740a3cc9f90a8774d7845092434a9d +size 9912 diff --git a/blocks/task5/maps/level7/output_table/0.txt b/blocks/task5/maps/level7/output_table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dfd17f1a68ddd00ecc4551a59dddf512ce51313 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/0.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | green | +Level 2 | purple | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/1.txt b/blocks/task5/maps/level7/output_table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffd54c9a9a3eb54320507d32531f2ac353383e4a --- /dev/null +++ b/blocks/task5/maps/level7/output_table/1.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | orange | +Level 3 | yellow | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/10.txt b/blocks/task5/maps/level7/output_table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..27606d83091b145d8bc4ad4fc60d78ed7db8141e --- /dev/null +++ b/blocks/task5/maps/level7/output_table/10.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | red | +Level 2 | orange | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/11.txt b/blocks/task5/maps/level7/output_table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..94f501e4ae972a06d90b810f05ae6954c43a1a50 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/11.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | yellow | +Level 3 | green | +Level 2 | orange | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/12.txt b/blocks/task5/maps/level7/output_table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..8029610458e1d67e39da532d62010e9b59abc1de --- /dev/null +++ b/blocks/task5/maps/level7/output_table/12.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | purple | +Level 3 | red | +Level 2 | yellow | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/13.txt b/blocks/task5/maps/level7/output_table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..513049d7e6ed4693f77e4d64705936d50fd34123 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/13.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | blue | +Level 3 | yellow | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level7/output_table/14.txt b/blocks/task5/maps/level7/output_table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f4768a5af79c69ff74496957bcb0b2187b7310d --- /dev/null +++ b/blocks/task5/maps/level7/output_table/14.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | blue | +Level 2 | | red | +Level 1 | yellow | green | diff --git a/blocks/task5/maps/level7/output_table/15.txt b/blocks/task5/maps/level7/output_table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c26b9e1be22e20515e879e12b4fa8765a292d54 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/15.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | green | +Level 2 | blue | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/16.txt b/blocks/task5/maps/level7/output_table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd1514fc127d1fc4e62dfde73bd02bf3de1f3cd0 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/16.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | orange | purple | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level7/output_table/17.txt b/blocks/task5/maps/level7/output_table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..96941aa286b6ed487fc1878aabb18da1c228452d --- /dev/null +++ b/blocks/task5/maps/level7/output_table/17.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | purple | +Level 2 | | red | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level7/output_table/18.txt b/blocks/task5/maps/level7/output_table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e203357242e1362d463b7b8955159702b0c2285 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/18.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | green | +Level 2 | yellow | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/19.txt b/blocks/task5/maps/level7/output_table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fbd4efd47a999cb1374b1843fa06cd8503834d4 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/19.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | purple | red | +Level 1 | green | blue | diff --git a/blocks/task5/maps/level7/output_table/2.txt b/blocks/task5/maps/level7/output_table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9aa0f43fd3f1aaf6c9590ffb36774d9bdf8cf1a1 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/2.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | purple | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task5/maps/level7/output_table/20.txt b/blocks/task5/maps/level7/output_table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..aeae391028294e6ef67c8c7fad85e9ea262bd1bb --- /dev/null +++ b/blocks/task5/maps/level7/output_table/20.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | green | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level7/output_table/21.txt b/blocks/task5/maps/level7/output_table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..22a8603bbe4f3dcf28ae2c0330aec6003c32d6da --- /dev/null +++ b/blocks/task5/maps/level7/output_table/21.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | orange | red | +Level 1 | green | yellow | diff --git a/blocks/task5/maps/level7/output_table/22.txt b/blocks/task5/maps/level7/output_table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f71fdf16790b7bb6c8f51f2ca34dc8cca56ddaf --- /dev/null +++ b/blocks/task5/maps/level7/output_table/22.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | yellow | +Level 2 | | blue | +Level 1 | orange | purple | diff --git a/blocks/task5/maps/level7/output_table/23.txt b/blocks/task5/maps/level7/output_table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a258fbacd60ded5806a37d8a2a103ff2ddde633 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/23.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level7/output_table/24.txt b/blocks/task5/maps/level7/output_table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..585c81058f93dedc7b4f4b46ec4fee57da688cc6 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/24.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | purple | +Level 3 | orange | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level7/output_table/25.txt b/blocks/task5/maps/level7/output_table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6a0d8e8b997c6c006c7a315c147692907131b5c --- /dev/null +++ b/blocks/task5/maps/level7/output_table/25.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | yellow | +Level 3 | orange | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/26.txt b/blocks/task5/maps/level7/output_table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..77a47a292a7eaffeb5a17ec45463aed214caf8bd --- /dev/null +++ b/blocks/task5/maps/level7/output_table/26.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | yellow | +Level 3 | orange | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/27.txt b/blocks/task5/maps/level7/output_table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fbdd769c09d1d1152f561639a436d73d7c7447d --- /dev/null +++ b/blocks/task5/maps/level7/output_table/27.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | purple | +Level 2 | | red | +Level 1 | green | orange | diff --git a/blocks/task5/maps/level7/output_table/28.txt b/blocks/task5/maps/level7/output_table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a5edca27865d5a9f6d2afdd477d44d07bd8c895 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/28.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | green | +Level 3 | purple | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/29.txt b/blocks/task5/maps/level7/output_table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c67ede514bdc2d656e56e4efe71b8867a2e230e --- /dev/null +++ b/blocks/task5/maps/level7/output_table/29.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | yellow | +Level 3 | green | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/3.txt b/blocks/task5/maps/level7/output_table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b64a41ba75e4b9a8a19abbf074a7fc1884b814b1 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/3.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | orange | green | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level7/output_table/30.txt b/blocks/task5/maps/level7/output_table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..cac6d96c7c873a6df4ad393256346547f9e06c86 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/30.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | blue | orange | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level7/output_table/31.txt b/blocks/task5/maps/level7/output_table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4f54e8e190cb0d870487e68355f53791e92e4c3 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/31.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | orange | +Level 3 | blue | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/32.txt b/blocks/task5/maps/level7/output_table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ad6d77b820240100f7f75f6b91d27ebcdf6688b --- /dev/null +++ b/blocks/task5/maps/level7/output_table/32.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | orange | +Level 3 | yellow | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/33.txt b/blocks/task5/maps/level7/output_table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ed4a26254a1f36ad09422bf7b9bbe830775e542 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/33.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | purple | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/34.txt b/blocks/task5/maps/level7/output_table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fba7bc1801646aad553a5d183e9fd8193e95426 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/34.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | purple | blue | +Level 1 | red | yellow | diff --git a/blocks/task5/maps/level7/output_table/35.txt b/blocks/task5/maps/level7/output_table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..641a65c851e6c0be09629d739c231e26dfca21ed --- /dev/null +++ b/blocks/task5/maps/level7/output_table/35.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level7/output_table/36.txt b/blocks/task5/maps/level7/output_table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed80aa0f8ae3b9fded8236133ca924596b2cc088 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/36.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | orange | +Level 2 | | green | +Level 1 | yellow | blue | diff --git a/blocks/task5/maps/level7/output_table/37.txt b/blocks/task5/maps/level7/output_table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..56ab2aac72a7ca2e947f7d42a3a6edfad2859cf6 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/37.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | purple | +Level 2 | orange | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/38.txt b/blocks/task5/maps/level7/output_table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..6aba6762c9327880d215984274751d3fc69b081b --- /dev/null +++ b/blocks/task5/maps/level7/output_table/38.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | purple | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level7/output_table/39.txt b/blocks/task5/maps/level7/output_table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..563bce0f6d28ec9cbccb50bd448184c99ca714db --- /dev/null +++ b/blocks/task5/maps/level7/output_table/39.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | blue | +Level 2 | green | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/4.txt b/blocks/task5/maps/level7/output_table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..922fc30d94dafd26a312d9038106ca095a788da1 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/4.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | yellow | +Level 3 | orange | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/40.txt b/blocks/task5/maps/level7/output_table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..33a99b876cfe4ce0c5fa556e3d98765606823d81 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/40.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | blue | orange | +Level 1 | green | yellow | diff --git a/blocks/task5/maps/level7/output_table/41.txt b/blocks/task5/maps/level7/output_table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad50e99173c86ba50c54916a75bb843c638e068e --- /dev/null +++ b/blocks/task5/maps/level7/output_table/41.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | red | +Level 2 | orange | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/42.txt b/blocks/task5/maps/level7/output_table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ffaa7179864951895daf5ddf12c847dc8751ae9 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/42.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | yellow | orange | +Level 1 | green | purple | diff --git a/blocks/task5/maps/level7/output_table/43.txt b/blocks/task5/maps/level7/output_table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6a87e5cc7a3b359c83099f3af94fb9371e2d7a1 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/43.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | blue | purple | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level7/output_table/44.txt b/blocks/task5/maps/level7/output_table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..90997358b5df9db351d7d5936422ebf4c7967e3e --- /dev/null +++ b/blocks/task5/maps/level7/output_table/44.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | yellow | +Level 3 | green | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/45.txt b/blocks/task5/maps/level7/output_table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..43c1ec1e704a85f0f792fded928a83dd8953be5b --- /dev/null +++ b/blocks/task5/maps/level7/output_table/45.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | green | +Level 3 | yellow | +Level 2 | orange | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/46.txt b/blocks/task5/maps/level7/output_table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fd4c8e9a2fb206751d418394cd16f7b2f062639 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/46.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | red | +Level 3 | orange | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/47.txt b/blocks/task5/maps/level7/output_table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b023c3321bd1dd90933db3768780da8c0c73214 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/47.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | purple | +Level 2 | green | orange | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level7/output_table/48.txt b/blocks/task5/maps/level7/output_table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3399af5ca4ec39db978c293305a4cbc255c8cf7 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/48.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | orange | yellow | +Level 1 | red | purple | diff --git a/blocks/task5/maps/level7/output_table/49.txt b/blocks/task5/maps/level7/output_table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ef15ea7b7b4a33a845f20a4ab728dd1cf93d3cc --- /dev/null +++ b/blocks/task5/maps/level7/output_table/49.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | purple | green | +Level 1 | blue | yellow | diff --git a/blocks/task5/maps/level7/output_table/5.txt b/blocks/task5/maps/level7/output_table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..76b327125f4ff6591d3a7eebde102072f1180e82 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/5.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | orange | +Level 2 | yellow | +Level 1 | green | diff --git a/blocks/task5/maps/level7/output_table/50.txt b/blocks/task5/maps/level7/output_table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..74ffe7171e5e2a62a53e9fd396a6f40feb8d12fd --- /dev/null +++ b/blocks/task5/maps/level7/output_table/50.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | blue | +Level 2 | | purple | +Level 1 | orange | yellow | diff --git a/blocks/task5/maps/level7/output_table/51.txt b/blocks/task5/maps/level7/output_table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c0a0597f0ab4755d1a57f719b7d5657de1dcfd0 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/51.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | yellow | +Level 2 | green | blue | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level7/output_table/52.txt b/blocks/task5/maps/level7/output_table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..753a72830ead4dc38a88b6c224c632e022746408 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/52.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | red | +Level 3 | yellow | +Level 2 | green | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/53.txt b/blocks/task5/maps/level7/output_table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..641a65c851e6c0be09629d739c231e26dfca21ed --- /dev/null +++ b/blocks/task5/maps/level7/output_table/53.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | red | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | blue | purple | diff --git a/blocks/task5/maps/level7/output_table/54.txt b/blocks/task5/maps/level7/output_table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..699d2aea623bc381e94398094580af77bf297fe4 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/54.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | green | +Level 3 | red | +Level 2 | yellow | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/55.txt b/blocks/task5/maps/level7/output_table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fd19151fcd8e01f7f66d716bf0fa5caf8442624 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/55.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | purple | +Level 3 | blue | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/56.txt b/blocks/task5/maps/level7/output_table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..8710b4529e5f1dcf2420684bc9c0e5e9cab2ef18 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/56.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | orange | +Level 2 | purple | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/57.txt b/blocks/task5/maps/level7/output_table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..f80934ed4ce8c127362991929415434e4f90be7e --- /dev/null +++ b/blocks/task5/maps/level7/output_table/57.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | blue | +Level 2 | purple | +Level 1 | green | diff --git a/blocks/task5/maps/level7/output_table/58.txt b/blocks/task5/maps/level7/output_table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..a48ce7fefd9378e2f37334905ed5461ad9c542bc --- /dev/null +++ b/blocks/task5/maps/level7/output_table/58.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | green | +Level 2 | | red | +Level 1 | orange | blue | diff --git a/blocks/task5/maps/level7/output_table/59.txt b/blocks/task5/maps/level7/output_table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..52851def989479bec845e3f86fcd06a0ca5e5bc6 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/59.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | green | +Level 3 | blue | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/6.txt b/blocks/task5/maps/level7/output_table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1140f6e080060d09fac9f84b572bbf6180a910df --- /dev/null +++ b/blocks/task5/maps/level7/output_table/6.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | orange | +Level 3 | blue | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/60.txt b/blocks/task5/maps/level7/output_table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..6106d0eb7141730b8ea2c0f0f46a461043f832a4 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/60.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | purple | +Level 3 | | yellow | +Level 2 | | green | +Level 1 | orange | blue | diff --git a/blocks/task5/maps/level7/output_table/61.txt b/blocks/task5/maps/level7/output_table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b57d3e1853e46707c93f2c4a1b88f12c9e98562 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/61.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | orange | +Level 3 | red | +Level 2 | yellow | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/62.txt b/blocks/task5/maps/level7/output_table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fb5b3b68206cbc5c3daaa205529c42ce91fe688 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/62.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | purple | +Level 3 | yellow | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/63.txt b/blocks/task5/maps/level7/output_table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..711a1ac77d21112e71c21702e92e50defb8372f6 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/63.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | blue | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/64.txt b/blocks/task5/maps/level7/output_table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..469509baa380a23f9f3382e8c35b32cb43dc4def --- /dev/null +++ b/blocks/task5/maps/level7/output_table/64.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | green | +Level 3 | purple | +Level 2 | yellow | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/65.txt b/blocks/task5/maps/level7/output_table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..6516196eadf6a32887228e44dc70676c32238aae --- /dev/null +++ b/blocks/task5/maps/level7/output_table/65.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | red | +Level 3 | green | +Level 2 | yellow | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/66.txt b/blocks/task5/maps/level7/output_table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d23d95c5bc0d202379d5df5f9af737e3773ea50 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/66.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | purple | +Level 3 | red | +Level 2 | yellow | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/67.txt b/blocks/task5/maps/level7/output_table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8f2368047984cc7e3f84be702f368b698db0774 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/67.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | purple | +Level 2 | | orange | +Level 1 | yellow | green | diff --git a/blocks/task5/maps/level7/output_table/68.txt b/blocks/task5/maps/level7/output_table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ca5db34908dc323a8de46a491e71a4d2012af4 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/68.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | yellow | +Level 3 | red | +Level 2 | orange | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/69.txt b/blocks/task5/maps/level7/output_table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..81af0516ec5caf8ac6625b4042ba3adc618405b7 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/69.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | yellow | +Level 3 | purple | +Level 2 | blue | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/7.txt b/blocks/task5/maps/level7/output_table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a9b7311863549038df53f2fcf3dbcb23e695ab6 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/7.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | purple | yellow | +Level 1 | red | orange | diff --git a/blocks/task5/maps/level7/output_table/70.txt b/blocks/task5/maps/level7/output_table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ec024c981d41107f969e80ae23a6c62355348a8 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/70.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | blue | +Level 3 | | red | +Level 2 | | green | +Level 1 | yellow | orange | diff --git a/blocks/task5/maps/level7/output_table/71.txt b/blocks/task5/maps/level7/output_table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..b98e28f96f42e2d2c2a02f827ea6b1a8d00abc48 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/71.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | purple | +Level 2 | green | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/72.txt b/blocks/task5/maps/level7/output_table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..4db94bd0208c7021c1e456b8c63fad8c21cea9e6 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/72.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | green | +Level 2 | orange | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/73.txt b/blocks/task5/maps/level7/output_table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..81d9568165cc3081a80ef60aa3fdc86d36e7a6de --- /dev/null +++ b/blocks/task5/maps/level7/output_table/73.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | blue | +Level 2 | orange | yellow | +Level 1 | green | purple | diff --git a/blocks/task5/maps/level7/output_table/74.txt b/blocks/task5/maps/level7/output_table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..13bd5f4bdb0df89dee08c7f36872d4d53f70c879 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/74.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | green | +Level 3 | orange | +Level 2 | red | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/75.txt b/blocks/task5/maps/level7/output_table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3a2f262033c5b20d35578fffbd9170c181af6ce --- /dev/null +++ b/blocks/task5/maps/level7/output_table/75.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | green | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/76.txt b/blocks/task5/maps/level7/output_table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..7da107df3e1ef27b70e539fbe1027842f536a0e5 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/76.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | orange | +Level 3 | | red | +Level 2 | | green | +Level 1 | purple | yellow | diff --git a/blocks/task5/maps/level7/output_table/77.txt b/blocks/task5/maps/level7/output_table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a78b22eb7385575896364cc2eaa75a7bda529ba --- /dev/null +++ b/blocks/task5/maps/level7/output_table/77.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | green | +Level 3 | purple | +Level 2 | blue | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/78.txt b/blocks/task5/maps/level7/output_table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..fde58fdaa00124edf38fc3d1fb6188134fca2cd2 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/78.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | green | +Level 3 | | purple | +Level 2 | | yellow | +Level 1 | blue | orange | diff --git a/blocks/task5/maps/level7/output_table/79.txt b/blocks/task5/maps/level7/output_table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..711a1ac77d21112e71c21702e92e50defb8372f6 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/79.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | blue | +Level 2 | purple | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/8.txt b/blocks/task5/maps/level7/output_table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..6adc171de1b2a46e1b6230f4a451a254ce8794dd --- /dev/null +++ b/blocks/task5/maps/level7/output_table/8.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | green | +Level 3 | yellow | +Level 2 | red | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/80.txt b/blocks/task5/maps/level7/output_table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ca5f17aff019f3c02d56c7921f553acff4cc5e6 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/80.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | purple | +Level 3 | green | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/81.txt b/blocks/task5/maps/level7/output_table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..9115d7aca043140a7e6d39c79a5111ba1cd02c8b --- /dev/null +++ b/blocks/task5/maps/level7/output_table/81.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | red | +Level 3 | purple | +Level 2 | orange | +Level 1 | green | diff --git a/blocks/task5/maps/level7/output_table/82.txt b/blocks/task5/maps/level7/output_table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..b78bef190f1e9f4553e3ba7f1bc1ac704acd0185 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/82.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | blue | +Level 3 | green | +Level 2 | red | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/83.txt b/blocks/task5/maps/level7/output_table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..b17d97e4e75780df1cdaafddf60400bcd8e1c9a0 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/83.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | green | +Level 4 | purple | +Level 3 | orange | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/84.txt b/blocks/task5/maps/level7/output_table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..9da1d1e808297c9920f56a9839b48648bca65419 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/84.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | red | +Level 2 | orange | blue | +Level 1 | green | purple | diff --git a/blocks/task5/maps/level7/output_table/85.txt b/blocks/task5/maps/level7/output_table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..236affe21b79e274586a9f01ed3c358aac18f59d --- /dev/null +++ b/blocks/task5/maps/level7/output_table/85.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | orange | +Level 2 | blue | yellow | +Level 1 | red | purple | diff --git a/blocks/task5/maps/level7/output_table/86.txt b/blocks/task5/maps/level7/output_table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e97a96927238d0ae262b3d0e296f95b95bd00dd --- /dev/null +++ b/blocks/task5/maps/level7/output_table/86.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | yellow | +Level 2 | orange | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/87.txt b/blocks/task5/maps/level7/output_table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a3ac641024588feffb313b97b77a68e30f52adb --- /dev/null +++ b/blocks/task5/maps/level7/output_table/87.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | yellow | +Level 3 | blue | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/88.txt b/blocks/task5/maps/level7/output_table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..26a86ea043b8db8141adc0c77b1d995df1281782 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/88.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | purple | +Level 3 | red | +Level 2 | green | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/89.txt b/blocks/task5/maps/level7/output_table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4087d02594c94dabc5736779831c86fb9de3c78 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/89.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | yellow | +Level 3 | blue | +Level 2 | green | +Level 1 | red | diff --git a/blocks/task5/maps/level7/output_table/9.txt b/blocks/task5/maps/level7/output_table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b86fe5c88c74bb7ca36b2c46781dd6be6a6cb8a --- /dev/null +++ b/blocks/task5/maps/level7/output_table/9.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | red | +Level 3 | purple | +Level 2 | green | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_table/90.txt b/blocks/task5/maps/level7/output_table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a533036d3604bb0d84af5c3d4e8511266fbcb72 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/90.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | purple | +Level 3 | blue | +Level 2 | red | +Level 1 | green | diff --git a/blocks/task5/maps/level7/output_table/91.txt b/blocks/task5/maps/level7/output_table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd10766642f68604ccbe666979c17b37a3988b52 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/91.txt @@ -0,0 +1,4 @@ + | Stack 1 | Stack 2 | +Level 3 | | green | +Level 2 | yellow | red | +Level 1 | orange | purple | diff --git a/blocks/task5/maps/level7/output_table/92.txt b/blocks/task5/maps/level7/output_table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..27e8178bf40d506e982a4611ce2069ff8ed857c8 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/92.txt @@ -0,0 +1,5 @@ + | Stack 1 | Stack 2 | +Level 4 | | yellow | +Level 3 | | red | +Level 2 | | green | +Level 1 | orange | purple | diff --git a/blocks/task5/maps/level7/output_table/93.txt b/blocks/task5/maps/level7/output_table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..09ae02315ca7e95f6a877f890194a8fcd4aeca4f --- /dev/null +++ b/blocks/task5/maps/level7/output_table/93.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | orange | +Level 4 | red | +Level 3 | purple | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/94.txt b/blocks/task5/maps/level7/output_table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..6636e31cfcd36f748662b0fa0f033947129df27e --- /dev/null +++ b/blocks/task5/maps/level7/output_table/94.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | yellow | +Level 3 | purple | +Level 2 | green | +Level 1 | blue | diff --git a/blocks/task5/maps/level7/output_table/95.txt b/blocks/task5/maps/level7/output_table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..213998c2b154984a4c2af6b321a3b4ac2ee1f906 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/95.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | orange | +Level 3 | red | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/96.txt b/blocks/task5/maps/level7/output_table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..9df2b4adb52025262ee68d52df472ec4e082be83 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/96.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | red | +Level 4 | blue | +Level 3 | purple | +Level 2 | green | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/97.txt b/blocks/task5/maps/level7/output_table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5c079956a26183c27186e87a629ecafb36f61d5 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/97.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | yellow | +Level 4 | orange | +Level 3 | red | +Level 2 | blue | +Level 1 | purple | diff --git a/blocks/task5/maps/level7/output_table/98.txt b/blocks/task5/maps/level7/output_table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab3b40b127f44fdf6e0e2f7df28c35f6cb2a7cd7 --- /dev/null +++ b/blocks/task5/maps/level7/output_table/98.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | purple | +Level 4 | green | +Level 3 | orange | +Level 2 | blue | +Level 1 | yellow | diff --git a/blocks/task5/maps/level7/output_table/99.txt b/blocks/task5/maps/level7/output_table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..27214ac6b77b3ddc86d0b66ead943852fdb8df1c --- /dev/null +++ b/blocks/task5/maps/level7/output_table/99.txt @@ -0,0 +1,6 @@ + | Stack 1 | +Level 5 | blue | +Level 4 | green | +Level 3 | purple | +Level 2 | red | +Level 1 | orange | diff --git a/blocks/task5/maps/level7/output_text/0.txt b/blocks/task5/maps/level7/output_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..409573f19c962d5c212870e6e8cbac4b6fa87e7e --- /dev/null +++ b/blocks/task5/maps/level7/output_text/0.txt @@ -0,0 +1 @@ +- Stack with orange block, purple block, green block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/1.txt b/blocks/task5/maps/level7/output_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b12afc4b5ea6856bc0a4644a2c6f203332dbf042 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/1.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/10.txt b/blocks/task5/maps/level7/output_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cf4897d31726db2f0b51d71760a878c506b2826 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/10.txt @@ -0,0 +1 @@ +- Stack with yellow block, orange block, red block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/11.txt b/blocks/task5/maps/level7/output_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab57c021e773ac58925d4fa29f6408e61284eee6 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/11.txt @@ -0,0 +1 @@ +- Stack with blue block, orange block, green block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/12.txt b/blocks/task5/maps/level7/output_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..06bf83bd065b20bad78b86cd12f2a0f67dc67725 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/12.txt @@ -0,0 +1 @@ +- Stack with orange block, yellow block, red block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/13.txt b/blocks/task5/maps/level7/output_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd19a43c07a47661935619eca1559dc2ba6d015d --- /dev/null +++ b/blocks/task5/maps/level7/output_text/13.txt @@ -0,0 +1 @@ +- Stack with green block, red block, yellow block, blue block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/14.txt b/blocks/task5/maps/level7/output_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..552a9eb3697aac9c9831e44497a5fa3b66f99ddb --- /dev/null +++ b/blocks/task5/maps/level7/output_text/14.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, red block, blue block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/15.txt b/blocks/task5/maps/level7/output_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d8239e6f28b97009b851ac3557ae178fa0f055f --- /dev/null +++ b/blocks/task5/maps/level7/output_text/15.txt @@ -0,0 +1 @@ +- Stack with orange block, blue block, green block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/16.txt b/blocks/task5/maps/level7/output_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbb2e66bd2f845dac4d59e28782c277d5bcff2cb --- /dev/null +++ b/blocks/task5/maps/level7/output_text/16.txt @@ -0,0 +1,2 @@ +- Stack with red block, orange block, from bottom to top +- Stack with yellow block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/17.txt b/blocks/task5/maps/level7/output_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fb5c4deaa98cebb0d3241f82c7b64bddbe8bada --- /dev/null +++ b/blocks/task5/maps/level7/output_text/17.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with yellow block, red block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/18.txt b/blocks/task5/maps/level7/output_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..8973b289394f0e32c2b209040e5a03983e515f55 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/18.txt @@ -0,0 +1 @@ +- Stack with orange block, yellow block, green block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/19.txt b/blocks/task5/maps/level7/output_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5450261c81343e41a4df42be47dccd75c938e85 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/19.txt @@ -0,0 +1,2 @@ +- Stack with green block, purple block, from bottom to top +- Stack with blue block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/2.txt b/blocks/task5/maps/level7/output_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ab72487603bec9e11a6a4c19b6e72cc69ae648a --- /dev/null +++ b/blocks/task5/maps/level7/output_text/2.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, purple block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/20.txt b/blocks/task5/maps/level7/output_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7283077fb6602e60baac2dd2433e786ea671c46 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/20.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, green block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/21.txt b/blocks/task5/maps/level7/output_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bc42a23d71380e9b3c37ef1439e07789404fd4f --- /dev/null +++ b/blocks/task5/maps/level7/output_text/21.txt @@ -0,0 +1,2 @@ +- Stack with green block, orange block, from bottom to top +- Stack with yellow block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/22.txt b/blocks/task5/maps/level7/output_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..66729dda17268b1b1ce774a51a76149ed00a2a0f --- /dev/null +++ b/blocks/task5/maps/level7/output_text/22.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, blue block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/23.txt b/blocks/task5/maps/level7/output_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..805b5e2435656650b042a1ca2326a51756c23bd1 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/23.txt @@ -0,0 +1,2 @@ +- Stack with red block +- Stack with yellow block, purple block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/24.txt b/blocks/task5/maps/level7/output_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b4503a922983af2f4b83162bf6d60b00f8f8ee4 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/24.txt @@ -0,0 +1 @@ +- Stack with green block, red block, orange block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/25.txt b/blocks/task5/maps/level7/output_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..9302cb7a112289f0281efa8b66e35d186cc0c551 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/25.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, orange block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/26.txt b/blocks/task5/maps/level7/output_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..775ed3dd30fea680687763c9538a670d8b4fd3b8 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/26.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, orange block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/27.txt b/blocks/task5/maps/level7/output_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3b77c4552b8e0e53526aa14237c4eecd51b4d53 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/27.txt @@ -0,0 +1,2 @@ +- Stack with green block +- Stack with orange block, red block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/28.txt b/blocks/task5/maps/level7/output_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..30497da43f31f8084adedef8948f6a0d213eb483 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/28.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, purple block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/29.txt b/blocks/task5/maps/level7/output_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..584c5cb3fe2c2a2cb9453ad466fecc3d51dc3b71 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/29.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, green block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/3.txt b/blocks/task5/maps/level7/output_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a6f4983ec9621dd769cad14c13dc1fbf9bfbc42 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/3.txt @@ -0,0 +1,2 @@ +- Stack with blue block, orange block, from bottom to top +- Stack with purple block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/30.txt b/blocks/task5/maps/level7/output_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..a19ca3b6422318c7e2c0d4c52aaa623e48ea7810 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/30.txt @@ -0,0 +1,2 @@ +- Stack with red block, blue block, from bottom to top +- Stack with yellow block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/31.txt b/blocks/task5/maps/level7/output_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5afa4ec00e8ec4e30280aa1dd825b0fdf919b97 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/31.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, blue block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/32.txt b/blocks/task5/maps/level7/output_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fa0ab8dc6122187642fd4fd7622e7b0cb61760c --- /dev/null +++ b/blocks/task5/maps/level7/output_text/32.txt @@ -0,0 +1 @@ +- Stack with red block, green block, yellow block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/33.txt b/blocks/task5/maps/level7/output_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9b09e40d79b9fe99f2982abc6339596a71d1cfa --- /dev/null +++ b/blocks/task5/maps/level7/output_text/33.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/34.txt b/blocks/task5/maps/level7/output_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a29ba4451a9c9b6b70aa15b5741d3e538d2f00f --- /dev/null +++ b/blocks/task5/maps/level7/output_text/34.txt @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with yellow block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/35.txt b/blocks/task5/maps/level7/output_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..b793370d5d0958be740b931fa968c498ddf1916b --- /dev/null +++ b/blocks/task5/maps/level7/output_text/35.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with purple block, green block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/36.txt b/blocks/task5/maps/level7/output_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..514e2da66bbdc19ebe68be31727b19d81240f847 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/36.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with blue block, green block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/37.txt b/blocks/task5/maps/level7/output_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..5995bb5694838e264433af6451a5b8b0466e266a --- /dev/null +++ b/blocks/task5/maps/level7/output_text/37.txt @@ -0,0 +1 @@ +- Stack with blue block, orange block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/38.txt b/blocks/task5/maps/level7/output_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b3492fd71fd08a6feb6d12665dba734499c538b --- /dev/null +++ b/blocks/task5/maps/level7/output_text/38.txt @@ -0,0 +1 @@ +- Stack with green block, red block, purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/39.txt b/blocks/task5/maps/level7/output_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..646d6bf33571d3083fc93430c1f73ec6f139ab3e --- /dev/null +++ b/blocks/task5/maps/level7/output_text/39.txt @@ -0,0 +1 @@ +- Stack with purple block, green block, blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/4.txt b/blocks/task5/maps/level7/output_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..907ba8c704af9a5f243123b9741e204a55352216 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/4.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, orange block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/40.txt b/blocks/task5/maps/level7/output_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c3ceb48f5b09bd1a141bb222441c4118eccad49 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/40.txt @@ -0,0 +1,2 @@ +- Stack with green block, blue block, from bottom to top +- Stack with yellow block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/41.txt b/blocks/task5/maps/level7/output_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0fdb8d60a2829317d5efbf88b4659beb70a442f --- /dev/null +++ b/blocks/task5/maps/level7/output_text/41.txt @@ -0,0 +1 @@ +- Stack with purple block, orange block, red block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/42.txt b/blocks/task5/maps/level7/output_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..37ee9c363a3067947dc1b8ea3575c17df0eb6ea6 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/42.txt @@ -0,0 +1,2 @@ +- Stack with green block, yellow block, from bottom to top +- Stack with purple block, orange block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/43.txt b/blocks/task5/maps/level7/output_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..092e0430e8799de4235190fc77edd1eb080b0e29 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/43.txt @@ -0,0 +1,2 @@ +- Stack with red block, blue block, from bottom to top +- Stack with orange block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/44.txt b/blocks/task5/maps/level7/output_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..43def702af9adeb5393ae220287e3a1cda61e0f5 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/44.txt @@ -0,0 +1 @@ +- Stack with orange block, red block, green block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/45.txt b/blocks/task5/maps/level7/output_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fd7f42922971383986315471696e0907bf469ad --- /dev/null +++ b/blocks/task5/maps/level7/output_text/45.txt @@ -0,0 +1 @@ +- Stack with blue block, orange block, yellow block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/46.txt b/blocks/task5/maps/level7/output_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..d281204487c3bfa48493408289e9003850e48aa5 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/46.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, orange block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/47.txt b/blocks/task5/maps/level7/output_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..e55a091910704520b8e5fcd8b683372bcff728ee --- /dev/null +++ b/blocks/task5/maps/level7/output_text/47.txt @@ -0,0 +1,2 @@ +- Stack with blue block, green block, from bottom to top +- Stack with yellow block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/48.txt b/blocks/task5/maps/level7/output_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f8d22daaa07cb5f48c85f6a9bf4707416c120dc --- /dev/null +++ b/blocks/task5/maps/level7/output_text/48.txt @@ -0,0 +1,2 @@ +- Stack with red block, orange block, from bottom to top +- Stack with purple block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/49.txt b/blocks/task5/maps/level7/output_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..eada71c430ec60ab75d4f1abd2a72bdf98cfe32a --- /dev/null +++ b/blocks/task5/maps/level7/output_text/49.txt @@ -0,0 +1,2 @@ +- Stack with blue block, purple block, from bottom to top +- Stack with yellow block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/5.txt b/blocks/task5/maps/level7/output_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8ec2345611b7106db023ed5376e38ad756eec8b --- /dev/null +++ b/blocks/task5/maps/level7/output_text/5.txt @@ -0,0 +1 @@ +- Stack with green block, yellow block, orange block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/50.txt b/blocks/task5/maps/level7/output_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..451c543731ca1068423f334a3ec9d2f431c767b1 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/50.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with yellow block, purple block, blue block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/51.txt b/blocks/task5/maps/level7/output_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb7069b91da44ce58c0f6fce806bd627b1925c81 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/51.txt @@ -0,0 +1,2 @@ +- Stack with red block, green block, from bottom to top +- Stack with orange block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/52.txt b/blocks/task5/maps/level7/output_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c06fe94d77bff715e646cdc0d7e515d053fd12d --- /dev/null +++ b/blocks/task5/maps/level7/output_text/52.txt @@ -0,0 +1 @@ +- Stack with blue block, green block, yellow block, red block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/53.txt b/blocks/task5/maps/level7/output_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..b793370d5d0958be740b931fa968c498ddf1916b --- /dev/null +++ b/blocks/task5/maps/level7/output_text/53.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with purple block, green block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/54.txt b/blocks/task5/maps/level7/output_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..481b7bf3b49f7f5a21d4373972d1202d22f5a86a --- /dev/null +++ b/blocks/task5/maps/level7/output_text/54.txt @@ -0,0 +1 @@ +- Stack with orange block, yellow block, red block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/55.txt b/blocks/task5/maps/level7/output_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..29e3594372a5edc75791fd2ca842daee842f9834 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/55.txt @@ -0,0 +1 @@ +- Stack with red block, green block, blue block, purple block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/56.txt b/blocks/task5/maps/level7/output_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..355328719620b45c68b3b6433620f794a2f7bc76 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/56.txt @@ -0,0 +1 @@ +- Stack with blue block, purple block, orange block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/57.txt b/blocks/task5/maps/level7/output_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5623e57abfa311b9ce896f082203c62d15df8c8 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/57.txt @@ -0,0 +1 @@ +- Stack with green block, purple block, blue block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/58.txt b/blocks/task5/maps/level7/output_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5c703ae9555509b15a2caab313f807039d98624 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/58.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, red block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/59.txt b/blocks/task5/maps/level7/output_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a1b9dbb7b8930ecd6559ce23acfb3a634c6078f --- /dev/null +++ b/blocks/task5/maps/level7/output_text/59.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, blue block, green block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/6.txt b/blocks/task5/maps/level7/output_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3315e7a50ae9c58afa6d17537b6586a47a7046d --- /dev/null +++ b/blocks/task5/maps/level7/output_text/6.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, blue block, orange block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/60.txt b/blocks/task5/maps/level7/output_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..67e621bfa941d6bf4445df5995a9f6c26cd2f676 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/60.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with blue block, green block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/61.txt b/blocks/task5/maps/level7/output_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..3775972821582c60bf14d02dfbe9df1a7f1fc309 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/61.txt @@ -0,0 +1 @@ +- Stack with blue block, yellow block, red block, orange block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/62.txt b/blocks/task5/maps/level7/output_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..15ff02cb90ce85b9c13ab9fa34209482b808a0ac --- /dev/null +++ b/blocks/task5/maps/level7/output_text/62.txt @@ -0,0 +1 @@ +- Stack with orange block, green block, yellow block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/63.txt b/blocks/task5/maps/level7/output_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b308beb85ac1b61ba06e81426ce8ebf4184df0d8 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/63.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/64.txt b/blocks/task5/maps/level7/output_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..a588ce344cd8646df5827e20546b4ebb0d2d722e --- /dev/null +++ b/blocks/task5/maps/level7/output_text/64.txt @@ -0,0 +1 @@ +- Stack with orange block, yellow block, purple block, green block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/65.txt b/blocks/task5/maps/level7/output_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ec180e632a88ba39ac0bfd4e493729221b6082b --- /dev/null +++ b/blocks/task5/maps/level7/output_text/65.txt @@ -0,0 +1 @@ +- Stack with purple block, yellow block, green block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/66.txt b/blocks/task5/maps/level7/output_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac2afc4a5d5db315914d72869df40da9cd9c21a2 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/66.txt @@ -0,0 +1 @@ +- Stack with orange block, yellow block, red block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/67.txt b/blocks/task5/maps/level7/output_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..88f75e1db03b8100aefe57f4212ae3536a8f1b73 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/67.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with green block, orange block, purple block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/68.txt b/blocks/task5/maps/level7/output_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..8545da8dc9ee812eec2ea504fc68c5e85d82fe55 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/68.txt @@ -0,0 +1 @@ +- Stack with purple block, orange block, red block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/69.txt b/blocks/task5/maps/level7/output_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..6378c25f1d7bc7dd496f9d6ac4592038987c205b --- /dev/null +++ b/blocks/task5/maps/level7/output_text/69.txt @@ -0,0 +1 @@ +- Stack with orange block, blue block, purple block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/7.txt b/blocks/task5/maps/level7/output_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..be2c594ffe332ef99a960cd9dcdb0680ec1f300e --- /dev/null +++ b/blocks/task5/maps/level7/output_text/7.txt @@ -0,0 +1,2 @@ +- Stack with red block, purple block, from bottom to top +- Stack with orange block, yellow block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/70.txt b/blocks/task5/maps/level7/output_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..05643829ca5c4b2371dad35a77287faaf077598a --- /dev/null +++ b/blocks/task5/maps/level7/output_text/70.txt @@ -0,0 +1,2 @@ +- Stack with yellow block +- Stack with orange block, green block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/71.txt b/blocks/task5/maps/level7/output_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..200ea245ae68e38de7b7695d5466a4bf33ee06dd --- /dev/null +++ b/blocks/task5/maps/level7/output_text/71.txt @@ -0,0 +1 @@ +- Stack with blue block, green block, purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/72.txt b/blocks/task5/maps/level7/output_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..4382b212e9a6593284b48dcc87492bb8e34b5c5d --- /dev/null +++ b/blocks/task5/maps/level7/output_text/72.txt @@ -0,0 +1 @@ +- Stack with red block, orange block, green block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/73.txt b/blocks/task5/maps/level7/output_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a720e862ea5a65760d7a04c4ef914e4995c74fe --- /dev/null +++ b/blocks/task5/maps/level7/output_text/73.txt @@ -0,0 +1,2 @@ +- Stack with green block, orange block, from bottom to top +- Stack with purple block, yellow block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/74.txt b/blocks/task5/maps/level7/output_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bd3ff8bee0d829b080b1f0591c53843b957188b --- /dev/null +++ b/blocks/task5/maps/level7/output_text/74.txt @@ -0,0 +1 @@ +- Stack with yellow block, red block, orange block, green block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/75.txt b/blocks/task5/maps/level7/output_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..89b48f477fa84bfc59d363b69096532d86570884 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/75.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, green block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/76.txt b/blocks/task5/maps/level7/output_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..7473186f89b49d65346cf3cb68a42fa2c291f43c --- /dev/null +++ b/blocks/task5/maps/level7/output_text/76.txt @@ -0,0 +1,2 @@ +- Stack with purple block +- Stack with yellow block, green block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/77.txt b/blocks/task5/maps/level7/output_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c3669d39d6dbd2864aac84f87b0e1d8edeb08d6 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/77.txt @@ -0,0 +1 @@ +- Stack with red block, blue block, purple block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/78.txt b/blocks/task5/maps/level7/output_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff0f2b6ed39cf5e577d5e45df71f293ae0c16900 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/78.txt @@ -0,0 +1,2 @@ +- Stack with blue block +- Stack with orange block, yellow block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/79.txt b/blocks/task5/maps/level7/output_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..b308beb85ac1b61ba06e81426ce8ebf4184df0d8 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/79.txt @@ -0,0 +1 @@ +- Stack with red block, purple block, blue block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/8.txt b/blocks/task5/maps/level7/output_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..7160f1c9b550ce23d13edee168a53d8d0c914fa7 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/8.txt @@ -0,0 +1 @@ +- Stack with blue block, red block, yellow block, green block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/80.txt b/blocks/task5/maps/level7/output_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..38e43ac58cbd0464381a3fa07478efae68c04dcc --- /dev/null +++ b/blocks/task5/maps/level7/output_text/80.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, green block, purple block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/81.txt b/blocks/task5/maps/level7/output_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..77c40ebeb28bbfee2ecf720570bed08020dc044c --- /dev/null +++ b/blocks/task5/maps/level7/output_text/81.txt @@ -0,0 +1 @@ +- Stack with green block, orange block, purple block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/82.txt b/blocks/task5/maps/level7/output_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fa4bc50a2cbf7ff2b9bf0ba9f51808ba2e42e4e --- /dev/null +++ b/blocks/task5/maps/level7/output_text/82.txt @@ -0,0 +1 @@ +- Stack with purple block, red block, green block, blue block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/83.txt b/blocks/task5/maps/level7/output_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..93079a43c1cf9a1afba0e86829fd11cd650e3a65 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/83.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, orange block, purple block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/84.txt b/blocks/task5/maps/level7/output_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..98a67db92b4fde05400ee5b071593486a948473b --- /dev/null +++ b/blocks/task5/maps/level7/output_text/84.txt @@ -0,0 +1,2 @@ +- Stack with green block, orange block, from bottom to top +- Stack with purple block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/85.txt b/blocks/task5/maps/level7/output_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf448b2fc98c0f761667760304be30757cd0d345 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/85.txt @@ -0,0 +1,2 @@ +- Stack with red block, blue block, from bottom to top +- Stack with purple block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/86.txt b/blocks/task5/maps/level7/output_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4450ddddccb953a20868103df8dd0619e3c6078 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/86.txt @@ -0,0 +1 @@ +- Stack with purple block, orange block, yellow block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/87.txt b/blocks/task5/maps/level7/output_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..e94982914956a4b2a9cf9bf105669111c28aabe6 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/87.txt @@ -0,0 +1 @@ +- Stack with red block, green block, blue block, yellow block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/88.txt b/blocks/task5/maps/level7/output_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac9cf0c2e50de5c80aa1616dec482d4063c3c26b --- /dev/null +++ b/blocks/task5/maps/level7/output_text/88.txt @@ -0,0 +1 @@ +- Stack with blue block, green block, red block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/89.txt b/blocks/task5/maps/level7/output_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b66b4f2b9ac8d942270ccfbe18899071ef4baae --- /dev/null +++ b/blocks/task5/maps/level7/output_text/89.txt @@ -0,0 +1 @@ +- Stack with red block, green block, blue block, yellow block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/9.txt b/blocks/task5/maps/level7/output_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..560e867e8ff4869a49ae3eaa95e222b4ab682bc7 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/9.txt @@ -0,0 +1 @@ +- Stack with orange block, green block, purple block, red block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/90.txt b/blocks/task5/maps/level7/output_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d10dec3552771f3a5d465f46274bd05e8ee9c88 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/90.txt @@ -0,0 +1 @@ +- Stack with green block, red block, blue block, purple block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/91.txt b/blocks/task5/maps/level7/output_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2108e06d30da71eaff0682191072800ddf8b20a6 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/91.txt @@ -0,0 +1,2 @@ +- Stack with orange block, yellow block, from bottom to top +- Stack with purple block, red block, green block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/92.txt b/blocks/task5/maps/level7/output_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b8605af60dd075379a45f6d59d72c420b81d237 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/92.txt @@ -0,0 +1,2 @@ +- Stack with orange block +- Stack with purple block, green block, red block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/93.txt b/blocks/task5/maps/level7/output_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fed1643596eda54ad180b726b353809b94b4d5d --- /dev/null +++ b/blocks/task5/maps/level7/output_text/93.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, purple block, red block, orange block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/94.txt b/blocks/task5/maps/level7/output_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ad3d1f78ea5996e9d3e62c9f4e9b5aaae113efb --- /dev/null +++ b/blocks/task5/maps/level7/output_text/94.txt @@ -0,0 +1 @@ +- Stack with blue block, green block, purple block, yellow block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/95.txt b/blocks/task5/maps/level7/output_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..c611048dcd6e75a01108ba6a21a62314b3cb3bc9 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/95.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, red block, orange block, blue block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/96.txt b/blocks/task5/maps/level7/output_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..066ad7fe1275fb783404b8e117f7c298f7bd5546 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/96.txt @@ -0,0 +1 @@ +- Stack with yellow block, green block, purple block, blue block, red block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/97.txt b/blocks/task5/maps/level7/output_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..30bd06e4f3f016c2bdd1b6b4019dd8882987146a --- /dev/null +++ b/blocks/task5/maps/level7/output_text/97.txt @@ -0,0 +1 @@ +- Stack with purple block, blue block, red block, orange block, yellow block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/98.txt b/blocks/task5/maps/level7/output_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d85859bd8bd0ef2701035f76d1101c7270a16ca --- /dev/null +++ b/blocks/task5/maps/level7/output_text/98.txt @@ -0,0 +1 @@ +- Stack with yellow block, blue block, orange block, green block, purple block, from bottom to top diff --git a/blocks/task5/maps/level7/output_text/99.txt b/blocks/task5/maps/level7/output_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..749482104cab80586a634b878259bb4e596df910 --- /dev/null +++ b/blocks/task5/maps/level7/output_text/99.txt @@ -0,0 +1 @@ +- Stack with orange block, red block, purple block, green block, blue block, from bottom to top diff --git a/blocks/task5/prompt-text/prompt-text.txt b/blocks/task5/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c312aa119e226c4926993a6a5e2dd64dd4cc6e9 --- /dev/null +++ b/blocks/task5/prompt-text/prompt-text.txt @@ -0,0 +1,50 @@ +You are a robot that sorts and organizes colored blocks by adding and removing them to stacks. +You can move them between stacks to produce a desired end state. + +In this task, you will see two photos of blocks. These photos show the beginning and end state of the blocks. Your task is to find a shortest movement plan to transit from the beginning state to the end state. Since coding is not within your skill set, your approach relies on logical reasoning of the map. + +## Game Setup +- The stacks of blocks are presented in images. You must view and interpret the image in order to determine which blocks are in which stack and determine how to move them. +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. All stacks are on the table. +- In a single move, you can only move the top block of any pile. Attempting to move lower blocks is considered an invalid move. +- You can either (a) move the top block to the top of another stack, or (b) place the top block on the table, creating a new stack with just one block. + +We provide an example to further illustrate the rules: + + + +This example features four blocks arranged in three stacks: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block +You can only move the top block of each stack: the purple block, the blue block, and the red block. The orange block is stuck underneath the red block and cannot be moved directly. +Each move can place the block on another stack or on the table (creating a new stack of one). For instance, you could move the red block to either the blue stack or the table. +**Important Note**: The order of the stacks doesn't matter in this game. Two images are considered equivalent as long as the stacks contain the same blocks, regardless of the order in which the stacks appear. For example, an image with stack A on the left and stack B on the right is equivalent to an image with stack B on the left and stack A on the right. + +## Procedure and Output +Your output should follow this format: +1. First, analyze the starting and ending configurations, including the number of stacks and the blocks in each stack (similar to the example above). +2. Then, list the moves in a step-by-step manner using the format move(SOURCE, TARGET). Remember, "SOURCE" refers to the block being moved (always the top block of a stack), and "TARGET" refers to the destination (another stack or the table). + +## Example Output + +Starting state: there are three stacks: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block +Ending state: there are three stacks: +- Stack 1: Purple block (alone) +- Stack 2: From bottom to top: Orange block, Blue block +- Stack 3: Red block (alone) + +1. move(red,table) +2. move(blue,orange) + +Now please generate moving plan. The beginning state is: + + + +The end state is: + + diff --git a/blocks/task5/prompt-visual-images/example0.jpg b/blocks/task5/prompt-visual-images/example0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00441c1e743435ca733644c169ff6a8c55def2e6 --- /dev/null +++ b/blocks/task5/prompt-visual-images/example0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556d22008dc07ec6cc3025494315bceb6eab830c2f66ffe43ae21b1152e45769 +size 10171 diff --git a/blocks/task5/test.py b/blocks/task5/test.py new file mode 100644 index 0000000000000000000000000000000000000000..fad0e46779487542646a3c2476ef96e3280124ee --- /dev/null +++ b/blocks/task5/test.py @@ -0,0 +1,175 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +from IPython.display import display +from IPython.display import Markdown + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) + # torch.manual_seed(seed) + # torch.cuda.manual_seed(seed) + # torch.backends.cudnn.deterministic = True + # env.seed(seed) +seed_everything(1) + +levels = [1,3,5,7] +in_context_example_num = 0 # 0, 1, 2, 4 + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +EXAMPLE_DICT = { + 1: [], + 3: [], + 5: [], + 7: [], +} + +# Prepare examples +for level in levels: + for example_id in range(8): + curr_example_pack = {} + curr_example_pack["start_image_path"] = "example/level%d/begin/%d.jpg"%(level, example_id) + curr_example_pack["end_image_path"] = "example/level%d/end/%d.jpg"%(level, example_id) + example_path = "example/level%d/"%(level) + curr_example_pack["question1"] = "\n\nPlease generate the moving plan. The beginning state is:" + curr_example_pack["question2"] = "\nThe end state is:" + with open(example_path + "sol_%d.txt"%(example_id), "r") as f: + curr_example_pack["answer"] = f.read() + EXAMPLE_DICT[level].append(curr_example_pack) + +example_img = PIL.Image.open('prompt-visual-images/example0.jpg') + +# import ipdb; ipdb.set_trace() +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + input_img_path = "level%d/input_img"%(level) + output_img_path = "level%d/output_img"%(level) + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + prompt_input_1 = '''You are a robot that sorts and organizes colored blocks by adding and removing them to stacks. +You can move them between stacks to produce a desired end state. + +In this task, you will see two photos of blocks. These photos show the beginning and end state of the blocks. Your task is to find a shortest movement plan to transit from the beginning state to the end state. Since coding is not within your skill set, your approach relies on logical reasoning of the map. + +## Game Setup +- The stacks of blocks are presented in images. You must view and interpret the image in order to determine which blocks are in which stack and determine how to move them. +- Each block has a unique color (blue, yellow, purple, orange, red, green). +- Blocks are stacked vertically in a stack, forming multiple stacks. All stacks are on the table. +- In a single move, you can only move the top block of any pile. Attempting to move lower blocks is considered an invalid move. +- You can either (a) move the top block to the top of another stack, or (b) place the top block on the table, creating a new stack with just one block. +''' + + prompt_input_2 = ''' +We provide an example to further illustrate the rules: +''' + + prompt_input_3 = ''' +This example features four blocks arranged in three stacks: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block +You can only move the top block of each stack: the purple block, the blue block, and the red block. The orange block is stuck underneath the red block and cannot be moved directly. +Each move can place the block on another stack or on the table (creating a new stack of one). For instance, you could move the red block to either the blue stack or the table. +**Important Note**: The order of the stacks doesn't matter in this game. Two images are considered equivalent as long as the stacks contain the same blocks, regardless of the order in which the stacks appear. For example, an image with stack A on the left and stack B on the right is equivalent to an image with stack B on the left and stack A on the right. + +## Procedure and Output +Your output should follow this format: +1. First, analyze the starting and ending configurations, including the number of stacks and the blocks in each stack (similar to the example above). +2. Then, list the moves in a step-by-step manner using the format move(SOURCE, TARGET). Remember, "SOURCE" refers to the block being moved (always the top block of a stack), and "TARGET" refers to the destination (another stack or the table). + +## Example Output + +Starting state: there are three stacks: +- Stack 1: Purple block (alone) +- Stack 2: Blue block (alone) +- Stack 3: From bottom to top: Orange block, Red block +Ending state: there are three stacks: +- Stack 1: Purple block (alone) +- Stack 2: From bottom to top: Orange block, Blue block +- Stack 3: Red block (alone) + +1. move(red,table) +2. move(blue,orange) +''' + prompt1_examples = [] + prompt2_examples = [] + prompt3_examples = [] + image1_examples = [] + image2_examples = [] + if in_context_example_num > 0: + # prompt_examples.append("## Example:\n") + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + image1_examples.append(PIL.Image.open(this_example["start_image_path"])) + image2_examples.append(PIL.Image.open(this_example["end_image_path"])) + prompt1_examples.append(this_example["question1"]) + prompt2_examples.append(this_example["question2"]) + prompt3_examples.append("\n\n" + this_example["answer"] + "\n") + # prompt_examples.append("\n" + this_example["question"] + "\n" + this_example["answer"] + "\n") + prompt_input_4 = "\n\nNow please generate moving plan. The beginning state is:" + prompt_input_5 = "\nThe end state is:" + begin_img = PIL.Image.open('level%d/input_img/%d.jpg'%(level, curr_id)) + end_img = PIL.Image.open('level%d/output_img/%d.jpg'%(level, curr_id)) + # prompt_img_1 = PIL.Image.open('prompt-visual-images/system-figure-1.png') + # prompt_img_2 = PIL.Image.open('prompt-visual-images/system-figure-2.png') + model_input_seq = [prompt_input_1, prompt_input_2, example_img, prompt_input_3] + if in_context_example_num > 0: + # assert len(prompt_examples) == len(image1_examples) + 1 + # assert len(prompt_examples) == in_context_example_num + 1 + model_input_seq.append("## Example:") + for example_index in range(in_context_example_num): + model_input_seq.append(prompt1_examples[example_index]) + model_input_seq.append(image1_examples[example_index]) + model_input_seq.append(prompt2_examples[example_index]) + model_input_seq.append(image2_examples[example_index]) + model_input_seq.append(prompt3_examples[example_index]) + model_input_seq += [prompt_input_4, begin_img, prompt_input_5, end_img] + + response = model.generate_content(model_input_seq) + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + # import ipdb; ipdb.set_trace() + # pass + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass + + + diff --git a/maze/.DS_Store b/maze/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5b2a0377c9a250975e84798909f188febd0ee9a6 Binary files /dev/null and b/maze/.DS_Store differ diff --git a/maze/task1/.DS_Store b/maze/task1/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..8b4eb1655816d1a7c722e686d65f2ed884b9c6d8 Binary files /dev/null and b/maze/task1/.DS_Store differ diff --git a/maze/task1/eval.py b/maze/task1/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..851491a723f0029a685efd97c8b04e2905bb4890 --- /dev/null +++ b/maze/task1/eval.py @@ -0,0 +1,72 @@ +# read a map, receive a solution, determine if the solution reaches the goal + +import gym +from gym.envs.toy_text.frozen_lake import generate_random_map +import random +import os +import numpy as np +# from PIL import Image + +levels = [3,4,5,6,7,8] +for level in levels: + count = 0 + correct = 0 + invalid = 0 + + yes_c = 0 + yes_w = 0 + + gt_answer_dir = "maps/level%d/answer/"%(level) + check_answer_dir = "output/output_pure_text/level%d/"%(level) + + # import ipdb; ipdb.set_trace() + for test_id in range(100): + try: + # parse answer from the output + output_path = check_answer_dir + "%d.txt"%(test_id) + with open(output_path, "r") as f: + contents = f.read() + answer_index = contents.find("") + answer = contents[answer_index+len(""):] + # if answer_index == -1: + # answer_index = contents.find("Answer:") + # answer = contents[answer_index+len("Answer:"):] + answer = answer.replace('"', '') + answer = answer.replace("'", '') + answer = answer.replace("\n", '') + answer = answer.replace(".", '') + answer = answer.replace("(", '') + answer = answer.replace(")", '') + answer = answer.lstrip() + answer = answer.rstrip() + answer = answer.lower() + # import ipdb; ipdb.set_trace() + assert answer in ['yes', 'no'] + # import ipdb; ipdb.set_trace() + # parse GT from recorded file + gt_path = gt_answer_dir + "%d.txt"%(test_id) + with open(gt_path, "r") as f: + gt = f.read() + key_dict = {'Y': 'yes', 'N': 'no'} + gt = key_dict[gt] + if answer == gt: + correct += 1 + if answer == 'yes': + yes_c += 1 + else: + if answer == 'yes': + yes_w += 1 + count += 1 + # print(answer) + except: + # import ipdb; ipdb.set_trace() + invalid += 1 + count += 1 + pass + + # print(yes_c) + # print(yes_w) + print("=====Curr Level: %d======"%(level)) + print("Total tested: %d"%(count)) + print("Total correct: %d"%(correct)) + print("Total invalid: %d"%(invalid)) diff --git a/maze/task1/example/.DS_Store b/maze/task1/example/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..fce98805f2e84893cb8071ec6aee7f964394343a Binary files /dev/null and b/maze/task1/example/.DS_Store differ diff --git a/maze/task1/example/level3/.DS_Store b/maze/task1/example/level3/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..4b0175fc5f709a1682dedd9aa06bfdd57617c21b Binary files /dev/null and b/maze/task1/example/level3/.DS_Store differ diff --git a/maze/task1/example/level3/answer/0.txt b/maze/task1/example/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level3/answer/0.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level3/answer/1.txt b/maze/task1/example/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level3/answer/1.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level3/answer/2.txt b/maze/task1/example/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level3/answer/2.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level3/answer/3.txt b/maze/task1/example/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level3/answer/3.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level3/answer/4.txt b/maze/task1/example/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level3/answer/4.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level3/answer/5.txt b/maze/task1/example/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level3/answer/5.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level3/answer/6.txt b/maze/task1/example/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level3/answer/6.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level3/answer/7.txt b/maze/task1/example/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level3/answer/7.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level3/img/0.png b/maze/task1/example/level3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c7d0c71888e0e3af36d45c9e267f593a74ec870c --- /dev/null +++ b/maze/task1/example/level3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10432a720c0492e070c3bb6178170edb73e8eed4ed510b58adce59ae4e5de61f +size 5315 diff --git a/maze/task1/example/level3/img/1.png b/maze/task1/example/level3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b10a08760ee3c7a0207e21146bb48f4121e7f9ca --- /dev/null +++ b/maze/task1/example/level3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222be302081371b62356b262d9edebb393d1132cb6ecddf00eb4fd8f14ffb0d6 +size 6187 diff --git a/maze/task1/example/level3/img/2.png b/maze/task1/example/level3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..66ccbc873341f06b91af9f2c3c4577b6dc343214 --- /dev/null +++ b/maze/task1/example/level3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2be2d6bacea3caaa604199660a4ea5fecafdf6f10450a22632955d4b407034d +size 5099 diff --git a/maze/task1/example/level3/img/3.png b/maze/task1/example/level3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..16b937af578caa4b861451aa6fba4923738f3d34 --- /dev/null +++ b/maze/task1/example/level3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df64a069ea3efa9e2158119a635b70437db528bb6079f946c034945449cefc5e +size 6262 diff --git a/maze/task1/example/level3/img/4.png b/maze/task1/example/level3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..819e588869212e1cf4e19c8e6e5a55ffd652f2ec --- /dev/null +++ b/maze/task1/example/level3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7381aef78ca47ae78f83502d86606e6d4777cac564f6520d58261567c756f8f6 +size 6094 diff --git a/maze/task1/example/level3/img/5.png b/maze/task1/example/level3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..140e7455bbc6db998ed402a245c66dce015953e4 --- /dev/null +++ b/maze/task1/example/level3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ef91af711f7c72babcac73fa1b4bb9b70b828b580423d0d38e5e703b6ba2ec +size 6259 diff --git a/maze/task1/example/level3/img/6.png b/maze/task1/example/level3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b78e7b6e6a9dd254276d35e24b1cc5e33c8a0c8f --- /dev/null +++ b/maze/task1/example/level3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c61a91406aeea3c56db6a42adc4c9f014a839f6fe8f403d2f4c30ebc89fb224 +size 6049 diff --git a/maze/task1/example/level3/img/7.png b/maze/task1/example/level3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7ef219d219553f6958a91d9be7cfa6b9a96088f9 --- /dev/null +++ b/maze/task1/example/level3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3d55e6ea219ec4aa1f6bf1902e3f98ae7c85917a5a6751f796cde39627e682 +size 5251 diff --git a/maze/task1/example/level3/pure_text/0.txt b/maze/task1/example/level3/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a14f4aa793efe1cf8ecea8184a89f52a6d85bea4 --- /dev/null +++ b/maze/task1/example/level3/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/example/level3/pure_text/1.txt b/maze/task1/example/level3/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f141271a313b631d3aad651339e8193c835bee5f --- /dev/null +++ b/maze/task1/example/level3/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level3/pure_text/2.txt b/maze/task1/example/level3/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad18b76757793aa43686470915daf84a676711e8 --- /dev/null +++ b/maze/task1/example/level3/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level3/pure_text/3.txt b/maze/task1/example/level3/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae74a848962006928d1e838ad86e2e6415f95f7b --- /dev/null +++ b/maze/task1/example/level3/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level3/pure_text/4.txt b/maze/task1/example/level3/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b22cc4e8279f063153d6fa6d99d7790202b7920f --- /dev/null +++ b/maze/task1/example/level3/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level3/pure_text/5.txt b/maze/task1/example/level3/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc8e661defecce9afb23d82b77423cb1668be828 --- /dev/null +++ b/maze/task1/example/level3/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level3/pure_text/6.txt b/maze/task1/example/level3/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..453b3453c7f3fa3f26887fc01f377a04eb346b29 --- /dev/null +++ b/maze/task1/example/level3/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level3/pure_text/7.txt b/maze/task1/example/level3/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..3016a98291660027aa636eb6fa7821ea323cc4bf --- /dev/null +++ b/maze/task1/example/level3/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level3/question/0.txt b/maze/task1/example/level3/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/example/level3/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/example/level3/question/1.txt b/maze/task1/example/level3/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/example/level3/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/example/level3/question/2.txt b/maze/task1/example/level3/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/example/level3/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/example/level3/question/3.txt b/maze/task1/example/level3/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/example/level3/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/example/level3/question/4.txt b/maze/task1/example/level3/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/example/level3/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/example/level3/question/5.txt b/maze/task1/example/level3/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/example/level3/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/example/level3/question/6.txt b/maze/task1/example/level3/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/example/level3/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/example/level3/question/7.txt b/maze/task1/example/level3/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/example/level3/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/example/level3/table/0.txt b/maze/task1/example/level3/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b7170ec4b7bcbd927323edf9efcdacc6c3301ca --- /dev/null +++ b/maze/task1/example/level3/table/0.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | # | # | _ | +| Row 3 | # | # | # | diff --git a/maze/task1/example/level3/table/1.txt b/maze/task1/example/level3/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d88c6bd53f50d54896e9480a2ae62c0779931b03 --- /dev/null +++ b/maze/task1/example/level3/table/1.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | @ | +| Row 2 | # | # | _ | +| Row 3 | * | # | # | diff --git a/maze/task1/example/level3/table/2.txt b/maze/task1/example/level3/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c80cd2f7a04c3a22f069312e5f761392dc37289d --- /dev/null +++ b/maze/task1/example/level3/table/2.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | # | # | +| Row 2 | # | # | # | +| Row 3 | * | _ | _ | diff --git a/maze/task1/example/level3/table/3.txt b/maze/task1/example/level3/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8525042b6e4110379db695d43a62059321998f71 --- /dev/null +++ b/maze/task1/example/level3/table/3.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | # | +| Row 2 | # | _ | # | +| Row 3 | # | # | * | diff --git a/maze/task1/example/level3/table/4.txt b/maze/task1/example/level3/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..64eff7b45d8cb0b35da1cf53c69f584640a1d1d7 --- /dev/null +++ b/maze/task1/example/level3/table/4.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | # | @ | # | +| Row 3 | _ | _ | # | diff --git a/maze/task1/example/level3/table/5.txt b/maze/task1/example/level3/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..76591f5f82b26b7f041fcb28a73f201868480301 --- /dev/null +++ b/maze/task1/example/level3/table/5.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | * | +| Row 2 | # | # | @ | +| Row 3 | _ | # | # | diff --git a/maze/task1/example/level3/table/6.txt b/maze/task1/example/level3/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fe155701d63ce705a322d098ee39b2aa457261f --- /dev/null +++ b/maze/task1/example/level3/table/6.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | @ | # | # | +| Row 3 | # | # | * | diff --git a/maze/task1/example/level3/table/7.txt b/maze/task1/example/level3/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..39a4b849d770e96181526de041939d883e7fd605 --- /dev/null +++ b/maze/task1/example/level3/table/7.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | _ | @ | * | +| Row 3 | # | # | # | diff --git a/maze/task1/example/level4/answer/0.txt b/maze/task1/example/level4/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level4/answer/0.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level4/answer/1.txt b/maze/task1/example/level4/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level4/answer/1.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level4/answer/2.txt b/maze/task1/example/level4/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level4/answer/2.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level4/answer/3.txt b/maze/task1/example/level4/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level4/answer/3.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level4/answer/4.txt b/maze/task1/example/level4/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level4/answer/4.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level4/answer/5.txt b/maze/task1/example/level4/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level4/answer/5.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level4/answer/6.txt b/maze/task1/example/level4/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level4/answer/6.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level4/answer/7.txt b/maze/task1/example/level4/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level4/answer/7.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level4/img/0.png b/maze/task1/example/level4/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4931f6838028b1d7bea89ecdd0b633c9e3a6ad7e --- /dev/null +++ b/maze/task1/example/level4/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34dfa99378df1c0f73c1e8c56377377f685535f392667c25f4667a33f334c411 +size 7346 diff --git a/maze/task1/example/level4/img/1.png b/maze/task1/example/level4/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5a7adc7882b898b2283ec2bcbe944d9288df23dc --- /dev/null +++ b/maze/task1/example/level4/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb12c3c6fbf657018768bff8f5cb1568cb2ecfdf6b77050ae86fd70bbe30907e +size 8251 diff --git a/maze/task1/example/level4/img/2.png b/maze/task1/example/level4/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..29d956b6eb9c7c8837370952582f2cb0c00b9189 --- /dev/null +++ b/maze/task1/example/level4/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4fe9cc0ea1d10a59ce03de4f90eac60fd588cc99070de112911fab28570e7ef +size 8713 diff --git a/maze/task1/example/level4/img/3.png b/maze/task1/example/level4/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4f39c59a9c9d87662c9a98c50849cdb22ac5303f --- /dev/null +++ b/maze/task1/example/level4/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74cb74181262b1c432e265c4f031c43c2226027d2641309e6b52a206beface6a +size 8694 diff --git a/maze/task1/example/level4/img/4.png b/maze/task1/example/level4/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e2d7096b24ba3d5c768989af75baa62214448388 --- /dev/null +++ b/maze/task1/example/level4/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5172896aadef17c1dc323e3b37bacd7f0a12a8c41de596ef0b029a5dc1f8f023 +size 8253 diff --git a/maze/task1/example/level4/img/5.png b/maze/task1/example/level4/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..092789a364d5c9ee5ee5a85ce46e1bf11a2fd64f --- /dev/null +++ b/maze/task1/example/level4/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5357071433c7d3529b206d0c87bfb33624f24c7608c7d2230fbc711b5bc4fe15 +size 8693 diff --git a/maze/task1/example/level4/img/6.png b/maze/task1/example/level4/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e070cffcd943cc3195c3c738024b29342c26fc20 --- /dev/null +++ b/maze/task1/example/level4/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef0d4858ce9d7bfde92b53404411bcda546d1ff2dfbf809acf722569128053b +size 7493 diff --git a/maze/task1/example/level4/img/7.png b/maze/task1/example/level4/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a7a03681e393bc003edcdeb18f25fccede51bf56 --- /dev/null +++ b/maze/task1/example/level4/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd2992576f036473cc5e20eaa539eb13b0d1ef981d849bca80a0418f14aba02a +size 8569 diff --git a/maze/task1/example/level4/pure_text/0.txt b/maze/task1/example/level4/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d159f86d84ba0e8f4779a9e2eb9ea2fa7d4a822f --- /dev/null +++ b/maze/task1/example/level4/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level4/pure_text/1.txt b/maze/task1/example/level4/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..56cf0680c93bf162c98e2615b8953dfc9e175011 --- /dev/null +++ b/maze/task1/example/level4/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level4/pure_text/2.txt b/maze/task1/example/level4/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f4db1eba9bd7a975aaa00257114c4d6fd038026 --- /dev/null +++ b/maze/task1/example/level4/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level4/pure_text/3.txt b/maze/task1/example/level4/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f777030dc6e94d6b3b57bc26d08ecec4a815169e --- /dev/null +++ b/maze/task1/example/level4/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/example/level4/pure_text/4.txt b/maze/task1/example/level4/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..46d2357e2fdfd5392073d368dd062a398ff133e0 --- /dev/null +++ b/maze/task1/example/level4/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level4/pure_text/5.txt b/maze/task1/example/level4/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f51866d1997fecdd9322c1ed6a9ec9c6e6c5586e --- /dev/null +++ b/maze/task1/example/level4/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/example/level4/pure_text/6.txt b/maze/task1/example/level4/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..8668a84591d3e6ff298ace134d32566ba74c3888 --- /dev/null +++ b/maze/task1/example/level4/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/example/level4/pure_text/7.txt b/maze/task1/example/level4/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce771e818a903e19583d984651d38a99870003c4 --- /dev/null +++ b/maze/task1/example/level4/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level4/question/0.txt b/maze/task1/example/level4/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/example/level4/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/example/level4/question/1.txt b/maze/task1/example/level4/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/example/level4/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/example/level4/question/2.txt b/maze/task1/example/level4/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/example/level4/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/example/level4/question/3.txt b/maze/task1/example/level4/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/example/level4/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/example/level4/question/4.txt b/maze/task1/example/level4/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/example/level4/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/example/level4/question/5.txt b/maze/task1/example/level4/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/example/level4/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/example/level4/question/6.txt b/maze/task1/example/level4/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/example/level4/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/example/level4/question/7.txt b/maze/task1/example/level4/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/example/level4/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/example/level4/special_text/0.txt b/maze/task1/example/level4/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae5974fc4a854711d1fa67f36d1cded267aa1e14 --- /dev/null +++ b/maze/task1/example/level4/special_text/0.txt @@ -0,0 +1,4 @@ +##*_ +__## +@___ +#### \ No newline at end of file diff --git a/maze/task1/example/level4/special_text/1.txt b/maze/task1/example/level4/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc55132ac4b6f5fbeca0380ed0977ca2d53356a8 --- /dev/null +++ b/maze/task1/example/level4/special_text/1.txt @@ -0,0 +1,4 @@ +#_#_ +_#__ +#### +_@*# \ No newline at end of file diff --git a/maze/task1/example/level4/special_text/2.txt b/maze/task1/example/level4/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..6084dd62304bbb5b74caef7c36b8f2497aaf5c90 --- /dev/null +++ b/maze/task1/example/level4/special_text/2.txt @@ -0,0 +1,4 @@ +#___ +_@## +##*_ +#_## \ No newline at end of file diff --git a/maze/task1/example/level4/special_text/3.txt b/maze/task1/example/level4/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8dac49084078ad1a5967d88362386b5e6b7c733a --- /dev/null +++ b/maze/task1/example/level4/special_text/3.txt @@ -0,0 +1,4 @@ +##_* +_#__ +_#@# +###_ \ No newline at end of file diff --git a/maze/task1/example/level4/special_text/4.txt b/maze/task1/example/level4/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0c2026c2622f7fc4a61a52aea9f60ebda3d9a66 --- /dev/null +++ b/maze/task1/example/level4/special_text/4.txt @@ -0,0 +1,4 @@ +@_#_ +__*# +#### +#_#_ \ No newline at end of file diff --git a/maze/task1/example/level4/special_text/5.txt b/maze/task1/example/level4/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..16a59b841b19b2f362cad82e677ce6ecb3db9bf4 --- /dev/null +++ b/maze/task1/example/level4/special_text/5.txt @@ -0,0 +1,4 @@ +##_* +##@_ +##_# +__#_ \ No newline at end of file diff --git a/maze/task1/example/level4/special_text/6.txt b/maze/task1/example/level4/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..117efadc1a467c9117b2d5c61ddba110958fcf6f --- /dev/null +++ b/maze/task1/example/level4/special_text/6.txt @@ -0,0 +1,4 @@ +#### +_#__ +_@_* +#_## \ No newline at end of file diff --git a/maze/task1/example/level4/special_text/7.txt b/maze/task1/example/level4/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..bebc1c50dabe76dd6026c31363f1ce2bd0a2e690 --- /dev/null +++ b/maze/task1/example/level4/special_text/7.txt @@ -0,0 +1,4 @@ +*_@# +_##_ +__## +_### \ No newline at end of file diff --git a/maze/task1/example/level4/table/0.txt b/maze/task1/example/level4/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ee639c760ddcec5307479959a474f665055d055 --- /dev/null +++ b/maze/task1/example/level4/table/0.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | * | _ | +| Row 2 | _ | _ | # | # | +| Row 3 | @ | _ | _ | _ | +| Row 4 | # | # | # | # | diff --git a/maze/task1/example/level4/table/1.txt b/maze/task1/example/level4/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e3cf6a2f9330f5b1d56b99b5e7bc80ac1496fb6 --- /dev/null +++ b/maze/task1/example/level4/table/1.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | # | # | # | +| Row 4 | _ | @ | * | # | diff --git a/maze/task1/example/level4/table/2.txt b/maze/task1/example/level4/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..18591b2eda446d0b2c43639a02e8ddfe504ac7e3 --- /dev/null +++ b/maze/task1/example/level4/table/2.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | @ | # | # | +| Row 3 | # | # | * | _ | +| Row 4 | # | _ | # | # | diff --git a/maze/task1/example/level4/table/3.txt b/maze/task1/example/level4/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8413372a0f99d579a046c61bb1a7de4c5bd86c1 --- /dev/null +++ b/maze/task1/example/level4/table/3.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | # | @ | # | +| Row 4 | # | # | # | _ | diff --git a/maze/task1/example/level4/table/4.txt b/maze/task1/example/level4/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f08ae97eaaa2afb5bd61d0183f70f7bae87c82dc --- /dev/null +++ b/maze/task1/example/level4/table/4.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | _ | +| Row 2 | _ | _ | * | # | +| Row 3 | # | # | # | # | +| Row 4 | # | _ | # | _ | diff --git a/maze/task1/example/level4/table/5.txt b/maze/task1/example/level4/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..955c081a20e1b489962f5a55ce7103a657e5abb8 --- /dev/null +++ b/maze/task1/example/level4/table/5.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | * | +| Row 2 | # | # | @ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task1/example/level4/table/6.txt b/maze/task1/example/level4/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d41c7e64ec83974980adb1bb443645d1874228af --- /dev/null +++ b/maze/task1/example/level4/table/6.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | @ | _ | * | +| Row 4 | # | _ | # | # | diff --git a/maze/task1/example/level4/table/7.txt b/maze/task1/example/level4/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d94a9abad416fa1c3f2384598a09d034ad96782 --- /dev/null +++ b/maze/task1/example/level4/table/7.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | @ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | _ | # | # | +| Row 4 | _ | # | # | # | diff --git a/maze/task1/example/level4/text/0.txt b/maze/task1/example/level4/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..803342a0c502704f98863bd46f9d06479af2eff5 --- /dev/null +++ b/maze/task1/example/level4/text/0.txt @@ -0,0 +1,4 @@ +HHGF +FFHH +SFFF +HHHH \ No newline at end of file diff --git a/maze/task1/example/level4/text/1.txt b/maze/task1/example/level4/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..153f125b2777e1ee87f4a8af698da9370255b4f1 --- /dev/null +++ b/maze/task1/example/level4/text/1.txt @@ -0,0 +1,4 @@ +HFHF +FHFF +HHHH +FSGH \ No newline at end of file diff --git a/maze/task1/example/level4/text/2.txt b/maze/task1/example/level4/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..72c9f756c6398841594c5385ff247f6a4e5e4f2c --- /dev/null +++ b/maze/task1/example/level4/text/2.txt @@ -0,0 +1,4 @@ +HFFF +FSHH +HHGF +HFHH \ No newline at end of file diff --git a/maze/task1/example/level4/text/3.txt b/maze/task1/example/level4/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8807c822738ce5c92f8f70fd97ecc4cf28bf9691 --- /dev/null +++ b/maze/task1/example/level4/text/3.txt @@ -0,0 +1,4 @@ +HHFG +FHFF +FHSH +HHHF \ No newline at end of file diff --git a/maze/task1/example/level4/text/4.txt b/maze/task1/example/level4/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f1bf7176861ba916fbd117fc36fb825befaae69 --- /dev/null +++ b/maze/task1/example/level4/text/4.txt @@ -0,0 +1,4 @@ +SFHF +FFGH +HHHH +HFHF \ No newline at end of file diff --git a/maze/task1/example/level4/text/5.txt b/maze/task1/example/level4/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..3be49df3b0cfb9f1c525df0b71f05bcaf3bb4e39 --- /dev/null +++ b/maze/task1/example/level4/text/5.txt @@ -0,0 +1,4 @@ +HHFG +HHSF +HHFH +FFHF \ No newline at end of file diff --git a/maze/task1/example/level4/text/6.txt b/maze/task1/example/level4/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..cffcaf98112d9323d1e0c174b15ae79bdb40bcf3 --- /dev/null +++ b/maze/task1/example/level4/text/6.txt @@ -0,0 +1,4 @@ +HHHH +FHFF +FSFG +HFHH \ No newline at end of file diff --git a/maze/task1/example/level4/text/7.txt b/maze/task1/example/level4/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d57628d2e033f53a4da0e9a03852b4897318ab7 --- /dev/null +++ b/maze/task1/example/level4/text/7.txt @@ -0,0 +1,4 @@ +GFSH +FHHF +FFHH +FHHH \ No newline at end of file diff --git a/maze/task1/example/level5/answer/0.txt b/maze/task1/example/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level5/answer/0.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level5/answer/1.txt b/maze/task1/example/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level5/answer/1.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level5/answer/2.txt b/maze/task1/example/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level5/answer/2.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level5/answer/3.txt b/maze/task1/example/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level5/answer/3.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level5/answer/4.txt b/maze/task1/example/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level5/answer/4.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level5/answer/5.txt b/maze/task1/example/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level5/answer/5.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level5/answer/6.txt b/maze/task1/example/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level5/answer/6.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level5/answer/7.txt b/maze/task1/example/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level5/answer/7.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level5/img/0.png b/maze/task1/example/level5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..69cc2a86097b628b7469f64f28fb3add53e6c3a6 --- /dev/null +++ b/maze/task1/example/level5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea44c9eb3dfcdc3a78c141631722eb0cb8224193acc123230417aa2fec19942 +size 11089 diff --git a/maze/task1/example/level5/img/1.png b/maze/task1/example/level5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4f7fecd6a17bb9e836e4496a95df73b05373ecf8 --- /dev/null +++ b/maze/task1/example/level5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f539d7e7dbc15238c4b7efd6a92633bb1a59783ff68cd92700fab7540fcc573d +size 11097 diff --git a/maze/task1/example/level5/img/2.png b/maze/task1/example/level5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..306bf34dac18a8748b11d0cb8148b50436cca605 --- /dev/null +++ b/maze/task1/example/level5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d07240ca00c7d48e6ad089f7937a1762305b95830c90bde2833ccf0e820d7b60 +size 11200 diff --git a/maze/task1/example/level5/img/3.png b/maze/task1/example/level5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c62d9ee9b9c52f66e72575da36269ca2986814dd --- /dev/null +++ b/maze/task1/example/level5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad83fd9db62391c60021f886c30ca317c2cb788213002b4d91cffeb92669324b +size 11275 diff --git a/maze/task1/example/level5/img/4.png b/maze/task1/example/level5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..456b3d566ed08555f96bd774ed237a1f7470569e --- /dev/null +++ b/maze/task1/example/level5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ef69816b5349213d394be0b5c35e31531d01c169c59bb6b3a2b48b5af563b1 +size 11219 diff --git a/maze/task1/example/level5/img/5.png b/maze/task1/example/level5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..44430c62c7c9d05f4d7fee8fd5e7ffd395dc0b5b --- /dev/null +++ b/maze/task1/example/level5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67640154274ec8823370e8f8e15847a1ff1ccbcd7c896ac112e04dc342d414a9 +size 11330 diff --git a/maze/task1/example/level5/img/6.png b/maze/task1/example/level5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0381900c96b8a5ade5e03e00599e24de58be101a --- /dev/null +++ b/maze/task1/example/level5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4982b4a269893c47de0d5893e15d618a9d1c5ef08c91daab7151536d248c20a0 +size 11159 diff --git a/maze/task1/example/level5/img/7.png b/maze/task1/example/level5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..82d29ba81de961a44e897d00df6d665f9e819643 --- /dev/null +++ b/maze/task1/example/level5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23fec25f0672b67c232d9ecef3aea80544d42160ea51f39fd0833a81ab4defd7 +size 11108 diff --git a/maze/task1/example/level5/pure_text/0.txt b/maze/task1/example/level5/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..21c5d5ee43b8fdfe78c4490c76f64d644f6bb9c1 --- /dev/null +++ b/maze/task1/example/level5/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/example/level5/pure_text/1.txt b/maze/task1/example/level5/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..15f5922bd705a73e4cc7de1ebaf950864b802b0f --- /dev/null +++ b/maze/task1/example/level5/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level5/pure_text/2.txt b/maze/task1/example/level5/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..51f6689a19967fa42ffc19d77cff531fea3b0c18 --- /dev/null +++ b/maze/task1/example/level5/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level5/pure_text/3.txt b/maze/task1/example/level5/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b57aa316d69c840d9a0761005a3aa60e6a85829d --- /dev/null +++ b/maze/task1/example/level5/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/example/level5/pure_text/4.txt b/maze/task1/example/level5/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..27de212819e8c8297734b9998c8c4ddaea480a03 --- /dev/null +++ b/maze/task1/example/level5/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/example/level5/pure_text/5.txt b/maze/task1/example/level5/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..556247a5ead30a13588fc4ccb39431e2da4a1bee --- /dev/null +++ b/maze/task1/example/level5/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/example/level5/pure_text/6.txt b/maze/task1/example/level5/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..3aaed8a66219a97fea8aa17bc8f831fdae178170 --- /dev/null +++ b/maze/task1/example/level5/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/example/level5/pure_text/7.txt b/maze/task1/example/level5/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4157b3c11983eb70dfb195c63e11203a1fe957e9 --- /dev/null +++ b/maze/task1/example/level5/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level5/question/0.txt b/maze/task1/example/level5/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/example/level5/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/example/level5/question/1.txt b/maze/task1/example/level5/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/example/level5/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/example/level5/question/2.txt b/maze/task1/example/level5/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/example/level5/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/example/level5/question/3.txt b/maze/task1/example/level5/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/example/level5/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/example/level5/question/4.txt b/maze/task1/example/level5/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/example/level5/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/example/level5/question/5.txt b/maze/task1/example/level5/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/example/level5/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/example/level5/question/6.txt b/maze/task1/example/level5/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/example/level5/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/example/level5/question/7.txt b/maze/task1/example/level5/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/example/level5/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/example/level5/special_text/0.txt b/maze/task1/example/level5/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..579d5740e69c5015a2f562e1e139f817465cc525 --- /dev/null +++ b/maze/task1/example/level5/special_text/0.txt @@ -0,0 +1,5 @@ +_#__# +###_# +_#_#@ +#__*_ +###_# \ No newline at end of file diff --git a/maze/task1/example/level5/special_text/1.txt b/maze/task1/example/level5/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b91dc64aeeea5d735743914bca81d2b23aed3e0b --- /dev/null +++ b/maze/task1/example/level5/special_text/1.txt @@ -0,0 +1,5 @@ +__#_# +*##__ +_##__ +#_@## +_#### \ No newline at end of file diff --git a/maze/task1/example/level5/special_text/2.txt b/maze/task1/example/level5/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3352d96074e579526d94462a1bb51d6bc0cc513 --- /dev/null +++ b/maze/task1/example/level5/special_text/2.txt @@ -0,0 +1,5 @@ +_###_ +__##_ +#_### +#_@__ +*##_# \ No newline at end of file diff --git a/maze/task1/example/level5/special_text/3.txt b/maze/task1/example/level5/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4c89b220cfa11190266cd74fab78bc8ab38d41b --- /dev/null +++ b/maze/task1/example/level5/special_text/3.txt @@ -0,0 +1,5 @@ +#___# +##_#* +#_#_# +_#@_# +__### \ No newline at end of file diff --git a/maze/task1/example/level5/special_text/4.txt b/maze/task1/example/level5/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..216b6d4230daf75111785a43b783586949e2b639 --- /dev/null +++ b/maze/task1/example/level5/special_text/4.txt @@ -0,0 +1,5 @@ +####_ +__#_# +#_#_# +_@__# +#_##* \ No newline at end of file diff --git a/maze/task1/example/level5/special_text/5.txt b/maze/task1/example/level5/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ce65d28c0dff57880da6844ad6d6aa76a2a2a77 --- /dev/null +++ b/maze/task1/example/level5/special_text/5.txt @@ -0,0 +1,5 @@ +_#@_# +##_#_ +__##_ +#*#_# +_#_## \ No newline at end of file diff --git a/maze/task1/example/level5/special_text/6.txt b/maze/task1/example/level5/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa9cb1a2b317e3947460b42b04b7b0733d4cae84 --- /dev/null +++ b/maze/task1/example/level5/special_text/6.txt @@ -0,0 +1,5 @@ +_*@## +##__# +_#### +#_#__ +__#_# \ No newline at end of file diff --git a/maze/task1/example/level5/special_text/7.txt b/maze/task1/example/level5/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf9cd49503c5e2575e9a976527f39aaaeba6fe3e --- /dev/null +++ b/maze/task1/example/level5/special_text/7.txt @@ -0,0 +1,5 @@ +####_ +#__## +##_## +*#@__ +#____ \ No newline at end of file diff --git a/maze/task1/example/level5/table/0.txt b/maze/task1/example/level5/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..45c254113f2776de08dacaa9c3b690e9420c0606 --- /dev/null +++ b/maze/task1/example/level5/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | # | +| Row 2 | # | # | # | _ | # | +| Row 3 | _ | # | _ | # | @ | +| Row 4 | # | _ | _ | * | _ | +| Row 5 | # | # | # | _ | # | diff --git a/maze/task1/example/level5/table/1.txt b/maze/task1/example/level5/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a085e3c4837790e72a2d56656f03a26b87ae695 --- /dev/null +++ b/maze/task1/example/level5/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | * | # | # | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | @ | # | # | +| Row 5 | _ | # | # | # | # | diff --git a/maze/task1/example/level5/table/2.txt b/maze/task1/example/level5/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b388b715f06cf710d255bb604ebfa7fb0fddce47 --- /dev/null +++ b/maze/task1/example/level5/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | _ | # | # | # | +| Row 4 | # | _ | @ | _ | _ | +| Row 5 | * | # | # | _ | # | diff --git a/maze/task1/example/level5/table/3.txt b/maze/task1/example/level5/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a24beb66236e1c13145c87471921a4dc7c723526 --- /dev/null +++ b/maze/task1/example/level5/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | # | # | _ | # | * | +| Row 3 | # | _ | # | _ | # | +| Row 4 | _ | # | @ | _ | # | +| Row 5 | _ | _ | # | # | # | diff --git a/maze/task1/example/level5/table/4.txt b/maze/task1/example/level5/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3713a67420a9676a604252f0e3b2db0fce74945 --- /dev/null +++ b/maze/task1/example/level5/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | # | _ | # | _ | # | +| Row 4 | _ | @ | _ | _ | # | +| Row 5 | # | _ | # | # | * | diff --git a/maze/task1/example/level5/table/5.txt b/maze/task1/example/level5/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e01edf4144b0e5b922747e9115ef1ed503f970e2 --- /dev/null +++ b/maze/task1/example/level5/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | @ | _ | # | +| Row 2 | # | # | _ | # | _ | +| Row 3 | _ | _ | # | # | _ | +| Row 4 | # | * | # | _ | # | +| Row 5 | _ | # | _ | # | # | diff --git a/maze/task1/example/level5/table/6.txt b/maze/task1/example/level5/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..68400cda5c66e40e11d1d46face148aabcbe0f29 --- /dev/null +++ b/maze/task1/example/level5/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | @ | # | # | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | # | # | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | # | diff --git a/maze/task1/example/level5/table/7.txt b/maze/task1/example/level5/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..295cb5f04bd1c9dd25f44e0fd30e540fd27acc0e --- /dev/null +++ b/maze/task1/example/level5/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | # | _ | +| Row 2 | # | _ | _ | # | # | +| Row 3 | # | # | _ | # | # | +| Row 4 | * | # | @ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task1/example/level5/text/0.txt b/maze/task1/example/level5/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5342b7d277476571ddf4e94b49c508b99dd5aee5 --- /dev/null +++ b/maze/task1/example/level5/text/0.txt @@ -0,0 +1,5 @@ +FHFFH +HHHFH +FHFHS +HFFGF +HHHFH \ No newline at end of file diff --git a/maze/task1/example/level5/text/1.txt b/maze/task1/example/level5/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..df9b850a3f398ae25fbdffb56f0249d947801a6f --- /dev/null +++ b/maze/task1/example/level5/text/1.txt @@ -0,0 +1,5 @@ +FFHFH +GHHFF +FHHFF +HFSHH +FHHHH \ No newline at end of file diff --git a/maze/task1/example/level5/text/2.txt b/maze/task1/example/level5/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..aff5c48518dea8e736154351f83ab0e7c812c221 --- /dev/null +++ b/maze/task1/example/level5/text/2.txt @@ -0,0 +1,5 @@ +FHHHF +FFHHF +HFHHH +HFSFF +GHHFH \ No newline at end of file diff --git a/maze/task1/example/level5/text/3.txt b/maze/task1/example/level5/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..912dc6f013edad9cc7a95843b5acb9d84bac04af --- /dev/null +++ b/maze/task1/example/level5/text/3.txt @@ -0,0 +1,5 @@ +HFFFH +HHFHG +HFHFH +FHSFH +FFHHH \ No newline at end of file diff --git a/maze/task1/example/level5/text/4.txt b/maze/task1/example/level5/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f54a2595fed841bb770e5b0811cdb67638f832e --- /dev/null +++ b/maze/task1/example/level5/text/4.txt @@ -0,0 +1,5 @@ +HHHHF +FFHFH +HFHFH +FSFFH +HFHHG \ No newline at end of file diff --git a/maze/task1/example/level5/text/5.txt b/maze/task1/example/level5/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..01fed56eee3601ba95ca0fedce1a0d93adaf3e7d --- /dev/null +++ b/maze/task1/example/level5/text/5.txt @@ -0,0 +1,5 @@ +FHSFH +HHFHF +FFHHF +HGHFH +FHFHH \ No newline at end of file diff --git a/maze/task1/example/level5/text/6.txt b/maze/task1/example/level5/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2281fe735e352ae9a24714289df5b6c00c96ec4 --- /dev/null +++ b/maze/task1/example/level5/text/6.txt @@ -0,0 +1,5 @@ +FGSHH +HHFFH +FHHHH +HFHFF +FFHFH \ No newline at end of file diff --git a/maze/task1/example/level5/text/7.txt b/maze/task1/example/level5/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f54248c919dc01ad1719beb6fb04fea2897f781 --- /dev/null +++ b/maze/task1/example/level5/text/7.txt @@ -0,0 +1,5 @@ +HHHHF +HFFHH +HHFHH +GHSFF +HFFFF \ No newline at end of file diff --git a/maze/task1/example/level6/answer/0.txt b/maze/task1/example/level6/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level6/answer/0.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level6/answer/1.txt b/maze/task1/example/level6/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level6/answer/1.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level6/answer/2.txt b/maze/task1/example/level6/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level6/answer/2.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level6/answer/3.txt b/maze/task1/example/level6/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level6/answer/3.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level6/answer/4.txt b/maze/task1/example/level6/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level6/answer/4.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level6/answer/5.txt b/maze/task1/example/level6/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level6/answer/5.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level6/answer/6.txt b/maze/task1/example/level6/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level6/answer/6.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level6/answer/7.txt b/maze/task1/example/level6/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level6/answer/7.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level6/img/0.png b/maze/task1/example/level6/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9a0bdb1537fa34bcf640e8749b5185ab07a3dd1f --- /dev/null +++ b/maze/task1/example/level6/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb8f1a92150b056016bf97eff134024c535c3ec62f5133f562d9aaf939041ad8 +size 13846 diff --git a/maze/task1/example/level6/img/1.png b/maze/task1/example/level6/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b7ecc57170f8ea3525e3d434afde05d41cc5d75f --- /dev/null +++ b/maze/task1/example/level6/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5afae8ed726a10c81da5c3f81e5e2e3285207ded91a043456a675dc2afa4a70c +size 14022 diff --git a/maze/task1/example/level6/img/2.png b/maze/task1/example/level6/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b34be700988f0f3f7b25070d904ef08789f38f1e --- /dev/null +++ b/maze/task1/example/level6/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1865b254d724f7a7b2eead0a20fa5a2c31c5e02cadbecd3eeacd2c34733ed8e0 +size 13426 diff --git a/maze/task1/example/level6/img/3.png b/maze/task1/example/level6/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dc96e4e79cb0f482c1470f3949599d594b1fe04a --- /dev/null +++ b/maze/task1/example/level6/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245ab0828f38f64e5cb834761647ec0452e754593a016edb03c6ef7d75e7ac0f +size 13636 diff --git a/maze/task1/example/level6/img/4.png b/maze/task1/example/level6/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2a46b423cfdb964ced1fc09c6d2e17e03daa06f7 --- /dev/null +++ b/maze/task1/example/level6/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e4fa80f42f9adbbd599a98f9b18310e8e65175fa1ebbfa79a50df89da46820 +size 14100 diff --git a/maze/task1/example/level6/img/5.png b/maze/task1/example/level6/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..04514799abdf5b66e94c6d84e602a2b872ff2750 --- /dev/null +++ b/maze/task1/example/level6/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f63e7714324356d31d44adaf6791ac9b7ca6077397f6af53ea91032e1478b9 +size 14005 diff --git a/maze/task1/example/level6/img/6.png b/maze/task1/example/level6/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5dc5fc55b20c73a433442418b264f5e09e7d5938 --- /dev/null +++ b/maze/task1/example/level6/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a07522ffa1002e8598d87aac1304c64bab9b566b4b651a6fc5e7a2cae6c5f4b +size 13782 diff --git a/maze/task1/example/level6/img/7.png b/maze/task1/example/level6/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4917c9969057ca275da35d14c321b17c2f2dbd9c --- /dev/null +++ b/maze/task1/example/level6/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ac3116516428d62ffadd95f5fb994fe11d8d54aa63f55b11efa6d47b53525a +size 13139 diff --git a/maze/task1/example/level6/pure_text/0.txt b/maze/task1/example/level6/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7d4ad749a6a44b979794c8c5cdb849b6bf64eb7 --- /dev/null +++ b/maze/task1/example/level6/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task1/example/level6/pure_text/1.txt b/maze/task1/example/level6/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e34191f8384b763ff17ed7e6143a63ca0a782818 --- /dev/null +++ b/maze/task1/example/level6/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task1/example/level6/pure_text/2.txt b/maze/task1/example/level6/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..a45149ac4717bd63250a97af600bf8a64ba731f2 --- /dev/null +++ b/maze/task1/example/level6/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/example/level6/pure_text/3.txt b/maze/task1/example/level6/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf850fdb4ff0de0a49866ea3a2c1f38d959e1a47 --- /dev/null +++ b/maze/task1/example/level6/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 6; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level6/pure_text/4.txt b/maze/task1/example/level6/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d890c98a7fc6d6a2a75370193a50d05631a579b --- /dev/null +++ b/maze/task1/example/level6/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level6/pure_text/5.txt b/maze/task1/example/level6/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..21d9a315f967fbc5b39b3262d9a3fa7f186ad50a --- /dev/null +++ b/maze/task1/example/level6/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/example/level6/pure_text/6.txt b/maze/task1/example/level6/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..3fe9ed3a01d0758a717c4b7f71b8658c5d1e341a --- /dev/null +++ b/maze/task1/example/level6/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/example/level6/pure_text/7.txt b/maze/task1/example/level6/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..31b289f987c4eb2b817135dbdc35eb5a006f7d8b --- /dev/null +++ b/maze/task1/example/level6/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task1/example/level6/question/0.txt b/maze/task1/example/level6/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/example/level6/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/example/level6/question/1.txt b/maze/task1/example/level6/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4cf4f87f8bc39eb8469193b431d1f19d3a11b2c --- /dev/null +++ b/maze/task1/example/level6/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 6? \ No newline at end of file diff --git a/maze/task1/example/level6/question/2.txt b/maze/task1/example/level6/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a5a36b3619d5b51fb41a9ee26acfb51a369406 --- /dev/null +++ b/maze/task1/example/level6/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 3? \ No newline at end of file diff --git a/maze/task1/example/level6/question/3.txt b/maze/task1/example/level6/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/example/level6/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/example/level6/question/4.txt b/maze/task1/example/level6/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ebfbfdb38e2b5c36bde6d0d9786d921ea3b55fa --- /dev/null +++ b/maze/task1/example/level6/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 1? \ No newline at end of file diff --git a/maze/task1/example/level6/question/5.txt b/maze/task1/example/level6/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e133c21dab2158efbba6d6cbe7fbae5b82d7e8cb --- /dev/null +++ b/maze/task1/example/level6/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 6? \ No newline at end of file diff --git a/maze/task1/example/level6/question/6.txt b/maze/task1/example/level6/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/example/level6/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/example/level6/question/7.txt b/maze/task1/example/level6/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/example/level6/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/example/level6/special_text/0.txt b/maze/task1/example/level6/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..355cc9a189bf7933c8765566d224f51c25e1bbbe --- /dev/null +++ b/maze/task1/example/level6/special_text/0.txt @@ -0,0 +1,6 @@ +#_#_## +__##_# +_#_### +##___* +#_____ +##@#_# \ No newline at end of file diff --git a/maze/task1/example/level6/special_text/1.txt b/maze/task1/example/level6/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7e5ad1447c5398e3080ae1a49b53940fc2d69a9 --- /dev/null +++ b/maze/task1/example/level6/special_text/1.txt @@ -0,0 +1,6 @@ +____## +#@_##_ +##_##_ +##_### +_#____ +##_*_# \ No newline at end of file diff --git a/maze/task1/example/level6/special_text/2.txt b/maze/task1/example/level6/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fcc031db3db3a83b55ac9a49d18542ee1098adc --- /dev/null +++ b/maze/task1/example/level6/special_text/2.txt @@ -0,0 +1,6 @@ +_@##__ +##__## +____#_ +###### +#__*_# +___### \ No newline at end of file diff --git a/maze/task1/example/level6/special_text/3.txt b/maze/task1/example/level6/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cb6efd7a1b817dc132c3059f2490a5cf7de7c7b --- /dev/null +++ b/maze/task1/example/level6/special_text/3.txt @@ -0,0 +1,6 @@ +#_*_#_ +###### +#_#@_# +___#_# +#___## +_#___# \ No newline at end of file diff --git a/maze/task1/example/level6/special_text/4.txt b/maze/task1/example/level6/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..83fcbf3faa3747e87ad28d9694aea431f07ae31f --- /dev/null +++ b/maze/task1/example/level6/special_text/4.txt @@ -0,0 +1,6 @@ +##_##_ +__*#_# +_##__# +_##__# +#_@##_ +__###_ \ No newline at end of file diff --git a/maze/task1/example/level6/special_text/5.txt b/maze/task1/example/level6/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f601345425c8a1a708e432065d0ece7e7cd516da --- /dev/null +++ b/maze/task1/example/level6/special_text/5.txt @@ -0,0 +1,6 @@ +_#___# +___##_ +####_@ +_*__## +###_#_ +###_#_ \ No newline at end of file diff --git a/maze/task1/example/level6/special_text/6.txt b/maze/task1/example/level6/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a65d85c15096cf0cfd4febe8d505372168fad0ea --- /dev/null +++ b/maze/task1/example/level6/special_text/6.txt @@ -0,0 +1,6 @@ +_##__# +_#__## +#####_ +#_#*#_ +#_____ +###__@ \ No newline at end of file diff --git a/maze/task1/example/level6/special_text/7.txt b/maze/task1/example/level6/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4fc785d1de8c7b67e4a5e2657f271267ae8b0e1 --- /dev/null +++ b/maze/task1/example/level6/special_text/7.txt @@ -0,0 +1,6 @@ +____*_ +##_#_# +#_@#_# +##_### +##__#_ +#__##_ \ No newline at end of file diff --git a/maze/task1/example/level6/table/0.txt b/maze/task1/example/level6/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..17bd0ff2dd4ff35014afdb2efba281159907c84d --- /dev/null +++ b/maze/task1/example/level6/table/0.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | # | # | +| Row 2 | _ | _ | # | # | _ | # | +| Row 3 | _ | # | _ | # | # | # | +| Row 4 | # | # | _ | _ | _ | * | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | # | @ | # | _ | # | diff --git a/maze/task1/example/level6/table/1.txt b/maze/task1/example/level6/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d867ca599787a59b4a8eb520de242c647aca8bc8 --- /dev/null +++ b/maze/task1/example/level6/table/1.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | # | @ | _ | # | # | _ | +| Row 3 | # | # | _ | # | # | _ | +| Row 4 | # | # | _ | # | # | # | +| Row 5 | _ | # | _ | _ | _ | _ | +| Row 6 | # | # | _ | * | _ | # | diff --git a/maze/task1/example/level6/table/2.txt b/maze/task1/example/level6/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cec0925a1589297fdd7b4196546f7adc71a4dfa --- /dev/null +++ b/maze/task1/example/level6/table/2.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | # | # | _ | _ | +| Row 2 | # | # | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | # | # | # | # | # | # | +| Row 5 | # | _ | _ | * | _ | # | +| Row 6 | _ | _ | _ | # | # | # | diff --git a/maze/task1/example/level6/table/3.txt b/maze/task1/example/level6/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e77e25f4856e3b64ff440212a46e056733b7c782 --- /dev/null +++ b/maze/task1/example/level6/table/3.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | # | _ | +| Row 2 | # | # | # | # | # | # | +| Row 3 | # | _ | # | @ | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | _ | _ | # | diff --git a/maze/task1/example/level6/table/4.txt b/maze/task1/example/level6/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fed1ff9489d952682f6a0befac7ca752983b46d --- /dev/null +++ b/maze/task1/example/level6/table/4.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | # | # | _ | +| Row 2 | _ | _ | * | # | _ | # | +| Row 3 | _ | # | # | _ | _ | # | +| Row 4 | _ | # | # | _ | _ | # | +| Row 5 | # | _ | @ | # | # | _ | +| Row 6 | _ | _ | # | # | # | _ | diff --git a/maze/task1/example/level6/table/5.txt b/maze/task1/example/level6/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d184ad97f5c2c3e5c5f3ee377ea93bb3fcdb1d6 --- /dev/null +++ b/maze/task1/example/level6/table/5.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | +| Row 3 | # | # | # | # | _ | @ | +| Row 4 | _ | * | _ | _ | # | # | +| Row 5 | # | # | # | _ | # | _ | +| Row 6 | # | # | # | _ | # | _ | diff --git a/maze/task1/example/level6/table/6.txt b/maze/task1/example/level6/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d53b463bbd7caf8cbe3b09cfdcccf1e02a8f0fc5 --- /dev/null +++ b/maze/task1/example/level6/table/6.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | _ | # | +| Row 2 | _ | # | _ | _ | # | # | +| Row 3 | # | # | # | # | # | _ | +| Row 4 | # | _ | # | * | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | # | # | _ | _ | @ | diff --git a/maze/task1/example/level6/table/7.txt b/maze/task1/example/level6/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..13de3d8082a8db5ab9d592004246dbb6c78ef098 --- /dev/null +++ b/maze/task1/example/level6/table/7.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | * | _ | +| Row 2 | # | # | _ | # | _ | # | +| Row 3 | # | _ | @ | # | _ | # | +| Row 4 | # | # | _ | # | # | # | +| Row 5 | # | # | _ | _ | # | _ | +| Row 6 | # | _ | _ | # | # | _ | diff --git a/maze/task1/example/level6/text/0.txt b/maze/task1/example/level6/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..002c4808d7152123a5ab62fe989a52e35b1c04cd --- /dev/null +++ b/maze/task1/example/level6/text/0.txt @@ -0,0 +1,6 @@ +HFHFHH +FFHHFH +FHFHHH +HHFFFG +HFFFFF +HHSHFH \ No newline at end of file diff --git a/maze/task1/example/level6/text/1.txt b/maze/task1/example/level6/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..884583c2ba6c011159c8c8ce9d2d4c333c0ce690 --- /dev/null +++ b/maze/task1/example/level6/text/1.txt @@ -0,0 +1,6 @@ +FFFFHH +HSFHHF +HHFHHF +HHFHHH +FHFFFF +HHFGFH \ No newline at end of file diff --git a/maze/task1/example/level6/text/2.txt b/maze/task1/example/level6/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d622c8eedbfb2c95cb398062527d30d013b5d5b --- /dev/null +++ b/maze/task1/example/level6/text/2.txt @@ -0,0 +1,6 @@ +FSHHFF +HHFFHH +FFFFHF +HHHHHH +HFFGFH +FFFHHH \ No newline at end of file diff --git a/maze/task1/example/level6/text/3.txt b/maze/task1/example/level6/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d673af4f2668c589acf7f332bb203ad875b6a8 --- /dev/null +++ b/maze/task1/example/level6/text/3.txt @@ -0,0 +1,6 @@ +HFGFHF +HHHHHH +HFHSFH +FFFHFH +HFFFHH +FHFFFH \ No newline at end of file diff --git a/maze/task1/example/level6/text/4.txt b/maze/task1/example/level6/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..aecd8986562bcb219196fc70d5585430888d495a --- /dev/null +++ b/maze/task1/example/level6/text/4.txt @@ -0,0 +1,6 @@ +HHFHHF +FFGHFH +FHHFFH +FHHFFH +HFSHHF +FFHHHF \ No newline at end of file diff --git a/maze/task1/example/level6/text/5.txt b/maze/task1/example/level6/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8342aa5ca83b9c09f563c569374f431c3aa5df42 --- /dev/null +++ b/maze/task1/example/level6/text/5.txt @@ -0,0 +1,6 @@ +FHFFFH +FFFHHF +HHHHFS +FGFFHH +HHHFHF +HHHFHF \ No newline at end of file diff --git a/maze/task1/example/level6/text/6.txt b/maze/task1/example/level6/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffcc2e5ed118e145fc88f76d92e42f558dc141c7 --- /dev/null +++ b/maze/task1/example/level6/text/6.txt @@ -0,0 +1,6 @@ +FHHFFH +FHFFHH +HHHHHF +HFHGHF +HFFFFF +HHHFFS \ No newline at end of file diff --git a/maze/task1/example/level6/text/7.txt b/maze/task1/example/level6/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fcd2f5b66b9565380417b47e0d41471e915c16c --- /dev/null +++ b/maze/task1/example/level6/text/7.txt @@ -0,0 +1,6 @@ +FFFFGF +HHFHFH +HFSHFH +HHFHHH +HHFFHF +HFFHHF \ No newline at end of file diff --git a/maze/task1/example/level7/answer/0.txt b/maze/task1/example/level7/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level7/answer/0.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level7/answer/1.txt b/maze/task1/example/level7/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level7/answer/1.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level7/answer/2.txt b/maze/task1/example/level7/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level7/answer/2.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level7/answer/3.txt b/maze/task1/example/level7/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level7/answer/3.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level7/answer/4.txt b/maze/task1/example/level7/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level7/answer/4.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level7/answer/5.txt b/maze/task1/example/level7/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level7/answer/5.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level7/answer/6.txt b/maze/task1/example/level7/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level7/answer/6.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level7/answer/7.txt b/maze/task1/example/level7/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level7/answer/7.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level7/img/0.png b/maze/task1/example/level7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..79a01df2e1dba2444d17024df9b9679156858315 --- /dev/null +++ b/maze/task1/example/level7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f860ddf33314b6ad53c22239149193830155d71293e02736a7cd2f72d6e76c0 +size 16529 diff --git a/maze/task1/example/level7/img/1.png b/maze/task1/example/level7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c633dc2980f483ed720852bba207fb7eaaefabe2 --- /dev/null +++ b/maze/task1/example/level7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3b3cd3492fc63f49ecb0a73af610f6e77f39e3e17ac298c32813acf426b361 +size 16672 diff --git a/maze/task1/example/level7/img/2.png b/maze/task1/example/level7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8d31709eaea1f901e39ba7cc35cf11ab6ae750c9 --- /dev/null +++ b/maze/task1/example/level7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31c6f5c8d0392c0d520cee575fda343cb52dd3184e887c098cb50f26406773d +size 16615 diff --git a/maze/task1/example/level7/img/3.png b/maze/task1/example/level7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..eee61c724a3d915ff983af7bc0b46e1e0833f806 --- /dev/null +++ b/maze/task1/example/level7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dfc351afadae8779824c2c2a15bc1c610cda4dd0e8e833d5947ecfe7b8a3df2 +size 16821 diff --git a/maze/task1/example/level7/img/4.png b/maze/task1/example/level7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0ab2c711b70f866b8e3fe526c2fb966cee1dde98 --- /dev/null +++ b/maze/task1/example/level7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dff1b1bbd5f8c8e533aed865291000a153b246e79e7a5badd14163418f8564 +size 15737 diff --git a/maze/task1/example/level7/img/5.png b/maze/task1/example/level7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..127760492136e6fecfb7c858a3bad890bf57d507 --- /dev/null +++ b/maze/task1/example/level7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:690f6681cc46605a4db0a367aa63809beb94a4d1e51c41eb2a035ff24608918b +size 16844 diff --git a/maze/task1/example/level7/img/6.png b/maze/task1/example/level7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..32b3b66cefdf726c869184d4c3b63ad73bd0e968 --- /dev/null +++ b/maze/task1/example/level7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a6e523385cf40a785619601983b7d1279a2f167c631e42dbb65d533c52b3286 +size 16865 diff --git a/maze/task1/example/level7/img/7.png b/maze/task1/example/level7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0d737b402e41b90a2176c5d13946eeee5ae0eb4a --- /dev/null +++ b/maze/task1/example/level7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e94874e8693ca98661041417bb0516fe511e106fac8d4867ab9d5291223510d +size 16686 diff --git a/maze/task1/example/level7/pure_text/0.txt b/maze/task1/example/level7/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e723ea19f14fee12a5d16586614a2da70cffa08 --- /dev/null +++ b/maze/task1/example/level7/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task1/example/level7/pure_text/1.txt b/maze/task1/example/level7/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..74004083ac043cf254890b98824068485653830d --- /dev/null +++ b/maze/task1/example/level7/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 4; Row 6, Column 6; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level7/pure_text/2.txt b/maze/task1/example/level7/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecd333c1edc135616b5fc16b2d4c69b1c884d63e --- /dev/null +++ b/maze/task1/example/level7/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 7; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/example/level7/pure_text/3.txt b/maze/task1/example/level7/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f651e14676c50b80a89e7d016c033fe4b13ea2b --- /dev/null +++ b/maze/task1/example/level7/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 5, Column 3; Row 5, Column 4; Row 6, Column 1; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level7/pure_text/4.txt b/maze/task1/example/level7/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e620c2f8da04e18a2a595f90599bcff64b432ec --- /dev/null +++ b/maze/task1/example/level7/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level7/pure_text/5.txt b/maze/task1/example/level7/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fcf3dfd336b3ab70236f94af921dd013b57949a --- /dev/null +++ b/maze/task1/example/level7/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 5; Row 3, Column 3; Row 3, Column 4; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 6; Row 5, Column 7; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 1; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task1/example/level7/pure_text/6.txt b/maze/task1/example/level7/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..14a34127de7c42d0c0308b0f15a32674e0f51ed6 --- /dev/null +++ b/maze/task1/example/level7/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 2, Column 7; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 7; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 2; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task1/example/level7/pure_text/7.txt b/maze/task1/example/level7/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9b2af6bbfab7de4b9db881e2cff89ee4ddd093b --- /dev/null +++ b/maze/task1/example/level7/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level7/question/0.txt b/maze/task1/example/level7/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e9fa45cfd3a3aba90c9e364d5c893262b836a5f --- /dev/null +++ b/maze/task1/example/level7/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 1? \ No newline at end of file diff --git a/maze/task1/example/level7/question/1.txt b/maze/task1/example/level7/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/example/level7/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/example/level7/question/2.txt b/maze/task1/example/level7/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e436e3f18b95db221dc2583f87d74d4613830c5 --- /dev/null +++ b/maze/task1/example/level7/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 6? \ No newline at end of file diff --git a/maze/task1/example/level7/question/3.txt b/maze/task1/example/level7/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b67fd756fa02b150e0516d1e29a08097f051cf0 --- /dev/null +++ b/maze/task1/example/level7/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 3? \ No newline at end of file diff --git a/maze/task1/example/level7/question/4.txt b/maze/task1/example/level7/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/example/level7/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/example/level7/question/5.txt b/maze/task1/example/level7/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/example/level7/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/example/level7/question/6.txt b/maze/task1/example/level7/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e97ad2f10d80069f226ce7476c70a0fdfae4391 --- /dev/null +++ b/maze/task1/example/level7/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 3? \ No newline at end of file diff --git a/maze/task1/example/level7/question/7.txt b/maze/task1/example/level7/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/example/level7/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/example/level7/special_text/0.txt b/maze/task1/example/level7/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..977c47985714b2f396fddc775b71863e3a8b7b9d --- /dev/null +++ b/maze/task1/example/level7/special_text/0.txt @@ -0,0 +1,7 @@ +_#_#@#_ +___#_## +#####_# +_#_###* +_#####_ +___##__ +___#_#_ \ No newline at end of file diff --git a/maze/task1/example/level7/special_text/1.txt b/maze/task1/example/level7/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e31c58e97e4481a38678a49feb2d47a1c7a8da6 --- /dev/null +++ b/maze/task1/example/level7/special_text/1.txt @@ -0,0 +1,7 @@ +#__###_ +_#___## +__#_### +_##_#__ +#####_# +___#_#@ +*__##_# \ No newline at end of file diff --git a/maze/task1/example/level7/special_text/2.txt b/maze/task1/example/level7/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..3de309aaf3dbed755b2a06a63774a47893995581 --- /dev/null +++ b/maze/task1/example/level7/special_text/2.txt @@ -0,0 +1,7 @@ +#_#___# +__###_# +_#____# +__##_## +####*_@ +######_ +__#__#_ \ No newline at end of file diff --git a/maze/task1/example/level7/special_text/3.txt b/maze/task1/example/level7/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..15392e54dc3881f091980fdde7faf2637476f6c7 --- /dev/null +++ b/maze/task1/example/level7/special_text/3.txt @@ -0,0 +1,7 @@ +_#*#### +_##_#_# +##_##__ +_#__##_ +__##___ +#__@#_# +###__#_ \ No newline at end of file diff --git a/maze/task1/example/level7/special_text/4.txt b/maze/task1/example/level7/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dea4fad3e0aa63295b5e96f54504b60c580e50b --- /dev/null +++ b/maze/task1/example/level7/special_text/4.txt @@ -0,0 +1,7 @@ +*#####_ +#_##___ +####___ +###___# +###__#_ +_#####_ +___@___ \ No newline at end of file diff --git a/maze/task1/example/level7/special_text/5.txt b/maze/task1/example/level7/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b764d40c69b96861893967a7199010b6a14c703 --- /dev/null +++ b/maze/task1/example/level7/special_text/5.txt @@ -0,0 +1,7 @@ +#__##_# +_#__#__ +@_##_*# +_##_### +_#___## +__####_ +#__###_ \ No newline at end of file diff --git a/maze/task1/example/level7/special_text/6.txt b/maze/task1/example/level7/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..61e92f8da24ded0876a094809270856ead04ffda --- /dev/null +++ b/maze/task1/example/level7/special_text/6.txt @@ -0,0 +1,7 @@ +_##__#_ +_#_#@_# +__#_### +###__#_ +#_#_#_# +*_###_# +_#__#_# \ No newline at end of file diff --git a/maze/task1/example/level7/special_text/7.txt b/maze/task1/example/level7/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffac4f0ddf1cc13a1df296554cbeb85eaf0f5327 --- /dev/null +++ b/maze/task1/example/level7/special_text/7.txt @@ -0,0 +1,7 @@ +##_#### +____### +____##_ +#_####_ +_#*____ +_##__## +#__##@# \ No newline at end of file diff --git a/maze/task1/example/level7/table/0.txt b/maze/task1/example/level7/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..fce934d0e4c4d396a067975d6d7e4f13bd67057d --- /dev/null +++ b/maze/task1/example/level7/table/0.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | @ | # | _ | +| Row 2 | _ | _ | _ | # | _ | # | # | +| Row 3 | # | # | # | # | # | _ | # | +| Row 4 | _ | # | _ | # | # | # | * | +| Row 5 | _ | # | # | # | # | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | # | _ | diff --git a/maze/task1/example/level7/table/1.txt b/maze/task1/example/level7/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..58e5b12cbc2f268c10188a2cfd5611e86a61339f --- /dev/null +++ b/maze/task1/example/level7/table/1.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | _ | # | # | # | +| Row 4 | _ | # | # | _ | # | _ | _ | +| Row 5 | # | # | # | # | # | _ | # | +| Row 6 | _ | _ | _ | # | _ | # | @ | +| Row 7 | * | _ | _ | # | # | _ | # | diff --git a/maze/task1/example/level7/table/2.txt b/maze/task1/example/level7/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..923e93abef6095a46968da609c5aad19d635b9e6 --- /dev/null +++ b/maze/task1/example/level7/table/2.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | # | # | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | # | # | +| Row 5 | # | # | # | # | * | _ | @ | +| Row 6 | # | # | # | # | # | # | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task1/example/level7/table/3.txt b/maze/task1/example/level7/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b58ab51ce0e8d92a34af40e7f8e3655db0fa37d --- /dev/null +++ b/maze/task1/example/level7/table/3.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | * | # | # | # | # | +| Row 2 | _ | # | # | _ | # | _ | # | +| Row 3 | # | # | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | # | # | _ | +| Row 5 | _ | _ | # | # | _ | _ | _ | +| Row 6 | # | _ | _ | @ | # | _ | # | +| Row 7 | # | # | # | _ | _ | # | _ | diff --git a/maze/task1/example/level7/table/4.txt b/maze/task1/example/level7/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..19525042beef1f0c431ee0e85243bedf46f72f63 --- /dev/null +++ b/maze/task1/example/level7/table/4.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | # | # | # | # | # | _ | +| Row 2 | # | _ | # | # | _ | _ | _ | +| Row 3 | # | # | # | # | _ | _ | _ | +| Row 4 | # | # | # | _ | _ | _ | # | +| Row 5 | # | # | # | _ | _ | # | _ | +| Row 6 | _ | # | # | # | # | # | _ | +| Row 7 | _ | _ | _ | @ | _ | _ | _ | diff --git a/maze/task1/example/level7/table/5.txt b/maze/task1/example/level7/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b6afedd16a72ae67660d4e845aa7137dc4ae7ca --- /dev/null +++ b/maze/task1/example/level7/table/5.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | # | _ | # | +| Row 2 | _ | # | _ | _ | # | _ | _ | +| Row 3 | @ | _ | # | # | _ | * | # | +| Row 4 | _ | # | # | _ | # | # | # | +| Row 5 | _ | # | _ | _ | _ | # | # | +| Row 6 | _ | _ | # | # | # | # | _ | +| Row 7 | # | _ | _ | # | # | # | _ | diff --git a/maze/task1/example/level7/table/6.txt b/maze/task1/example/level7/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..70f9874655089abc15bb86052e2593ecf49fedc7 --- /dev/null +++ b/maze/task1/example/level7/table/6.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | _ | _ | # | _ | +| Row 2 | _ | # | _ | # | @ | _ | # | +| Row 3 | _ | _ | # | _ | # | # | # | +| Row 4 | # | # | # | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | # | _ | # | +| Row 6 | * | _ | # | # | # | _ | # | +| Row 7 | _ | # | _ | _ | # | _ | # | diff --git a/maze/task1/example/level7/table/7.txt b/maze/task1/example/level7/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc8889341960c06372ad55fc97115feac70b7170 --- /dev/null +++ b/maze/task1/example/level7/table/7.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | # | # | +| Row 2 | _ | _ | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | # | # | # | _ | +| Row 5 | _ | # | * | _ | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | # | # | +| Row 7 | # | _ | _ | # | # | @ | # | diff --git a/maze/task1/example/level7/text/0.txt b/maze/task1/example/level7/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..4114dc151b2de40fd3509842af1f6a3995a052a8 --- /dev/null +++ b/maze/task1/example/level7/text/0.txt @@ -0,0 +1,7 @@ +FHFHSHF +FFFHFHH +HHHHHFH +FHFHHHG +FHHHHHF +FFFHHFF +FFFHFHF \ No newline at end of file diff --git a/maze/task1/example/level7/text/1.txt b/maze/task1/example/level7/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..293ad7f01749f1e3c82042da47358aa4f8585c7f --- /dev/null +++ b/maze/task1/example/level7/text/1.txt @@ -0,0 +1,7 @@ +HFFHHHF +FHFFFHH +FFHFHHH +FHHFHFF +HHHHHFH +FFFHFHS +GFFHHFH \ No newline at end of file diff --git a/maze/task1/example/level7/text/2.txt b/maze/task1/example/level7/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9b47659198632f7de787ec779c4158a00a44e66 --- /dev/null +++ b/maze/task1/example/level7/text/2.txt @@ -0,0 +1,7 @@ +HFHFFFH +FFHHHFH +FHFFFFH +FFHHFHH +HHHHGFS +HHHHHHF +FFHFFHF \ No newline at end of file diff --git a/maze/task1/example/level7/text/3.txt b/maze/task1/example/level7/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e02bcb0402595851d7a02746fb832215fab4e45a --- /dev/null +++ b/maze/task1/example/level7/text/3.txt @@ -0,0 +1,7 @@ +FHGHHHH +FHHFHFH +HHFHHFF +FHFFHHF +FFHHFFF +HFFSHFH +HHHFFHF \ No newline at end of file diff --git a/maze/task1/example/level7/text/4.txt b/maze/task1/example/level7/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3afdf0fc7d31586b12ed180fd62b2f925cad1862 --- /dev/null +++ b/maze/task1/example/level7/text/4.txt @@ -0,0 +1,7 @@ +GHHHHHF +HFHHFFF +HHHHFFF +HHHFFFH +HHHFFHF +FHHHHHF +FFFSFFF \ No newline at end of file diff --git a/maze/task1/example/level7/text/5.txt b/maze/task1/example/level7/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..953eee4d73a2ef43cc23c1873440c904bb4fb69a --- /dev/null +++ b/maze/task1/example/level7/text/5.txt @@ -0,0 +1,7 @@ +HFFHHFH +FHFFHFF +SFHHFGH +FHHFHHH +FHFFFHH +FFHHHHF +HFFHHHF \ No newline at end of file diff --git a/maze/task1/example/level7/text/6.txt b/maze/task1/example/level7/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d0fe952137262a1b066a56d6d6bbfbe152ac12f --- /dev/null +++ b/maze/task1/example/level7/text/6.txt @@ -0,0 +1,7 @@ +FHHFFHF +FHFHSFH +FFHFHHH +HHHFFHF +HFHFHFH +GFHHHFH +FHFFHFH \ No newline at end of file diff --git a/maze/task1/example/level7/text/7.txt b/maze/task1/example/level7/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..a70747b4b8f47b5ea6d69764078bd32d4453c684 --- /dev/null +++ b/maze/task1/example/level7/text/7.txt @@ -0,0 +1,7 @@ +HHFHHHH +FFFFHHH +FFFFHHF +HFHHHHF +FHGFFFF +FHHFFHH +HFFHHSH \ No newline at end of file diff --git a/maze/task1/example/level8/answer/0.txt b/maze/task1/example/level8/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level8/answer/0.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level8/answer/1.txt b/maze/task1/example/level8/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level8/answer/1.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level8/answer/2.txt b/maze/task1/example/level8/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level8/answer/2.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level8/answer/3.txt b/maze/task1/example/level8/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level8/answer/3.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level8/answer/4.txt b/maze/task1/example/level8/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level8/answer/4.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level8/answer/5.txt b/maze/task1/example/level8/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level8/answer/5.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level8/answer/6.txt b/maze/task1/example/level8/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d1ad74d2d179a9acee76287b25dabcec759695 --- /dev/null +++ b/maze/task1/example/level8/answer/6.txt @@ -0,0 +1 @@ + Yes \ No newline at end of file diff --git a/maze/task1/example/level8/answer/7.txt b/maze/task1/example/level8/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e02ede33505ff34d54945a16f0e19daebd83aa --- /dev/null +++ b/maze/task1/example/level8/answer/7.txt @@ -0,0 +1 @@ + No \ No newline at end of file diff --git a/maze/task1/example/level8/img/0.png b/maze/task1/example/level8/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9c48ea5aed9741daea679d15ba5d85e491f36c6f --- /dev/null +++ b/maze/task1/example/level8/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788bdc2b80044372f77744703f72e8b39df54c365098e4411c1ae3fa534dcc28 +size 20102 diff --git a/maze/task1/example/level8/img/1.png b/maze/task1/example/level8/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..beb869947d8aa5fd2eb77f269df9f9e096f8e106 --- /dev/null +++ b/maze/task1/example/level8/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0142796bb0cc134ff93d472165fb83abccac2679e7447fa44ad7493787f2f95 +size 19948 diff --git a/maze/task1/example/level8/img/2.png b/maze/task1/example/level8/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..40251af5cc656862456dc0d1453f8827e30dafab --- /dev/null +++ b/maze/task1/example/level8/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145e26bf6d04282d8994501a7c1226d0b9cb2c114dcce191cb81bf3024d68193 +size 19722 diff --git a/maze/task1/example/level8/img/3.png b/maze/task1/example/level8/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f16e0fc1028e8652496b5214ec779d45e1a1896b --- /dev/null +++ b/maze/task1/example/level8/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee332032380e234e385cc7e88eef6e6dbbc3c1656b2b5191f2b6e57ffbe7c74 +size 19710 diff --git a/maze/task1/example/level8/img/4.png b/maze/task1/example/level8/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..eff4128ef7f7e387b21f0f0a261e48a3d2d990f2 --- /dev/null +++ b/maze/task1/example/level8/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494d7d4df2b7760d48c5f652b6cf3065a6f4862a90904dbb079a8a42b7fd63d3 +size 19689 diff --git a/maze/task1/example/level8/img/5.png b/maze/task1/example/level8/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..12463b4959b6fcff769a72e94c36e663f0a85cc9 --- /dev/null +++ b/maze/task1/example/level8/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e06ef84ff886f42e008bab40d42652ec3cb07e99274a60dff8a4b909ed310a3 +size 19959 diff --git a/maze/task1/example/level8/img/6.png b/maze/task1/example/level8/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..69ec1403a742ef3e891115bf3f8e0da1a5bd99da --- /dev/null +++ b/maze/task1/example/level8/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8d0304d231306da4710e005d806abf7d6d52a6b2c920dffc0b95a3159e6167 +size 18803 diff --git a/maze/task1/example/level8/img/7.png b/maze/task1/example/level8/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..31199aebf70787454dbe56d89969ce9d896f115b --- /dev/null +++ b/maze/task1/example/level8/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396f49220e23bfcb05d40dc8c249e446a09540ae62379f6fd3bbca7176f6c504 +size 19858 diff --git a/maze/task1/example/level8/pure_text/0.txt b/maze/task1/example/level8/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..058424d778eb7a9bad1da36815d8946945945a4b --- /dev/null +++ b/maze/task1/example/level8/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 7; Row 1, Column 8; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 8; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 3, Column 8; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 7; Row 5, Column 8; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 4; Row 7, Column 7; Row 7, Column 8; Row 8, Column 4; Row 8, Column 5; Row 8, Column 7; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task1/example/level8/pure_text/1.txt b/maze/task1/example/level8/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b26f6ec5a0a96494e57660690fb7f6b542564d1c --- /dev/null +++ b/maze/task1/example/level8/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 1, Column 8; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 3; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 7, Column 2; Row 7, Column 3; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/example/level8/pure_text/2.txt b/maze/task1/example/level8/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7e6d578e8e408a8387e1a655b69b3eee679ed78 --- /dev/null +++ b/maze/task1/example/level8/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 7; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 3; Row 3, Column 4; Row 3, Column 8; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 5; Row 7, Column 7; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/example/level8/pure_text/3.txt b/maze/task1/example/level8/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eea23598566372281ea6ff3e15f3d00651a4ea7 --- /dev/null +++ b/maze/task1/example/level8/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 8; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 6; Row 8, Column 1; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/example/level8/pure_text/4.txt b/maze/task1/example/level8/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bbb956d471203f5aac712c633ff1b31144049aa --- /dev/null +++ b/maze/task1/example/level8/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 6, Column 3; Row 6, Column 8; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 8; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task1/example/level8/pure_text/5.txt b/maze/task1/example/level8/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..76e5f2214cb5b0817c1e01b5e90130d37ee198ea --- /dev/null +++ b/maze/task1/example/level8/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 7; Row 3, Column 3; Row 3, Column 4; Row 3, Column 8; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 2, Column 8. \ No newline at end of file diff --git a/maze/task1/example/level8/pure_text/6.txt b/maze/task1/example/level8/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..50755807917b346093b0ef20964d2c89382d150d --- /dev/null +++ b/maze/task1/example/level8/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 5, Column 8; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 8, Column 5. \ No newline at end of file diff --git a/maze/task1/example/level8/pure_text/7.txt b/maze/task1/example/level8/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb703a65e4e164eb7a8e5dfd423cfe1206ca649e --- /dev/null +++ b/maze/task1/example/level8/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 8; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 6; Row 1, Column 8; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 2, Column 8; Row 3, Column 1; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; Row 8, Column 2; Row 8, Column 4; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/example/level8/question/0.txt b/maze/task1/example/level8/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/example/level8/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/example/level8/question/1.txt b/maze/task1/example/level8/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/example/level8/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/example/level8/question/2.txt b/maze/task1/example/level8/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..379b226a9c554ce299cef43ae60a8ad1c5c6fdf7 --- /dev/null +++ b/maze/task1/example/level8/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 7? \ No newline at end of file diff --git a/maze/task1/example/level8/question/3.txt b/maze/task1/example/level8/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/example/level8/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/example/level8/question/4.txt b/maze/task1/example/level8/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ebfbfdb38e2b5c36bde6d0d9786d921ea3b55fa --- /dev/null +++ b/maze/task1/example/level8/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 1? \ No newline at end of file diff --git a/maze/task1/example/level8/question/5.txt b/maze/task1/example/level8/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/example/level8/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/example/level8/question/6.txt b/maze/task1/example/level8/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..df501fedfd36d0e931750c80355b4f94da3839d3 --- /dev/null +++ b/maze/task1/example/level8/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 7? \ No newline at end of file diff --git a/maze/task1/example/level8/question/7.txt b/maze/task1/example/level8/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/example/level8/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/example/level8/special_text/0.txt b/maze/task1/example/level8/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..05b6fc82480c837dc2d5145b8336be91433158d7 --- /dev/null +++ b/maze/task1/example/level8/special_text/0.txt @@ -0,0 +1,8 @@ +__#___## +__###__# +###_#__# +_#_##*_# +##_#__## +_@##__## +#__#__## +___##_#_ \ No newline at end of file diff --git a/maze/task1/example/level8/special_text/1.txt b/maze/task1/example/level8/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..081df70cc54900c9d1eeb64feeb6228e2c3583b7 --- /dev/null +++ b/maze/task1/example/level8/special_text/1.txt @@ -0,0 +1,8 @@ +#*#_#_## +_#__##_# +__###_## +__#___#_ +##_#__#_ +##___#__ +_##_@### +__#_##_# \ No newline at end of file diff --git a/maze/task1/example/level8/special_text/2.txt b/maze/task1/example/level8/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c05b2f9591d13b2735bdc73ec0add86e064fc9b9 --- /dev/null +++ b/maze/task1/example/level8/special_text/2.txt @@ -0,0 +1,8 @@ +#@____#_ +__##_#__ +__##___# +_#_###_# +##*####_ +__##_##_ +_#__#_## +_#_#_### \ No newline at end of file diff --git a/maze/task1/example/level8/special_text/3.txt b/maze/task1/example/level8/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4efe4faf116ab991cfc1d6eee77977138fdfe386 --- /dev/null +++ b/maze/task1/example/level8/special_text/3.txt @@ -0,0 +1,8 @@ +#__#_#__ +##_#_##_ +###_##__ +__#_#### +_###*_@# +###_#_#_ +#____#__ +#_#____# \ No newline at end of file diff --git a/maze/task1/example/level8/special_text/4.txt b/maze/task1/example/level8/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..759252f756e2b93230f0651a994deea20b615cb0 --- /dev/null +++ b/maze/task1/example/level8/special_text/4.txt @@ -0,0 +1,8 @@ +_####__# +#_#@###_ +#_##_##_ +##______ +#__##*__ +__#____# +#_##___# +_##_#### \ No newline at end of file diff --git a/maze/task1/example/level8/special_text/5.txt b/maze/task1/example/level8/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3889b259c1cc3f5755061ab7e2f021bb37cb1cb --- /dev/null +++ b/maze/task1/example/level8/special_text/5.txt @@ -0,0 +1,8 @@ +__###_## +###___#* +__##___# +_#_###__ +#_#__#__ +##_@_#__ +####_#_# +_#__##_# \ No newline at end of file diff --git a/maze/task1/example/level8/special_text/6.txt b/maze/task1/example/level8/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5cb654ecc1b0c92a0767924dae5bef9b852d208 --- /dev/null +++ b/maze/task1/example/level8/special_text/6.txt @@ -0,0 +1,8 @@ +##_##_#_ +###__#__ +________ +#_#_#__# +#@__#__# +##_#_##_ +#_#_##_# +_###*### \ No newline at end of file diff --git a/maze/task1/example/level8/special_text/7.txt b/maze/task1/example/level8/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c614f73190837d2d72542b027dc7e713377bfd1 --- /dev/null +++ b/maze/task1/example/level8/special_text/7.txt @@ -0,0 +1,8 @@ +_#__##_# +_##_*#_# +#___###_ +######__ +#___#___ +####___@ +_###__#_ +_#_##__# \ No newline at end of file diff --git a/maze/task1/example/level8/table/0.txt b/maze/task1/example/level8/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1eb110020ac11042c4583746b021dbc3bfa831a7 --- /dev/null +++ b/maze/task1/example/level8/table/0.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | # | # | +| Row 2 | _ | _ | # | # | # | _ | _ | # | +| Row 3 | # | # | # | _ | # | _ | _ | # | +| Row 4 | _ | # | _ | # | # | * | _ | # | +| Row 5 | # | # | _ | # | _ | _ | # | # | +| Row 6 | _ | @ | # | # | _ | _ | # | # | +| Row 7 | # | _ | _ | # | _ | _ | # | # | +| Row 8 | _ | _ | _ | # | # | _ | # | _ | diff --git a/maze/task1/example/level8/table/1.txt b/maze/task1/example/level8/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d6d4c0bcc518d7ea7af19231e44254609394875 --- /dev/null +++ b/maze/task1/example/level8/table/1.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | * | # | _ | # | _ | # | # | +| Row 2 | _ | # | _ | _ | # | # | _ | # | +| Row 3 | _ | _ | # | # | # | _ | # | # | +| Row 4 | _ | _ | # | _ | _ | _ | # | _ | +| Row 5 | # | # | _ | # | _ | _ | # | _ | +| Row 6 | # | # | _ | _ | _ | # | _ | _ | +| Row 7 | _ | # | # | _ | @ | # | # | # | +| Row 8 | _ | _ | # | _ | # | # | _ | # | diff --git a/maze/task1/example/level8/table/2.txt b/maze/task1/example/level8/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..257ddc82131bc9a87032ea04117fcbc69400df2b --- /dev/null +++ b/maze/task1/example/level8/table/2.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | @ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | # | _ | # | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | # | +| Row 4 | _ | # | _ | # | # | # | _ | # | +| Row 5 | # | # | * | # | # | # | # | _ | +| Row 6 | _ | _ | # | # | _ | # | # | _ | +| Row 7 | _ | # | _ | _ | # | _ | # | # | +| Row 8 | _ | # | _ | # | _ | # | # | # | diff --git a/maze/task1/example/level8/table/3.txt b/maze/task1/example/level8/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd7b076c2c7446c9b06c90ae21ba46c430b2cc79 --- /dev/null +++ b/maze/task1/example/level8/table/3.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | # | _ | _ | +| Row 2 | # | # | _ | # | _ | # | # | _ | +| Row 3 | # | # | # | _ | # | # | _ | _ | +| Row 4 | _ | _ | # | _ | # | # | # | # | +| Row 5 | _ | # | # | # | * | _ | @ | # | +| Row 6 | # | # | # | _ | # | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | # | _ | _ | +| Row 8 | # | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task1/example/level8/table/4.txt b/maze/task1/example/level8/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..c29f529d02dc40311b937cfa4db1f4838d7c4905 --- /dev/null +++ b/maze/task1/example/level8/table/4.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | # | _ | _ | # | +| Row 2 | # | _ | # | @ | # | # | # | _ | +| Row 3 | # | _ | # | # | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | # | * | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | # | +| Row 7 | # | _ | # | # | _ | _ | _ | # | +| Row 8 | _ | # | # | _ | # | # | # | # | diff --git a/maze/task1/example/level8/table/5.txt b/maze/task1/example/level8/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..be25bbfacb5680a5237378963aa8e2b976e6710a --- /dev/null +++ b/maze/task1/example/level8/table/5.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | # | _ | # | # | +| Row 2 | # | # | # | _ | _ | _ | # | * | +| Row 3 | _ | _ | # | # | _ | _ | _ | # | +| Row 4 | _ | # | _ | # | # | # | _ | _ | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | @ | _ | # | _ | _ | +| Row 7 | # | # | # | # | _ | # | _ | # | +| Row 8 | _ | # | _ | _ | # | # | _ | # | diff --git a/maze/task1/example/level8/table/6.txt b/maze/task1/example/level8/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee19471c888ade8f75a267e8564a84bacea579d3 --- /dev/null +++ b/maze/task1/example/level8/table/6.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | # | # | _ | # | _ | +| Row 2 | # | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | # | _ | _ | # | +| Row 5 | # | @ | _ | _ | # | _ | _ | # | +| Row 6 | # | # | _ | # | _ | # | # | _ | +| Row 7 | # | _ | # | _ | # | # | _ | # | +| Row 8 | _ | # | # | # | * | # | # | # | diff --git a/maze/task1/example/level8/table/7.txt b/maze/task1/example/level8/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f61ec5f02f2e08683a54b1c74bad16f80d4bcb6d --- /dev/null +++ b/maze/task1/example/level8/table/7.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | # | _ | # | +| Row 2 | _ | # | # | _ | * | # | _ | # | +| Row 3 | # | _ | _ | _ | # | # | # | _ | +| Row 4 | # | # | # | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | # | _ | _ | _ | +| Row 6 | # | # | # | # | _ | _ | _ | @ | +| Row 7 | _ | # | # | # | _ | _ | # | _ | +| Row 8 | _ | # | _ | # | # | _ | _ | # | diff --git a/maze/task1/example/level8/text/0.txt b/maze/task1/example/level8/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..bed6bea53dae612d90b7de4116c9099cfafab02d --- /dev/null +++ b/maze/task1/example/level8/text/0.txt @@ -0,0 +1,8 @@ +FFHFFFHH +FFHHHFFH +HHHFHFFH +FHFHHGFH +HHFHFFHH +FSHHFFHH +HFFHFFHH +FFFHHFHF \ No newline at end of file diff --git a/maze/task1/example/level8/text/1.txt b/maze/task1/example/level8/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d11b0b029fffccfc2ec55b4f745ed7e3d92f722a --- /dev/null +++ b/maze/task1/example/level8/text/1.txt @@ -0,0 +1,8 @@ +HGHFHFHH +FHFFHHFH +FFHHHFHH +FFHFFFHF +HHFHFFHF +HHFFFHFF +FHHFSHHH +FFHFHHFH \ No newline at end of file diff --git a/maze/task1/example/level8/text/2.txt b/maze/task1/example/level8/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1451423e9d1e930fdd47e4e18b4e276d5d79d4e --- /dev/null +++ b/maze/task1/example/level8/text/2.txt @@ -0,0 +1,8 @@ +HSFFFFHF +FFHHFHFF +FFHHFFFH +FHFHHHFH +HHGHHHHF +FFHHFHHF +FHFFHFHH +FHFHFHHH \ No newline at end of file diff --git a/maze/task1/example/level8/text/3.txt b/maze/task1/example/level8/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f5aada0b8312a777aa1741548dda31f8e62c98c --- /dev/null +++ b/maze/task1/example/level8/text/3.txt @@ -0,0 +1,8 @@ +HFFHFHFF +HHFHFHHF +HHHFHHFF +FFHFHHHH +FHHHGFSH +HHHFHFHF +HFFFFHFF +HFHFFFFH \ No newline at end of file diff --git a/maze/task1/example/level8/text/4.txt b/maze/task1/example/level8/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcd0545b85d1d14cb76ad0a2391c4b6ce042f170 --- /dev/null +++ b/maze/task1/example/level8/text/4.txt @@ -0,0 +1,8 @@ +FHHHHFFH +HFHSHHHF +HFHHFHHF +HHFFFFFF +HFFHHGFF +FFHFFFFH +HFHHFFFH +FHHFHHHH \ No newline at end of file diff --git a/maze/task1/example/level8/text/5.txt b/maze/task1/example/level8/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..df236b8077f0d2a784285ded9a8431152e77074c --- /dev/null +++ b/maze/task1/example/level8/text/5.txt @@ -0,0 +1,8 @@ +FFHHHFHH +HHHFFFHG +FFHHFFFH +FHFHHHFF +HFHFFHFF +HHFSFHFF +HHHHFHFH +FHFFHHFH \ No newline at end of file diff --git a/maze/task1/example/level8/text/6.txt b/maze/task1/example/level8/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..87da92c71d21849ccc9f595eb3f3bfd0a4382487 --- /dev/null +++ b/maze/task1/example/level8/text/6.txt @@ -0,0 +1,8 @@ +HHFHHFHF +HHHFFHFF +FFFFFFFF +HFHFHFFH +HSFFHFFH +HHFHFHHF +HFHFHHFH +FHHHGHHH \ No newline at end of file diff --git a/maze/task1/example/level8/text/7.txt b/maze/task1/example/level8/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..576a6930924cb8db18ed0619d6ff4b50785a1089 --- /dev/null +++ b/maze/task1/example/level8/text/7.txt @@ -0,0 +1,8 @@ +FHFFHHFH +FHHFGHFH +HFFFHHHF +HHHHHHFF +HFFFHFFF +HHHHFFFS +FHHHFFHF +FHFHHFFH \ No newline at end of file diff --git a/maze/task1/maps/.DS_Store b/maze/task1/maps/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..8db6b5e27b6ebe9b1c10904f0b6c15a1c1a86070 Binary files /dev/null and b/maze/task1/maps/.DS_Store differ diff --git a/maze/task1/maps/level3/.DS_Store b/maze/task1/maps/level3/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..1367facfefec0fe13bab10e25f939dbd45e970a2 Binary files /dev/null and b/maze/task1/maps/level3/.DS_Store differ diff --git a/maze/task1/maps/level3/answer/0.txt b/maze/task1/maps/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/0.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/1.txt b/maze/task1/maps/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/1.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/10.txt b/maze/task1/maps/level3/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/10.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/11.txt b/maze/task1/maps/level3/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/11.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/12.txt b/maze/task1/maps/level3/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/12.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/13.txt b/maze/task1/maps/level3/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/13.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/14.txt b/maze/task1/maps/level3/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/14.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/15.txt b/maze/task1/maps/level3/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/15.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/16.txt b/maze/task1/maps/level3/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/16.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/17.txt b/maze/task1/maps/level3/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/17.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/18.txt b/maze/task1/maps/level3/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/18.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/19.txt b/maze/task1/maps/level3/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/19.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/2.txt b/maze/task1/maps/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/20.txt b/maze/task1/maps/level3/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/20.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/21.txt b/maze/task1/maps/level3/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/21.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/22.txt b/maze/task1/maps/level3/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/22.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/23.txt b/maze/task1/maps/level3/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/23.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/24.txt b/maze/task1/maps/level3/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/24.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/25.txt b/maze/task1/maps/level3/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/26.txt b/maze/task1/maps/level3/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/26.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/27.txt b/maze/task1/maps/level3/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/27.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/28.txt b/maze/task1/maps/level3/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/28.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/29.txt b/maze/task1/maps/level3/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/29.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/3.txt b/maze/task1/maps/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/3.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/30.txt b/maze/task1/maps/level3/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/30.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/31.txt b/maze/task1/maps/level3/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/31.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/32.txt b/maze/task1/maps/level3/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/32.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/33.txt b/maze/task1/maps/level3/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/33.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/34.txt b/maze/task1/maps/level3/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/34.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/35.txt b/maze/task1/maps/level3/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/35.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/36.txt b/maze/task1/maps/level3/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/36.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/37.txt b/maze/task1/maps/level3/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/37.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/38.txt b/maze/task1/maps/level3/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/38.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/39.txt b/maze/task1/maps/level3/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/4.txt b/maze/task1/maps/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/4.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/40.txt b/maze/task1/maps/level3/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/40.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/41.txt b/maze/task1/maps/level3/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/41.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/42.txt b/maze/task1/maps/level3/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/42.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/43.txt b/maze/task1/maps/level3/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/43.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/44.txt b/maze/task1/maps/level3/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/44.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/45.txt b/maze/task1/maps/level3/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/45.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/46.txt b/maze/task1/maps/level3/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/46.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/47.txt b/maze/task1/maps/level3/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/47.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/48.txt b/maze/task1/maps/level3/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/48.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/49.txt b/maze/task1/maps/level3/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/49.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/5.txt b/maze/task1/maps/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/5.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/50.txt b/maze/task1/maps/level3/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/50.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/51.txt b/maze/task1/maps/level3/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/51.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/52.txt b/maze/task1/maps/level3/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/52.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/53.txt b/maze/task1/maps/level3/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/53.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/54.txt b/maze/task1/maps/level3/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/54.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/55.txt b/maze/task1/maps/level3/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/55.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/56.txt b/maze/task1/maps/level3/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/56.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/57.txt b/maze/task1/maps/level3/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/57.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/58.txt b/maze/task1/maps/level3/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/58.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/59.txt b/maze/task1/maps/level3/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/59.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/6.txt b/maze/task1/maps/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/6.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/60.txt b/maze/task1/maps/level3/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/60.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/61.txt b/maze/task1/maps/level3/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/61.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/62.txt b/maze/task1/maps/level3/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/62.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/63.txt b/maze/task1/maps/level3/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/63.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/64.txt b/maze/task1/maps/level3/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/64.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/65.txt b/maze/task1/maps/level3/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/65.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/66.txt b/maze/task1/maps/level3/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/66.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/67.txt b/maze/task1/maps/level3/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/67.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/68.txt b/maze/task1/maps/level3/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/68.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/69.txt b/maze/task1/maps/level3/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/69.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/7.txt b/maze/task1/maps/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/7.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/70.txt b/maze/task1/maps/level3/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/70.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/71.txt b/maze/task1/maps/level3/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/71.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/72.txt b/maze/task1/maps/level3/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/72.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/73.txt b/maze/task1/maps/level3/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/73.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/74.txt b/maze/task1/maps/level3/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/74.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/75.txt b/maze/task1/maps/level3/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/75.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/76.txt b/maze/task1/maps/level3/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/76.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/77.txt b/maze/task1/maps/level3/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/77.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/78.txt b/maze/task1/maps/level3/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/78.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/79.txt b/maze/task1/maps/level3/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/79.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/8.txt b/maze/task1/maps/level3/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/8.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/80.txt b/maze/task1/maps/level3/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/80.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/81.txt b/maze/task1/maps/level3/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/81.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/82.txt b/maze/task1/maps/level3/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/82.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/83.txt b/maze/task1/maps/level3/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/83.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/84.txt b/maze/task1/maps/level3/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/84.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/85.txt b/maze/task1/maps/level3/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/85.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/86.txt b/maze/task1/maps/level3/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/86.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/87.txt b/maze/task1/maps/level3/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/87.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/88.txt b/maze/task1/maps/level3/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/88.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/89.txt b/maze/task1/maps/level3/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/89.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/9.txt b/maze/task1/maps/level3/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/9.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/90.txt b/maze/task1/maps/level3/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/90.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/91.txt b/maze/task1/maps/level3/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/91.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/92.txt b/maze/task1/maps/level3/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/92.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/93.txt b/maze/task1/maps/level3/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/93.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/94.txt b/maze/task1/maps/level3/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/94.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/95.txt b/maze/task1/maps/level3/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/95.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/96.txt b/maze/task1/maps/level3/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/96.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/97.txt b/maze/task1/maps/level3/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/97.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/98.txt b/maze/task1/maps/level3/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level3/answer/98.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level3/answer/99.txt b/maze/task1/maps/level3/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level3/answer/99.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level3/img/0.png b/maze/task1/maps/level3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5c6f5202d89aa0eddc66ac40e2e205c43ec1faff --- /dev/null +++ b/maze/task1/maps/level3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19c5b6cd99e9fe83bb02e6d648fa275fbb3dbf7f3e2e6aa223f381939fbf75e2 +size 6376 diff --git a/maze/task1/maps/level3/img/1.png b/maze/task1/maps/level3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..036a047ecf5e2a1e1d483f4acf67e9dcf13563c1 --- /dev/null +++ b/maze/task1/maps/level3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7f1d6884ecc4e36e237b192e8145cf52a7ee15d2cacbca44fff52a2790c87e6 +size 6408 diff --git a/maze/task1/maps/level3/img/10.png b/maze/task1/maps/level3/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..13c7dff6c81ad7230380afa413e7d9c9865ac47c --- /dev/null +++ b/maze/task1/maps/level3/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a19cd9b2b55288837aeb42a2f39366c5e41db1a3cacb021544fdee39db6998 +size 6209 diff --git a/maze/task1/maps/level3/img/11.png b/maze/task1/maps/level3/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..226f4b9c148cd6310e121f857bee82eb3a98cac6 --- /dev/null +++ b/maze/task1/maps/level3/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b324746007a9d048cfc28ed88c8ed77d6c1ed3160a0e43020060554ef730958a +size 6266 diff --git a/maze/task1/maps/level3/img/12.png b/maze/task1/maps/level3/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e5ece9b3f3c857fc4e29c7b4b24277c6fadec160 --- /dev/null +++ b/maze/task1/maps/level3/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347edb35313fd0d543149563cbe63630e9faba4b82b78a083b0a04d39116b393 +size 6252 diff --git a/maze/task1/maps/level3/img/13.png b/maze/task1/maps/level3/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8af443b78a006537ac3073f6c7aa4eba8a773fb4 --- /dev/null +++ b/maze/task1/maps/level3/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df81c6b2a51b48e2e3b37a80c6f332ce0b4c1cc516679022727ad9e204ada8e8 +size 6352 diff --git a/maze/task1/maps/level3/img/14.png b/maze/task1/maps/level3/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..911ddec6ab929f202e56e4a53e15d174dfb4fc26 --- /dev/null +++ b/maze/task1/maps/level3/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00638ef4a12337d2911efb886d643a3bacde020847dc80919c865547aa6337ab +size 6296 diff --git a/maze/task1/maps/level3/img/15.png b/maze/task1/maps/level3/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..58d6917322220b744015858b920ca196792c61f9 --- /dev/null +++ b/maze/task1/maps/level3/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3760cbb1939a1f60a31b71e7581fff487d797fc716f088cdb36a0d3257e61297 +size 6190 diff --git a/maze/task1/maps/level3/img/16.png b/maze/task1/maps/level3/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..7805236a68e773d4d0d9a9319ff356fcea08b1b5 --- /dev/null +++ b/maze/task1/maps/level3/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738aa0708e6214cfec1000ca721bd1a608adbdea182111972c18f1a37f84d7f9 +size 6139 diff --git a/maze/task1/maps/level3/img/17.png b/maze/task1/maps/level3/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..5ed6ce1abadfaf2ee43d24000649d695609c3995 --- /dev/null +++ b/maze/task1/maps/level3/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8cc0f92f16d7be09e97614e8e378ae1908be31ef5add835e1e6b5e01d0b134 +size 6192 diff --git a/maze/task1/maps/level3/img/18.png b/maze/task1/maps/level3/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..12eb6e4ed67d25856ebd75a8cdaa20ee7cb31192 --- /dev/null +++ b/maze/task1/maps/level3/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8041924a2140b8f481a8bae9034b3393850a0e3a6f4a9006bbf8adc7c4ec4f9a +size 6403 diff --git a/maze/task1/maps/level3/img/19.png b/maze/task1/maps/level3/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..0c0a649f19839eb1ab6514e8e3770c11d8ea2a9b --- /dev/null +++ b/maze/task1/maps/level3/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6c4a5b062d6caddb5d670c58d0cc26342f259ccf46dbb2a1213e1e49d0e526 +size 6215 diff --git a/maze/task1/maps/level3/img/2.png b/maze/task1/maps/level3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8fc8e49fa4b15e96fdfd53abba0c6d1a3e823b67 --- /dev/null +++ b/maze/task1/maps/level3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6615caa1a3a96dd1897a57e672177f93ea4bac2bd36aa3dc6fdc131249ad6c7d +size 6117 diff --git a/maze/task1/maps/level3/img/20.png b/maze/task1/maps/level3/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..9882d7edd21b90c782e42ec8ff1e0ad02cf31583 --- /dev/null +++ b/maze/task1/maps/level3/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd5fa9389e3de889f61c4f70e1d05bde147115850284f1c60b6e318cc38ee23 +size 6195 diff --git a/maze/task1/maps/level3/img/21.png b/maze/task1/maps/level3/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..47cd3456a91350b9257a4116ce124e7b43b3dc0b --- /dev/null +++ b/maze/task1/maps/level3/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfff5c56e95fb0d3dffa4bb195c8a4f876661e5a6043ef39a4838547be45d61 +size 6232 diff --git a/maze/task1/maps/level3/img/22.png b/maze/task1/maps/level3/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..bd66b43825ceb2840acd4e494b3c952fc77de5c9 --- /dev/null +++ b/maze/task1/maps/level3/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72fdc0d0974c0ac81ffd135d88b24b2dd9c8d5b061e726045997d959f23d9495 +size 6362 diff --git a/maze/task1/maps/level3/img/23.png b/maze/task1/maps/level3/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..e9868378fd282cc85ae16c5f6a79dd973f8642ec --- /dev/null +++ b/maze/task1/maps/level3/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a0618122afefd933ddb201fa2a9e2f9da2ab10f84250de9737ee2019f3330d +size 5875 diff --git a/maze/task1/maps/level3/img/24.png b/maze/task1/maps/level3/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e3a3c3c5f44addc8ab9c86912db43478058119 --- /dev/null +++ b/maze/task1/maps/level3/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33dffa1c544318624f1cdc06547286de9907e393891395bac8936e8ec7b0aa16 +size 6267 diff --git a/maze/task1/maps/level3/img/25.png b/maze/task1/maps/level3/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..1cbef3475138aa9cc1c1f2bf4234f3cb0fb66a17 --- /dev/null +++ b/maze/task1/maps/level3/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0b9af87c6050c4c0b8e7b8120b1049084f54a7332c8ab22ac3880bf7448d902 +size 5915 diff --git a/maze/task1/maps/level3/img/26.png b/maze/task1/maps/level3/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..185142136862fc75379b28f88fb67c7c147a4932 --- /dev/null +++ b/maze/task1/maps/level3/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e95e33724e703946560dee42bb9fc83a21ceb02ec25a54c43799667e30ab9c92 +size 6254 diff --git a/maze/task1/maps/level3/img/27.png b/maze/task1/maps/level3/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..cb44159966015625ab5a85ea6ecda6810b5ff234 --- /dev/null +++ b/maze/task1/maps/level3/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6e83ad78507da8e05d5df6606cfde4aa64009ca1d7441fd0eb2f6b321dc318 +size 6309 diff --git a/maze/task1/maps/level3/img/28.png b/maze/task1/maps/level3/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..67c788120ec83c47ed38667517d0d947c667c963 --- /dev/null +++ b/maze/task1/maps/level3/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2ecf9fc953751d6bfab651be2c3555b020916415af37c2562a74a4b7d10f75 +size 6116 diff --git a/maze/task1/maps/level3/img/29.png b/maze/task1/maps/level3/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..f67b1f039e55f77786a51e21572b01467311f135 --- /dev/null +++ b/maze/task1/maps/level3/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1983ce00d6186932fcb6fc818041bed23f0f913abcbbb1ffde462456c8fa13a3 +size 6321 diff --git a/maze/task1/maps/level3/img/3.png b/maze/task1/maps/level3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..25c2ceef4c63000921531b8bad1f82a91999fc0d --- /dev/null +++ b/maze/task1/maps/level3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:390f6da4aabecbc17fe0ad183c5a50496014bac4b00f3f3a9db6e2acc2d0a664 +size 6132 diff --git a/maze/task1/maps/level3/img/30.png b/maze/task1/maps/level3/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..8cfab9d2f3b08473243cd6dfff7bde4767dbe882 --- /dev/null +++ b/maze/task1/maps/level3/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a16d3e1c299753073fbcd3a458e35ee3f3529bd4e8b4c6d6b9d2d96bcfde2e +size 6275 diff --git a/maze/task1/maps/level3/img/31.png b/maze/task1/maps/level3/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..7acc299c77f66bbd053b65263d2ff833039ca54f --- /dev/null +++ b/maze/task1/maps/level3/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c1347360c2a082b045da6f59c1eb970376c7d68c92816b3848431a8c088800c +size 6346 diff --git a/maze/task1/maps/level3/img/32.png b/maze/task1/maps/level3/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..133a859889e8ffade1e97d16f470aadac0954b8c --- /dev/null +++ b/maze/task1/maps/level3/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40560b02f7213df7431a381854bb214ff0950e462e2406c52b26de437c5ee1af +size 6311 diff --git a/maze/task1/maps/level3/img/33.png b/maze/task1/maps/level3/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..eb1834a235b60dd7fb3c0191e1756fff8f4a55a3 --- /dev/null +++ b/maze/task1/maps/level3/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7d655789a85439e34e1c5e54bf7ede174fee28a095312a03960ccc90440c32c +size 6183 diff --git a/maze/task1/maps/level3/img/34.png b/maze/task1/maps/level3/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..198a101d277faf5bacbb9d0075508da9dc1a0be5 --- /dev/null +++ b/maze/task1/maps/level3/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b2288843f95286066c3e05f19b220d2ee5cdaa37efa818723a61bf57e37d62 +size 6296 diff --git a/maze/task1/maps/level3/img/35.png b/maze/task1/maps/level3/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..56a68adc199c76dd2f19678a34e28e00f1686425 --- /dev/null +++ b/maze/task1/maps/level3/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbeeb3cf4f3cd875bd159e45f57371840fb57b68e57c5bb448f6f393e984ef0 +size 5359 diff --git a/maze/task1/maps/level3/img/36.png b/maze/task1/maps/level3/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..a0cb4f113c9e761936e180486a3783f299a7fa16 --- /dev/null +++ b/maze/task1/maps/level3/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc80b5d635082e52a2334dc470dbae5d8c459a7033b4c072b6d40c07aea3d4eb +size 6116 diff --git a/maze/task1/maps/level3/img/37.png b/maze/task1/maps/level3/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..412d8ca173ec5a13c4124a82f510220529dc7a90 --- /dev/null +++ b/maze/task1/maps/level3/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fa64818b1e7a88ee94b34dca8b2464492614cfd3f2a408d487fc9cf63f3ff1 +size 6384 diff --git a/maze/task1/maps/level3/img/38.png b/maze/task1/maps/level3/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..30f4a238fb474a72ce20b68bf778bc4b99b754a5 --- /dev/null +++ b/maze/task1/maps/level3/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c1366fb3e465c227cf08981df91e603d8326f06b6b681531e20211df5bc1b9d +size 6196 diff --git a/maze/task1/maps/level3/img/39.png b/maze/task1/maps/level3/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..fbc3f4f6f19bee325989db90fc73bc3b262bd350 --- /dev/null +++ b/maze/task1/maps/level3/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92510f72a71c7613727d8743a283fa24920efc1db6b3f7587478edb02214c4da +size 6193 diff --git a/maze/task1/maps/level3/img/4.png b/maze/task1/maps/level3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8af443b78a006537ac3073f6c7aa4eba8a773fb4 --- /dev/null +++ b/maze/task1/maps/level3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df81c6b2a51b48e2e3b37a80c6f332ce0b4c1cc516679022727ad9e204ada8e8 +size 6352 diff --git a/maze/task1/maps/level3/img/40.png b/maze/task1/maps/level3/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..16553203111a91b62b6d621aad26fb537e19eef3 --- /dev/null +++ b/maze/task1/maps/level3/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b0058ef8c4077ae8694698b4abab509aa622da9a5a169be154938cb33c7d67 +size 6002 diff --git a/maze/task1/maps/level3/img/41.png b/maze/task1/maps/level3/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..036a047ecf5e2a1e1d483f4acf67e9dcf13563c1 --- /dev/null +++ b/maze/task1/maps/level3/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7f1d6884ecc4e36e237b192e8145cf52a7ee15d2cacbca44fff52a2790c87e6 +size 6408 diff --git a/maze/task1/maps/level3/img/42.png b/maze/task1/maps/level3/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..4b4e8d2ff57f893ba48019ffd4b3e49c12e18431 --- /dev/null +++ b/maze/task1/maps/level3/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb78b018ee8d4f39f6da52183e031443dfdc4734933ef34b7d03a9d20a15410 +size 6399 diff --git a/maze/task1/maps/level3/img/43.png b/maze/task1/maps/level3/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..41d884fb2d78590ce519308e09945d6d25fbbd19 --- /dev/null +++ b/maze/task1/maps/level3/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de1e5a763521490334cfb270d44fbabc067382445e5627bd94a096be1dd632f +size 6302 diff --git a/maze/task1/maps/level3/img/44.png b/maze/task1/maps/level3/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..db9767fd98644884a924faddf588fc26b21072c3 --- /dev/null +++ b/maze/task1/maps/level3/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bfdf9110519011d9561bef77d7133f64c9cf53cd3eb86509e3b5386434a7527 +size 6321 diff --git a/maze/task1/maps/level3/img/45.png b/maze/task1/maps/level3/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..213764952d96066575e22f3840696ad6272d3a45 --- /dev/null +++ b/maze/task1/maps/level3/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6426530272fc0e08ccab8670a1f3cb7e2d397c708a0f48562d095881692830c0 +size 6060 diff --git a/maze/task1/maps/level3/img/46.png b/maze/task1/maps/level3/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..79c4b757bb17040a05644169d1df41d8d1e47fe5 --- /dev/null +++ b/maze/task1/maps/level3/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5e3397e2f99b9de2a17b306cfb3fca7d2407777500ec95a9f4c9e8255fbf4c +size 6280 diff --git a/maze/task1/maps/level3/img/47.png b/maze/task1/maps/level3/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..5b813be5403c5bd58ba8065057e97ced993282ae --- /dev/null +++ b/maze/task1/maps/level3/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c148552f8085d6737a7ad0f393ff19e96c33712dedef9087799e6cf23f4a83b2 +size 6027 diff --git a/maze/task1/maps/level3/img/48.png b/maze/task1/maps/level3/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..64b1e6c551f2d448b70c2e22704d688684aff246 --- /dev/null +++ b/maze/task1/maps/level3/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814668efc296966bf0869370bdaade84257845441b6e0a8abeb38541704f419d +size 6215 diff --git a/maze/task1/maps/level3/img/49.png b/maze/task1/maps/level3/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..7408374e33990c740e0c4c9489ea88d4ce80d53f --- /dev/null +++ b/maze/task1/maps/level3/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0910ecf6c7d9412efd3985930290b5a52dfa4ab95e62c043874b185c7cc29979 +size 6280 diff --git a/maze/task1/maps/level3/img/5.png b/maze/task1/maps/level3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff00c7183d4ba31c992b7466b8a860c959bdd3d --- /dev/null +++ b/maze/task1/maps/level3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5055e66aa2f83d91f01858e8aab0919d33c65fcdff009022555bf890606ad40 +size 6273 diff --git a/maze/task1/maps/level3/img/50.png b/maze/task1/maps/level3/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..7edc3f3820f92f80f8b2189ae88ea2a840bb700c --- /dev/null +++ b/maze/task1/maps/level3/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f037842d4c1a2263de31f63ee30137f30c025fc10a2bb1efe89ce31ab127fa23 +size 5287 diff --git a/maze/task1/maps/level3/img/51.png b/maze/task1/maps/level3/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..bcc6a1824d717b80cd7d9b21f027c7cdf09e4d60 --- /dev/null +++ b/maze/task1/maps/level3/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:335f92be47d7df43a2c52f0849d67eb8ee496d64ca185e364ebd529549fed80b +size 6060 diff --git a/maze/task1/maps/level3/img/52.png b/maze/task1/maps/level3/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..e0fac6a58ad2d8730dfaa8014c1a46255e95805d --- /dev/null +++ b/maze/task1/maps/level3/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07076ff8ee1f539679f5dedae5c8dab289997f4759bd926dd7c462c45ee73d92 +size 6149 diff --git a/maze/task1/maps/level3/img/53.png b/maze/task1/maps/level3/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..98ee7f7f6977e7ddbdc1367c9504916e6c2d23df --- /dev/null +++ b/maze/task1/maps/level3/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2152be783fd40d0479761b361d16c33c2dec0c310ffa31d9ca24ae84807bad9b +size 6261 diff --git a/maze/task1/maps/level3/img/54.png b/maze/task1/maps/level3/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..6dce34a40ae2289719a8da1ea9f9b343335105c1 --- /dev/null +++ b/maze/task1/maps/level3/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713e1382f8dcddd72c62453dbde5ba6798de354d6be9c124abe61255853ee7e6 +size 5905 diff --git a/maze/task1/maps/level3/img/55.png b/maze/task1/maps/level3/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..bc278e1b4c702845e52c7b0bacd1e6096ea53db7 --- /dev/null +++ b/maze/task1/maps/level3/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88732fa0aa3fc583b3209939007ade9b7bda8fc014a83eb4cf9a71ddf5b2d27 +size 6333 diff --git a/maze/task1/maps/level3/img/56.png b/maze/task1/maps/level3/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..22f87de144c4f25f3470b5f962922f77ca07e65e --- /dev/null +++ b/maze/task1/maps/level3/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbc487183d346791f1a3c49aeb27161e8e7352ca498c493bf4abd6fe52db85b +size 5364 diff --git a/maze/task1/maps/level3/img/57.png b/maze/task1/maps/level3/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..387de55deb6300dfdab17abd8fe56fd272d06e6f --- /dev/null +++ b/maze/task1/maps/level3/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb056c1a66dbd2ff2672e55b60b85fb90e5db81bd9a055a5ac634d791d7c63c4 +size 6235 diff --git a/maze/task1/maps/level3/img/58.png b/maze/task1/maps/level3/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..23ac13b2f204d309a6fc06aa124bcaaeee87ee27 --- /dev/null +++ b/maze/task1/maps/level3/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a0113822df7f8c7337d8dcac83bca8f6050a75757749af96282cf7b73ae794 +size 6215 diff --git a/maze/task1/maps/level3/img/59.png b/maze/task1/maps/level3/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..22ce9f8bf384a945aa11253a84f8570f04d7dd4c --- /dev/null +++ b/maze/task1/maps/level3/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a93b269433feae78925280fef251c8be3e470093fcb51a779f28f3ff3b01af +size 6183 diff --git a/maze/task1/maps/level3/img/6.png b/maze/task1/maps/level3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e32f3102d5d20f92e260aa653192c2a90ee7df1f --- /dev/null +++ b/maze/task1/maps/level3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca761c8d4f0be0215bf8e52b14a3a6eb3288fca2d78243c178f1044cb8fbf98 +size 5956 diff --git a/maze/task1/maps/level3/img/60.png b/maze/task1/maps/level3/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..68750db15a614cfc41e3bac1271d16e78482cae7 --- /dev/null +++ b/maze/task1/maps/level3/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb411f59c510c199272f63354bb776b25d4fae40860197eb3918118ae3f3733 +size 6337 diff --git a/maze/task1/maps/level3/img/61.png b/maze/task1/maps/level3/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..b10a08760ee3c7a0207e21146bb48f4121e7f9ca --- /dev/null +++ b/maze/task1/maps/level3/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222be302081371b62356b262d9edebb393d1132cb6ecddf00eb4fd8f14ffb0d6 +size 6187 diff --git a/maze/task1/maps/level3/img/62.png b/maze/task1/maps/level3/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..ada2de7b207356c85802d46f412a8d742dac1cc3 --- /dev/null +++ b/maze/task1/maps/level3/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad523fa3499ead892d6aeec6b49d782d617242f905791b962ac5aac91a004337 +size 6299 diff --git a/maze/task1/maps/level3/img/63.png b/maze/task1/maps/level3/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..c0afa54e4061e746e8991fa7c80625b76fa4f364 --- /dev/null +++ b/maze/task1/maps/level3/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a101443a09dbb8238608c19a52a58420d3ecdf96c25a0b41e27206a1a73efc +size 6341 diff --git a/maze/task1/maps/level3/img/64.png b/maze/task1/maps/level3/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..1aa2047993c9ebbeb5bde82ee5c869b6f27d6377 --- /dev/null +++ b/maze/task1/maps/level3/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208e3f0e08eb74beceb4a17aca1b9d6e36ae2e7ad14dc187f637ac3b7002a2d6 +size 6323 diff --git a/maze/task1/maps/level3/img/65.png b/maze/task1/maps/level3/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..21673434f5996ab2203d2d892e77933bdbd24c82 --- /dev/null +++ b/maze/task1/maps/level3/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0bac66a756d3fdefa01ac9d6bd1e05b5373de4f4dd08e21918104ab625b36c4 +size 6329 diff --git a/maze/task1/maps/level3/img/66.png b/maze/task1/maps/level3/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..3ff6d9a5b933223a3950c95e847549c6561273e9 --- /dev/null +++ b/maze/task1/maps/level3/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea092a84c9c9787640688dbbe9e1f87b53ee347b5d002285a7a1d2efbaaf0f4 +size 6272 diff --git a/maze/task1/maps/level3/img/67.png b/maze/task1/maps/level3/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..b5bb601c19fa92237b33c8c868204a5eacccfc60 --- /dev/null +++ b/maze/task1/maps/level3/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2eb15425157584f2d5e0a80204852e0ff915f302965014fe6ccf1232e85cfa6 +size 6068 diff --git a/maze/task1/maps/level3/img/68.png b/maze/task1/maps/level3/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..a6a4f4bb8b79f1aaf7a76bd96ae6bc8f447931c2 --- /dev/null +++ b/maze/task1/maps/level3/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc510a720aed7267484719b0b620e6f8d263c69737dab6c44d006d24ec36090 +size 6202 diff --git a/maze/task1/maps/level3/img/69.png b/maze/task1/maps/level3/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..7f028852a60e226f827e6acf8df027af3f780a95 --- /dev/null +++ b/maze/task1/maps/level3/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9606164e4934123603306d8b1a1f4380afe5dfb09b685fd35729fb7b51811fcf +size 6268 diff --git a/maze/task1/maps/level3/img/7.png b/maze/task1/maps/level3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6d9396c74c5610402268061dbdcf3990cfbe957d --- /dev/null +++ b/maze/task1/maps/level3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331e98000ceffe731ac40c67a87c7e48ba50f14e02391e82dc46f68ab3e026b6 +size 6335 diff --git a/maze/task1/maps/level3/img/70.png b/maze/task1/maps/level3/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..3bfd98934769e3b9491eec58e6ef423b8d3ab2e0 --- /dev/null +++ b/maze/task1/maps/level3/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00450db8b1bc2a7811962c0b95b0dbb7d1f4431f7078ff0d4579a47fa276b59 +size 5941 diff --git a/maze/task1/maps/level3/img/71.png b/maze/task1/maps/level3/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..14b86a68d2794a98e26ca5535bf6cbe306dc5bba --- /dev/null +++ b/maze/task1/maps/level3/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce1e4dda8c61d6ef26e0a8f47a3760e2d52c25fd3c70417d85bd1223a2535f7 +size 6257 diff --git a/maze/task1/maps/level3/img/72.png b/maze/task1/maps/level3/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..9d3e5d98be58d7ac6332390565fb0f69471774d1 --- /dev/null +++ b/maze/task1/maps/level3/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef65d581e738801734b5a1dbc5bc60d319ccf84336b2fcbb99f23a91c64847e +size 6246 diff --git a/maze/task1/maps/level3/img/73.png b/maze/task1/maps/level3/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..44752833fbe2451b8cbd0651199b4910e7e4c4fb --- /dev/null +++ b/maze/task1/maps/level3/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb00cde99cbf1d0f76e0d7819b3a48cd55fc79c8c43f9a08ef6acaa57b742e77 +size 6190 diff --git a/maze/task1/maps/level3/img/74.png b/maze/task1/maps/level3/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..6efeff8a4f5201ed5ede677b495b4d8c137fa4ad --- /dev/null +++ b/maze/task1/maps/level3/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e9989b0a39367320638b5b13dc7dc0bb2a07e03fcf0a908967465889b37a71 +size 6268 diff --git a/maze/task1/maps/level3/img/75.png b/maze/task1/maps/level3/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..e6a50604e0fd4b7bb81e26383c00e68aba424cd2 --- /dev/null +++ b/maze/task1/maps/level3/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da96b99a4f53d60bf2ea693b195189820c38f3f8d2723f65da318156435255f4 +size 6270 diff --git a/maze/task1/maps/level3/img/76.png b/maze/task1/maps/level3/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..02e20144b34651795810baec6762288477b94f96 --- /dev/null +++ b/maze/task1/maps/level3/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:219f292f8c98a0c27bcb1fa0187bf09286e71b5275b7c612212591366a34f461 +size 6251 diff --git a/maze/task1/maps/level3/img/77.png b/maze/task1/maps/level3/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..ae4105f53c89a2dabe11b96749630c97218c1bc9 --- /dev/null +++ b/maze/task1/maps/level3/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:988a9cb1b346a3edf824993603163893dd497293f21e7aecfec33ba2ae887123 +size 5333 diff --git a/maze/task1/maps/level3/img/78.png b/maze/task1/maps/level3/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..c313b1abfddae4d3d31eb0521fd54a3a68addeee --- /dev/null +++ b/maze/task1/maps/level3/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405e44ac564ba836b0d34d1961d61471440e7008fa64f948ea9636d87690cb7e +size 5252 diff --git a/maze/task1/maps/level3/img/79.png b/maze/task1/maps/level3/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..a15dd38e70febdfe9d28e63ccb0e992fe4289697 --- /dev/null +++ b/maze/task1/maps/level3/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4ec7b964a4c433883c6c326210b9a606f8fad04ff5632e82c2c80685a81eb9 +size 6373 diff --git a/maze/task1/maps/level3/img/8.png b/maze/task1/maps/level3/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c3d52ca6b040c94c724bd1ea9f62f69ce65a0e6c --- /dev/null +++ b/maze/task1/maps/level3/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb34678a0ba634b345bd68177a3cbf77da148d9911ff2192040315d3d76c171 +size 5294 diff --git a/maze/task1/maps/level3/img/80.png b/maze/task1/maps/level3/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..0fefa596acd86db21f0485c707e541c9564a46fe --- /dev/null +++ b/maze/task1/maps/level3/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a213048ae80bc0a6467ff4c8c547f1a8b96b7965ce1d97a017ffdb7900706f +size 6024 diff --git a/maze/task1/maps/level3/img/81.png b/maze/task1/maps/level3/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..8a9657cbef37d8ef31aee8c2eda704d5b13bbe4c --- /dev/null +++ b/maze/task1/maps/level3/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1941368925abefb817195000f1596bf231cdcba9762c4d0139ae779cd9b05dc +size 6257 diff --git a/maze/task1/maps/level3/img/82.png b/maze/task1/maps/level3/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e6a50604e0fd4b7bb81e26383c00e68aba424cd2 --- /dev/null +++ b/maze/task1/maps/level3/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da96b99a4f53d60bf2ea693b195189820c38f3f8d2723f65da318156435255f4 +size 6270 diff --git a/maze/task1/maps/level3/img/83.png b/maze/task1/maps/level3/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..7988893164db3a11870a37de2e2bc06980d9e00c --- /dev/null +++ b/maze/task1/maps/level3/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e82f4d20474bb9de1db36ccdb450af73b139fc29a4f5f91daa5cc008965dc1d +size 6295 diff --git a/maze/task1/maps/level3/img/84.png b/maze/task1/maps/level3/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..9ab845ab4020a1d5835ac7c7fa01a89f3b12718f --- /dev/null +++ b/maze/task1/maps/level3/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c251cccd2b13122a73391f12fa000add7309cd1217a2fa63a07360f9d9f9eb0 +size 6026 diff --git a/maze/task1/maps/level3/img/85.png b/maze/task1/maps/level3/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..2b3a49cf2a33ec2e20b8d3c269127aec24c4e832 --- /dev/null +++ b/maze/task1/maps/level3/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93776ae10f6d163010bed16649541fbcf63fa24e0430b6e5f3c1a60937fc981b +size 6041 diff --git a/maze/task1/maps/level3/img/86.png b/maze/task1/maps/level3/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..9eff827bc0c26f59d9c48e88dfffd80c86e002a9 --- /dev/null +++ b/maze/task1/maps/level3/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d451fab7007e53078a2d905b1d36063d53bf287c9abd66e673112360e2dd152 +size 5328 diff --git a/maze/task1/maps/level3/img/87.png b/maze/task1/maps/level3/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..f2ae0096d31f624c53721c18d7d86babe85b08ca --- /dev/null +++ b/maze/task1/maps/level3/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6643a79a8f115d0e831b17a0c5799ecebfa2683114fe60cd45a981add2dba1 +size 6269 diff --git a/maze/task1/maps/level3/img/88.png b/maze/task1/maps/level3/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..1cb9aef28ba4a10b4f88d5de67c0b246d7674686 --- /dev/null +++ b/maze/task1/maps/level3/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b0f56e3bb1de986c7297d33374c11684183fe400fbb5d6c9470eab5b2824b76 +size 6111 diff --git a/maze/task1/maps/level3/img/89.png b/maze/task1/maps/level3/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..dd4acf476f7b1e20d30a034905cc85317e4e2ad6 --- /dev/null +++ b/maze/task1/maps/level3/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f61f7fa89480c7d7b030504ca68af5172049a6dbed7ab9f908e1815d715c91 +size 5173 diff --git a/maze/task1/maps/level3/img/9.png b/maze/task1/maps/level3/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..59512c5e443f88cbf9beeb9aa478e3d3b5a3db72 --- /dev/null +++ b/maze/task1/maps/level3/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a4e41df3ec9a2510d2f3dfc14a823d2378d00abc608afc3abca86b57a0734c +size 6340 diff --git a/maze/task1/maps/level3/img/90.png b/maze/task1/maps/level3/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..d1dbebf9f14ea2f249a2ff22e381fadd803fe851 --- /dev/null +++ b/maze/task1/maps/level3/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a088d7588676158566ca6d089e0fe9d75136d565e78b582b51620dbf61e151 +size 6267 diff --git a/maze/task1/maps/level3/img/91.png b/maze/task1/maps/level3/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..680397978a8c73e6a3d58632dbc7ce899f801e2e --- /dev/null +++ b/maze/task1/maps/level3/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f472cb44947a9be98b012cfd5cb08637ea7327262e7e24aa44f84b894cfd5b82 +size 6043 diff --git a/maze/task1/maps/level3/img/92.png b/maze/task1/maps/level3/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..0e2aa43cc76f30fffe299184fcaf5c67a3d1076a --- /dev/null +++ b/maze/task1/maps/level3/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6be0de1776f86b61419e486a9ca7623b5ceb433691a8b535a77a442582a9935 +size 6349 diff --git a/maze/task1/maps/level3/img/93.png b/maze/task1/maps/level3/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..9776d47853f580c3dfbd8b425342c38fd8ceb3a2 --- /dev/null +++ b/maze/task1/maps/level3/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b9482a8aa9cd85f49bed086075a0d05be54a3a36a5778cb10aa865e758315b +size 6365 diff --git a/maze/task1/maps/level3/img/94.png b/maze/task1/maps/level3/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..3a3822b53bfe26c2da26a7b52d9161ac7882875e --- /dev/null +++ b/maze/task1/maps/level3/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e73ca1840d48467b2c3c37782a7834c6495d49613f4e56a5ca143556cefb2b +size 6377 diff --git a/maze/task1/maps/level3/img/95.png b/maze/task1/maps/level3/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..7563cf480447242c1227f9b29ad4f7850f695b31 --- /dev/null +++ b/maze/task1/maps/level3/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b866e190060f7169747356b4f8745cd8946a402a857e3a2a5557f54cc91b3ca +size 6020 diff --git a/maze/task1/maps/level3/img/96.png b/maze/task1/maps/level3/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..ff0d9e447918ae682230fe21d1e96484c92afa4e --- /dev/null +++ b/maze/task1/maps/level3/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e06b4c004fcfa8f288847f3365a165295c31f0fb9477dad9928a7d2ef220a5 +size 6236 diff --git a/maze/task1/maps/level3/img/97.png b/maze/task1/maps/level3/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..423f970afb65217eec79eb5ca71446bd39c71940 --- /dev/null +++ b/maze/task1/maps/level3/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b5765f33cd2a1ef6a1f27a1e4b4c0419f0fd7617fdabcfc7f14cef3da1e021 +size 6099 diff --git a/maze/task1/maps/level3/img/98.png b/maze/task1/maps/level3/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..baa0d1aa830666b68c2816f601aae09d03409fc0 --- /dev/null +++ b/maze/task1/maps/level3/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8eefeda00f5112a8298bd8ed202622ae93b7a937a0fdcfb933780c4bdf6a01b +size 5264 diff --git a/maze/task1/maps/level3/img/99.png b/maze/task1/maps/level3/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..1b6e45b8d51f890e9f26853e2b434cd9aa1a1f3b --- /dev/null +++ b/maze/task1/maps/level3/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6321cae5f3126b3cc15590ae96301284bbe53508b6f676cdac5f69a22459f874 +size 5286 diff --git a/maze/task1/maps/level3/pure_text/0.txt b/maze/task1/maps/level3/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..9233c271bd9563cd56484e85f09a42d2c0c82b92 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/1.txt b/maze/task1/maps/level3/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..89749df50bb1b36b4bea41c3c4080634c42a1d91 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/10.txt b/maze/task1/maps/level3/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..6960c1012a7627e2565b018d2c0b463c391e74a4 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/11.txt b/maze/task1/maps/level3/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..720eaed8e2c0ed08019cbeb5cb61b80c2829de68 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/12.txt b/maze/task1/maps/level3/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..5747fa6319355abbd40926c755159604ea45bb13 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/13.txt b/maze/task1/maps/level3/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbc014076c8e9732e59e2313c3a480e75e443e0d --- /dev/null +++ b/maze/task1/maps/level3/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/14.txt b/maze/task1/maps/level3/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7876c91bdefe12e7384da245aaee6e39b868919 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/15.txt b/maze/task1/maps/level3/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..5240b28b4edf9786dab1d95e090237e6e1c5baeb --- /dev/null +++ b/maze/task1/maps/level3/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/16.txt b/maze/task1/maps/level3/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..743857ffb0752a398adb6292549de6596f24b2c2 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/17.txt b/maze/task1/maps/level3/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..622e09426478286e94688cca15eec8e43074b961 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/18.txt b/maze/task1/maps/level3/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..93acdfa01ae78ddcb55ab7e112c7bbb9dfbf71b3 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/19.txt b/maze/task1/maps/level3/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c44a469aab9c77ad003784901397741e526890f --- /dev/null +++ b/maze/task1/maps/level3/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/2.txt b/maze/task1/maps/level3/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..41751cd92e8595c5104d8a6c9753df5a1c70b114 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/20.txt b/maze/task1/maps/level3/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9aca9ff657f051bde8a441093f8774a3ee82e7b --- /dev/null +++ b/maze/task1/maps/level3/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/21.txt b/maze/task1/maps/level3/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..e395d6b3b195433feecd63253de8c0ba75d50374 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/22.txt b/maze/task1/maps/level3/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..68889e952f99e40bb45f1732bf1fe3074aa17949 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/23.txt b/maze/task1/maps/level3/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0646aa185939616d8e55009efcd9b174e40a98de --- /dev/null +++ b/maze/task1/maps/level3/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/24.txt b/maze/task1/maps/level3/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..e653268cbfe31144ece0482587a548a1ba3e4d81 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/25.txt b/maze/task1/maps/level3/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..00f09117be3613462d3199d136e88469c4d83cfa --- /dev/null +++ b/maze/task1/maps/level3/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/26.txt b/maze/task1/maps/level3/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..548ccd0fdcb6cf33ff1fe5d487d05d54ff5381d1 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/27.txt b/maze/task1/maps/level3/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e5c7f3051b99794660552dc422a6c60093e2ebd --- /dev/null +++ b/maze/task1/maps/level3/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/28.txt b/maze/task1/maps/level3/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb16d4dbd6ccd209342252942b89792915939689 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/29.txt b/maze/task1/maps/level3/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6064592ee3475fa1c0b38f37903df9ae8f17d01 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/3.txt b/maze/task1/maps/level3/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ce4a6acf6f326bf6dcca395ba05c4dfcff06c01 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/30.txt b/maze/task1/maps/level3/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba1024c4f03d23159c293f5ecb243aa1150be091 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/31.txt b/maze/task1/maps/level3/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec4f1ba13f60baa9e0310f705d79d86efec86919 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/32.txt b/maze/task1/maps/level3/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee6298564ec779f501b9a1d41a62c3d41f650311 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/33.txt b/maze/task1/maps/level3/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ab6deb526f66673b9672bd7a6d41488dfa61d7f --- /dev/null +++ b/maze/task1/maps/level3/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/34.txt b/maze/task1/maps/level3/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..0070667ec2dc2afe69e61388e548ace8bf1d5126 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/35.txt b/maze/task1/maps/level3/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb2136b028889d4df268ee2e8d6a67dc05200de5 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/36.txt b/maze/task1/maps/level3/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..67cb8e929f35f05f4bf1fbcacfed71da2194ef9f --- /dev/null +++ b/maze/task1/maps/level3/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/37.txt b/maze/task1/maps/level3/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad9a945058fe9ed787bb4804272b949f170ab616 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/38.txt b/maze/task1/maps/level3/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..91e68a8623443e258f024e0e2c6f2852ee01fcdf --- /dev/null +++ b/maze/task1/maps/level3/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/39.txt b/maze/task1/maps/level3/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6d7692e3efc8e394edf3b8c955d10efc668855f --- /dev/null +++ b/maze/task1/maps/level3/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/4.txt b/maze/task1/maps/level3/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbc014076c8e9732e59e2313c3a480e75e443e0d --- /dev/null +++ b/maze/task1/maps/level3/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/40.txt b/maze/task1/maps/level3/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..0996371afa8836ca2554a270080565c3839b42a6 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/41.txt b/maze/task1/maps/level3/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..89749df50bb1b36b4bea41c3c4080634c42a1d91 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/42.txt b/maze/task1/maps/level3/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffb26cdd2fe6e3ec2981c0ddab12528b7af959f2 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/43.txt b/maze/task1/maps/level3/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc6ae720f816c6a45892e19a4d4e47e68a4105d8 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/44.txt b/maze/task1/maps/level3/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..571fb43ba64a97156209925a457e035eebba62db --- /dev/null +++ b/maze/task1/maps/level3/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/45.txt b/maze/task1/maps/level3/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..80ad03975779a5ce69d259bb358fa35322824edd --- /dev/null +++ b/maze/task1/maps/level3/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/46.txt b/maze/task1/maps/level3/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..73708c65897f31ab3aaaf6c6ed4f2eafbc535e22 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/47.txt b/maze/task1/maps/level3/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..05d2894c824ba4aabb46a35ba399f719cfc5d77d --- /dev/null +++ b/maze/task1/maps/level3/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/48.txt b/maze/task1/maps/level3/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..babefbe8eb146235ea3f5c67da84ef0b02e7d7d8 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/49.txt b/maze/task1/maps/level3/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..96d4335fd8ac061c46847d8407cf263d45cb63cf --- /dev/null +++ b/maze/task1/maps/level3/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/5.txt b/maze/task1/maps/level3/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee507c9e9c870ae1af0667b21f9b3800cd15e24f --- /dev/null +++ b/maze/task1/maps/level3/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/50.txt b/maze/task1/maps/level3/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e40f460cb4a73df4b8175a03cba717beb670d19 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/51.txt b/maze/task1/maps/level3/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..31e433026db8eee85512b9a6cfb4386974e71064 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/52.txt b/maze/task1/maps/level3/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c2fb3b888881e508989e8081ab78ba89d573789 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/53.txt b/maze/task1/maps/level3/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..63378dabbba558d69339e9fa1572f06222c677d8 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/54.txt b/maze/task1/maps/level3/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2d44d1cb25371e2502b56d1e4cc06afe2e567fe --- /dev/null +++ b/maze/task1/maps/level3/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/55.txt b/maze/task1/maps/level3/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..270bc985f90c47cd8130c745d76e29e5ac6924aa --- /dev/null +++ b/maze/task1/maps/level3/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/56.txt b/maze/task1/maps/level3/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..556ee3c57ad2d1c6011356d3aafaba1c3485c3bd --- /dev/null +++ b/maze/task1/maps/level3/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/57.txt b/maze/task1/maps/level3/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..732983aa8d82d2fa9249bf695623cb6b391ba60b --- /dev/null +++ b/maze/task1/maps/level3/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/58.txt b/maze/task1/maps/level3/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..f86cfb0185c44133671144497eada1c5fd0916da --- /dev/null +++ b/maze/task1/maps/level3/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/59.txt b/maze/task1/maps/level3/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..e754ea8d1549efee8393e4794fffa4f36258c934 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/6.txt b/maze/task1/maps/level3/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..abec96f4d057749924456f3caba75ad408ba92dd --- /dev/null +++ b/maze/task1/maps/level3/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; Row 3, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/60.txt b/maze/task1/maps/level3/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6e43a66c3f19e81071412a71f71050c16405df6 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/61.txt b/maze/task1/maps/level3/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..f141271a313b631d3aad651339e8193c835bee5f --- /dev/null +++ b/maze/task1/maps/level3/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/62.txt b/maze/task1/maps/level3/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a0cc73bd86067ae8239af74e46f8f4c6819dfab --- /dev/null +++ b/maze/task1/maps/level3/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/63.txt b/maze/task1/maps/level3/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..58efca46eddd7a7985a75451fe50881d4af1152f --- /dev/null +++ b/maze/task1/maps/level3/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/64.txt b/maze/task1/maps/level3/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..18d79cd381d5430bdd8f17f811538ea89cfab4a3 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/65.txt b/maze/task1/maps/level3/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..baefd83f5197872113aa7de4c43437cf3fed3836 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/66.txt b/maze/task1/maps/level3/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..b231f6997fe7fca26963de83fcdd2c5bf3517af0 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/67.txt b/maze/task1/maps/level3/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..33f0e649dd9e65ed3aec3bda92f6477429e3e5b7 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/68.txt b/maze/task1/maps/level3/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c9517c2b8cc4dae203c5ea59eb7e1fd7ff50f5d --- /dev/null +++ b/maze/task1/maps/level3/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/69.txt b/maze/task1/maps/level3/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf08fa5afd4fe085b9bfec031e2ffb62dfa1a29e --- /dev/null +++ b/maze/task1/maps/level3/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/7.txt b/maze/task1/maps/level3/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d53d1e998c49ede97f2a05ba2d4adc044dc2cc36 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/70.txt b/maze/task1/maps/level3/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..81b647904e2723cf72e594c78efe4758daa12b8b --- /dev/null +++ b/maze/task1/maps/level3/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/71.txt b/maze/task1/maps/level3/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..af5716a02075ea9e471368c47ef0248ea9320fd5 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/72.txt b/maze/task1/maps/level3/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b0969edc5b9e5214773ebc8a28a69b818938606 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/73.txt b/maze/task1/maps/level3/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..c40bdb7255648f1f9247e00a116e6a8b6b04df70 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/74.txt b/maze/task1/maps/level3/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..c71a48d70bf4dc11d3f943be45d5763e850adf25 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/75.txt b/maze/task1/maps/level3/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d05c702f2615e07181f4879ba15abce5e404576 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/76.txt b/maze/task1/maps/level3/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5b3f9db3f16c1209d2e3a3707bcc770d26d0a5d --- /dev/null +++ b/maze/task1/maps/level3/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/77.txt b/maze/task1/maps/level3/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8a6a6a826705d567ea64deba985ec51336cc03a --- /dev/null +++ b/maze/task1/maps/level3/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/78.txt b/maze/task1/maps/level3/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e31aa81dad55c2abc40ae01778098de74b6318ee --- /dev/null +++ b/maze/task1/maps/level3/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/79.txt b/maze/task1/maps/level3/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..c92b04ba8d492a3f850bc9b9f07feb6ce721a6a8 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/8.txt b/maze/task1/maps/level3/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..9582c35cb9fbfb7f915bb4796272e0adae787b2a --- /dev/null +++ b/maze/task1/maps/level3/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/80.txt b/maze/task1/maps/level3/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ba538a501be2a66dce3117352030333948571e0 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/81.txt b/maze/task1/maps/level3/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd62bbaa57541f35457efaa2840840e3d0c9a69b --- /dev/null +++ b/maze/task1/maps/level3/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/82.txt b/maze/task1/maps/level3/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d05c702f2615e07181f4879ba15abce5e404576 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/83.txt b/maze/task1/maps/level3/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cf9a4816687528422ed6616629147c6cb2966c9 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/84.txt b/maze/task1/maps/level3/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..98e63937c0ae5260c99d4091c5df21cf16e12686 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 3, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/85.txt b/maze/task1/maps/level3/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..10039a3443166dc3ab5239c847626c8a469bfcdf --- /dev/null +++ b/maze/task1/maps/level3/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/86.txt b/maze/task1/maps/level3/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..0319bc3c7c555c19028e6989d0ed853c8f53a559 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/87.txt b/maze/task1/maps/level3/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8db2e42493f238a0586938c80ac0cbd4683de25 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/88.txt b/maze/task1/maps/level3/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c0f775ee283706b667a56993f916682557afd96 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/89.txt b/maze/task1/maps/level3/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9cd89bf37441cd12b950b759013d04d7a6a2b41 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/9.txt b/maze/task1/maps/level3/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..433c643d14fb466fafc92b549c2fa3b2dcb36001 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/90.txt b/maze/task1/maps/level3/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..36104e71aa778b673371ad90682334755f85c1fe --- /dev/null +++ b/maze/task1/maps/level3/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/91.txt b/maze/task1/maps/level3/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..93874c78ca8ca046298eff445813891071aca015 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/92.txt b/maze/task1/maps/level3/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..62f0cdee772391a8526ab6a6afb9e3ae267ddd82 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/93.txt b/maze/task1/maps/level3/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9de86cd3a98b34e6f2d08bcba1e208dbecc0183 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/94.txt b/maze/task1/maps/level3/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4cbf3065127f790ad186e63636a8f36b4e0ef32 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/95.txt b/maze/task1/maps/level3/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6be47965f74595f16f251c11e99ab2bd4ddb390 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/96.txt b/maze/task1/maps/level3/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a9bc2623c53e028a097e733c78f87f7bf07aad3 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/97.txt b/maze/task1/maps/level3/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..04155e03a6b8db351e5e715921feabd3e5da02fb --- /dev/null +++ b/maze/task1/maps/level3/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/98.txt b/maze/task1/maps/level3/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1f5250e5cc4f27f70ef13c61f8f3a701c9363d1 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level3/pure_text/99.txt b/maze/task1/maps/level3/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..5752a86244299948058ba86c6e6ed98a193ea3b4 --- /dev/null +++ b/maze/task1/maps/level3/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level3/question/0.txt b/maze/task1/maps/level3/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/1.txt b/maze/task1/maps/level3/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/10.txt b/maze/task1/maps/level3/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/10.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/11.txt b/maze/task1/maps/level3/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/11.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/12.txt b/maze/task1/maps/level3/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/12.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/13.txt b/maze/task1/maps/level3/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level3/question/13.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/14.txt b/maze/task1/maps/level3/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/14.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/15.txt b/maze/task1/maps/level3/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/15.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/16.txt b/maze/task1/maps/level3/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/16.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/17.txt b/maze/task1/maps/level3/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/17.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/18.txt b/maze/task1/maps/level3/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/18.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/19.txt b/maze/task1/maps/level3/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/19.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/2.txt b/maze/task1/maps/level3/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/20.txt b/maze/task1/maps/level3/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/20.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/21.txt b/maze/task1/maps/level3/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/21.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/22.txt b/maze/task1/maps/level3/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level3/question/22.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/23.txt b/maze/task1/maps/level3/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/23.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/24.txt b/maze/task1/maps/level3/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/24.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/25.txt b/maze/task1/maps/level3/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/25.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/26.txt b/maze/task1/maps/level3/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/26.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/27.txt b/maze/task1/maps/level3/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level3/question/27.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/28.txt b/maze/task1/maps/level3/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/28.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/29.txt b/maze/task1/maps/level3/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level3/question/29.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/3.txt b/maze/task1/maps/level3/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/30.txt b/maze/task1/maps/level3/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/30.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/31.txt b/maze/task1/maps/level3/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/31.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/32.txt b/maze/task1/maps/level3/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/32.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/33.txt b/maze/task1/maps/level3/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/33.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/34.txt b/maze/task1/maps/level3/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/34.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/35.txt b/maze/task1/maps/level3/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/35.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/36.txt b/maze/task1/maps/level3/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/36.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/37.txt b/maze/task1/maps/level3/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/37.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/38.txt b/maze/task1/maps/level3/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/38.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/39.txt b/maze/task1/maps/level3/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/39.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/4.txt b/maze/task1/maps/level3/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/40.txt b/maze/task1/maps/level3/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/40.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/41.txt b/maze/task1/maps/level3/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/41.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/42.txt b/maze/task1/maps/level3/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/42.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/43.txt b/maze/task1/maps/level3/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/43.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/44.txt b/maze/task1/maps/level3/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/44.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/45.txt b/maze/task1/maps/level3/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/45.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/46.txt b/maze/task1/maps/level3/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/46.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/47.txt b/maze/task1/maps/level3/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level3/question/47.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/48.txt b/maze/task1/maps/level3/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/48.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/49.txt b/maze/task1/maps/level3/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/49.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/5.txt b/maze/task1/maps/level3/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level3/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/50.txt b/maze/task1/maps/level3/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/50.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/51.txt b/maze/task1/maps/level3/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level3/question/51.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/52.txt b/maze/task1/maps/level3/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/52.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/53.txt b/maze/task1/maps/level3/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/53.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/54.txt b/maze/task1/maps/level3/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/54.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/55.txt b/maze/task1/maps/level3/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/55.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/56.txt b/maze/task1/maps/level3/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/56.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/57.txt b/maze/task1/maps/level3/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level3/question/57.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/58.txt b/maze/task1/maps/level3/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/58.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/59.txt b/maze/task1/maps/level3/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/59.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/6.txt b/maze/task1/maps/level3/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level3/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/60.txt b/maze/task1/maps/level3/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/60.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/61.txt b/maze/task1/maps/level3/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/61.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/62.txt b/maze/task1/maps/level3/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/62.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/63.txt b/maze/task1/maps/level3/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/63.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/64.txt b/maze/task1/maps/level3/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/64.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/65.txt b/maze/task1/maps/level3/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/65.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/66.txt b/maze/task1/maps/level3/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/66.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/67.txt b/maze/task1/maps/level3/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/67.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/68.txt b/maze/task1/maps/level3/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/68.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/69.txt b/maze/task1/maps/level3/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/69.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/7.txt b/maze/task1/maps/level3/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/70.txt b/maze/task1/maps/level3/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/70.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/71.txt b/maze/task1/maps/level3/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/71.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/72.txt b/maze/task1/maps/level3/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/72.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/73.txt b/maze/task1/maps/level3/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/73.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/74.txt b/maze/task1/maps/level3/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/74.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/75.txt b/maze/task1/maps/level3/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/75.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/76.txt b/maze/task1/maps/level3/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/76.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/77.txt b/maze/task1/maps/level3/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/77.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/78.txt b/maze/task1/maps/level3/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/78.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/79.txt b/maze/task1/maps/level3/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/79.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/8.txt b/maze/task1/maps/level3/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/8.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/80.txt b/maze/task1/maps/level3/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level3/question/80.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/81.txt b/maze/task1/maps/level3/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level3/question/81.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/82.txt b/maze/task1/maps/level3/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level3/question/82.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/83.txt b/maze/task1/maps/level3/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level3/question/83.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/84.txt b/maze/task1/maps/level3/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/84.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/85.txt b/maze/task1/maps/level3/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/85.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/86.txt b/maze/task1/maps/level3/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level3/question/86.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/87.txt b/maze/task1/maps/level3/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/87.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/88.txt b/maze/task1/maps/level3/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/88.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/89.txt b/maze/task1/maps/level3/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/89.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/9.txt b/maze/task1/maps/level3/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/9.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/90.txt b/maze/task1/maps/level3/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/90.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/91.txt b/maze/task1/maps/level3/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level3/question/91.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/92.txt b/maze/task1/maps/level3/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level3/question/92.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/93.txt b/maze/task1/maps/level3/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level3/question/93.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/94.txt b/maze/task1/maps/level3/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/94.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/95.txt b/maze/task1/maps/level3/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level3/question/95.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/96.txt b/maze/task1/maps/level3/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/96.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/97.txt b/maze/task1/maps/level3/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level3/question/97.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/98.txt b/maze/task1/maps/level3/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level3/question/98.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level3/question/99.txt b/maze/task1/maps/level3/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level3/question/99.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level3/table/0.txt b/maze/task1/maps/level3/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..92a30afa1c69f5c21a59e110d470fa97609a80a9 --- /dev/null +++ b/maze/task1/maps/level3/table/0.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | # | _ | # | +| Row 3 | # | @ | # | diff --git a/maze/task1/maps/level3/table/1.txt b/maze/task1/maps/level3/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f3929643ace89f3576a94abadb4ccb28b2e4ae7 --- /dev/null +++ b/maze/task1/maps/level3/table/1.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | # | _ | # | +| Row 3 | # | @ | * | diff --git a/maze/task1/maps/level3/table/10.txt b/maze/task1/maps/level3/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cc3a99b6d741ab7b7357a0d024dc74617947521 --- /dev/null +++ b/maze/task1/maps/level3/table/10.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | _ | # | # | +| Row 3 | * | @ | # | diff --git a/maze/task1/maps/level3/table/11.txt b/maze/task1/maps/level3/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ce62132e7215e370b0399b4c7f202a0b02ac07e --- /dev/null +++ b/maze/task1/maps/level3/table/11.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | _ | # | # | +| Row 3 | # | * | @ | diff --git a/maze/task1/maps/level3/table/12.txt b/maze/task1/maps/level3/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c29ff1eae0670fb4f68904f719135e2342cbc3f --- /dev/null +++ b/maze/task1/maps/level3/table/12.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | _ | # | # | +| Row 3 | # | # | @ | diff --git a/maze/task1/maps/level3/table/13.txt b/maze/task1/maps/level3/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..9090ac1cc046179c12d057fda477269ad09d0d5c --- /dev/null +++ b/maze/task1/maps/level3/table/13.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | _ | * | # | +| Row 3 | # | # | @ | diff --git a/maze/task1/maps/level3/table/14.txt b/maze/task1/maps/level3/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..583a42dab2ff07b56b70c73e98e4e14af4fbd0c0 --- /dev/null +++ b/maze/task1/maps/level3/table/14.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | @ | # | +| Row 2 | # | * | _ | +| Row 3 | _ | # | # | diff --git a/maze/task1/maps/level3/table/15.txt b/maze/task1/maps/level3/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4a61f89bb7eae3ebb276c3518945b23ab2de597 --- /dev/null +++ b/maze/task1/maps/level3/table/15.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | # | @ | _ | +| Row 3 | # | # | * | diff --git a/maze/task1/maps/level3/table/16.txt b/maze/task1/maps/level3/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..d79ec6f2ec1e9a4235686c6ab1ed74fcb76eedab --- /dev/null +++ b/maze/task1/maps/level3/table/16.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | _ | @ | # | +| Row 3 | _ | # | # | diff --git a/maze/task1/maps/level3/table/17.txt b/maze/task1/maps/level3/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4e7ecdf8956a361e4a4d579b97ed9e0b032490d --- /dev/null +++ b/maze/task1/maps/level3/table/17.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | # | # | * | +| Row 3 | # | @ | _ | diff --git a/maze/task1/maps/level3/table/18.txt b/maze/task1/maps/level3/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d9eaa632865a8e5d077134ec9ba749cef867af1 --- /dev/null +++ b/maze/task1/maps/level3/table/18.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | @ | # | +| Row 2 | # | _ | # | +| Row 3 | # | _ | # | diff --git a/maze/task1/maps/level3/table/19.txt b/maze/task1/maps/level3/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..906903a59991e7daca0cf46cfd4e0250574bca5e --- /dev/null +++ b/maze/task1/maps/level3/table/19.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | # | _ | # | +| Row 3 | _ | @ | # | diff --git a/maze/task1/maps/level3/table/2.txt b/maze/task1/maps/level3/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..674d81127cf33752fe054f2726da2f1f533e17b4 --- /dev/null +++ b/maze/task1/maps/level3/table/2.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | # | @ | # | +| Row 3 | _ | _ | # | diff --git a/maze/task1/maps/level3/table/20.txt b/maze/task1/maps/level3/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbb17d2290b05bbe356b10f815a69a572afa3dcc --- /dev/null +++ b/maze/task1/maps/level3/table/20.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | @ | # | +| Row 2 | _ | # | _ | +| Row 3 | # | * | # | diff --git a/maze/task1/maps/level3/table/21.txt b/maze/task1/maps/level3/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc958a291b889fe98299dbd0d95625d372110245 --- /dev/null +++ b/maze/task1/maps/level3/table/21.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | # | * | @ | +| Row 3 | _ | # | # | diff --git a/maze/task1/maps/level3/table/22.txt b/maze/task1/maps/level3/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3da19b670f210aefde3a084a942837dac3fee43 --- /dev/null +++ b/maze/task1/maps/level3/table/22.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | * | # | +| Row 3 | # | _ | # | diff --git a/maze/task1/maps/level3/table/23.txt b/maze/task1/maps/level3/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0999d723c56b5e0b18e8d07abd0437b0cf3b2da --- /dev/null +++ b/maze/task1/maps/level3/table/23.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | # | +| Row 2 | _ | _ | # | +| Row 3 | # | # | # | diff --git a/maze/task1/maps/level3/table/24.txt b/maze/task1/maps/level3/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c13968e948fffef6f3a25b15f8e28f72324149e --- /dev/null +++ b/maze/task1/maps/level3/table/24.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | # | * | # | +| Row 3 | # | _ | @ | diff --git a/maze/task1/maps/level3/table/25.txt b/maze/task1/maps/level3/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbccecc20a6a34f530d4142796ddb2c5b7ba0b7c --- /dev/null +++ b/maze/task1/maps/level3/table/25.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | # | _ | _ | +| Row 3 | # | @ | * | diff --git a/maze/task1/maps/level3/table/26.txt b/maze/task1/maps/level3/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a082fcaf5a6f9977387203270adfc74e51237a3 --- /dev/null +++ b/maze/task1/maps/level3/table/26.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | # | +| Row 2 | _ | # | # | +| Row 3 | # | # | @ | diff --git a/maze/task1/maps/level3/table/27.txt b/maze/task1/maps/level3/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ada3ef40cf05c5283534cb01ebd48aefa6e2325 --- /dev/null +++ b/maze/task1/maps/level3/table/27.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | * | +| Row 2 | # | # | @ | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/28.txt b/maze/task1/maps/level3/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d0a4754349378dc90714ade8a3b8cf83d70bcb2 --- /dev/null +++ b/maze/task1/maps/level3/table/28.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | # | # | @ | +| Row 3 | _ | # | _ | diff --git a/maze/task1/maps/level3/table/29.txt b/maze/task1/maps/level3/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..776f13e904f80d8ed804fde8022e909c99836882 --- /dev/null +++ b/maze/task1/maps/level3/table/29.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | # | +| Row 2 | # | # | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task1/maps/level3/table/3.txt b/maze/task1/maps/level3/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4039837fbae6d708f0633a4e02a3252019a32cbc --- /dev/null +++ b/maze/task1/maps/level3/table/3.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | # | # | +| Row 2 | # | * | # | +| Row 3 | _ | # | _ | diff --git a/maze/task1/maps/level3/table/30.txt b/maze/task1/maps/level3/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c22bf832520e95aff7ad8b02d63980e8b5330c0 --- /dev/null +++ b/maze/task1/maps/level3/table/30.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | @ | +| Row 2 | # | # | * | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/31.txt b/maze/task1/maps/level3/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..1604ba9c67ff23db2c4f9bfc2385d9561f7fdc89 --- /dev/null +++ b/maze/task1/maps/level3/table/31.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | # | _ | +| Row 2 | # | # | * | +| Row 3 | # | _ | # | diff --git a/maze/task1/maps/level3/table/32.txt b/maze/task1/maps/level3/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ec2d5da33ee975272a200300eb0aef2e3d1825e --- /dev/null +++ b/maze/task1/maps/level3/table/32.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | @ | # | # | +| Row 3 | # | _ | # | diff --git a/maze/task1/maps/level3/table/33.txt b/maze/task1/maps/level3/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c3806c88a7d359c64bb752efdfa56a2f4fafccc --- /dev/null +++ b/maze/task1/maps/level3/table/33.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | # | +| Row 2 | # | _ | _ | +| Row 3 | # | @ | # | diff --git a/maze/task1/maps/level3/table/34.txt b/maze/task1/maps/level3/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f5ced2248a14df53862b9138585dbb4c388a48a --- /dev/null +++ b/maze/task1/maps/level3/table/34.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | # | # | +| Row 2 | # | # | _ | +| Row 3 | _ | # | * | diff --git a/maze/task1/maps/level3/table/35.txt b/maze/task1/maps/level3/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..1459114a43055a81e69f013b00a57c48e5435ccf --- /dev/null +++ b/maze/task1/maps/level3/table/35.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | * | @ | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/36.txt b/maze/task1/maps/level3/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..68e6ef24c69e1fd935a2173be2a6998366e690b5 --- /dev/null +++ b/maze/task1/maps/level3/table/36.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | @ | # | # | +| Row 3 | # | * | # | diff --git a/maze/task1/maps/level3/table/37.txt b/maze/task1/maps/level3/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..35dec76f06f752ef050f2f1d472d1299b89ab4c9 --- /dev/null +++ b/maze/task1/maps/level3/table/37.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | * | +| Row 2 | # | # | @ | +| Row 3 | # | _ | # | diff --git a/maze/task1/maps/level3/table/38.txt b/maze/task1/maps/level3/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4dd4e9d685bb420b18e0cc91c8fbf8826721986 --- /dev/null +++ b/maze/task1/maps/level3/table/38.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | # | +| Row 2 | # | @ | # | +| Row 3 | _ | # | _ | diff --git a/maze/task1/maps/level3/table/39.txt b/maze/task1/maps/level3/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd4d9127ac3300935e10e1ae08ddd6c4ab3903ef --- /dev/null +++ b/maze/task1/maps/level3/table/39.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | @ | +| Row 2 | * | # | # | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/4.txt b/maze/task1/maps/level3/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9090ac1cc046179c12d057fda477269ad09d0d5c --- /dev/null +++ b/maze/task1/maps/level3/table/4.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | _ | * | # | +| Row 3 | # | # | @ | diff --git a/maze/task1/maps/level3/table/40.txt b/maze/task1/maps/level3/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e381aa7b400bcf48d909ce5a1067d339638371e --- /dev/null +++ b/maze/task1/maps/level3/table/40.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | @ | # | +| Row 3 | # | _ | * | diff --git a/maze/task1/maps/level3/table/41.txt b/maze/task1/maps/level3/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f3929643ace89f3576a94abadb4ccb28b2e4ae7 --- /dev/null +++ b/maze/task1/maps/level3/table/41.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | # | _ | # | +| Row 3 | # | @ | * | diff --git a/maze/task1/maps/level3/table/42.txt b/maze/task1/maps/level3/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..df704b778668565510b5ffdcd03af1579c408b50 --- /dev/null +++ b/maze/task1/maps/level3/table/42.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | # | _ | # | +| Row 3 | * | # | @ | diff --git a/maze/task1/maps/level3/table/43.txt b/maze/task1/maps/level3/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7926a205c66c8d28682aa021b328204f274faa2 --- /dev/null +++ b/maze/task1/maps/level3/table/43.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | * | _ | # | +| Row 3 | # | @ | # | diff --git a/maze/task1/maps/level3/table/44.txt b/maze/task1/maps/level3/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..f39a652b041803a54050c879dd770573a688c2d3 --- /dev/null +++ b/maze/task1/maps/level3/table/44.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | @ | _ | # | +| Row 3 | # | * | # | diff --git a/maze/task1/maps/level3/table/45.txt b/maze/task1/maps/level3/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..230c8d0efc740b3965c8fa5f4e97a853e7e13029 --- /dev/null +++ b/maze/task1/maps/level3/table/45.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | _ | +| Row 3 | * | # | # | diff --git a/maze/task1/maps/level3/table/46.txt b/maze/task1/maps/level3/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6d1c4765a9e42e6741a2f6215adb44061cf4551 --- /dev/null +++ b/maze/task1/maps/level3/table/46.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | # | @ | _ | +| Row 3 | # | * | # | diff --git a/maze/task1/maps/level3/table/47.txt b/maze/task1/maps/level3/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ded904e7b3d32db48ce396ac5442016c52184f --- /dev/null +++ b/maze/task1/maps/level3/table/47.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | @ | # | +| Row 3 | _ | # | * | diff --git a/maze/task1/maps/level3/table/48.txt b/maze/task1/maps/level3/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9c9b488b872ebd3c428a7f375ef4f706467a9e7 --- /dev/null +++ b/maze/task1/maps/level3/table/48.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | _ | # | # | +| Row 3 | @ | # | _ | diff --git a/maze/task1/maps/level3/table/49.txt b/maze/task1/maps/level3/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc2750818829b7860178ab734a96ec18780d6777 --- /dev/null +++ b/maze/task1/maps/level3/table/49.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | # | @ | _ | +| Row 3 | # | _ | # | diff --git a/maze/task1/maps/level3/table/5.txt b/maze/task1/maps/level3/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fdee1e01fb2b642c8b704e4012be18401d8c5a0 --- /dev/null +++ b/maze/task1/maps/level3/table/5.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | @ | # | +| Row 2 | _ | # | # | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/50.txt b/maze/task1/maps/level3/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..73bb7bf66d6613bc6f49353583543f753246dd67 --- /dev/null +++ b/maze/task1/maps/level3/table/50.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | # | # | # | +| Row 3 | @ | * | _ | diff --git a/maze/task1/maps/level3/table/51.txt b/maze/task1/maps/level3/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..99c39784d5cae201443060a0457734efddb097e2 --- /dev/null +++ b/maze/task1/maps/level3/table/51.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | # | # | # | +| Row 3 | _ | @ | # | diff --git a/maze/task1/maps/level3/table/52.txt b/maze/task1/maps/level3/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..621f9b538a9a59c109797fb778bb1f3a11dab5aa --- /dev/null +++ b/maze/task1/maps/level3/table/52.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | # | # | @ | +| Row 3 | # | * | # | diff --git a/maze/task1/maps/level3/table/53.txt b/maze/task1/maps/level3/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d6a2e950073e53b07531fb392233f01bfb3f029 --- /dev/null +++ b/maze/task1/maps/level3/table/53.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | # | * | # | +| Row 3 | _ | # | @ | diff --git a/maze/task1/maps/level3/table/54.txt b/maze/task1/maps/level3/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..be8259f76794aea6860c0403878bc97f11b30696 --- /dev/null +++ b/maze/task1/maps/level3/table/54.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | @ | # | +| Row 2 | # | # | # | +| Row 3 | _ | _ | # | diff --git a/maze/task1/maps/level3/table/55.txt b/maze/task1/maps/level3/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..40eb8032e9643894cb7b856e024734358bc2e52c --- /dev/null +++ b/maze/task1/maps/level3/table/55.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | # | +| Row 3 | _ | * | # | diff --git a/maze/task1/maps/level3/table/56.txt b/maze/task1/maps/level3/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..267895b93223047aa47e22191add80b92a579690 --- /dev/null +++ b/maze/task1/maps/level3/table/56.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | # | # | # | +| Row 3 | # | _ | # | diff --git a/maze/task1/maps/level3/table/57.txt b/maze/task1/maps/level3/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6da194fa454bc23ee5a0f4fba5a4d69aa57f4da6 --- /dev/null +++ b/maze/task1/maps/level3/table/57.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | # | # | * | +| Row 3 | @ | _ | # | diff --git a/maze/task1/maps/level3/table/58.txt b/maze/task1/maps/level3/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c56527705ada8aba7ad7e940e98443b373254e1 --- /dev/null +++ b/maze/task1/maps/level3/table/58.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | @ | _ | # | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/59.txt b/maze/task1/maps/level3/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..70733e4523ebec5651321b0a6acd1caa689c7e4b --- /dev/null +++ b/maze/task1/maps/level3/table/59.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | # | +| Row 2 | # | # | _ | +| Row 3 | * | # | # | diff --git a/maze/task1/maps/level3/table/6.txt b/maze/task1/maps/level3/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..479f860dc88c0901a886461cab9c3acb9455632e --- /dev/null +++ b/maze/task1/maps/level3/table/6.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | @ | # | * | +| Row 3 | _ | # | _ | diff --git a/maze/task1/maps/level3/table/60.txt b/maze/task1/maps/level3/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..686889b330bbe80baab7e606c1a9c6e85208dc42 --- /dev/null +++ b/maze/task1/maps/level3/table/60.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | # | +| Row 2 | # | # | _ | +| Row 3 | # | @ | # | diff --git a/maze/task1/maps/level3/table/61.txt b/maze/task1/maps/level3/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..d88c6bd53f50d54896e9480a2ae62c0779931b03 --- /dev/null +++ b/maze/task1/maps/level3/table/61.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | @ | +| Row 2 | # | # | _ | +| Row 3 | * | # | # | diff --git a/maze/task1/maps/level3/table/62.txt b/maze/task1/maps/level3/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..be744b8b6e4921aaa6a3811a297bb70b77d48841 --- /dev/null +++ b/maze/task1/maps/level3/table/62.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | # | _ | @ | +| Row 3 | # | * | # | diff --git a/maze/task1/maps/level3/table/63.txt b/maze/task1/maps/level3/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..6edb328b2b361dc4da264476c6496e7b91c37f97 --- /dev/null +++ b/maze/task1/maps/level3/table/63.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | # | * | # | +| Row 3 | _ | # | @ | diff --git a/maze/task1/maps/level3/table/64.txt b/maze/task1/maps/level3/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f69906d7caea3f6581c40d4af9f06d13cfbd861 --- /dev/null +++ b/maze/task1/maps/level3/table/64.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | # | _ | # | +| Row 3 | @ | # | _ | diff --git a/maze/task1/maps/level3/table/65.txt b/maze/task1/maps/level3/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b7b3c2e1cce91e109c040c9d7eea6ea95b8da98 --- /dev/null +++ b/maze/task1/maps/level3/table/65.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | # | _ | +| Row 3 | _ | # | * | diff --git a/maze/task1/maps/level3/table/66.txt b/maze/task1/maps/level3/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f6044fa891e33914ee858fa9f646d576c7b3e29 --- /dev/null +++ b/maze/task1/maps/level3/table/66.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | @ | +| Row 2 | # | * | # | +| Row 3 | _ | # | # | diff --git a/maze/task1/maps/level3/table/67.txt b/maze/task1/maps/level3/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e32f5a1164728a36d864c6da8a717faeb2b61f4 --- /dev/null +++ b/maze/task1/maps/level3/table/67.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | # | # | * | +| Row 3 | @ | # | # | diff --git a/maze/task1/maps/level3/table/68.txt b/maze/task1/maps/level3/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b0f262ba0695778f620c0f40e6317f1d7e37fd4 --- /dev/null +++ b/maze/task1/maps/level3/table/68.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | @ | # | +| Row 3 | # | * | # | diff --git a/maze/task1/maps/level3/table/69.txt b/maze/task1/maps/level3/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a464fe47ca3946d67f85093f570e6317d72d83a --- /dev/null +++ b/maze/task1/maps/level3/table/69.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | * | # | @ | +| Row 3 | _ | # | # | diff --git a/maze/task1/maps/level3/table/7.txt b/maze/task1/maps/level3/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..34f9c747f522844f9f2d4885114b920d017b0d1b --- /dev/null +++ b/maze/task1/maps/level3/table/7.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | # | # | @ | +| Row 3 | _ | # | * | diff --git a/maze/task1/maps/level3/table/70.txt b/maze/task1/maps/level3/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..8402c29a60dee42899222c873e60bd3b1c3204a1 --- /dev/null +++ b/maze/task1/maps/level3/table/70.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | # | +| Row 2 | # | # | # | +| Row 3 | _ | # | _ | diff --git a/maze/task1/maps/level3/table/71.txt b/maze/task1/maps/level3/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6efb7ac6198c61bdd53428c5779ea793ffcf04a --- /dev/null +++ b/maze/task1/maps/level3/table/71.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | @ | # | # | +| Row 3 | * | # | _ | diff --git a/maze/task1/maps/level3/table/72.txt b/maze/task1/maps/level3/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..e48d7be71a58b3db51fc6d600af9ce5d77e75541 --- /dev/null +++ b/maze/task1/maps/level3/table/72.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | _ | # | # | +| Row 3 | # | _ | * | diff --git a/maze/task1/maps/level3/table/73.txt b/maze/task1/maps/level3/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e67e8500459b1a684eb6adb9959c39090dad6e3 --- /dev/null +++ b/maze/task1/maps/level3/table/73.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | # | * | # | +| Row 3 | # | @ | # | diff --git a/maze/task1/maps/level3/table/74.txt b/maze/task1/maps/level3/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..505a13de54f17c09d2fabe373754991b11839e59 --- /dev/null +++ b/maze/task1/maps/level3/table/74.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | # | # | +| Row 3 | # | * | _ | diff --git a/maze/task1/maps/level3/table/75.txt b/maze/task1/maps/level3/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..6401c0c6802be57423b32bae927e9cac1160190d --- /dev/null +++ b/maze/task1/maps/level3/table/75.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | # | _ | # | +| Row 3 | @ | _ | # | diff --git a/maze/task1/maps/level3/table/76.txt b/maze/task1/maps/level3/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..17f161eff13c24e5bf91e27346ffd89de8366a77 --- /dev/null +++ b/maze/task1/maps/level3/table/76.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | _ | # | # | +| Row 3 | # | * | _ | diff --git a/maze/task1/maps/level3/table/77.txt b/maze/task1/maps/level3/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f155c901d6e643c788ab92782e87da96408935c --- /dev/null +++ b/maze/task1/maps/level3/table/77.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | @ | * | _ | +| Row 3 | # | # | # | diff --git a/maze/task1/maps/level3/table/78.txt b/maze/task1/maps/level3/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cd10f748b6ae170c4cedc3dad42cb82165e9735 --- /dev/null +++ b/maze/task1/maps/level3/table/78.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | @ | +| Row 2 | _ | # | # | +| Row 3 | # | # | # | diff --git a/maze/task1/maps/level3/table/79.txt b/maze/task1/maps/level3/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffa0ff40fdb9f5d26be2409ffa4accd68861f1d1 --- /dev/null +++ b/maze/task1/maps/level3/table/79.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | @ | +| Row 2 | # | _ | # | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/8.txt b/maze/task1/maps/level3/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6baa952b5e05a247e9d830305f940364c43fc00 --- /dev/null +++ b/maze/task1/maps/level3/table/8.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | # | # | # | +| Row 3 | _ | @ | * | diff --git a/maze/task1/maps/level3/table/80.txt b/maze/task1/maps/level3/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cd0dae5403ea3056903148385e6f944be6db8d8 --- /dev/null +++ b/maze/task1/maps/level3/table/80.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | # | * | +| Row 3 | _ | @ | # | diff --git a/maze/task1/maps/level3/table/81.txt b/maze/task1/maps/level3/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ff746099d92991509a3f907ca59cddfe143bab4 --- /dev/null +++ b/maze/task1/maps/level3/table/81.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | _ | +| Row 2 | # | # | @ | +| Row 3 | _ | # | # | diff --git a/maze/task1/maps/level3/table/82.txt b/maze/task1/maps/level3/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..6401c0c6802be57423b32bae927e9cac1160190d --- /dev/null +++ b/maze/task1/maps/level3/table/82.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | # | _ | # | +| Row 3 | @ | _ | # | diff --git a/maze/task1/maps/level3/table/83.txt b/maze/task1/maps/level3/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..928600c1102d35d67665596046473cba108fd97a --- /dev/null +++ b/maze/task1/maps/level3/table/83.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | # | # | @ | +| Row 3 | _ | * | # | diff --git a/maze/task1/maps/level3/table/84.txt b/maze/task1/maps/level3/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8c1f34d180a77b902a7eec1d701df470de20745 --- /dev/null +++ b/maze/task1/maps/level3/table/84.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | # | _ | * | +| Row 3 | # | @ | _ | diff --git a/maze/task1/maps/level3/table/85.txt b/maze/task1/maps/level3/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5b9cb588fa6c1e689dd3d1bc09aa0e6753b1f97 --- /dev/null +++ b/maze/task1/maps/level3/table/85.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | # | +| Row 2 | _ | # | @ | +| Row 3 | # | # | # | diff --git a/maze/task1/maps/level3/table/86.txt b/maze/task1/maps/level3/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..777a096593b41aefa9887141e46da12937c66b04 --- /dev/null +++ b/maze/task1/maps/level3/table/86.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | _ | @ | * | +| Row 3 | # | # | # | diff --git a/maze/task1/maps/level3/table/87.txt b/maze/task1/maps/level3/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..62aa54c95daf46ec585a82456a6dd100eb7299fb --- /dev/null +++ b/maze/task1/maps/level3/table/87.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | # | +| Row 2 | # | _ | @ | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/88.txt b/maze/task1/maps/level3/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a73054069e530f22323a2ac1d2016d40120b030a --- /dev/null +++ b/maze/task1/maps/level3/table/88.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | # | @ | +| Row 3 | * | # | # | diff --git a/maze/task1/maps/level3/table/89.txt b/maze/task1/maps/level3/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fd57ba52448a74055b2b4be9deb1f830880e1f5 --- /dev/null +++ b/maze/task1/maps/level3/table/89.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | * | _ | _ | +| Row 3 | # | # | # | diff --git a/maze/task1/maps/level3/table/9.txt b/maze/task1/maps/level3/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..8033007b2d921857276740e7bf94f3aff02f8f97 --- /dev/null +++ b/maze/task1/maps/level3/table/9.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | * | # | _ | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/90.txt b/maze/task1/maps/level3/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5b4969bba4a85e8a96081331323eaa03bfffa85 --- /dev/null +++ b/maze/task1/maps/level3/table/90.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | * | +| Row 2 | # | # | _ | +| Row 3 | @ | # | # | diff --git a/maze/task1/maps/level3/table/91.txt b/maze/task1/maps/level3/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dd82a9fb1d0d7d9f0d5edcfbffdd53875ae6336 --- /dev/null +++ b/maze/task1/maps/level3/table/91.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | @ | +| Row 2 | * | # | _ | +| Row 3 | # | # | # | diff --git a/maze/task1/maps/level3/table/92.txt b/maze/task1/maps/level3/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8130e2c5cc5716a8961a82e90a2b5d1efb96c99 --- /dev/null +++ b/maze/task1/maps/level3/table/92.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | # | * | _ | +| Row 3 | # | @ | # | diff --git a/maze/task1/maps/level3/table/93.txt b/maze/task1/maps/level3/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..590be3515cc6e57d6a3b565c9c37a0d15c756e8d --- /dev/null +++ b/maze/task1/maps/level3/table/93.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | * | +| Row 2 | # | _ | # | +| Row 3 | # | # | @ | diff --git a/maze/task1/maps/level3/table/94.txt b/maze/task1/maps/level3/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f897039c60c5e77ab30357d83a1dd10063f4c4d --- /dev/null +++ b/maze/task1/maps/level3/table/94.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | # | +| Row 3 | * | # | _ | diff --git a/maze/task1/maps/level3/table/95.txt b/maze/task1/maps/level3/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..85ee7c39156737f9a4076906de312304d2cc13db --- /dev/null +++ b/maze/task1/maps/level3/table/95.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | @ | +| Row 2 | # | # | # | +| Row 3 | # | _ | * | diff --git a/maze/task1/maps/level3/table/96.txt b/maze/task1/maps/level3/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c7af1765955c1f26d10c6a2db7162fe2aaae3a0 --- /dev/null +++ b/maze/task1/maps/level3/table/96.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | @ | +| Row 2 | * | # | # | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level3/table/97.txt b/maze/task1/maps/level3/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..47b658187ca0c85572030d3dc47ea4a6fe1b29d9 --- /dev/null +++ b/maze/task1/maps/level3/table/97.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | # | +| Row 2 | @ | # | # | +| Row 3 | _ | _ | # | diff --git a/maze/task1/maps/level3/table/98.txt b/maze/task1/maps/level3/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccb08be866e1fdabe81eb2eb1e86aebc06952cdd --- /dev/null +++ b/maze/task1/maps/level3/table/98.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | * | _ | @ | +| Row 3 | _ | # | # | diff --git a/maze/task1/maps/level3/table/99.txt b/maze/task1/maps/level3/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..5390aee87241fd05782283c2c74066488dc92552 --- /dev/null +++ b/maze/task1/maps/level3/table/99.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | @ | +| Row 2 | # | # | # | +| Row 3 | # | # | _ | diff --git a/maze/task1/maps/level4/answer/0.txt b/maze/task1/maps/level4/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/0.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/1.txt b/maze/task1/maps/level4/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/1.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/10.txt b/maze/task1/maps/level4/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/10.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/11.txt b/maze/task1/maps/level4/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/11.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/12.txt b/maze/task1/maps/level4/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/12.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/13.txt b/maze/task1/maps/level4/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/13.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/14.txt b/maze/task1/maps/level4/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/14.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/15.txt b/maze/task1/maps/level4/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/15.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/16.txt b/maze/task1/maps/level4/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/16.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/17.txt b/maze/task1/maps/level4/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/17.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/18.txt b/maze/task1/maps/level4/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/18.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/19.txt b/maze/task1/maps/level4/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/19.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/2.txt b/maze/task1/maps/level4/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/20.txt b/maze/task1/maps/level4/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/20.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/21.txt b/maze/task1/maps/level4/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/21.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/22.txt b/maze/task1/maps/level4/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/22.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/23.txt b/maze/task1/maps/level4/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/23.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/24.txt b/maze/task1/maps/level4/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/24.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/25.txt b/maze/task1/maps/level4/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/26.txt b/maze/task1/maps/level4/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/26.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/27.txt b/maze/task1/maps/level4/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/27.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/28.txt b/maze/task1/maps/level4/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/28.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/29.txt b/maze/task1/maps/level4/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/29.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/3.txt b/maze/task1/maps/level4/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/30.txt b/maze/task1/maps/level4/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/30.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/31.txt b/maze/task1/maps/level4/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/31.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/32.txt b/maze/task1/maps/level4/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/32.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/33.txt b/maze/task1/maps/level4/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/33.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/34.txt b/maze/task1/maps/level4/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/34.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/35.txt b/maze/task1/maps/level4/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/35.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/36.txt b/maze/task1/maps/level4/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/36.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/37.txt b/maze/task1/maps/level4/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/37.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/38.txt b/maze/task1/maps/level4/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/38.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/39.txt b/maze/task1/maps/level4/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/4.txt b/maze/task1/maps/level4/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/4.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/40.txt b/maze/task1/maps/level4/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/40.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/41.txt b/maze/task1/maps/level4/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/41.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/42.txt b/maze/task1/maps/level4/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/42.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/43.txt b/maze/task1/maps/level4/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/43.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/44.txt b/maze/task1/maps/level4/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/44.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/45.txt b/maze/task1/maps/level4/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/45.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/46.txt b/maze/task1/maps/level4/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/46.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/47.txt b/maze/task1/maps/level4/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/47.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/48.txt b/maze/task1/maps/level4/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/48.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/49.txt b/maze/task1/maps/level4/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/49.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/5.txt b/maze/task1/maps/level4/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/5.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/50.txt b/maze/task1/maps/level4/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/50.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/51.txt b/maze/task1/maps/level4/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/51.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/52.txt b/maze/task1/maps/level4/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/52.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/53.txt b/maze/task1/maps/level4/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/53.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/54.txt b/maze/task1/maps/level4/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/54.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/55.txt b/maze/task1/maps/level4/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/55.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/56.txt b/maze/task1/maps/level4/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/56.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/57.txt b/maze/task1/maps/level4/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/57.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/58.txt b/maze/task1/maps/level4/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/58.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/59.txt b/maze/task1/maps/level4/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/59.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/6.txt b/maze/task1/maps/level4/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/60.txt b/maze/task1/maps/level4/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/60.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/61.txt b/maze/task1/maps/level4/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/61.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/62.txt b/maze/task1/maps/level4/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/62.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/63.txt b/maze/task1/maps/level4/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/63.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/64.txt b/maze/task1/maps/level4/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/64.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/65.txt b/maze/task1/maps/level4/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/65.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/66.txt b/maze/task1/maps/level4/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/66.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/67.txt b/maze/task1/maps/level4/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/67.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/68.txt b/maze/task1/maps/level4/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/68.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/69.txt b/maze/task1/maps/level4/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/69.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/7.txt b/maze/task1/maps/level4/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/7.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/70.txt b/maze/task1/maps/level4/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/70.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/71.txt b/maze/task1/maps/level4/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/71.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/72.txt b/maze/task1/maps/level4/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/72.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/73.txt b/maze/task1/maps/level4/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/73.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/74.txt b/maze/task1/maps/level4/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/74.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/75.txt b/maze/task1/maps/level4/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/75.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/76.txt b/maze/task1/maps/level4/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/76.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/77.txt b/maze/task1/maps/level4/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/77.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/78.txt b/maze/task1/maps/level4/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/78.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/79.txt b/maze/task1/maps/level4/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/79.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/8.txt b/maze/task1/maps/level4/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/8.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/80.txt b/maze/task1/maps/level4/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/80.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/81.txt b/maze/task1/maps/level4/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/81.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/82.txt b/maze/task1/maps/level4/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/82.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/83.txt b/maze/task1/maps/level4/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/83.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/84.txt b/maze/task1/maps/level4/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/84.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/85.txt b/maze/task1/maps/level4/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/85.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/86.txt b/maze/task1/maps/level4/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/86.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/87.txt b/maze/task1/maps/level4/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/87.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/88.txt b/maze/task1/maps/level4/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/88.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/89.txt b/maze/task1/maps/level4/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/89.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/9.txt b/maze/task1/maps/level4/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/9.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/90.txt b/maze/task1/maps/level4/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/90.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/91.txt b/maze/task1/maps/level4/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/91.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/92.txt b/maze/task1/maps/level4/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/92.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/93.txt b/maze/task1/maps/level4/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/93.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/94.txt b/maze/task1/maps/level4/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/94.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/95.txt b/maze/task1/maps/level4/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/95.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/96.txt b/maze/task1/maps/level4/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level4/answer/96.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/97.txt b/maze/task1/maps/level4/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/97.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/98.txt b/maze/task1/maps/level4/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/98.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/answer/99.txt b/maze/task1/maps/level4/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level4/answer/99.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level4/img/0.png b/maze/task1/maps/level4/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1e457b464e6527fd40e454e8fc799abd780c760b --- /dev/null +++ b/maze/task1/maps/level4/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c18e53279b1fadf13925aabc96d1a5c11e40c62a02428bf6774dd318b7e0b3c +size 8585 diff --git a/maze/task1/maps/level4/img/1.png b/maze/task1/maps/level4/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bcae60b117d1a38674ddb8eae55d4f18b676d29e --- /dev/null +++ b/maze/task1/maps/level4/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c44bdbec2bd29dc46f42f318c679d9c4c609f354e8a4f654021c13c1d3e372 +size 8510 diff --git a/maze/task1/maps/level4/img/10.png b/maze/task1/maps/level4/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4db4ccf6ceb6a341d84c0a2807726da92224e010 --- /dev/null +++ b/maze/task1/maps/level4/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2183d3d688590d2c0831f025b657acd09aff7ece91515b8f5aad6f94ab8d8c9 +size 7984 diff --git a/maze/task1/maps/level4/img/11.png b/maze/task1/maps/level4/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fa3194e67091d070065f0129c48697f2024f18d0 --- /dev/null +++ b/maze/task1/maps/level4/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0836efb270ea54e408a4a3b50ec7eea4c3efdae40629edb0000d3ca5ff264a8a +size 7928 diff --git a/maze/task1/maps/level4/img/12.png b/maze/task1/maps/level4/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c47a0a56766cf8382380beb7d06be882b037fc99 --- /dev/null +++ b/maze/task1/maps/level4/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:512295efd8c655cbe1dbf19afaaac4c9cdbb711afe5cd31aa20af7584cd5bd04 +size 8677 diff --git a/maze/task1/maps/level4/img/13.png b/maze/task1/maps/level4/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8d391aef3a5c174290d1c2f4f0b9d4aeb74c08 --- /dev/null +++ b/maze/task1/maps/level4/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d522a3437a199adaecd7539a1655c97799765009223b0df7cf7eeea5690c7d5 +size 7400 diff --git a/maze/task1/maps/level4/img/14.png b/maze/task1/maps/level4/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c92d645cab5d493f71b445c6142f2cc9e24c0e64 --- /dev/null +++ b/maze/task1/maps/level4/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f6ec08f93f41c969e73ef1f4c07f3ca13b72adadb5d2b2de5aa27a3c47faf05 +size 8799 diff --git a/maze/task1/maps/level4/img/15.png b/maze/task1/maps/level4/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..976c608f76bcad6d5f592dc377ba780bde04c78e --- /dev/null +++ b/maze/task1/maps/level4/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aecaa4d0aa610de707e97bf83a79f4801353f38aeaf626b2a19741f41d92b3e5 +size 8697 diff --git a/maze/task1/maps/level4/img/16.png b/maze/task1/maps/level4/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..3fb87840265a613f56bd46b74410bb8da476e43f --- /dev/null +++ b/maze/task1/maps/level4/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d1853dbb1b2974cb86a428bc0513cd6490e7e882dea50e6718c06607826adc +size 8433 diff --git a/maze/task1/maps/level4/img/17.png b/maze/task1/maps/level4/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..c52046bd1babcd29e539fb3dca70183e3ca5d660 --- /dev/null +++ b/maze/task1/maps/level4/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de747d086b8b51f02462c65518b57b231345edca48dbd1c3c095c4bb0a3626f +size 7336 diff --git a/maze/task1/maps/level4/img/18.png b/maze/task1/maps/level4/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..21712a684411da0692af04d7c1c0281403aa87a6 --- /dev/null +++ b/maze/task1/maps/level4/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf3b884d1f09160509bfbc14def48d4e591d2f6aee98ec147c7f61eb3877621 +size 8620 diff --git a/maze/task1/maps/level4/img/19.png b/maze/task1/maps/level4/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..dc174fd379ae7131ab0707a51fc332eef221c82d --- /dev/null +++ b/maze/task1/maps/level4/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99bce0fb8070bd2a5a83173ab56cb7fc3ec158e513498884c944eb9faff47c8b +size 8669 diff --git a/maze/task1/maps/level4/img/2.png b/maze/task1/maps/level4/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3f1031f862390692325e4ffcbad1749870363162 --- /dev/null +++ b/maze/task1/maps/level4/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44e9836995dcb611d42279f954434d46ee7be7bf519a236283d1b9fc7dee26f +size 8435 diff --git a/maze/task1/maps/level4/img/20.png b/maze/task1/maps/level4/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..05d758a8bbcd21a3cad02fbe516235787c00d7af --- /dev/null +++ b/maze/task1/maps/level4/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfdcfe945e936cab76a5a150361eeeba574d80c04e07b8b96fa3809e7797c1b2 +size 8612 diff --git a/maze/task1/maps/level4/img/21.png b/maze/task1/maps/level4/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..f82c8dd707343e844b8b65cca305ea18a31d3621 --- /dev/null +++ b/maze/task1/maps/level4/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eade23b792fd1597a341f00f59ec62ff9207e3d1490a701303d9b0bde5a15390 +size 8606 diff --git a/maze/task1/maps/level4/img/22.png b/maze/task1/maps/level4/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..4e39cc6b8c1997e434bac006eced30f72c8d84b1 --- /dev/null +++ b/maze/task1/maps/level4/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d9e022a6476206344e99422809f8aeef468cee2f9f92166ddf7e2cd41c5635 +size 8713 diff --git a/maze/task1/maps/level4/img/23.png b/maze/task1/maps/level4/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..3939a94071d6b7812eb39d30b0fc609f2f5da24f --- /dev/null +++ b/maze/task1/maps/level4/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41148754e50c2bac5e396b05884f4074cc754c7564f6ae6de7a9c27062d9da52 +size 8594 diff --git a/maze/task1/maps/level4/img/24.png b/maze/task1/maps/level4/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..ef0241c8b4b196ddeee574086be42161e486fba0 --- /dev/null +++ b/maze/task1/maps/level4/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eed7d359bae051dd85908c1c75e712cce52495722ce95f2dc449dd210d6de48b +size 8781 diff --git a/maze/task1/maps/level4/img/25.png b/maze/task1/maps/level4/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..ba36d8c266d1cd6fc8cf2439044b354065d9af48 --- /dev/null +++ b/maze/task1/maps/level4/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b9a43e3d367471a9a2fe79ffe2eb3679a78b4016392643b0602c9c3520b5e1 +size 8773 diff --git a/maze/task1/maps/level4/img/26.png b/maze/task1/maps/level4/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..cf8c01d7abcb9a469ff65f5ffc7973d4c8968cff --- /dev/null +++ b/maze/task1/maps/level4/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c64611f848e260bb63798c279491daf1a92cb225c93a046972da8fadd643c48b +size 8504 diff --git a/maze/task1/maps/level4/img/27.png b/maze/task1/maps/level4/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..aaba1fa8a9837a005620ed2ab626b3df87e8d2ad --- /dev/null +++ b/maze/task1/maps/level4/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b378d47cea836561c312b1cf8a608f1b600f017deb0e9ad72160580ee5c4a29b +size 7998 diff --git a/maze/task1/maps/level4/img/28.png b/maze/task1/maps/level4/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..0936491f50a491301e27f18011983cef7010eaf8 --- /dev/null +++ b/maze/task1/maps/level4/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecce60cc87256e9a6b4f1c83c56b297c31867e2e62c128ee46c6198abc251de5 +size 8646 diff --git a/maze/task1/maps/level4/img/29.png b/maze/task1/maps/level4/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..2393dedb08b701e0eeff26f12f0ce02c6745726b --- /dev/null +++ b/maze/task1/maps/level4/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a341da1a97d9124cda8d213949645cdeee95d1eeb0b2e846a8af20f5a5c11a7 +size 8788 diff --git a/maze/task1/maps/level4/img/3.png b/maze/task1/maps/level4/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c299383d1c3944cd7d2fdc9ab383a874015ebb8b --- /dev/null +++ b/maze/task1/maps/level4/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1028e3a0d585ed377e3564aced5e080f80d756783af8487d316bbaa139930ad2 +size 8647 diff --git a/maze/task1/maps/level4/img/30.png b/maze/task1/maps/level4/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..cfd27a8a8275c92fe13e3b4ac2957909eeac0ad1 --- /dev/null +++ b/maze/task1/maps/level4/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c589bd4b9b07b9406966e684e2ab98f54ac58a4e59fae970fcf659ba0e582d6d +size 7836 diff --git a/maze/task1/maps/level4/img/31.png b/maze/task1/maps/level4/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..6a4f9caed3d8430fdde6a8ebb6f9e536552169a1 --- /dev/null +++ b/maze/task1/maps/level4/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce27d0d3bbac2c8af626f26aed4d8ac0eea77b99cca9bae97acb9f37e8f7c8d0 +size 8697 diff --git a/maze/task1/maps/level4/img/32.png b/maze/task1/maps/level4/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..2aba99070f53b7c3998772ca30bb1c34ad8258db --- /dev/null +++ b/maze/task1/maps/level4/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404a876cbae49ee6bd9640e4440896686baf50731bed7c10dd938fd9f729b968 +size 8233 diff --git a/maze/task1/maps/level4/img/33.png b/maze/task1/maps/level4/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..cd73c8ef15be32bef27c9d0b4d80b82b220b9b26 --- /dev/null +++ b/maze/task1/maps/level4/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0b42bbfffdffb95c4c244b43a32fb7e27cf872e755f6a092531f36467564ec +size 7723 diff --git a/maze/task1/maps/level4/img/34.png b/maze/task1/maps/level4/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..f3ff4407fcb8faafb4aa98d1e1b382304b335415 --- /dev/null +++ b/maze/task1/maps/level4/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09db9a6cc90405b53fe0061b48da346421be22615877d181781902702aba65c5 +size 8621 diff --git a/maze/task1/maps/level4/img/35.png b/maze/task1/maps/level4/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..837ed4293a80aee030072faae79a113ab7e93bc0 --- /dev/null +++ b/maze/task1/maps/level4/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452abcfb0a0a4846c33f4561d7f06806d4cbb3c6fedcf053868f3694b40db22f +size 8631 diff --git a/maze/task1/maps/level4/img/36.png b/maze/task1/maps/level4/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ba9e6dbeee0ee3b2534b1f48713d453e28cd0a --- /dev/null +++ b/maze/task1/maps/level4/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7bd53b7427d3af367f8b33a9061a8eda2e166a229e9b55c65f8274413994e42 +size 8589 diff --git a/maze/task1/maps/level4/img/37.png b/maze/task1/maps/level4/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..259e5ab82160e3458300fde8b783367c1c28c7fb --- /dev/null +++ b/maze/task1/maps/level4/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd0de59781df01d16b45634f5318c5d805d5acc24e73475dbd3932b7bfe9733d +size 8603 diff --git a/maze/task1/maps/level4/img/38.png b/maze/task1/maps/level4/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..86ad2beec6bed186484cfe6cea7c00f2fcb78f3f --- /dev/null +++ b/maze/task1/maps/level4/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505ff73e4814e27cc2c54e93c51d22497845654172c5e5285f8504034dfea91d +size 8836 diff --git a/maze/task1/maps/level4/img/39.png b/maze/task1/maps/level4/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..f404812fe4d4639fa24696038baafe931443bc20 --- /dev/null +++ b/maze/task1/maps/level4/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8831b65cebf7a33bbcaf32c85d46b3203c6681bbeeff755a83cc37b5f20cf16e +size 8536 diff --git a/maze/task1/maps/level4/img/4.png b/maze/task1/maps/level4/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f4915535cc0115ca6dba6d9b11faa9b2f1f962ad --- /dev/null +++ b/maze/task1/maps/level4/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d43186c102413922b69a110ff8d5b7036b4d21e0999306362b8ee965ecd1494 +size 8690 diff --git a/maze/task1/maps/level4/img/40.png b/maze/task1/maps/level4/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..2287150183c36cd493558809316f56a39d8635ea --- /dev/null +++ b/maze/task1/maps/level4/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98bb6c25d646c09b897014d5e0d48a638acbaa0ae9ea82e9b4700eb75f1c9aa4 +size 8503 diff --git a/maze/task1/maps/level4/img/41.png b/maze/task1/maps/level4/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..53d2af712cbebfac12e9a611dff4d0ba206a09d7 --- /dev/null +++ b/maze/task1/maps/level4/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741ca12cd2af00b928c0f2ef0779a28dcfa08b29715433bf1ff0a2aa3d89b8ff +size 8841 diff --git a/maze/task1/maps/level4/img/42.png b/maze/task1/maps/level4/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..8df118e92e0278d318b969cb5357318889f06699 --- /dev/null +++ b/maze/task1/maps/level4/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8e5e19d23e8bca98207eb73eb682f8b892cde2179bed77a04570e47783483c +size 8770 diff --git a/maze/task1/maps/level4/img/43.png b/maze/task1/maps/level4/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..700303b3c7cba6aad089fdfab15e6e39229c5228 --- /dev/null +++ b/maze/task1/maps/level4/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed480f3005c39f0bacff87c662f5b27da0318033183a2d5c173db68038be9a08 +size 8818 diff --git a/maze/task1/maps/level4/img/44.png b/maze/task1/maps/level4/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..17b3925246e971fa99ada0909a2f244fc6ffacc5 --- /dev/null +++ b/maze/task1/maps/level4/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36aeee7b4a7c2db8ca55be60ebff935c06d005fb0391af3a6f5aae94d7c5517 +size 8735 diff --git a/maze/task1/maps/level4/img/45.png b/maze/task1/maps/level4/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..65029694540e7fc8c5fb8229f0c01b8c15c6fe51 --- /dev/null +++ b/maze/task1/maps/level4/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a10097201c438ec42f0b13ea2adf72f22f089604dfc41f6cd01e629bbef26b42 +size 8682 diff --git a/maze/task1/maps/level4/img/46.png b/maze/task1/maps/level4/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..ac091c7ce611f48cd7118fb6c7ebfbad5028ec13 --- /dev/null +++ b/maze/task1/maps/level4/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c716b0ee29de87e730cc7db2a242fca67184aab69a1042afc20b824dfa496775 +size 8183 diff --git a/maze/task1/maps/level4/img/47.png b/maze/task1/maps/level4/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8f6f1a018aa3e8d4524f634142afd8b321906a --- /dev/null +++ b/maze/task1/maps/level4/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abab3d7c55ece4f7216da5dbb31409b54d669bcb739c598f2739435d0188af48 +size 8833 diff --git a/maze/task1/maps/level4/img/48.png b/maze/task1/maps/level4/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..6b1b1506da581f40c63b65b61be7f2d3828b3915 --- /dev/null +++ b/maze/task1/maps/level4/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd350cc1d229bc1987134e8f1daf85fedc34b9f745db464d5e7d12f0fa092af3 +size 8684 diff --git a/maze/task1/maps/level4/img/49.png b/maze/task1/maps/level4/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..7b426c346c08b80f83b8a21e49894bd69f648b7d --- /dev/null +++ b/maze/task1/maps/level4/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a607a0a64bf764845ccd3225bb0a18b19386bf40f826902d4b9c073ca5bb92 +size 8494 diff --git a/maze/task1/maps/level4/img/5.png b/maze/task1/maps/level4/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8a10a7695fb13fd7d2e7d01904fb19e54a2ce962 --- /dev/null +++ b/maze/task1/maps/level4/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c37a17958f8e9ee945600de2fa9b71f4c8d344c3a84858b6bc3ac797b40b97 +size 8733 diff --git a/maze/task1/maps/level4/img/50.png b/maze/task1/maps/level4/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..83cc60f9c98ec26b7b47334c7ec2419854088721 --- /dev/null +++ b/maze/task1/maps/level4/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d6402f3808b464a554a1934d0a57541821d017fa56a40593631b4c4ad1da6f +size 8379 diff --git a/maze/task1/maps/level4/img/51.png b/maze/task1/maps/level4/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..3a1be200a4de61496be71e494f0d40bd101abf67 --- /dev/null +++ b/maze/task1/maps/level4/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae711b5e718b34b7176f5ee35f5f2547e202d2c3562787dfe9323b3d94660024 +size 8298 diff --git a/maze/task1/maps/level4/img/52.png b/maze/task1/maps/level4/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..27e918381154bfed39caa44c3d2e1fdf80b4e305 --- /dev/null +++ b/maze/task1/maps/level4/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c663147404fce2ac5f8e1b322c9561f823c17574e6b7427e760a7aaee26927e +size 8258 diff --git a/maze/task1/maps/level4/img/53.png b/maze/task1/maps/level4/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..dfd803b16a6fd965825d65aaca8b36b8e6eeb619 --- /dev/null +++ b/maze/task1/maps/level4/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282f982ef5e090d4ad86ee2309f5fdaada7ba6d82b698869f939f466e6f18237 +size 8564 diff --git a/maze/task1/maps/level4/img/54.png b/maze/task1/maps/level4/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..736a4549efa3e517072344b16d400006451bcf27 --- /dev/null +++ b/maze/task1/maps/level4/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096eaba32b5e7d1151f43af06c18b3839d94c4bfc176b86fe7f8978d46c9eba6 +size 8541 diff --git a/maze/task1/maps/level4/img/55.png b/maze/task1/maps/level4/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..26f44537bec0ab304f0eed85395835dd9d18d47c --- /dev/null +++ b/maze/task1/maps/level4/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239eb7eeae22a30d58d037e4485f44b56e53ee943c98ac4a0420d96ae107ee7e +size 8588 diff --git a/maze/task1/maps/level4/img/56.png b/maze/task1/maps/level4/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..2e83731914534c9609d8b29f821294ce1e7c52d7 --- /dev/null +++ b/maze/task1/maps/level4/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8abc7bf66b9a1fdbd14aa8d9498b5f221eee4c2b4ca4f41f12b3f158a35e397 +size 8623 diff --git a/maze/task1/maps/level4/img/57.png b/maze/task1/maps/level4/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..628400719d51d302e4a2452b20f6ee099433870a --- /dev/null +++ b/maze/task1/maps/level4/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:facf517e3df0806807ac3913a0b856bdc6f0434a986967026d921e1787b5be8f +size 8598 diff --git a/maze/task1/maps/level4/img/58.png b/maze/task1/maps/level4/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..71b366dd93631477fe0a0bf9ee54977d3be7a505 --- /dev/null +++ b/maze/task1/maps/level4/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28acbe7844fe2c9b139b4ea674fb31a9f352df5a7aee536be981b7c56520905 +size 8727 diff --git a/maze/task1/maps/level4/img/59.png b/maze/task1/maps/level4/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..873ac5706e0261ad23f8bdcc53a272a19461298e --- /dev/null +++ b/maze/task1/maps/level4/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585593b412e51488ade6dc62fd01a1ece4b11fb38566a3f7207563f70d8eb7c5 +size 8333 diff --git a/maze/task1/maps/level4/img/6.png b/maze/task1/maps/level4/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..950d86e721655c7517181eff152d1949b0cefee0 --- /dev/null +++ b/maze/task1/maps/level4/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:836b6a954c25068bd237ab1e3c8dc6ba7b15d6073306d8f8dc00a6a3f0629e70 +size 8362 diff --git a/maze/task1/maps/level4/img/60.png b/maze/task1/maps/level4/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..b0da979185940968211b47c4215522f8e0349c32 --- /dev/null +++ b/maze/task1/maps/level4/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3985b8f25a304f43c1bf13c2abcf9b65e8c13c9b37511f64435f445f3fc5993 +size 8736 diff --git a/maze/task1/maps/level4/img/61.png b/maze/task1/maps/level4/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..4df8a3466c392161a4736db2ee3ef4a0d3a4edc3 --- /dev/null +++ b/maze/task1/maps/level4/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ae721a4e4acf9b15bde0d09c68572df42352a9f35a83994858e981e030e1ab +size 8761 diff --git a/maze/task1/maps/level4/img/62.png b/maze/task1/maps/level4/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..2a6285dedfe37163a683c00dda46bbf4c932d2c8 --- /dev/null +++ b/maze/task1/maps/level4/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d24667f8e96052bfd3d63b5363f6c1eda0067f28afd84a47634ec457aee5a76 +size 7452 diff --git a/maze/task1/maps/level4/img/63.png b/maze/task1/maps/level4/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..22d6b5d35acc432ff0b359c4b6cf2598ee07f434 --- /dev/null +++ b/maze/task1/maps/level4/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c251c2e9edf6c94dfdf42b3ae8efb65849ae4073f4c6464e13e731f2d9c34209 +size 8697 diff --git a/maze/task1/maps/level4/img/64.png b/maze/task1/maps/level4/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..7ebda7ca63a333cd1dbc76c22efc059e4ca4d788 --- /dev/null +++ b/maze/task1/maps/level4/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b9a4c93608f2c1ed862d66c5f4bd4649f9a07134a41f40c33554c8cdfe2a42 +size 8641 diff --git a/maze/task1/maps/level4/img/65.png b/maze/task1/maps/level4/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..35cc35249b9f18ee05dfb7df3077d8460ee90c3d --- /dev/null +++ b/maze/task1/maps/level4/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f71091634b85498517c0a5936d772b7653b292b70abf7edcffdd11e8bba29c14 +size 7700 diff --git a/maze/task1/maps/level4/img/66.png b/maze/task1/maps/level4/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..3827f4a48db90a4353d66c9ea4d52d3ef8090c29 --- /dev/null +++ b/maze/task1/maps/level4/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53dd14311a64b57c2ddd979135321e5644ce1dc9f09a3602abc33b9e0e59c4b4 +size 8658 diff --git a/maze/task1/maps/level4/img/67.png b/maze/task1/maps/level4/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..bef2fccabab7060d9a60bbbf5f85be12408335ef --- /dev/null +++ b/maze/task1/maps/level4/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6555f2ed661766a37ad42128b5dd40125c843bc05074aed0b1c92d913f134878 +size 8590 diff --git a/maze/task1/maps/level4/img/68.png b/maze/task1/maps/level4/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..015d600012b9ba7f381a6b265a466a3883210018 --- /dev/null +++ b/maze/task1/maps/level4/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b7bc9cd95caa742e22ec96f66509496d6390a68cd52c259d282abc5db55233 +size 8807 diff --git a/maze/task1/maps/level4/img/69.png b/maze/task1/maps/level4/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..1963411311b2262ec47a129f668bc95b87bc409c --- /dev/null +++ b/maze/task1/maps/level4/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea4d4f31310a67bb51773864adc0a7d38df26c4d896f4bc7bc71db69b812f7fc +size 7765 diff --git a/maze/task1/maps/level4/img/7.png b/maze/task1/maps/level4/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..fb00366a792c932fa1b0880f3934889bd3882664 --- /dev/null +++ b/maze/task1/maps/level4/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83887f602527b15c6c7982996d98b4474bfbf49a2d1821904af643d0e04e1e48 +size 8749 diff --git a/maze/task1/maps/level4/img/70.png b/maze/task1/maps/level4/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..40d3120d314edeb00c14ff0ccc11044eceddcd11 --- /dev/null +++ b/maze/task1/maps/level4/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe96cf2c9ece3f426ef89a349a1655d82251fa42814ea0731618ff9f4216acbe +size 8168 diff --git a/maze/task1/maps/level4/img/71.png b/maze/task1/maps/level4/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..18a3084d84552d5e73642c56d214b11600d02876 --- /dev/null +++ b/maze/task1/maps/level4/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac62f4ddd2a559e5b397b02f25ee1ffeb987a79c45d35cdf2d2dcacaaac7ff22 +size 8571 diff --git a/maze/task1/maps/level4/img/72.png b/maze/task1/maps/level4/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..7c5a961ce3cdfafc968c87a3a7dec91bc463e80f --- /dev/null +++ b/maze/task1/maps/level4/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86afc52fcda673505f0c96991df3ee7ce40899c597332b6afde8684436ffbcc5 +size 8727 diff --git a/maze/task1/maps/level4/img/73.png b/maze/task1/maps/level4/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..f495d2df8ea12183d845512587cc56f1fc5772bb --- /dev/null +++ b/maze/task1/maps/level4/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c2bbdc46123ab2ca3fb599e0832b1a1d54eeb1251f6d3da66b1f25760562b8 +size 7928 diff --git a/maze/task1/maps/level4/img/74.png b/maze/task1/maps/level4/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..00dbd6749b8a163bc2fdd90b2773c0af71dff54e --- /dev/null +++ b/maze/task1/maps/level4/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b48486930a7ced67150d01b1cfb6546db0252176354bc830a39604aee47a182 +size 7871 diff --git a/maze/task1/maps/level4/img/75.png b/maze/task1/maps/level4/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..de487638b3728e65f1656d5880bdd6af9cec76ea --- /dev/null +++ b/maze/task1/maps/level4/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d79360e6d6bef4a130c01ed595788d2cdfd6c413229b724c302e5f054ab3a72 +size 8686 diff --git a/maze/task1/maps/level4/img/76.png b/maze/task1/maps/level4/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..4bbb638be65ce8d8241f9f0652dac27e0d6560d5 --- /dev/null +++ b/maze/task1/maps/level4/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19db76cd6b3e1651c867c6c454c26a509dba9e07e159620141882dee3e34b9e9 +size 8809 diff --git a/maze/task1/maps/level4/img/77.png b/maze/task1/maps/level4/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..75b7d4577ea94934abdba30d488b205cf4ea187e --- /dev/null +++ b/maze/task1/maps/level4/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e786dfdfbac84a4fdc3147bf177878a94ddd60f98d1fe8ceaf684aa24ea8ac4 +size 7442 diff --git a/maze/task1/maps/level4/img/78.png b/maze/task1/maps/level4/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..04115ea84fdff1ea18153adfeadd55832999d3cd --- /dev/null +++ b/maze/task1/maps/level4/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58d9b1f6a71eac3acc69ddeb3f6b82c713836716f07115d666ccd5654180beb +size 8681 diff --git a/maze/task1/maps/level4/img/79.png b/maze/task1/maps/level4/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..d6143ecdb5235c410dc1ad6686e0f2f4f94c778d --- /dev/null +++ b/maze/task1/maps/level4/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1298b195db8c7f3d74bf2da3e1c35016ef19ddbd125302c6dad7a896e3efb24d +size 8755 diff --git a/maze/task1/maps/level4/img/8.png b/maze/task1/maps/level4/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1ef55c5bd61e95351b9f452e1bfa66687016dda7 --- /dev/null +++ b/maze/task1/maps/level4/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb0515e3e7f326db74c81f6cfbc775ad768647abbd6c98cec20c41f3637bfcf +size 8727 diff --git a/maze/task1/maps/level4/img/80.png b/maze/task1/maps/level4/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..0da3adcfcbc0ccfb286852b9f5b668c6a16b6218 --- /dev/null +++ b/maze/task1/maps/level4/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57f924aaa8572ccd27f7bb80a581018b292447df98c60f5f02e0b66f5859547 +size 8694 diff --git a/maze/task1/maps/level4/img/81.png b/maze/task1/maps/level4/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..1bdb4fed5a11038527d119452d7111116c97e540 --- /dev/null +++ b/maze/task1/maps/level4/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1edb51b33479a8dcddfaeae98bd96e98af3c0a0d57c9072e0f12f57965ae9cc1 +size 8683 diff --git a/maze/task1/maps/level4/img/82.png b/maze/task1/maps/level4/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..2e43b5e4e1c866c20d8ab08e61e353ccfb3b329c --- /dev/null +++ b/maze/task1/maps/level4/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3ba30cb393ec1e881c6ed7d8fa9cc066a87d921fb077958f055c02a9e4a39a +size 8577 diff --git a/maze/task1/maps/level4/img/83.png b/maze/task1/maps/level4/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..2674b0f1d9863890e369e37a7efb57f0e572a1bf --- /dev/null +++ b/maze/task1/maps/level4/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6106403ebcb253e1d2f1ee2511e0e70d568186440a89259a99c90148637c38f +size 7794 diff --git a/maze/task1/maps/level4/img/84.png b/maze/task1/maps/level4/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..ede80ba96e041ace03eb4a49fc82425eccdfe327 --- /dev/null +++ b/maze/task1/maps/level4/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e9eb2716215ac00ceb8d7cd8ec0a36f6c21e774b60d6c877824b2627709158 +size 7421 diff --git a/maze/task1/maps/level4/img/85.png b/maze/task1/maps/level4/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..8af236d4787affa8abaa1437a80cf466ed94e8f4 --- /dev/null +++ b/maze/task1/maps/level4/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863da43bd97e3a8f7b98d45290a19ca88aa39734ae0ead98e4dfb59671ff0009 +size 8478 diff --git a/maze/task1/maps/level4/img/86.png b/maze/task1/maps/level4/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..3cd4e5a33565fa03694fef5f21a56c929bdda74d --- /dev/null +++ b/maze/task1/maps/level4/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c47986bd41ae2cff95bc9cf2daa80e2ac32cd688c344ba98447448d9221a1a70 +size 8752 diff --git a/maze/task1/maps/level4/img/87.png b/maze/task1/maps/level4/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..6f015956f6c1a49e0fd5cb9f13e65853371ad47a --- /dev/null +++ b/maze/task1/maps/level4/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16061392f6274c3bf51b04682696d03fae3721d5cddb951d16e8b8f937a1f82 +size 8650 diff --git a/maze/task1/maps/level4/img/88.png b/maze/task1/maps/level4/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..f6a84eb761ded22ef335bd6e3b74765f2c44c4f0 --- /dev/null +++ b/maze/task1/maps/level4/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce4a0d24f6e2de8ec4feedf6aa3fc2a5cf8391b47f7b1f8e8c285b6cf901f94 +size 7831 diff --git a/maze/task1/maps/level4/img/89.png b/maze/task1/maps/level4/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..c309afafc85b86418295e1e667c6f7fb0724ab9e --- /dev/null +++ b/maze/task1/maps/level4/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a1369ec5ef8afc322cefbe4b1524ac412854a6ddf808a7f7df0fe5840c50e2 +size 8655 diff --git a/maze/task1/maps/level4/img/9.png b/maze/task1/maps/level4/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b12940f05ed5439d1337012f3db6e7546fe92bab --- /dev/null +++ b/maze/task1/maps/level4/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d8a042128b7c3716a7bb5fbdb604f512c5d974953ffd811ee4c6f2106c9667 +size 7894 diff --git a/maze/task1/maps/level4/img/90.png b/maze/task1/maps/level4/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..05d944f6e33616b985466032aa52e5710ddece83 --- /dev/null +++ b/maze/task1/maps/level4/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37495d43b6537e06548f132cdc40af616784cb909c0489876b3975d9ef4b832 +size 8799 diff --git a/maze/task1/maps/level4/img/91.png b/maze/task1/maps/level4/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..8c54d6d075782507d5a2c51e3183de792f6b7a2f --- /dev/null +++ b/maze/task1/maps/level4/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c47c51b17ee017132630b7474a9e7935436aed9488dd6cf4711a229d930e42c5 +size 7913 diff --git a/maze/task1/maps/level4/img/92.png b/maze/task1/maps/level4/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..9a418d240ff806e718b80bc238c7c624c5c78f7e --- /dev/null +++ b/maze/task1/maps/level4/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2483058af94a6716236e2c8ad8fde4b261dc44d034907f0121abd1725bf62c5 +size 8589 diff --git a/maze/task1/maps/level4/img/93.png b/maze/task1/maps/level4/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..f28c7543b36af71a3a2ab1346c96d14be313f47f --- /dev/null +++ b/maze/task1/maps/level4/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab56c4d0e4c926180e8a704a836d26c441cba067a2e417edcf262d76abc14f0e +size 8371 diff --git a/maze/task1/maps/level4/img/94.png b/maze/task1/maps/level4/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa51b8e7ef2fc1db6a5fa712410dddffc017332 --- /dev/null +++ b/maze/task1/maps/level4/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75ba5cc46adba5143da65fd87eaf7e4bfb2121902936bb69acc477654718152a +size 8589 diff --git a/maze/task1/maps/level4/img/95.png b/maze/task1/maps/level4/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..314fff73e12beb5a01d4c8278c96d35730426bd4 --- /dev/null +++ b/maze/task1/maps/level4/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3df907493d13b558006d7e8f1730ea091015547c88fc47bc87cdfd6ee904758 +size 8657 diff --git a/maze/task1/maps/level4/img/96.png b/maze/task1/maps/level4/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..81df2f825bfe64fb682f0428e3dfce490520c568 --- /dev/null +++ b/maze/task1/maps/level4/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:024a3de0a31f73d4392acf1f28798ea23018bc885cd7f9998cd268142d01cae8 +size 8688 diff --git a/maze/task1/maps/level4/img/97.png b/maze/task1/maps/level4/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..bb98ebcf71f376c5e9323dcfad5241b5306c476b --- /dev/null +++ b/maze/task1/maps/level4/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eccb92ef2dc64286e90f2f3fce41300ba974551b4d9a0ffdfa5d53a218496a3c +size 8744 diff --git a/maze/task1/maps/level4/img/98.png b/maze/task1/maps/level4/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..1d9f6e5493beba2a78ebf4f09a0793ea59801160 --- /dev/null +++ b/maze/task1/maps/level4/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53cbcf2d0a051361429716e011dc53442812927d05dfc97f008147e851139bd0 +size 8731 diff --git a/maze/task1/maps/level4/img/99.png b/maze/task1/maps/level4/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..342615aa3cfd0e2d0eb0a9792ccb7a7241815c6a --- /dev/null +++ b/maze/task1/maps/level4/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9670559fed309de851afee7abebdfa44d3a06583f7c4f5f9088ed018ddd5e7 +size 8693 diff --git a/maze/task1/maps/level4/pure_text/0.txt b/maze/task1/maps/level4/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..bccfe97361906b57286e7db0a2d41a14ae08bdbb --- /dev/null +++ b/maze/task1/maps/level4/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/1.txt b/maze/task1/maps/level4/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..222ccc66fffe8ee42c137ad92c83359ee1cbf722 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/10.txt b/maze/task1/maps/level4/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..21a028923e8f3322b9d52f3922a8b4224d97d0c3 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/11.txt b/maze/task1/maps/level4/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..86909095ce7faf2074511c2b0dd0f490f5d4ebf3 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/12.txt b/maze/task1/maps/level4/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6dedb92a6fcd8867a7b63dcba0cf1e2880d8a4e --- /dev/null +++ b/maze/task1/maps/level4/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/13.txt b/maze/task1/maps/level4/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cf628fefa11933a7c592276e2d839eedc76168d --- /dev/null +++ b/maze/task1/maps/level4/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/14.txt b/maze/task1/maps/level4/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..579b1611d55710bb1249f905036a5a65fc5a90c1 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/15.txt b/maze/task1/maps/level4/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..34044764bbf7a6d27d4f2f5e9e3adbec3c62e620 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/16.txt b/maze/task1/maps/level4/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3989ddf27329188c5f47f7fd04ded735c78bc48 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/17.txt b/maze/task1/maps/level4/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..2da23a94ac6f57ccb18dbc0b883bbb560db1f8e4 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/18.txt b/maze/task1/maps/level4/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..1841f4d44c7bd1bdaa34284b2c203160aefd50ee --- /dev/null +++ b/maze/task1/maps/level4/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/19.txt b/maze/task1/maps/level4/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdf989e0ca4cde2896085bef0c8e9782e5b09e41 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/2.txt b/maze/task1/maps/level4/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..107502f21422f2030c1d689394b2fc2479dd2edf --- /dev/null +++ b/maze/task1/maps/level4/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/20.txt b/maze/task1/maps/level4/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..2081e46b508f5243c77fad1def8952434e5b34df --- /dev/null +++ b/maze/task1/maps/level4/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/21.txt b/maze/task1/maps/level4/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d4afe16de35437aff764913b5eaf74c87e82f35 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/22.txt b/maze/task1/maps/level4/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bb0a680c110c4b0322e11ac8182de6bdfac13b8 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/23.txt b/maze/task1/maps/level4/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..a93452afb7a48d01d6258504111d210b759446b3 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 4, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/24.txt b/maze/task1/maps/level4/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3f3fadaf0ba59894318c8e432dfb4c9054aa5d6 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/25.txt b/maze/task1/maps/level4/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..029d91e5394dcc3ed55e4352c1c5d955f1c7db85 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/26.txt b/maze/task1/maps/level4/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..696e20fdec13f03cde5bb034a6d9b5e8e0260fcb --- /dev/null +++ b/maze/task1/maps/level4/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/27.txt b/maze/task1/maps/level4/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..4473248a629f3937d3591dccd06b616807fde14c --- /dev/null +++ b/maze/task1/maps/level4/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/28.txt b/maze/task1/maps/level4/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..27bf118b217a4524337672660168d058a8fd5447 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/29.txt b/maze/task1/maps/level4/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..66a93e0cd97b9b7231e668f07302d6bc96a62058 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/3.txt b/maze/task1/maps/level4/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..c270b1f1ebcc46708fd1b93f84b637ecc4861f98 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/30.txt b/maze/task1/maps/level4/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..69769428c21839d312224cdfbfde400849703840 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/31.txt b/maze/task1/maps/level4/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..411ef30abd4dd00f5511f42932f5ce1998307400 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/32.txt b/maze/task1/maps/level4/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e9d8b3e20326a33f66c0887717f02938d481213 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/33.txt b/maze/task1/maps/level4/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d5398207194e43e549aca4987b1284210f8daca --- /dev/null +++ b/maze/task1/maps/level4/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/34.txt b/maze/task1/maps/level4/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..125265c75171c17258276547e8ebaf6f46566142 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/35.txt b/maze/task1/maps/level4/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1ce4bf0140eca2d28ea8ec170c53c7e08412e34 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/36.txt b/maze/task1/maps/level4/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e8ed70bc6c4f481e24ae20e4d682b249b260182 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/37.txt b/maze/task1/maps/level4/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..d56508dd1b97abc7df9082af926f7b2116ba08d4 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/38.txt b/maze/task1/maps/level4/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..82fe27cddd6df11522551239be3475565d8fe19e --- /dev/null +++ b/maze/task1/maps/level4/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 2; Row 4, Column 2; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/39.txt b/maze/task1/maps/level4/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..59d5191223db31b9b4baa4055584fbfec8609bdb --- /dev/null +++ b/maze/task1/maps/level4/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/4.txt b/maze/task1/maps/level4/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..08282d25d7309efa66fdfac49ece73ae856ad4e6 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/40.txt b/maze/task1/maps/level4/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..53a94239a0038318de97e65dfeca8a58acf94f65 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/41.txt b/maze/task1/maps/level4/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..61f88d4d3bf61f6c433a261f2dbb225d6d056b8d --- /dev/null +++ b/maze/task1/maps/level4/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 2; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/42.txt b/maze/task1/maps/level4/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe526f98dab2283896054045d61ed3301158a253 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/43.txt b/maze/task1/maps/level4/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..84028053b884cbd5fa87ae6d7a47eb2192078b23 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 1; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/44.txt b/maze/task1/maps/level4/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..699763ee010bde1a76b77df7e4896cf35a29299c --- /dev/null +++ b/maze/task1/maps/level4/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/45.txt b/maze/task1/maps/level4/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..03ed9a45ac6b532a240d8ed24f0ee87294a5b66f --- /dev/null +++ b/maze/task1/maps/level4/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/46.txt b/maze/task1/maps/level4/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8a17e460d71a318b08e1c68dbc9f5cf9c836b0f --- /dev/null +++ b/maze/task1/maps/level4/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/47.txt b/maze/task1/maps/level4/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..71c7a96abb6fd6866c03cb295687b1920190a7f9 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/48.txt b/maze/task1/maps/level4/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..2959a9968dad202f325ea0226f441445136eff4f --- /dev/null +++ b/maze/task1/maps/level4/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/49.txt b/maze/task1/maps/level4/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..98537cbcfa194ce9815cfefaf8246d0d952e0792 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/5.txt b/maze/task1/maps/level4/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..01adcc909a46edd13d4587025736dfceee09085d --- /dev/null +++ b/maze/task1/maps/level4/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/50.txt b/maze/task1/maps/level4/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ffb696fd33e256dc4c86b509d0ca7114515c533 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/51.txt b/maze/task1/maps/level4/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..1689ec86b220ae69e1dae3082676b6230384a9af --- /dev/null +++ b/maze/task1/maps/level4/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 4; Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/52.txt b/maze/task1/maps/level4/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d582ab8469835db8238cba63ffa03a52958e531 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/53.txt b/maze/task1/maps/level4/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c16dd08a8e1ebb775d37f669f9fd7b08e6e6797 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/54.txt b/maze/task1/maps/level4/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..626b77e58f81d5a41f5d89f6badbb2a6c513a49b --- /dev/null +++ b/maze/task1/maps/level4/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/55.txt b/maze/task1/maps/level4/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..97d9d19fc7f82b0db9f8fe18817b375b62f15410 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/56.txt b/maze/task1/maps/level4/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f1f176f42464643439751b9547866f4a266a55b --- /dev/null +++ b/maze/task1/maps/level4/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/57.txt b/maze/task1/maps/level4/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e0a01cd1248549a714c0ab6c91416a4f7c45c77 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/58.txt b/maze/task1/maps/level4/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..7602d487765f5c9c0fe5c5b0b16fd3eacfc5501d --- /dev/null +++ b/maze/task1/maps/level4/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/59.txt b/maze/task1/maps/level4/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cf75d47ac71b59e070d1ff1647bf2ff01473447 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/6.txt b/maze/task1/maps/level4/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..937c52038e6ee4b261e120d8d015b888c4c53329 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/60.txt b/maze/task1/maps/level4/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..653cc08f6c74cce6b34bcb4d39e9c0bc053caaa5 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/61.txt b/maze/task1/maps/level4/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dcefd7f2d0ccac186b6409e00abee95b1622cc1 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/62.txt b/maze/task1/maps/level4/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..524dfb0e4ce59c6982a35b99b45b2c92d5ce0abf --- /dev/null +++ b/maze/task1/maps/level4/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/63.txt b/maze/task1/maps/level4/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b56056a2a4d5c7ab94b465b7d6be236ab4482456 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/64.txt b/maze/task1/maps/level4/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..54d8f356d44243ad788527f1a720b1c407b96b57 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/65.txt b/maze/task1/maps/level4/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c8eb6ac581b77f1d3e86782ac6b11a0b7565d8c --- /dev/null +++ b/maze/task1/maps/level4/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/66.txt b/maze/task1/maps/level4/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13bfdcd22500170018fa4cded969e9269ad6432 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/67.txt b/maze/task1/maps/level4/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1b2534072e9601f99a268f9ca1a9f5f17dae0d8 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/68.txt b/maze/task1/maps/level4/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..d85f571e6e096281d2fcffbb7b32a272a91c2671 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 3; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/69.txt b/maze/task1/maps/level4/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..8be8649a29139b048659b96267eec180b633686c --- /dev/null +++ b/maze/task1/maps/level4/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/7.txt b/maze/task1/maps/level4/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0869b90917cd689dae3ef5c0f9e3c1f5e7b790cb --- /dev/null +++ b/maze/task1/maps/level4/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/70.txt b/maze/task1/maps/level4/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..71bd2f40512af3079d12b17103b4fd9e94093ed8 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 4; Row 3, Column 1; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/71.txt b/maze/task1/maps/level4/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..0371acd7c7eacc25625341973b9a788d4c222874 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/72.txt b/maze/task1/maps/level4/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f0ac5cbbb1ca46a8df209351b1729f33fbeb171 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/73.txt b/maze/task1/maps/level4/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..087e2ef2f9affe4a54c599ef5ed9828006c172d9 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/74.txt b/maze/task1/maps/level4/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6a38a34f0234fd2ac4b8a76992d2b94a8a26e72 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/75.txt b/maze/task1/maps/level4/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4cc0dc2e0fcea1c5a11675d33152eca9685386d --- /dev/null +++ b/maze/task1/maps/level4/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/76.txt b/maze/task1/maps/level4/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..76e40eb77015c268c8f6d1ca8faef380c78bb82b --- /dev/null +++ b/maze/task1/maps/level4/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/77.txt b/maze/task1/maps/level4/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c441ff554b39d7c5a3482d42379a9fe0626acf6 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/78.txt b/maze/task1/maps/level4/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..da15788bef4b37582c0a7f5ff9b99db04f61500f --- /dev/null +++ b/maze/task1/maps/level4/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/79.txt b/maze/task1/maps/level4/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8c2c7a612e3dacec4f5846de29bcf1fcf4fc784 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/8.txt b/maze/task1/maps/level4/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd88589597d899c58405768d86d75198a4be1c12 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/80.txt b/maze/task1/maps/level4/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..955b537af2192bddc5a99e1f3583813f4f8586ea --- /dev/null +++ b/maze/task1/maps/level4/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/81.txt b/maze/task1/maps/level4/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..6245f927d9cd842e968f71c16be4f2fe4bdf376e --- /dev/null +++ b/maze/task1/maps/level4/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/82.txt b/maze/task1/maps/level4/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5bbe7afe663206708d11d9827d446aedd67ab2e --- /dev/null +++ b/maze/task1/maps/level4/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/83.txt b/maze/task1/maps/level4/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..162cbc26f40bf99e0105d1811288eb59d658771b --- /dev/null +++ b/maze/task1/maps/level4/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/84.txt b/maze/task1/maps/level4/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff0d79e9bd085d1847cdb5c1ad00b70085f93a9b --- /dev/null +++ b/maze/task1/maps/level4/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 4, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/85.txt b/maze/task1/maps/level4/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3b8c3c36e59c2fef8a43a5b9041d6cf6c610d9a --- /dev/null +++ b/maze/task1/maps/level4/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/86.txt b/maze/task1/maps/level4/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..975dada32d1986f20142ee3bd1017de157c30d91 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/87.txt b/maze/task1/maps/level4/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..48b0691a2da65969351e3eb883d0a9b3d7cf1b57 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/88.txt b/maze/task1/maps/level4/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..173fff4faa5bf023860ae569d41245402697b1b5 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/89.txt b/maze/task1/maps/level4/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..65b53988b36abad20d37255e049fd37c6dbf98ba --- /dev/null +++ b/maze/task1/maps/level4/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/9.txt b/maze/task1/maps/level4/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a8e3c290a8ed493763eba371ae8c1e226fb6ae3 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/90.txt b/maze/task1/maps/level4/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..4532cd91c0fdb77fff0b421e89859837388df606 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/91.txt b/maze/task1/maps/level4/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2523f9f2c86a1df6488bf143d139724b2408c0a3 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/92.txt b/maze/task1/maps/level4/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..75f5d408acc85050030550c8ed0897a680afc49c --- /dev/null +++ b/maze/task1/maps/level4/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/93.txt b/maze/task1/maps/level4/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c8b72aa5f55059a72030f9084a07257ebaa54dc --- /dev/null +++ b/maze/task1/maps/level4/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/94.txt b/maze/task1/maps/level4/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..12e6f71d727a1cd02e91fd29c3139889ba564a52 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/95.txt b/maze/task1/maps/level4/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..0663849ecea5fcfc822ff3f2054015b306668002 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/96.txt b/maze/task1/maps/level4/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..c809ba45bb69e8d2057786ab4b4487e64a1b1f82 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/97.txt b/maze/task1/maps/level4/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..e64896917b79dcac06d3e8a3aa31b73d4761526e --- /dev/null +++ b/maze/task1/maps/level4/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/98.txt b/maze/task1/maps/level4/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d97faea657a9cf00b0c546a93300cb49a8a16f6 --- /dev/null +++ b/maze/task1/maps/level4/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level4/pure_text/99.txt b/maze/task1/maps/level4/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f67fb4433918948a9de0f80d8616e6a937116ab --- /dev/null +++ b/maze/task1/maps/level4/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level4/question/0.txt b/maze/task1/maps/level4/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level4/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/1.txt b/maze/task1/maps/level4/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level4/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/10.txt b/maze/task1/maps/level4/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9aede805af915baa2df0e8e796da4fc5847723a --- /dev/null +++ b/maze/task1/maps/level4/question/10.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/11.txt b/maze/task1/maps/level4/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level4/question/11.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/12.txt b/maze/task1/maps/level4/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level4/question/12.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/13.txt b/maze/task1/maps/level4/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level4/question/13.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/14.txt b/maze/task1/maps/level4/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level4/question/14.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/15.txt b/maze/task1/maps/level4/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level4/question/15.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/16.txt b/maze/task1/maps/level4/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level4/question/16.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/17.txt b/maze/task1/maps/level4/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level4/question/17.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/18.txt b/maze/task1/maps/level4/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level4/question/18.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/19.txt b/maze/task1/maps/level4/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level4/question/19.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/2.txt b/maze/task1/maps/level4/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level4/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/20.txt b/maze/task1/maps/level4/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level4/question/20.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/21.txt b/maze/task1/maps/level4/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level4/question/21.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/22.txt b/maze/task1/maps/level4/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level4/question/22.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/23.txt b/maze/task1/maps/level4/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level4/question/23.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/24.txt b/maze/task1/maps/level4/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level4/question/24.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/25.txt b/maze/task1/maps/level4/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level4/question/25.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/26.txt b/maze/task1/maps/level4/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level4/question/26.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/27.txt b/maze/task1/maps/level4/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level4/question/27.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/28.txt b/maze/task1/maps/level4/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level4/question/28.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/29.txt b/maze/task1/maps/level4/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level4/question/29.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/3.txt b/maze/task1/maps/level4/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level4/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/30.txt b/maze/task1/maps/level4/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level4/question/30.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/31.txt b/maze/task1/maps/level4/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level4/question/31.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/32.txt b/maze/task1/maps/level4/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level4/question/32.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/33.txt b/maze/task1/maps/level4/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level4/question/33.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/34.txt b/maze/task1/maps/level4/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level4/question/34.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/35.txt b/maze/task1/maps/level4/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level4/question/35.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/36.txt b/maze/task1/maps/level4/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level4/question/36.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/37.txt b/maze/task1/maps/level4/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level4/question/37.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/38.txt b/maze/task1/maps/level4/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level4/question/38.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/39.txt b/maze/task1/maps/level4/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level4/question/39.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/4.txt b/maze/task1/maps/level4/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level4/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/40.txt b/maze/task1/maps/level4/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level4/question/40.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/41.txt b/maze/task1/maps/level4/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level4/question/41.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/42.txt b/maze/task1/maps/level4/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level4/question/42.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/43.txt b/maze/task1/maps/level4/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level4/question/43.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/44.txt b/maze/task1/maps/level4/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level4/question/44.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/45.txt b/maze/task1/maps/level4/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level4/question/45.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/46.txt b/maze/task1/maps/level4/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level4/question/46.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/47.txt b/maze/task1/maps/level4/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level4/question/47.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/48.txt b/maze/task1/maps/level4/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level4/question/48.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/49.txt b/maze/task1/maps/level4/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level4/question/49.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/5.txt b/maze/task1/maps/level4/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level4/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/50.txt b/maze/task1/maps/level4/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level4/question/50.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/51.txt b/maze/task1/maps/level4/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level4/question/51.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/52.txt b/maze/task1/maps/level4/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level4/question/52.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/53.txt b/maze/task1/maps/level4/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level4/question/53.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/54.txt b/maze/task1/maps/level4/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level4/question/54.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/55.txt b/maze/task1/maps/level4/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level4/question/55.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/56.txt b/maze/task1/maps/level4/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level4/question/56.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/57.txt b/maze/task1/maps/level4/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level4/question/57.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/58.txt b/maze/task1/maps/level4/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level4/question/58.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/59.txt b/maze/task1/maps/level4/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level4/question/59.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/6.txt b/maze/task1/maps/level4/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level4/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/60.txt b/maze/task1/maps/level4/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level4/question/60.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/61.txt b/maze/task1/maps/level4/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level4/question/61.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/62.txt b/maze/task1/maps/level4/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level4/question/62.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/63.txt b/maze/task1/maps/level4/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level4/question/63.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/64.txt b/maze/task1/maps/level4/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level4/question/64.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/65.txt b/maze/task1/maps/level4/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level4/question/65.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/66.txt b/maze/task1/maps/level4/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level4/question/66.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/67.txt b/maze/task1/maps/level4/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level4/question/67.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/68.txt b/maze/task1/maps/level4/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9aede805af915baa2df0e8e796da4fc5847723a --- /dev/null +++ b/maze/task1/maps/level4/question/68.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/69.txt b/maze/task1/maps/level4/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level4/question/69.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/7.txt b/maze/task1/maps/level4/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level4/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/70.txt b/maze/task1/maps/level4/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level4/question/70.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/71.txt b/maze/task1/maps/level4/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level4/question/71.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/72.txt b/maze/task1/maps/level4/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level4/question/72.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/73.txt b/maze/task1/maps/level4/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level4/question/73.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/74.txt b/maze/task1/maps/level4/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level4/question/74.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/75.txt b/maze/task1/maps/level4/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9aede805af915baa2df0e8e796da4fc5847723a --- /dev/null +++ b/maze/task1/maps/level4/question/75.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/76.txt b/maze/task1/maps/level4/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level4/question/76.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/77.txt b/maze/task1/maps/level4/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level4/question/77.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/78.txt b/maze/task1/maps/level4/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level4/question/78.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/79.txt b/maze/task1/maps/level4/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level4/question/79.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/8.txt b/maze/task1/maps/level4/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level4/question/8.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/80.txt b/maze/task1/maps/level4/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level4/question/80.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/81.txt b/maze/task1/maps/level4/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level4/question/81.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/82.txt b/maze/task1/maps/level4/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level4/question/82.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/83.txt b/maze/task1/maps/level4/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level4/question/83.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/84.txt b/maze/task1/maps/level4/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level4/question/84.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/85.txt b/maze/task1/maps/level4/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level4/question/85.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/86.txt b/maze/task1/maps/level4/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level4/question/86.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/87.txt b/maze/task1/maps/level4/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level4/question/87.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/88.txt b/maze/task1/maps/level4/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level4/question/88.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/89.txt b/maze/task1/maps/level4/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level4/question/89.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/9.txt b/maze/task1/maps/level4/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level4/question/9.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/90.txt b/maze/task1/maps/level4/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level4/question/90.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/91.txt b/maze/task1/maps/level4/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level4/question/91.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/92.txt b/maze/task1/maps/level4/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level4/question/92.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/93.txt b/maze/task1/maps/level4/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level4/question/93.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/94.txt b/maze/task1/maps/level4/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level4/question/94.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/95.txt b/maze/task1/maps/level4/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level4/question/95.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/96.txt b/maze/task1/maps/level4/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level4/question/96.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/97.txt b/maze/task1/maps/level4/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level4/question/97.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/98.txt b/maze/task1/maps/level4/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level4/question/98.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level4/question/99.txt b/maze/task1/maps/level4/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level4/question/99.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level4/table/0.txt b/maze/task1/maps/level4/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ac1df0e3d8b31b22531c16a27c48822006e54b7 --- /dev/null +++ b/maze/task1/maps/level4/table/0.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | # | +| Row 2 | # | # | @ | # | +| Row 3 | * | _ | _ | # | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task1/maps/level4/table/1.txt b/maze/task1/maps/level4/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..018555482fb3ea46a1a7557f38c73e75de8c843c --- /dev/null +++ b/maze/task1/maps/level4/table/1.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | # | # | # | * | +| Row 3 | # | _ | @ | # | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task1/maps/level4/table/10.txt b/maze/task1/maps/level4/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..8aa69010dcf169f0949cdc892d92f12b09dd10cb --- /dev/null +++ b/maze/task1/maps/level4/table/10.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | * | _ | +| Row 2 | # | # | _ | # | +| Row 3 | # | _ | # | _ | +| Row 4 | # | _ | # | # | diff --git a/maze/task1/maps/level4/table/11.txt b/maze/task1/maps/level4/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e18c6eb9362fd2348d9822304cf0a9caf044c04 --- /dev/null +++ b/maze/task1/maps/level4/table/11.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | @ | +| Row 2 | # | _ | # | # | +| Row 3 | # | # | _ | # | +| Row 4 | # | # | _ | _ | diff --git a/maze/task1/maps/level4/table/12.txt b/maze/task1/maps/level4/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cc453fd1776bc440adf861be6504bdd4707126b --- /dev/null +++ b/maze/task1/maps/level4/table/12.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | * | # | # | +| Row 3 | _ | # | # | @ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/13.txt b/maze/task1/maps/level4/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..235bc6e615cd44a43c23a309b7fc6ed8d4fcbdea --- /dev/null +++ b/maze/task1/maps/level4/table/13.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | * | _ | # | +| Row 2 | @ | _ | # | # | +| Row 3 | # | # | # | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task1/maps/level4/table/14.txt b/maze/task1/maps/level4/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..833fda0d87a340cc05c817f010b79d3221b13d55 --- /dev/null +++ b/maze/task1/maps/level4/table/14.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | # | _ | +| Row 4 | * | _ | # | # | diff --git a/maze/task1/maps/level4/table/15.txt b/maze/task1/maps/level4/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1219ce399d511dca0354de0d4853a60510b18ad --- /dev/null +++ b/maze/task1/maps/level4/table/15.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | _ | # | # | * | +| Row 3 | @ | # | _ | # | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/16.txt b/maze/task1/maps/level4/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bdd352ef5dbb8409509f5e0eb92f65a58e42e71 --- /dev/null +++ b/maze/task1/maps/level4/table/16.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | # | @ | # | _ | +| Row 4 | * | # | # | # | diff --git a/maze/task1/maps/level4/table/17.txt b/maze/task1/maps/level4/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..38c960f7d0640c747e0bf5b21150a2f1d0a2f60a --- /dev/null +++ b/maze/task1/maps/level4/table/17.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | # | # | # | +| Row 4 | * | @ | _ | _ | diff --git a/maze/task1/maps/level4/table/18.txt b/maze/task1/maps/level4/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..595ae6173e5026ccc59683f8e9e138b9a6a8c7c5 --- /dev/null +++ b/maze/task1/maps/level4/table/18.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | # | @ | _ | +| Row 3 | _ | # | # | # | +| Row 4 | * | _ | # | # | diff --git a/maze/task1/maps/level4/table/19.txt b/maze/task1/maps/level4/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a78e32ec906354a76059e78b8a07cfcff6d98a0 --- /dev/null +++ b/maze/task1/maps/level4/table/19.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | # | _ | # | _ | +| Row 3 | # | _ | _ | # | +| Row 4 | * | @ | # | # | diff --git a/maze/task1/maps/level4/table/2.txt b/maze/task1/maps/level4/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..eede27104639ceeebc53d4044385daf413839a0d --- /dev/null +++ b/maze/task1/maps/level4/table/2.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | @ | +| Row 2 | # | # | * | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/20.txt b/maze/task1/maps/level4/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..88e7b408cfe208104b6cc033c0bf9902132b0a1f --- /dev/null +++ b/maze/task1/maps/level4/table/20.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | @ | # | # | # | +| Row 3 | # | * | # | _ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task1/maps/level4/table/21.txt b/maze/task1/maps/level4/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..35c1e33c34b6f5b0fe9b5e5f610ede563705b6bd --- /dev/null +++ b/maze/task1/maps/level4/table/21.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | # | # | @ | * | +| Row 3 | # | _ | # | _ | +| Row 4 | _ | # | _ | # | diff --git a/maze/task1/maps/level4/table/22.txt b/maze/task1/maps/level4/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..20d9ecaf2e8503f9da736968309d5d4aa40dd4a5 --- /dev/null +++ b/maze/task1/maps/level4/table/22.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | _ | +| Row 2 | _ | _ | # | # | +| Row 3 | * | # | _ | # | +| Row 4 | # | _ | @ | _ | diff --git a/maze/task1/maps/level4/table/23.txt b/maze/task1/maps/level4/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdbca13277efa598e30711bf8a12bb9d2eca15e4 --- /dev/null +++ b/maze/task1/maps/level4/table/23.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | * | +| Row 2 | # | @ | # | # | +| Row 3 | # | # | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task1/maps/level4/table/24.txt b/maze/task1/maps/level4/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6e057714c97e1efe96a30dc25437d2499a8594f --- /dev/null +++ b/maze/task1/maps/level4/table/24.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | # | _ | # | # | +| Row 4 | _ | # | @ | # | diff --git a/maze/task1/maps/level4/table/25.txt b/maze/task1/maps/level4/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..42f633014df466bc913076bf0bcd5ec15ebeaf09 --- /dev/null +++ b/maze/task1/maps/level4/table/25.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | * | @ | _ | +| Row 2 | # | _ | # | # | +| Row 3 | # | _ | _ | _ | +| Row 4 | # | # | _ | # | diff --git a/maze/task1/maps/level4/table/26.txt b/maze/task1/maps/level4/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8517b1c8fcd69cfb4648d275a0cd421baf96259 --- /dev/null +++ b/maze/task1/maps/level4/table/26.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | * | +| Row 2 | # | _ | _ | # | +| Row 3 | # | _ | # | _ | +| Row 4 | # | @ | _ | _ | diff --git a/maze/task1/maps/level4/table/27.txt b/maze/task1/maps/level4/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..940af8f3e81cc3edef817d9c76761464428a8529 --- /dev/null +++ b/maze/task1/maps/level4/table/27.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | # | +| Row 2 | # | _ | # | # | +| Row 3 | @ | _ | * | _ | +| Row 4 | _ | # | _ | # | diff --git a/maze/task1/maps/level4/table/28.txt b/maze/task1/maps/level4/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe399466a27c2b958453073284c3b14bc253a1f5 --- /dev/null +++ b/maze/task1/maps/level4/table/28.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | # | +| Row 2 | # | _ | _ | * | +| Row 3 | # | # | # | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/29.txt b/maze/task1/maps/level4/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..44dcd33daaeb2700f00f06bacf7c816f9a334714 --- /dev/null +++ b/maze/task1/maps/level4/table/29.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | # | +| Row 2 | * | # | _ | # | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | @ | # | _ | diff --git a/maze/task1/maps/level4/table/3.txt b/maze/task1/maps/level4/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b90777e7849a44cd4c45e36ca0346d1efe93319 --- /dev/null +++ b/maze/task1/maps/level4/table/3.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | # | # | +| Row 3 | _ | _ | # | # | +| Row 4 | * | # | _ | # | diff --git a/maze/task1/maps/level4/table/30.txt b/maze/task1/maps/level4/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..fababd9bf8f39a64dc09c7f6050a7325185a9784 --- /dev/null +++ b/maze/task1/maps/level4/table/30.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | # | +| Row 2 | _ | # | _ | # | +| Row 3 | # | # | _ | # | +| Row 4 | @ | _ | _ | * | diff --git a/maze/task1/maps/level4/table/31.txt b/maze/task1/maps/level4/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..4daae03861e9567fe9611b2f8462b99853717a54 --- /dev/null +++ b/maze/task1/maps/level4/table/31.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | # | # | _ | +| Row 3 | @ | # | _ | # | +| Row 4 | # | # | _ | * | diff --git a/maze/task1/maps/level4/table/32.txt b/maze/task1/maps/level4/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ebb4342f59de51d5a03a0d81b6038baf3c73b78 --- /dev/null +++ b/maze/task1/maps/level4/table/32.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | @ | _ | _ | # | +| Row 3 | # | # | # | # | +| Row 4 | * | # | # | _ | diff --git a/maze/task1/maps/level4/table/33.txt b/maze/task1/maps/level4/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..0956280051494d6fa270c76462fbc7137a7609a0 --- /dev/null +++ b/maze/task1/maps/level4/table/33.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | # | # | # | _ | +| Row 3 | # | # | _ | _ | +| Row 4 | # | # | @ | # | diff --git a/maze/task1/maps/level4/table/34.txt b/maze/task1/maps/level4/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..619a94effa66243d10166d2879774acd198c9b48 --- /dev/null +++ b/maze/task1/maps/level4/table/34.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | # | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | @ | # | +| Row 4 | # | # | _ | * | diff --git a/maze/task1/maps/level4/table/35.txt b/maze/task1/maps/level4/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..368305f936c642f458091766d0b85ec6084e3f5b --- /dev/null +++ b/maze/task1/maps/level4/table/35.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | @ | +| Row 2 | # | # | _ | * | +| Row 3 | # | # | _ | _ | +| Row 4 | _ | # | # | _ | diff --git a/maze/task1/maps/level4/table/36.txt b/maze/task1/maps/level4/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5f0506f076d0ac7545a27e052574745a994d912 --- /dev/null +++ b/maze/task1/maps/level4/table/36.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | @ | # | # | * | +| Row 4 | # | # | _ | # | diff --git a/maze/task1/maps/level4/table/37.txt b/maze/task1/maps/level4/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..88950004e75df793364d1d5d8b2e252b61acdf25 --- /dev/null +++ b/maze/task1/maps/level4/table/37.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | @ | +| Row 2 | # | _ | # | * | +| Row 3 | _ | # | _ | # | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task1/maps/level4/table/38.txt b/maze/task1/maps/level4/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..564231a326b7542e926c2afa299f394b17f359db --- /dev/null +++ b/maze/task1/maps/level4/table/38.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | _ | +| Row 2 | # | # | _ | # | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | # | * | _ | diff --git a/maze/task1/maps/level4/table/39.txt b/maze/task1/maps/level4/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9abb1e1839427450c086e37b28b3fd1a42c44a5 --- /dev/null +++ b/maze/task1/maps/level4/table/39.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | _ | _ | # | # | +| Row 3 | # | # | _ | _ | +| Row 4 | * | # | @ | # | diff --git a/maze/task1/maps/level4/table/4.txt b/maze/task1/maps/level4/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4dc81d6d5196bd6fba83f1fd3dde623f0b7111f --- /dev/null +++ b/maze/task1/maps/level4/table/4.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | * | _ | +| Row 2 | # | # | _ | # | +| Row 3 | # | # | _ | _ | +| Row 4 | _ | @ | _ | # | diff --git a/maze/task1/maps/level4/table/40.txt b/maze/task1/maps/level4/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..dba59c7f67389f51f2ff88b6a554ee5b2fe03580 --- /dev/null +++ b/maze/task1/maps/level4/table/40.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | # | _ | # | @ | +| Row 3 | _ | _ | # | _ | +| Row 4 | # | # | # | * | diff --git a/maze/task1/maps/level4/table/41.txt b/maze/task1/maps/level4/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1569d28b7a369019deb6c9efc764aa1001beae9 --- /dev/null +++ b/maze/task1/maps/level4/table/41.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | # | # | _ | # | +| Row 3 | @ | # | _ | * | +| Row 4 | # | _ | # | _ | diff --git a/maze/task1/maps/level4/table/42.txt b/maze/task1/maps/level4/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..d586ebbb7e51fcbaa6e81acda6caf6378abee808 --- /dev/null +++ b/maze/task1/maps/level4/table/42.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | # | # | # | _ | diff --git a/maze/task1/maps/level4/table/43.txt b/maze/task1/maps/level4/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee8a4b8d93ba02281fd4c73d11a9c0856102bda6 --- /dev/null +++ b/maze/task1/maps/level4/table/43.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | # | +| Row 2 | # | _ | _ | # | +| Row 3 | _ | # | _ | # | +| Row 4 | # | @ | _ | # | diff --git a/maze/task1/maps/level4/table/44.txt b/maze/task1/maps/level4/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..7580f9ecda2fd867de06ffd86b4dba8d7f3c37bf --- /dev/null +++ b/maze/task1/maps/level4/table/44.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | _ | +| Row 2 | _ | # | # | * | +| Row 3 | # | # | # | _ | +| Row 4 | _ | # | # | _ | diff --git a/maze/task1/maps/level4/table/45.txt b/maze/task1/maps/level4/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..609c7700f302825698ff5aad41f12262fde80c3d --- /dev/null +++ b/maze/task1/maps/level4/table/45.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | * | # | +| Row 2 | # | # | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | # | _ | _ | # | diff --git a/maze/task1/maps/level4/table/46.txt b/maze/task1/maps/level4/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..a900c64f659f83950bbe816c71c65b478353558c --- /dev/null +++ b/maze/task1/maps/level4/table/46.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | * | _ | @ | # | +| Row 4 | # | # | # | # | diff --git a/maze/task1/maps/level4/table/47.txt b/maze/task1/maps/level4/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..95ce0019dfa30796cbb3ee46614b0ccfd32e0568 --- /dev/null +++ b/maze/task1/maps/level4/table/47.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | @ | # | # | _ | +| Row 3 | # | * | _ | # | +| Row 4 | # | _ | # | _ | diff --git a/maze/task1/maps/level4/table/48.txt b/maze/task1/maps/level4/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..532122612d8e603178cfe90706bb59416994c156 --- /dev/null +++ b/maze/task1/maps/level4/table/48.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | @ | _ | +| Row 2 | # | _ | # | * | +| Row 3 | # | _ | # | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/49.txt b/maze/task1/maps/level4/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..42df16b8e37b5e09a5ceb405b7c8af517577187c --- /dev/null +++ b/maze/task1/maps/level4/table/49.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | # | +| Row 2 | _ | _ | _ | # | +| Row 3 | # | # | _ | _ | +| Row 4 | # | # | * | # | diff --git a/maze/task1/maps/level4/table/5.txt b/maze/task1/maps/level4/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..7098ad693ea6affe91a9bb71b293ec0eba787a25 --- /dev/null +++ b/maze/task1/maps/level4/table/5.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | @ | +| Row 2 | # | # | # | _ | +| Row 3 | # | _ | # | _ | +| Row 4 | _ | # | _ | * | diff --git a/maze/task1/maps/level4/table/50.txt b/maze/task1/maps/level4/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca55ce469bd9b2ba4866a596c887000d0ace2a8b --- /dev/null +++ b/maze/task1/maps/level4/table/50.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | # | _ | +| Row 4 | * | # | @ | _ | diff --git a/maze/task1/maps/level4/table/51.txt b/maze/task1/maps/level4/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b0b949446b06df1f7f6dbb974acab01c9287988 --- /dev/null +++ b/maze/task1/maps/level4/table/51.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | # | * | _ | # | +| Row 3 | _ | @ | # | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task1/maps/level4/table/52.txt b/maze/task1/maps/level4/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..f66d4d0b9ff39e3063dcd2c77ba68757776d4554 --- /dev/null +++ b/maze/task1/maps/level4/table/52.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | # | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | # | * | _ | _ | diff --git a/maze/task1/maps/level4/table/53.txt b/maze/task1/maps/level4/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f48e0d040f0769f857a36877fe74fba337d428d --- /dev/null +++ b/maze/task1/maps/level4/table/53.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | # | # | @ | # | +| Row 3 | _ | _ | # | # | +| Row 4 | _ | # | _ | * | diff --git a/maze/task1/maps/level4/table/54.txt b/maze/task1/maps/level4/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..049e88dc67f756074a181c2543b1cca49ed97e30 --- /dev/null +++ b/maze/task1/maps/level4/table/54.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | @ | # | # | +| Row 2 | _ | # | # | # | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task1/maps/level4/table/55.txt b/maze/task1/maps/level4/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..efe6ae3ce44cc93059256269b4d7569391ffd3e2 --- /dev/null +++ b/maze/task1/maps/level4/table/55.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | @ | # | +| Row 2 | _ | _ | # | _ | +| Row 3 | # | # | _ | # | +| Row 4 | # | * | _ | _ | diff --git a/maze/task1/maps/level4/table/56.txt b/maze/task1/maps/level4/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bd48aac447754bfb96af9d72c38eb46b89fe06b --- /dev/null +++ b/maze/task1/maps/level4/table/56.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | # | * | # | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | # | # | # | diff --git a/maze/task1/maps/level4/table/57.txt b/maze/task1/maps/level4/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..758965b57bb47ec94b4fb00a5827ee28f483ef63 --- /dev/null +++ b/maze/task1/maps/level4/table/57.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | # | +| Row 2 | # | _ | _ | @ | +| Row 3 | * | # | # | _ | +| Row 4 | # | # | _ | _ | diff --git a/maze/task1/maps/level4/table/58.txt b/maze/task1/maps/level4/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..64a9f050f77da4315a2fa6cff6f135f1015beef7 --- /dev/null +++ b/maze/task1/maps/level4/table/58.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | # | # | _ | +| Row 4 | # | # | _ | # | diff --git a/maze/task1/maps/level4/table/59.txt b/maze/task1/maps/level4/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae7e93734632dded65a6f36273e32e3f5257b14d --- /dev/null +++ b/maze/task1/maps/level4/table/59.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | # | # | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | # | * | @ | diff --git a/maze/task1/maps/level4/table/6.txt b/maze/task1/maps/level4/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..17be9a08d45e04a9ead7ca2f868bc64f58d98843 --- /dev/null +++ b/maze/task1/maps/level4/table/6.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | * | +| Row 2 | # | _ | # | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | # | # | # | # | diff --git a/maze/task1/maps/level4/table/60.txt b/maze/task1/maps/level4/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc3a28880578f1a714dcd1f2bfe71c1409dd8d04 --- /dev/null +++ b/maze/task1/maps/level4/table/60.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | # | # | +| Row 2 | # | _ | # | _ | +| Row 3 | # | _ | _ | # | +| Row 4 | # | _ | # | @ | diff --git a/maze/task1/maps/level4/table/61.txt b/maze/task1/maps/level4/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0f6e747bd5be8f99194affab2a472257b84eec4 --- /dev/null +++ b/maze/task1/maps/level4/table/61.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | * | +| Row 2 | # | # | _ | # | +| Row 3 | # | _ | @ | # | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task1/maps/level4/table/62.txt b/maze/task1/maps/level4/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f8e1b9e6cb699327819e66fb87156107979db44 --- /dev/null +++ b/maze/task1/maps/level4/table/62.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | # | # | # | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | # | @ | _ | # | diff --git a/maze/task1/maps/level4/table/63.txt b/maze/task1/maps/level4/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b430d70851b24d6a7e5ef9a63dbf1e81148b0e2 --- /dev/null +++ b/maze/task1/maps/level4/table/63.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | * | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | # | _ | # | +| Row 4 | # | @ | # | _ | diff --git a/maze/task1/maps/level4/table/64.txt b/maze/task1/maps/level4/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdc53dfc3fd8333d0d903e22e0153ec2a1d28fcf --- /dev/null +++ b/maze/task1/maps/level4/table/64.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | _ | # | # | * | +| Row 3 | _ | _ | # | @ | +| Row 4 | _ | # | # | # | diff --git a/maze/task1/maps/level4/table/65.txt b/maze/task1/maps/level4/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f42b1e33b8db703a62dad431b1d77ec625313f4 --- /dev/null +++ b/maze/task1/maps/level4/table/65.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | # | +| Row 2 | # | * | # | # | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | _ | _ | @ | diff --git a/maze/task1/maps/level4/table/66.txt b/maze/task1/maps/level4/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..fedc8c5b5bcea0737e32d62ce298b671702875ce --- /dev/null +++ b/maze/task1/maps/level4/table/66.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | @ | +| Row 2 | _ | * | _ | # | +| Row 3 | _ | # | _ | # | +| Row 4 | # | _ | _ | # | diff --git a/maze/task1/maps/level4/table/67.txt b/maze/task1/maps/level4/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa6a38f3f618fb6c66d28f54ff8bb0a36b3a3d08 --- /dev/null +++ b/maze/task1/maps/level4/table/67.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | # | # | @ | # | +| Row 3 | # | _ | # | * | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task1/maps/level4/table/68.txt b/maze/task1/maps/level4/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..355643a85b43a409033ffbbe4815a979d9b06bbb --- /dev/null +++ b/maze/task1/maps/level4/table/68.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | * | @ | # | _ | +| Row 3 | _ | # | _ | # | +| Row 4 | # | # | _ | # | diff --git a/maze/task1/maps/level4/table/69.txt b/maze/task1/maps/level4/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..e83f271e9f02485b3c37517b8ad13aee7b129807 --- /dev/null +++ b/maze/task1/maps/level4/table/69.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | # | +| Row 2 | # | # | _ | * | +| Row 3 | _ | # | # | # | +| Row 4 | _ | _ | _ | @ | diff --git a/maze/task1/maps/level4/table/7.txt b/maze/task1/maps/level4/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7db228d07f87fcea0d39a8fd9251eaad255b3d82 --- /dev/null +++ b/maze/task1/maps/level4/table/7.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | # | +| Row 2 | * | _ | # | _ | +| Row 3 | # | _ | # | _ | +| Row 4 | # | # | _ | # | diff --git a/maze/task1/maps/level4/table/70.txt b/maze/task1/maps/level4/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..b475754b638f228b550aa008ccaefc17f9c9f9b9 --- /dev/null +++ b/maze/task1/maps/level4/table/70.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | _ | * | # | +| Row 3 | # | _ | @ | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/71.txt b/maze/task1/maps/level4/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..d617bf449fec75b199c9d8a8548e7d73072f1d40 --- /dev/null +++ b/maze/task1/maps/level4/table/71.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | * | # | @ | +| Row 2 | _ | # | # | # | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task1/maps/level4/table/72.txt b/maze/task1/maps/level4/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8149f4735cb78d0b9d78d40dd3f597a510a3bad --- /dev/null +++ b/maze/task1/maps/level4/table/72.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | @ | +| Row 2 | * | # | _ | _ | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | # | # | # | diff --git a/maze/task1/maps/level4/table/73.txt b/maze/task1/maps/level4/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a1b8ae8e8bd64cfbfcf0d300d07bf3fea7860ac --- /dev/null +++ b/maze/task1/maps/level4/table/73.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | @ | _ | * | _ | +| Row 4 | # | # | _ | # | diff --git a/maze/task1/maps/level4/table/74.txt b/maze/task1/maps/level4/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdea099a9fa1a1779c4c8687dadd777dd1152430 --- /dev/null +++ b/maze/task1/maps/level4/table/74.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | * | +| Row 2 | # | _ | # | # | +| Row 3 | _ | _ | # | # | +| Row 4 | # | # | # | _ | diff --git a/maze/task1/maps/level4/table/75.txt b/maze/task1/maps/level4/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b2fa34db459efadbcf138dbdab98e7b97d88958 --- /dev/null +++ b/maze/task1/maps/level4/table/75.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | * | +| Row 2 | _ | _ | # | # | +| Row 3 | # | _ | # | @ | +| Row 4 | # | # | # | _ | diff --git a/maze/task1/maps/level4/table/76.txt b/maze/task1/maps/level4/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..00db0a6549bca186a5180f57feaafd26ac864bde --- /dev/null +++ b/maze/task1/maps/level4/table/76.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | # | +| Row 2 | * | # | _ | _ | +| Row 3 | @ | # | # | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/77.txt b/maze/task1/maps/level4/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e55964284a48a7bf2861ec0b1edaf9f97962650 --- /dev/null +++ b/maze/task1/maps/level4/table/77.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | _ | * | _ | +| Row 3 | _ | # | # | @ | +| Row 4 | _ | # | _ | # | diff --git a/maze/task1/maps/level4/table/78.txt b/maze/task1/maps/level4/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb2069518441963e2869220b65d51ea38956525f --- /dev/null +++ b/maze/task1/maps/level4/table/78.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | # | # | # | @ | diff --git a/maze/task1/maps/level4/table/79.txt b/maze/task1/maps/level4/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..6aa50403d2f3d146b93a7cb29c5148b461e3e682 --- /dev/null +++ b/maze/task1/maps/level4/table/79.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | # | # | _ | # | +| Row 3 | # | _ | @ | # | +| Row 4 | _ | * | _ | # | diff --git a/maze/task1/maps/level4/table/8.txt b/maze/task1/maps/level4/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3e4f5f51d2c379768bf3457c6e17a8d9e01c4f8 --- /dev/null +++ b/maze/task1/maps/level4/table/8.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | @ | # | _ | # | +| Row 4 | _ | # | _ | * | diff --git a/maze/task1/maps/level4/table/80.txt b/maze/task1/maps/level4/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8d2e95a901d594b26a4f233daeef755415d4932 --- /dev/null +++ b/maze/task1/maps/level4/table/80.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | @ | +| Row 2 | # | _ | # | # | +| Row 3 | * | _ | _ | # | +| Row 4 | _ | # | # | _ | diff --git a/maze/task1/maps/level4/table/81.txt b/maze/task1/maps/level4/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a41ea8cb8cf8aa2c6279ac502cd689e03d2cf3e --- /dev/null +++ b/maze/task1/maps/level4/table/81.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | # | # | _ | +| Row 3 | @ | # | _ | # | +| Row 4 | _ | # | # | # | diff --git a/maze/task1/maps/level4/table/82.txt b/maze/task1/maps/level4/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..61607918bd12c7290ff2700f7c9002bd1b4d08e8 --- /dev/null +++ b/maze/task1/maps/level4/table/82.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | # | # | # | +| Row 4 | * | # | # | @ | diff --git a/maze/task1/maps/level4/table/83.txt b/maze/task1/maps/level4/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a03910690b92bcd966addc5179ea4f181bd19bb --- /dev/null +++ b/maze/task1/maps/level4/table/83.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | _ | +| Row 2 | _ | # | # | # | +| Row 3 | # | _ | @ | # | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task1/maps/level4/table/84.txt b/maze/task1/maps/level4/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e44d5477b318a49b669b3f942bddfb1edb4108d --- /dev/null +++ b/maze/task1/maps/level4/table/84.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | # | # | _ | # | +| Row 3 | @ | _ | _ | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task1/maps/level4/table/85.txt b/maze/task1/maps/level4/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bc8706ee601d00dabaddae9d58027ee499531ad --- /dev/null +++ b/maze/task1/maps/level4/table/85.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | # | # | +| Row 2 | @ | # | # | # | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/86.txt b/maze/task1/maps/level4/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..d71b4ba6f426f324119fff716178e776af59b909 --- /dev/null +++ b/maze/task1/maps/level4/table/86.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | # | _ | # | @ | +| Row 4 | # | _ | # | # | diff --git a/maze/task1/maps/level4/table/87.txt b/maze/task1/maps/level4/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e792fe8de40876fa43e99e9e15bb26807880431 --- /dev/null +++ b/maze/task1/maps/level4/table/87.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | # | +| Row 2 | # | # | _ | # | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | * | # | # | diff --git a/maze/task1/maps/level4/table/88.txt b/maze/task1/maps/level4/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..16760a35e8518f474905d26d1e14ffa7402e8ae1 --- /dev/null +++ b/maze/task1/maps/level4/table/88.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | # | +| Row 2 | # | # | # | _ | +| Row 3 | _ | * | _ | @ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/89.txt b/maze/task1/maps/level4/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..1291ad6664aaafaab5425d3ea8560c46e5277429 --- /dev/null +++ b/maze/task1/maps/level4/table/89.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | @ | +| Row 2 | _ | # | # | # | +| Row 3 | _ | _ | # | * | +| Row 4 | _ | # | _ | # | diff --git a/maze/task1/maps/level4/table/9.txt b/maze/task1/maps/level4/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..12b96584deec4cf44e65a76f3086452c29fedba6 --- /dev/null +++ b/maze/task1/maps/level4/table/9.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | # | # | # | _ | +| Row 3 | @ | _ | _ | * | +| Row 4 | # | # | _ | # | diff --git a/maze/task1/maps/level4/table/90.txt b/maze/task1/maps/level4/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..5196d9a6e4b62b23c40e3ecf1d3ded1cc2cd6a0a --- /dev/null +++ b/maze/task1/maps/level4/table/90.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | _ | # | * | @ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | # | _ | # | diff --git a/maze/task1/maps/level4/table/91.txt b/maze/task1/maps/level4/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..99998cc1a02a16e3f9b9b73828c78a81819f41aa --- /dev/null +++ b/maze/task1/maps/level4/table/91.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | @ | +| Row 2 | # | # | _ | # | +| Row 3 | _ | _ | _ | * | +| Row 4 | # | _ | # | # | diff --git a/maze/task1/maps/level4/table/92.txt b/maze/task1/maps/level4/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..ababad9e7d8857ad15a3777179b2fd96c0fb3d45 --- /dev/null +++ b/maze/task1/maps/level4/table/92.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | # | +| Row 2 | _ | @ | _ | # | +| Row 3 | _ | * | # | # | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/93.txt b/maze/task1/maps/level4/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..729fc52a80fd791e6bca40a8a3024e2566d04876 --- /dev/null +++ b/maze/task1/maps/level4/table/93.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | # | @ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | # | _ | +| Row 4 | # | # | # | # | diff --git a/maze/task1/maps/level4/table/94.txt b/maze/task1/maps/level4/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a2897d61f5999e6401d0ffdb962ee6be0b745f6 --- /dev/null +++ b/maze/task1/maps/level4/table/94.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | * | # | # | _ | +| Row 3 | # | # | @ | # | +| Row 4 | _ | # | # | _ | diff --git a/maze/task1/maps/level4/table/95.txt b/maze/task1/maps/level4/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..99fee77d0e62ab6cdbcba2b12377f10f54d6be4a --- /dev/null +++ b/maze/task1/maps/level4/table/95.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | * | # | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | # | _ | _ | # | +| Row 4 | # | @ | # | # | diff --git a/maze/task1/maps/level4/table/96.txt b/maze/task1/maps/level4/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddb116560280f3628e6c07a6f315b8d3017835d9 --- /dev/null +++ b/maze/task1/maps/level4/table/96.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | @ | +| Row 2 | _ | _ | # | # | +| Row 3 | # | # | _ | # | +| Row 4 | _ | # | * | # | diff --git a/maze/task1/maps/level4/table/97.txt b/maze/task1/maps/level4/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..02017e0f99189278fee66b079e0e30549c5460a0 --- /dev/null +++ b/maze/task1/maps/level4/table/97.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | @ | # | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | # | _ | # | _ | +| Row 4 | # | # | # | _ | diff --git a/maze/task1/maps/level4/table/98.txt b/maze/task1/maps/level4/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebfe894d50f0d38014784df31f6620a5f8477564 --- /dev/null +++ b/maze/task1/maps/level4/table/98.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | # | +| Row 2 | # | # | _ | * | +| Row 3 | _ | # | @ | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task1/maps/level4/table/99.txt b/maze/task1/maps/level4/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..40f3ce194f9cfe518f604c81f800230af6ec65ef --- /dev/null +++ b/maze/task1/maps/level4/table/99.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | # | +| Row 2 | _ | * | # | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | # | _ | # | @ | diff --git a/maze/task1/maps/level5/answer/0.txt b/maze/task1/maps/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/0.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/1.txt b/maze/task1/maps/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/1.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/10.txt b/maze/task1/maps/level5/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/10.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/11.txt b/maze/task1/maps/level5/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/11.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/12.txt b/maze/task1/maps/level5/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/12.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/13.txt b/maze/task1/maps/level5/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/13.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/14.txt b/maze/task1/maps/level5/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/14.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/15.txt b/maze/task1/maps/level5/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/15.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/16.txt b/maze/task1/maps/level5/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/16.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/17.txt b/maze/task1/maps/level5/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/17.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/18.txt b/maze/task1/maps/level5/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/18.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/19.txt b/maze/task1/maps/level5/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/19.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/2.txt b/maze/task1/maps/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/20.txt b/maze/task1/maps/level5/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/20.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/21.txt b/maze/task1/maps/level5/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/21.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/22.txt b/maze/task1/maps/level5/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/22.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/23.txt b/maze/task1/maps/level5/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/23.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/24.txt b/maze/task1/maps/level5/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/24.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/25.txt b/maze/task1/maps/level5/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/26.txt b/maze/task1/maps/level5/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/26.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/27.txt b/maze/task1/maps/level5/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/27.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/28.txt b/maze/task1/maps/level5/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/28.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/29.txt b/maze/task1/maps/level5/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/29.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/3.txt b/maze/task1/maps/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/30.txt b/maze/task1/maps/level5/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/30.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/31.txt b/maze/task1/maps/level5/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/31.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/32.txt b/maze/task1/maps/level5/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/32.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/33.txt b/maze/task1/maps/level5/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/33.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/34.txt b/maze/task1/maps/level5/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/34.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/35.txt b/maze/task1/maps/level5/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/35.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/36.txt b/maze/task1/maps/level5/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/36.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/37.txt b/maze/task1/maps/level5/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/37.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/38.txt b/maze/task1/maps/level5/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/38.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/39.txt b/maze/task1/maps/level5/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/4.txt b/maze/task1/maps/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/4.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/40.txt b/maze/task1/maps/level5/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/40.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/41.txt b/maze/task1/maps/level5/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/41.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/42.txt b/maze/task1/maps/level5/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/42.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/43.txt b/maze/task1/maps/level5/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/43.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/44.txt b/maze/task1/maps/level5/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/44.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/45.txt b/maze/task1/maps/level5/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/45.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/46.txt b/maze/task1/maps/level5/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/46.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/47.txt b/maze/task1/maps/level5/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/47.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/48.txt b/maze/task1/maps/level5/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/48.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/49.txt b/maze/task1/maps/level5/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/49.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/5.txt b/maze/task1/maps/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/5.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/50.txt b/maze/task1/maps/level5/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/50.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/51.txt b/maze/task1/maps/level5/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/51.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/52.txt b/maze/task1/maps/level5/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/52.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/53.txt b/maze/task1/maps/level5/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/53.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/54.txt b/maze/task1/maps/level5/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/54.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/55.txt b/maze/task1/maps/level5/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/55.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/56.txt b/maze/task1/maps/level5/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/56.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/57.txt b/maze/task1/maps/level5/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/57.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/58.txt b/maze/task1/maps/level5/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/58.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/59.txt b/maze/task1/maps/level5/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/59.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/6.txt b/maze/task1/maps/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/60.txt b/maze/task1/maps/level5/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/60.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/61.txt b/maze/task1/maps/level5/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/61.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/62.txt b/maze/task1/maps/level5/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/62.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/63.txt b/maze/task1/maps/level5/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/63.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/64.txt b/maze/task1/maps/level5/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/64.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/65.txt b/maze/task1/maps/level5/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/65.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/66.txt b/maze/task1/maps/level5/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/66.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/67.txt b/maze/task1/maps/level5/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/67.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/68.txt b/maze/task1/maps/level5/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/68.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/69.txt b/maze/task1/maps/level5/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/69.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/7.txt b/maze/task1/maps/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/7.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/70.txt b/maze/task1/maps/level5/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/70.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/71.txt b/maze/task1/maps/level5/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/71.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/72.txt b/maze/task1/maps/level5/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/72.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/73.txt b/maze/task1/maps/level5/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/73.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/74.txt b/maze/task1/maps/level5/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/74.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/75.txt b/maze/task1/maps/level5/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/75.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/76.txt b/maze/task1/maps/level5/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/76.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/77.txt b/maze/task1/maps/level5/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/77.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/78.txt b/maze/task1/maps/level5/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/78.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/79.txt b/maze/task1/maps/level5/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/79.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/8.txt b/maze/task1/maps/level5/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/8.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/80.txt b/maze/task1/maps/level5/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/80.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/81.txt b/maze/task1/maps/level5/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/81.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/82.txt b/maze/task1/maps/level5/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/82.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/83.txt b/maze/task1/maps/level5/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/83.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/84.txt b/maze/task1/maps/level5/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/84.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/85.txt b/maze/task1/maps/level5/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/85.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/86.txt b/maze/task1/maps/level5/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/86.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/87.txt b/maze/task1/maps/level5/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/87.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/88.txt b/maze/task1/maps/level5/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/88.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/89.txt b/maze/task1/maps/level5/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/89.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/9.txt b/maze/task1/maps/level5/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/9.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/90.txt b/maze/task1/maps/level5/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/90.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/91.txt b/maze/task1/maps/level5/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/91.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/92.txt b/maze/task1/maps/level5/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/92.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/93.txt b/maze/task1/maps/level5/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/93.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/94.txt b/maze/task1/maps/level5/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/94.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/95.txt b/maze/task1/maps/level5/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/95.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/96.txt b/maze/task1/maps/level5/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/96.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/97.txt b/maze/task1/maps/level5/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/97.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/98.txt b/maze/task1/maps/level5/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level5/answer/98.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level5/answer/99.txt b/maze/task1/maps/level5/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level5/answer/99.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level5/img/0.png b/maze/task1/maps/level5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4ba9d1606aee1c9bcc88d6fa8d87cbff276f3515 --- /dev/null +++ b/maze/task1/maps/level5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb15423b54c25b4c5b243e2f61063b433911a1f9ed77537d1e0de9dc205874c6 +size 11187 diff --git a/maze/task1/maps/level5/img/1.png b/maze/task1/maps/level5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..587553e579efea89e2b46ef3b2f75c037e759051 --- /dev/null +++ b/maze/task1/maps/level5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed46d9138ee1091fd4156d8dcd18c16d89eeb89133775ddba1e3cbe8a7654797 +size 11416 diff --git a/maze/task1/maps/level5/img/10.png b/maze/task1/maps/level5/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..645812dcb4911cac91ed3b0f52460a6ad9021a90 --- /dev/null +++ b/maze/task1/maps/level5/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e1281c3909ef4b5f4a3a4dc576d9594bc7e22daab1be27277e3fb2ee5fae52 +size 11222 diff --git a/maze/task1/maps/level5/img/11.png b/maze/task1/maps/level5/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..86a80e53e23e0f1a837980a217f43bfd840c3d1d --- /dev/null +++ b/maze/task1/maps/level5/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be43d9e29430907aff4e24708988477441597602f12e54aa522a8f9a8d1f156 +size 10696 diff --git a/maze/task1/maps/level5/img/12.png b/maze/task1/maps/level5/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e5c03ffcb5c9ba818c496bb6396d0fe1f1a20b7d --- /dev/null +++ b/maze/task1/maps/level5/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48cf842a599b38f17288bc482bc93ff5b71c46258db5b5ab44a856087014dc9 +size 11188 diff --git a/maze/task1/maps/level5/img/13.png b/maze/task1/maps/level5/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f8cc91695753f060109de9c2496f0e74d27e5707 --- /dev/null +++ b/maze/task1/maps/level5/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2e5b320c90d1dd5fc342e01da0282cacd8fefac517b98e8a43fb1a677b1db4 +size 11170 diff --git a/maze/task1/maps/level5/img/14.png b/maze/task1/maps/level5/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..fd155431803da46fef7c65a74bb324dacbafc1cc --- /dev/null +++ b/maze/task1/maps/level5/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45db0d89106b0cb0e732a7b2f92d2a189d080bdabe4ba404c81ee4be91f1c490 +size 10706 diff --git a/maze/task1/maps/level5/img/15.png b/maze/task1/maps/level5/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..2f07daae36cbc9b4344230e4cd4e9cff2947c030 --- /dev/null +++ b/maze/task1/maps/level5/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b46ddd650062d1878d0c6f38871445a5331cba70a71f25b5e556fcdf4fe7a37 +size 9866 diff --git a/maze/task1/maps/level5/img/16.png b/maze/task1/maps/level5/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..532ae0434b79f688ed83f153be0889a70f064a2e --- /dev/null +++ b/maze/task1/maps/level5/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ad0b82b197a4926c42e76f219818ec667d83db6b903fa13de7d236f95a11122 +size 11051 diff --git a/maze/task1/maps/level5/img/17.png b/maze/task1/maps/level5/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..63b23ff077820467903ef4669b458b487f8d65b5 --- /dev/null +++ b/maze/task1/maps/level5/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1334164e91d628b78b5191fdd1d58ae1311aae2b5fcd2ce99c70ff28b1bfc8c0 +size 11163 diff --git a/maze/task1/maps/level5/img/18.png b/maze/task1/maps/level5/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..774b19b1f579a98b2ca2fe9a4496f2633947c8c0 --- /dev/null +++ b/maze/task1/maps/level5/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9306f2461aa85fbc4116151c1c0d9a6597fbbcc06f8b2abb38ebd1797a8bd7a8 +size 11233 diff --git a/maze/task1/maps/level5/img/19.png b/maze/task1/maps/level5/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..53b965a661864508cf8845c6e7460421a42755cd --- /dev/null +++ b/maze/task1/maps/level5/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b180bc5b6a175db9c4ac8501ae4f7ca997d99be2f8541a459c703b2d95778f31 +size 11216 diff --git a/maze/task1/maps/level5/img/2.png b/maze/task1/maps/level5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3a9f4599189e2f4a6cd923a0c6722e3965166483 --- /dev/null +++ b/maze/task1/maps/level5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a54136e0c26409b23bc64ecbb81db946911bd40d218818bdc9e8246df4b5963 +size 10970 diff --git a/maze/task1/maps/level5/img/20.png b/maze/task1/maps/level5/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..5081b9c698652f12d1e9774ef82d891f9effe8ed --- /dev/null +++ b/maze/task1/maps/level5/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba11de6ffb21f56f4f662b6e34b02113e9241e48483e098333c5ebf2c9a9185d +size 11249 diff --git a/maze/task1/maps/level5/img/21.png b/maze/task1/maps/level5/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..95aa54c00e69431e7b4965415082374a08b49e75 --- /dev/null +++ b/maze/task1/maps/level5/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd982c158e37bc5c9dac1e361fbc2065b90645d0c4d288a105fcd2fc6e541b2 +size 11292 diff --git a/maze/task1/maps/level5/img/22.png b/maze/task1/maps/level5/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..9e4953870629b6c8c31788eaf8ba960041c860f3 --- /dev/null +++ b/maze/task1/maps/level5/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a120b62dc9cebc58f0b802c6a494ba5cd8b6f6a7736bd26ad088fe4173e7598 +size 11192 diff --git a/maze/task1/maps/level5/img/23.png b/maze/task1/maps/level5/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..5242c2d3f09706af486d8baf0c0616ec854b1f31 --- /dev/null +++ b/maze/task1/maps/level5/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b58fad8256841c998c5399c470ce6df8118cc30cabe2892fdc6ee659f307899 +size 11310 diff --git a/maze/task1/maps/level5/img/24.png b/maze/task1/maps/level5/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..dbbe54f95d892bf7ef73d0cc232def4a767d39d1 --- /dev/null +++ b/maze/task1/maps/level5/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a45a892186b2a2ef9a900aa664528ea70755922716818cdff4d6adef81b908a5 +size 11160 diff --git a/maze/task1/maps/level5/img/25.png b/maze/task1/maps/level5/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..b15946f18dd43a3dfc000499e9499929ce1a17e2 --- /dev/null +++ b/maze/task1/maps/level5/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad9b6b407bfe75fa9c02d213bac9943d1e6ab59e36a2d622e08bd43375f2672 +size 11264 diff --git a/maze/task1/maps/level5/img/26.png b/maze/task1/maps/level5/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..ec0ec10f70a703ef0cc7152522ef246810e7e13d --- /dev/null +++ b/maze/task1/maps/level5/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47329c0290ee9a9c332880c02a13d6a62c88b54b2adc9b159ef2949bad0bfc13 +size 10868 diff --git a/maze/task1/maps/level5/img/27.png b/maze/task1/maps/level5/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..85284c0fc55c68170041919de7ba05ce6680b191 --- /dev/null +++ b/maze/task1/maps/level5/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f613d3da0aeb0f928d662ded5a2276c24431a9772bc787ec2603d0abb5b38c8 +size 11277 diff --git a/maze/task1/maps/level5/img/28.png b/maze/task1/maps/level5/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..bab6046adcc93dd7e4a30e372aec119395912e00 --- /dev/null +++ b/maze/task1/maps/level5/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd02b0aba01f11b339fac636d14cf659ac0e3d9a769af6c5aa2e0cfe285fdff2 +size 11283 diff --git a/maze/task1/maps/level5/img/29.png b/maze/task1/maps/level5/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..7d2453ac7de64cc38494e68d01c6052c7d6d5d72 --- /dev/null +++ b/maze/task1/maps/level5/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36666889d2908213a3444b2e096cf69a2c80d76cd657c30a747ee7e3886952f5 +size 11099 diff --git a/maze/task1/maps/level5/img/3.png b/maze/task1/maps/level5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..eb046c05373eac1d1af9e6a5455a096ed6af1505 --- /dev/null +++ b/maze/task1/maps/level5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55de69f37a9680c7e32f9892c46d6c15622414cf98556b9afd3f5c612f190205 +size 11174 diff --git a/maze/task1/maps/level5/img/30.png b/maze/task1/maps/level5/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..0e30c535b73069486514a10df424b4465e849e13 --- /dev/null +++ b/maze/task1/maps/level5/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c7b0307af2f2fc19a48620926face29bd2173146d94cf8cf960d79fd8be1c6 +size 11253 diff --git a/maze/task1/maps/level5/img/31.png b/maze/task1/maps/level5/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..4009bfda2d60cd1504e14c62796e0e2bb1fe8979 --- /dev/null +++ b/maze/task1/maps/level5/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2016047d6eea3b2be1989b4239c032997bb7235c4eb42afe5398733397d4d4 +size 10145 diff --git a/maze/task1/maps/level5/img/32.png b/maze/task1/maps/level5/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..ae9652129e949968ab8e0045f537c299a52f230d --- /dev/null +++ b/maze/task1/maps/level5/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f10abec15ca28d5b5e5aa3e62376e2cf27ada38307a9c3c0bc9d1f6b263481 +size 11114 diff --git a/maze/task1/maps/level5/img/33.png b/maze/task1/maps/level5/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..88a549fed3c841b36d0e7a6eb34e7fabb270212e --- /dev/null +++ b/maze/task1/maps/level5/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ff58162dde0e72e70cf939c7634a1b5653d40c46ad1f72f36cd00918a190eb +size 10696 diff --git a/maze/task1/maps/level5/img/34.png b/maze/task1/maps/level5/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..d5e7d69c82adc657595233bcf75f73cd4618c3b8 --- /dev/null +++ b/maze/task1/maps/level5/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e5c37100e418e826fe6123eea48f2fd1be45a370a48db2feba75e5b673bf27 +size 10619 diff --git a/maze/task1/maps/level5/img/35.png b/maze/task1/maps/level5/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..38ce033f53d7ef93f7187bea15450c50723cf0b9 --- /dev/null +++ b/maze/task1/maps/level5/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87f8cfd8d24dce5f1ff30385c146eaad985c0deb9ba76791679c193aff88cc7 +size 10883 diff --git a/maze/task1/maps/level5/img/36.png b/maze/task1/maps/level5/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..faf94e96a3bf21c10d3d39e5435d83a54621b387 --- /dev/null +++ b/maze/task1/maps/level5/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0026c73cd4fc271f3a580cb98a558bde4cdb2b6bf124af2a3a9f5348ed87b09 +size 11282 diff --git a/maze/task1/maps/level5/img/37.png b/maze/task1/maps/level5/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..0f4375cddac8b3db4cc4489670cc94cd30589db5 --- /dev/null +++ b/maze/task1/maps/level5/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445fb7ede6512500664025e81ace48340e0652ce1ec4bd49c2557b43236ef804 +size 11112 diff --git a/maze/task1/maps/level5/img/38.png b/maze/task1/maps/level5/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..bc75fa3a3f490204c891225b38211b92f48e0204 --- /dev/null +++ b/maze/task1/maps/level5/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e694cc8b1ce7603aa391c822db6cd93355c465590687d69dbf7b0f3e1978c8e +size 11182 diff --git a/maze/task1/maps/level5/img/39.png b/maze/task1/maps/level5/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..6a15ba4a807b0be9017d8d0197b59788b6663f82 --- /dev/null +++ b/maze/task1/maps/level5/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3fd954b4e6b42cb54bee9ef1a5c07de91b8348c252d1827c68c729f05d942b1 +size 11249 diff --git a/maze/task1/maps/level5/img/4.png b/maze/task1/maps/level5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..64dbc28552e72660cac16700d45c05f6a0743bbe --- /dev/null +++ b/maze/task1/maps/level5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa83e6722da59a56e3412de24be9427ea056d39c81f60b5594ad38cdfaf1c8e +size 11164 diff --git a/maze/task1/maps/level5/img/40.png b/maze/task1/maps/level5/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..a64f441853c2a5bcbf2aef717ef4651b3cbe06f7 --- /dev/null +++ b/maze/task1/maps/level5/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba00804aca7c813e29b3a95a1b7448c1d1bf677b8eccba3b1393e1aa1953b276 +size 11072 diff --git a/maze/task1/maps/level5/img/41.png b/maze/task1/maps/level5/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..b68ed7a8168d1856731eac45dc11c4a858035542 --- /dev/null +++ b/maze/task1/maps/level5/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eee6527407b8ee8bf295d6b8923ba858ee10bf44fbd184987ce24d6e5c54024 +size 11024 diff --git a/maze/task1/maps/level5/img/42.png b/maze/task1/maps/level5/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..dd52c62b1e17d406893c5e7dcb07cb19e64b9ce1 --- /dev/null +++ b/maze/task1/maps/level5/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83f0bc7a691c0984d51fbad991c3719bec1719c06dd4183a53bb4f85cb7b3ad4 +size 11253 diff --git a/maze/task1/maps/level5/img/43.png b/maze/task1/maps/level5/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..efe7a167f265e6cb7dc3e22eae0f137d5445a233 --- /dev/null +++ b/maze/task1/maps/level5/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d917d520d83ee76a34957c1468324820aec8d7931758be7dbfe9cfb55e56ab19 +size 10789 diff --git a/maze/task1/maps/level5/img/44.png b/maze/task1/maps/level5/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..a9b46f0511078fd1c91b64652d4e686184944f2f --- /dev/null +++ b/maze/task1/maps/level5/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8785fa806bb99d5d124aab789468e513d941e67cba20e0ad4ae4eae5361b7105 +size 10943 diff --git a/maze/task1/maps/level5/img/45.png b/maze/task1/maps/level5/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..9f2016018c2e88cc76bbf6457c9fd05090e80d39 --- /dev/null +++ b/maze/task1/maps/level5/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e3d19826fdd4ca5010f7e3ae2b315a5b64139de24fbb42aa0bd5decf3b80cb +size 11077 diff --git a/maze/task1/maps/level5/img/46.png b/maze/task1/maps/level5/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..98d06f94fa05068072ba23efb6d1cfa35f7ee888 --- /dev/null +++ b/maze/task1/maps/level5/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b846125bf432a06991267a14eadcd238d0fab6b49eeb3cf76145eb1dc47bfac +size 11087 diff --git a/maze/task1/maps/level5/img/47.png b/maze/task1/maps/level5/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..e9f8c0f07820eec28a1cd4adff4442598956399d --- /dev/null +++ b/maze/task1/maps/level5/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c0d89f80da801e9d41ede26a3751a2e1a72d9a3182d7940b9d495126b68a43 +size 11277 diff --git a/maze/task1/maps/level5/img/48.png b/maze/task1/maps/level5/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..d084a86c52342503a1d9bfca70ff534b03a3973b --- /dev/null +++ b/maze/task1/maps/level5/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e489185674dff6e6f65acced518c06a9edaca334c5443dee0a8ca4a9bc41488 +size 10831 diff --git a/maze/task1/maps/level5/img/49.png b/maze/task1/maps/level5/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..1f089ce65b907ea7c8d252ef06c099c3544e1970 --- /dev/null +++ b/maze/task1/maps/level5/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12118b51ae00d7b3e05cf67809af4de6f39c94b495b485e413c880ded5c3d888 +size 11229 diff --git a/maze/task1/maps/level5/img/5.png b/maze/task1/maps/level5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b2434c066c146e06c7f4fc4f5250fe37ae22651b --- /dev/null +++ b/maze/task1/maps/level5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ffd91511aa4023f0ffd41891ba4e9ce868aa21b72a4a83cab9c4b2dcdd4ee76 +size 11131 diff --git a/maze/task1/maps/level5/img/50.png b/maze/task1/maps/level5/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..9761b7d4881ea70b2b312eedbe7fd148dec8346f --- /dev/null +++ b/maze/task1/maps/level5/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50393c24c3bd90c12c136126cfdf0181d870a3ca02b5599530a199b92beb6c7a +size 10546 diff --git a/maze/task1/maps/level5/img/51.png b/maze/task1/maps/level5/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..438ea06fa86fb0083870e0208a894434042714c3 --- /dev/null +++ b/maze/task1/maps/level5/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f08e2cbfe4bf1b9057c3a661c700d5bc2d432057f6299a6a923ee75e1c315bf +size 11069 diff --git a/maze/task1/maps/level5/img/52.png b/maze/task1/maps/level5/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..aeecab6487926ad2e6c2416a06de9b85774cd3f6 --- /dev/null +++ b/maze/task1/maps/level5/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d8827f15754e0e1d8e386750217631f019a7c8e19a555e0b2ea84b0d30b481 +size 11137 diff --git a/maze/task1/maps/level5/img/53.png b/maze/task1/maps/level5/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..f41e171a85a590e1ae8fc3ce53297b511287420e --- /dev/null +++ b/maze/task1/maps/level5/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b0c73fd42797a64ce36bc08defe5b688416d426aa31d80916e3ca052f86d9f +size 11097 diff --git a/maze/task1/maps/level5/img/54.png b/maze/task1/maps/level5/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..e86bf6ece2ab637f680351cd7562575c60314e55 --- /dev/null +++ b/maze/task1/maps/level5/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d223014ba3dde42e7c85b20cf3f5c07ee8c7e8c09abc549e892e01104b1c655f +size 11301 diff --git a/maze/task1/maps/level5/img/55.png b/maze/task1/maps/level5/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..5c6c38f5f82f907cc33061b2cf1a24f70d9066c5 --- /dev/null +++ b/maze/task1/maps/level5/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba9436a712f15f136d0a50678718ebcb3388f9192d1d8e11d696041f65d29f68 +size 11250 diff --git a/maze/task1/maps/level5/img/56.png b/maze/task1/maps/level5/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..1dc4309d470a34fcb037a2a5e0b9341dc403f983 --- /dev/null +++ b/maze/task1/maps/level5/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10507a5c74d4f1093a4d130de7fd52e2f3d063cc5571cc99de84eed53131ab2c +size 11189 diff --git a/maze/task1/maps/level5/img/57.png b/maze/task1/maps/level5/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..1f4b7d39e16275d5ea9adb0f96fee76a586de7ed --- /dev/null +++ b/maze/task1/maps/level5/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de43922e775641b0e52899ee9901849da604a0bbb818eba1d1b76f6eeebe2196 +size 11213 diff --git a/maze/task1/maps/level5/img/58.png b/maze/task1/maps/level5/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..942b678ded67b0941010543fd5d93272e874c1cf --- /dev/null +++ b/maze/task1/maps/level5/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46bf4dd071b84f0f46dee5d9a9b30dea9d0423d1837a9d3064deba0972ab381c +size 11305 diff --git a/maze/task1/maps/level5/img/59.png b/maze/task1/maps/level5/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..71713c53cc131de89fc983eca4869f3334cadeb6 --- /dev/null +++ b/maze/task1/maps/level5/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bfdd62cf3ecb96636e3edbbfe0e008a28c6eea92f2cb113c094ac8b083a8823 +size 11277 diff --git a/maze/task1/maps/level5/img/6.png b/maze/task1/maps/level5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..27dc2f41a068ddbf16d6ec0729d95246c1610ca2 --- /dev/null +++ b/maze/task1/maps/level5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f02e470b4d5642feafc3c01dacb111f1efc2b16ed8b09f7e48134f50c24002f8 +size 10944 diff --git a/maze/task1/maps/level5/img/60.png b/maze/task1/maps/level5/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..9de1b55924c41c5aeb8007169e989cd7c3c7ee29 --- /dev/null +++ b/maze/task1/maps/level5/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c571599824b6ed18180c4a14ec009e29f1f821658fe9657567afe4189efeca +size 11076 diff --git a/maze/task1/maps/level5/img/61.png b/maze/task1/maps/level5/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..88092f8acd57d7380ccdbae86f5edb16d0afbdee --- /dev/null +++ b/maze/task1/maps/level5/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec5ef337e44c41fda731503f368f552b1828c154dd03d7162c106c8a759ebeb +size 11185 diff --git a/maze/task1/maps/level5/img/62.png b/maze/task1/maps/level5/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..5869cd9ccb39ed5a2362f32e781326addfeabbe6 --- /dev/null +++ b/maze/task1/maps/level5/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52652d2e08ecaeba41d0bbcb6419251e8d95cc2eb28927ecf3722a66904dbea +size 11001 diff --git a/maze/task1/maps/level5/img/63.png b/maze/task1/maps/level5/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..d59ef5bd7571f91d6c8d35b50370d53fb03f6049 --- /dev/null +++ b/maze/task1/maps/level5/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93dd8734efbf0089648961cc638bc5c1306d3324962e224cf8c62589e47711d3 +size 11147 diff --git a/maze/task1/maps/level5/img/64.png b/maze/task1/maps/level5/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..9e428963387460cc85580afb0480490c1e59cf22 --- /dev/null +++ b/maze/task1/maps/level5/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a504a4d3c9dfb235cd5231d4c1429110f3fb903c7705d75b945c54dacbd84b1 +size 11163 diff --git a/maze/task1/maps/level5/img/65.png b/maze/task1/maps/level5/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..58ee94d74b5617b82c02058a507d067e512218ca --- /dev/null +++ b/maze/task1/maps/level5/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a349c84a62d556abb4e568dcd57a77e0ab979b4f4f938aeb7599915413b02e +size 11191 diff --git a/maze/task1/maps/level5/img/66.png b/maze/task1/maps/level5/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..fc1af0e2706d02341176f35dfebe73f6786158c5 --- /dev/null +++ b/maze/task1/maps/level5/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a9194875c8de161475e891550e8c6b1f353676c9ddf1b138e6a3098ea90b85 +size 11036 diff --git a/maze/task1/maps/level5/img/67.png b/maze/task1/maps/level5/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..819d43a013e2728317a05805859d090d5f8c250a --- /dev/null +++ b/maze/task1/maps/level5/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae3f0bd426283a8367f22a4af9e8c2c19c3049090310164dd9e364e5fa1a176 +size 11259 diff --git a/maze/task1/maps/level5/img/68.png b/maze/task1/maps/level5/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..7c4cba377c3491498074a312ba6ee5752b30c034 --- /dev/null +++ b/maze/task1/maps/level5/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bff00d299b30e3a9f1d7acb68a2cd7548871c2cf9aa86faa4b9104df9469afd +size 11174 diff --git a/maze/task1/maps/level5/img/69.png b/maze/task1/maps/level5/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..6ad5c8f084910c53baa9d6bb3ffccf0f62d3927a --- /dev/null +++ b/maze/task1/maps/level5/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d68a1a820eaea10d1342a10c09864b26d11d8bc8c60d4680dbc82fd266979546 +size 11252 diff --git a/maze/task1/maps/level5/img/7.png b/maze/task1/maps/level5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bde750cecf1f9d7ca0d63d6ab0ddb91d440206e9 --- /dev/null +++ b/maze/task1/maps/level5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415cbbb8338388e451a08d4e22e2b85e469bb6a952276faab494b7fa6019b878 +size 9752 diff --git a/maze/task1/maps/level5/img/70.png b/maze/task1/maps/level5/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..51d33bf8da38ec53670d3a841b875291ca016863 --- /dev/null +++ b/maze/task1/maps/level5/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d87f14f8620ffd0a4b3202871b4a3993b1b8b1c4362649c9e6e585354c08890a +size 11153 diff --git a/maze/task1/maps/level5/img/71.png b/maze/task1/maps/level5/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..866620761e7e371f66ce3b0c594fdca2331f6061 --- /dev/null +++ b/maze/task1/maps/level5/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5fcf62a1e86ac7e130c4d1a38ac6a0a1f1ad38f0fc9c37e0f3e25f1aa90395 +size 10882 diff --git a/maze/task1/maps/level5/img/72.png b/maze/task1/maps/level5/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..72fc18a1a2860a3dfeaf611f9de6dfa865ac875d --- /dev/null +++ b/maze/task1/maps/level5/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed7f7a4173d675adeabc2572d948dc0f525df338b78c445a9f1076a66b0c81b +size 10168 diff --git a/maze/task1/maps/level5/img/73.png b/maze/task1/maps/level5/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..b82e8a0decec2cb8080346e0ca853fbf1448c6fe --- /dev/null +++ b/maze/task1/maps/level5/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d2ad0b7273b0ccbc100b7ccc7121fdc730ee3ff79768a0e75738fbb1814e47 +size 11234 diff --git a/maze/task1/maps/level5/img/74.png b/maze/task1/maps/level5/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..4f1bb268f2bb8f4ca9e17f86fde5a4792f4c7e06 --- /dev/null +++ b/maze/task1/maps/level5/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4269d8e93afbc7a78c6cf53a4f2ea598473bc4119766844ec9284b0e383ab3 +size 11067 diff --git a/maze/task1/maps/level5/img/75.png b/maze/task1/maps/level5/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..d671e94ad413da6ccbddbb60ec56e7eac449c1fc --- /dev/null +++ b/maze/task1/maps/level5/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62032ff473dac69d5976e39bf60c1e9bcf3ea5db0de517d100b00e38743ba052 +size 11217 diff --git a/maze/task1/maps/level5/img/76.png b/maze/task1/maps/level5/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..6c63d5b0bfcc96068574ad36dcb6448d7c1873de --- /dev/null +++ b/maze/task1/maps/level5/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b3dc84eddba5342a54257bd127f21f8ce0195f487ae8b064fab479d0f52f3d +size 11215 diff --git a/maze/task1/maps/level5/img/77.png b/maze/task1/maps/level5/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..568a35b3dbbefbaa2511b6458c2967f5477e6790 --- /dev/null +++ b/maze/task1/maps/level5/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9bfc949c21cc33c83b8a80b4f27d2a6ebf7e560345f3a4b2a0672723ed980d +size 11242 diff --git a/maze/task1/maps/level5/img/78.png b/maze/task1/maps/level5/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..a1dfaff24148fee7cdecff3e9fd50169b9e315a2 --- /dev/null +++ b/maze/task1/maps/level5/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042bd68c8e47057d240cd3678613fbde5994de54a555da96860f5fd991df897 +size 11034 diff --git a/maze/task1/maps/level5/img/79.png b/maze/task1/maps/level5/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..7031a80400cb1888ff45acadc9dde4e8364fc442 --- /dev/null +++ b/maze/task1/maps/level5/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:341ea57c60821a5380cafa1eca557538913ead2477c1c4b64edbb0341b2f5fc7 +size 10471 diff --git a/maze/task1/maps/level5/img/8.png b/maze/task1/maps/level5/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..14d826b2244309d58bf55b35ba887e17e5dc7519 --- /dev/null +++ b/maze/task1/maps/level5/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f029ec34436ae546365e17dc48e08bcd3847a8e988bec2551a65c54531d93d +size 11211 diff --git a/maze/task1/maps/level5/img/80.png b/maze/task1/maps/level5/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..d2e61630c643f67de07ece5269e8864e373ee731 --- /dev/null +++ b/maze/task1/maps/level5/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:884d9596e55cce9db3b3aa7557f4c568fb5b49f2631d77b21206d3de31a962b3 +size 10974 diff --git a/maze/task1/maps/level5/img/81.png b/maze/task1/maps/level5/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..b93f97ac1f80636817c5be5f6ab9f272080ed9e7 --- /dev/null +++ b/maze/task1/maps/level5/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fe4c0455b7ffa5cd59e74e18184ef21017ebea467ae03949f49c3384ca4854 +size 11310 diff --git a/maze/task1/maps/level5/img/82.png b/maze/task1/maps/level5/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..a2932c81f4651d68098a8cfeae16c7273cb7ea9f --- /dev/null +++ b/maze/task1/maps/level5/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2b4e3d49830cbeef4d60c8df5aa7b1a57d45c5bb4759069ab9ad9b77039277 +size 11068 diff --git a/maze/task1/maps/level5/img/83.png b/maze/task1/maps/level5/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..21321594eac3adbd151096604bd026d130eed787 --- /dev/null +++ b/maze/task1/maps/level5/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c2cfc34df6bceff9e1615b22d5afe2bc65ed6f9bec481a6805c6a2655cb379 +size 11003 diff --git a/maze/task1/maps/level5/img/84.png b/maze/task1/maps/level5/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..52d1877eebf676d70d16d94c0f1da8e050d2dd1f --- /dev/null +++ b/maze/task1/maps/level5/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5630c01fcf9f203f3b58aee149f115a61a2e6efa3ec1ed49f9e19661298e3e0a +size 11213 diff --git a/maze/task1/maps/level5/img/85.png b/maze/task1/maps/level5/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..ff2dec9bcb49d7d91c7513786a5ed4fffa9875fb --- /dev/null +++ b/maze/task1/maps/level5/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec1e71951c63782285c571e0ae95eabbd44b9dd751129870b2394a07b8e77aa7 +size 11107 diff --git a/maze/task1/maps/level5/img/86.png b/maze/task1/maps/level5/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..e27532ad1a1cb3a988f21d6f094e657d8082801d --- /dev/null +++ b/maze/task1/maps/level5/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77420564d2b68da05e52d77d3ba801bf459bfc8599bc6855e3aedf5d88439cca +size 11276 diff --git a/maze/task1/maps/level5/img/87.png b/maze/task1/maps/level5/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..74656f83316eafca5ce5b58847e20b30e5085bf2 --- /dev/null +++ b/maze/task1/maps/level5/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b666632362a842196e79350eb06e34b3332f1172ebc532387bfe7952e28e19fb +size 11315 diff --git a/maze/task1/maps/level5/img/88.png b/maze/task1/maps/level5/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..5cb762db686984cad829ec39c95e9e91be30836b --- /dev/null +++ b/maze/task1/maps/level5/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea4c95e0b799bd39ab07d3d1c4a5a8d5125c58d9753bbbec74858255cc96d9c +size 11142 diff --git a/maze/task1/maps/level5/img/89.png b/maze/task1/maps/level5/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..990deb3ce06fd77c2f3e47921d565f2a9fcc239c --- /dev/null +++ b/maze/task1/maps/level5/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11421b62e066852840eab38b327eac5225f56c2ca219f12fe186e674c9a2386a +size 11083 diff --git a/maze/task1/maps/level5/img/9.png b/maze/task1/maps/level5/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9f79325ec34aac673cb82f2002030ce9ec81c86b --- /dev/null +++ b/maze/task1/maps/level5/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f39e262d7e5377a18f6e5a57222ca54576405cae0f48b77ce0cc49314315fd27 +size 11290 diff --git a/maze/task1/maps/level5/img/90.png b/maze/task1/maps/level5/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..48c75055156f659c01d33bb88d7b8e5b1f2855d6 --- /dev/null +++ b/maze/task1/maps/level5/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c29b96111700cfcd9832ec4cb0e85348188ad7043dc314fd14beff0fdd0795 +size 10960 diff --git a/maze/task1/maps/level5/img/91.png b/maze/task1/maps/level5/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3705e5275fb40ba5c92105eaa4fa1b125965a4 --- /dev/null +++ b/maze/task1/maps/level5/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455a184a8e9ab36501b6a8d3d7e40728ac05dbaf68e344277715c20422cf1afa +size 11085 diff --git a/maze/task1/maps/level5/img/92.png b/maze/task1/maps/level5/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..4c73a00b621453cebb0f434bef613964e6978461 --- /dev/null +++ b/maze/task1/maps/level5/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e9f13827b93979780e89243eb81ce3bd925440db9609c6f050ea38c00bb872 +size 10830 diff --git a/maze/task1/maps/level5/img/93.png b/maze/task1/maps/level5/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..b4f614be2b8ffab12632bee87fc94cdbb6a6f270 --- /dev/null +++ b/maze/task1/maps/level5/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6e9645ecae7f16fee90c40b2b0bdd0d55a251860aa4c4203a551f8ef6e67c0 +size 11168 diff --git a/maze/task1/maps/level5/img/94.png b/maze/task1/maps/level5/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..37930c51ecaf924b1ded3ac96abc146bc9a1430b --- /dev/null +++ b/maze/task1/maps/level5/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7501982129dfa0b157b626c6eb0535ac9f7a885eacefa5bdbec04fad2217f638 +size 11266 diff --git a/maze/task1/maps/level5/img/95.png b/maze/task1/maps/level5/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..0f8dff6192ea0fea1f6df8680f556751f1ecb67d --- /dev/null +++ b/maze/task1/maps/level5/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b823505ea94fa3713ca5f1791aac5036f2241a8e6a9c553952c61628dbc51b2e +size 10955 diff --git a/maze/task1/maps/level5/img/96.png b/maze/task1/maps/level5/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..a461c4a32ed9fbc3b3b7831ae83630aba7f80c24 --- /dev/null +++ b/maze/task1/maps/level5/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb8ccda57e95e56745d4e9321aaf4d09cf1fb165e5642913125ac6b4550e62f +size 10534 diff --git a/maze/task1/maps/level5/img/97.png b/maze/task1/maps/level5/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..f20343b28a10d46457ea055685fe0e9e81b79d19 --- /dev/null +++ b/maze/task1/maps/level5/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d2a7db46573a330aef90ece1c43fc934cd32eb1dcc29217781ee501bca1ff0 +size 11073 diff --git a/maze/task1/maps/level5/img/98.png b/maze/task1/maps/level5/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..3b66b37a5f0c823533767db830fa26db309d7c53 --- /dev/null +++ b/maze/task1/maps/level5/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d806ccb72dafb1083d7aaaa2c0dcb5e13fb57d17cacab0f19d185af7486131c8 +size 11186 diff --git a/maze/task1/maps/level5/img/99.png b/maze/task1/maps/level5/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..94a5f2ede3339be7d040af898c0f1c5217634bd7 --- /dev/null +++ b/maze/task1/maps/level5/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2007269e3d10e9c79edd956e97452cebf062cb4a9870c346b01d6a85c43a9f43 +size 11200 diff --git a/maze/task1/maps/level5/pure_text/0.txt b/maze/task1/maps/level5/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..55055bdb36c8fb65e9973d079844cec9abc8ee3e --- /dev/null +++ b/maze/task1/maps/level5/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/1.txt b/maze/task1/maps/level5/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6ee97bcf1076132e9335608453804c877d5a596 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/10.txt b/maze/task1/maps/level5/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..77ff0331e9b0590848649350116907ec89b103cd --- /dev/null +++ b/maze/task1/maps/level5/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/11.txt b/maze/task1/maps/level5/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eb807fe1b508cbc3645efc22a912547d6158bef --- /dev/null +++ b/maze/task1/maps/level5/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/12.txt b/maze/task1/maps/level5/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..d03edcc322a594435a8ea3166184362de03056f0 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/13.txt b/maze/task1/maps/level5/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..a90e522917bf8f2f8d6714618a69552f97436054 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/14.txt b/maze/task1/maps/level5/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..839d9f1368965be7fbe656b99c8ed9d223deec09 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/15.txt b/maze/task1/maps/level5/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef09ba1d207bed37d02701d315244975fabfec89 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/16.txt b/maze/task1/maps/level5/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5675b4915d22695909a6bcf2f9781cdc292bdc2 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/17.txt b/maze/task1/maps/level5/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc921b51c5aedf99518625eef11cd99ffe2f3987 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/18.txt b/maze/task1/maps/level5/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..04ea1de15d09f2d2fc4d456ce2fece57c61b558c --- /dev/null +++ b/maze/task1/maps/level5/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 4, Column 3; Row 4, Column 5; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/19.txt b/maze/task1/maps/level5/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..96307a4df991923dff05ae8a30a7394b0824f4e6 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/2.txt b/maze/task1/maps/level5/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd33c47488ef9a06f33a649a36fb6ffcbb71da8c --- /dev/null +++ b/maze/task1/maps/level5/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/20.txt b/maze/task1/maps/level5/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f97c784ab698396deaabccdcbec0c42d7823bf3 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/21.txt b/maze/task1/maps/level5/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fa56028a43dc6d13c0258d809f6cc6347589f23 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/22.txt b/maze/task1/maps/level5/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8885336244477f26254522afd35f25dfddd37eb --- /dev/null +++ b/maze/task1/maps/level5/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/23.txt b/maze/task1/maps/level5/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4c65654930e13dcc90bf95d72df7f5b5fa37419 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/24.txt b/maze/task1/maps/level5/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e181e52c0638d09f57c28609b384f36b9dbe67d --- /dev/null +++ b/maze/task1/maps/level5/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 3, Column 2; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/25.txt b/maze/task1/maps/level5/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fdd414c46fab9d5b45149077908565d5e34062b --- /dev/null +++ b/maze/task1/maps/level5/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/26.txt b/maze/task1/maps/level5/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca996c0015474f0333c30f8ada48d8757c6b8f71 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/27.txt b/maze/task1/maps/level5/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9e845b3fd227b4cae9af4c946226166f9d0af21 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/28.txt b/maze/task1/maps/level5/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..03dcbd428cfee1e9b1880fa3edc3bf85c4a730b4 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/29.txt b/maze/task1/maps/level5/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0826cf81a051669a863592dd2fa1e905b429e52 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 4; Row 3, Column 5; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/3.txt b/maze/task1/maps/level5/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..422c39abd660fd89a6352946a0b126a730554d79 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/30.txt b/maze/task1/maps/level5/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bafb9b6110d08328c44322c8f68ddb220934779 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/31.txt b/maze/task1/maps/level5/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..812421d5827446c24f971cf5acdd6396aab7ae37 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/32.txt b/maze/task1/maps/level5/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3fd55e6b1b47433bcbf7a4e6867ede1bde54e9 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/33.txt b/maze/task1/maps/level5/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..6359166ca118443531c1272967a9ac2917c589d4 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/34.txt b/maze/task1/maps/level5/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7c3a99eb8e1d5a0b8b7c463253616fe6221deb7 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/35.txt b/maze/task1/maps/level5/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..5590e8e2ab274f6c71d052102d67c27e9b146169 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/36.txt b/maze/task1/maps/level5/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad8b55d32473351533c790553f8ce29e40838d51 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/37.txt b/maze/task1/maps/level5/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..d064de35a8edb2e907c1c10ca226476ae0c22cf3 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/38.txt b/maze/task1/maps/level5/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..924d6dd20e42f202b50d1605a3fddf31508edae3 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/39.txt b/maze/task1/maps/level5/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..92e221520eca0a0ed83523083c7ad7fb6ad62218 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/4.txt b/maze/task1/maps/level5/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..71c07341a16ce8f05d32512c759285807331b359 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/40.txt b/maze/task1/maps/level5/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..1542adb9cba5ae9c818251d9ef811393e3e6bfc1 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/41.txt b/maze/task1/maps/level5/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa7267f16b8f451fb74790885d32bb5e5792fc00 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/42.txt b/maze/task1/maps/level5/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b3158d014f48cdbf1d8332781da1630d5d91049 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/43.txt b/maze/task1/maps/level5/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..75e3e06aa0abf0ed5bcb2d86e4888546114c570a --- /dev/null +++ b/maze/task1/maps/level5/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/44.txt b/maze/task1/maps/level5/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..167a215517fb034c01cc47b9584297d573044497 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/45.txt b/maze/task1/maps/level5/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..481ae66c527140b4978f26265c0b0ff4233dfa94 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/46.txt b/maze/task1/maps/level5/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a583f696ec1e9fc8b77a19e1d0c66b3a849a65 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/47.txt b/maze/task1/maps/level5/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..08c6ac859021a0f9dfe827bf230cf1ab5ab72243 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/48.txt b/maze/task1/maps/level5/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a8a3791ad8bc6011b1fc3c505c16ed1f5323587 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/49.txt b/maze/task1/maps/level5/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd7b0c8782a8eda4039f81cd055c2fc2f34e889c --- /dev/null +++ b/maze/task1/maps/level5/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 5; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/5.txt b/maze/task1/maps/level5/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9ab430d51a87645ad7fa9f636805f6c5e1ca119 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/50.txt b/maze/task1/maps/level5/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fcbda9e8c6c35bc94edcdaf249a6dfb2bcdbd91 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/51.txt b/maze/task1/maps/level5/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..badce81f68886947ea84798a312ab90e002e7b58 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/52.txt b/maze/task1/maps/level5/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..ceee63456ddb10dc3055c4c71a3a8f4a05679faf --- /dev/null +++ b/maze/task1/maps/level5/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/53.txt b/maze/task1/maps/level5/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..37038b98582d0d1858bb254d927c1293bcedb345 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/54.txt b/maze/task1/maps/level5/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1fedf60758b81f8af98b36bf7bbc86e3d5151eb --- /dev/null +++ b/maze/task1/maps/level5/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/55.txt b/maze/task1/maps/level5/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..869e00d5fb6c111dfebf9cc75e4a335f2d7559d5 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 5; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/56.txt b/maze/task1/maps/level5/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..17651035125a758f75b62f8ab0a1fb1c9a730599 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/57.txt b/maze/task1/maps/level5/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a35fc1da78b341fd09880140843dad624648194 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/58.txt b/maze/task1/maps/level5/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b631e3208a8f4f3fed4abea2c7ef3522c211383 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/59.txt b/maze/task1/maps/level5/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd6871329d128e63012624ef181ca6fb48f61896 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/6.txt b/maze/task1/maps/level5/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3eb6dfe6c278080f3a99853012d79d0b0c5ce38 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/60.txt b/maze/task1/maps/level5/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..640af9bae7254c4a19dabc00763663f38a050c6f --- /dev/null +++ b/maze/task1/maps/level5/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/61.txt b/maze/task1/maps/level5/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1cc60fe3b6888b54703807f2f806486a7a17524 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/62.txt b/maze/task1/maps/level5/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e29ff4a578d24fdd08b465c671003142f4ca61d --- /dev/null +++ b/maze/task1/maps/level5/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/63.txt b/maze/task1/maps/level5/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..afb49e904849cc131ac2e23cd313d3abe86afaee --- /dev/null +++ b/maze/task1/maps/level5/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/64.txt b/maze/task1/maps/level5/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..112f2385fa623ff3b9d41109ecdda64568a3dbae --- /dev/null +++ b/maze/task1/maps/level5/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/65.txt b/maze/task1/maps/level5/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdba7b3153cf6615fdc1c3e49aee1d572fe2aa3d --- /dev/null +++ b/maze/task1/maps/level5/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/66.txt b/maze/task1/maps/level5/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3d3e9d69cac89cb69bffd0025670e17c0cd28a9 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/67.txt b/maze/task1/maps/level5/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..43d92d620d4dcdd480074cdae7ce4d05205dd029 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/68.txt b/maze/task1/maps/level5/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2f1e6a21c2ce8b8f2d7f49e94e4e77b63a40678 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/69.txt b/maze/task1/maps/level5/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..da098556843eb008ce22ad485351a8970e1be07a --- /dev/null +++ b/maze/task1/maps/level5/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 5; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/7.txt b/maze/task1/maps/level5/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f785b22e2cb32a6e6dd8019caa7566c713f85da --- /dev/null +++ b/maze/task1/maps/level5/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/70.txt b/maze/task1/maps/level5/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..284c7bb67976835d5549d744fd527001960202c8 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/71.txt b/maze/task1/maps/level5/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..43fe6f7c1a834a60e4bf8ca4f3d797a43e685b3a --- /dev/null +++ b/maze/task1/maps/level5/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/72.txt b/maze/task1/maps/level5/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..21b2d9ceb9eeeec583607f9a2088ede65f34e547 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 4, Column 1; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/73.txt b/maze/task1/maps/level5/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..25541f32f3dde73bf5bc47e763dddcca9e6081ba --- /dev/null +++ b/maze/task1/maps/level5/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/74.txt b/maze/task1/maps/level5/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..38791fe4b9e2b39548859fb30b33a4ed6664f33f --- /dev/null +++ b/maze/task1/maps/level5/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/75.txt b/maze/task1/maps/level5/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..2877b0da7c8b5ce683e49fed2a41dd0ff46cbff0 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/76.txt b/maze/task1/maps/level5/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..3606527cfcae04ef252f370069c80ee7d1c1cbd8 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 4; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/77.txt b/maze/task1/maps/level5/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..e297d63bb8f3d76cfcba3441d4858b25b3d21305 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/78.txt b/maze/task1/maps/level5/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf89b66065e7190676bfe7105d892581529de29a --- /dev/null +++ b/maze/task1/maps/level5/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/79.txt b/maze/task1/maps/level5/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..953ba48acd50857b6cd9f9f5207c738f14206c2f --- /dev/null +++ b/maze/task1/maps/level5/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/8.txt b/maze/task1/maps/level5/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..92907fc64a38aaf58f3e7e5605d0a252fb7c6ebf --- /dev/null +++ b/maze/task1/maps/level5/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/80.txt b/maze/task1/maps/level5/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..69a3783cafb2305390fe8c2fa5caf1edc194da15 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/81.txt b/maze/task1/maps/level5/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfaa108251fe7bbc94633fbed86d6c02fc444e0f --- /dev/null +++ b/maze/task1/maps/level5/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/82.txt b/maze/task1/maps/level5/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..51cd2b70b96f173de5be4fc5c703218f2e5f67af --- /dev/null +++ b/maze/task1/maps/level5/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/83.txt b/maze/task1/maps/level5/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..1848963f9c93343f7f65302cbb0f3be24a8ec082 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/84.txt b/maze/task1/maps/level5/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..b26499c597943a74d4540a1277ec5d5c04c4c1c3 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/85.txt b/maze/task1/maps/level5/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6c98e746d352b9b7148075201466ed1f1604ed0 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/86.txt b/maze/task1/maps/level5/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..23b8ce97dcbb42ec013cf9f1fbcc17d0cf40efd0 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/87.txt b/maze/task1/maps/level5/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..d668e58d6c0e3c9edc2800d11b19f7ae4042617b --- /dev/null +++ b/maze/task1/maps/level5/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 5; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/88.txt b/maze/task1/maps/level5/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8f30cf141454aae1be841a4441d7769f655ad10 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/89.txt b/maze/task1/maps/level5/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8a480327b666eeb4b0b6bbc8f9dcdb675a6d025 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 3; Row 3, Column 5; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/9.txt b/maze/task1/maps/level5/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae7e27f196b0c622dfd95cc95051195fc8e3ac5f --- /dev/null +++ b/maze/task1/maps/level5/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/90.txt b/maze/task1/maps/level5/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..196bf779632c5220fbd1c2e2624992bb8fb13800 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/91.txt b/maze/task1/maps/level5/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5dee8d8043529e20cd8d68eece9b84842f7f4df --- /dev/null +++ b/maze/task1/maps/level5/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/92.txt b/maze/task1/maps/level5/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..25308b07232886d27fa6e7dec0567f5301a01247 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/93.txt b/maze/task1/maps/level5/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..22a168a987a769751835eae2d6ee1f44ce4d0640 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/94.txt b/maze/task1/maps/level5/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..4eda855a2a53030a51e6152c2151436906e3ad11 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/95.txt b/maze/task1/maps/level5/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b249460f1b5d81645521debd3e3f0f852be65d0 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/96.txt b/maze/task1/maps/level5/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..30795aa3bb7c7b9a2a3bf73fb0bbee3e093be49d --- /dev/null +++ b/maze/task1/maps/level5/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/97.txt b/maze/task1/maps/level5/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a78a9baca2fd268d8d0efbdccdd8de39edb7aa3 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/98.txt b/maze/task1/maps/level5/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..98b4bed687a27d1935a6240733a62957b59e7e5a --- /dev/null +++ b/maze/task1/maps/level5/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/pure_text/99.txt b/maze/task1/maps/level5/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..9990535bf089ed22a7f3e57ad2414041637bdc88 --- /dev/null +++ b/maze/task1/maps/level5/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level5/question/0.txt b/maze/task1/maps/level5/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level5/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/1.txt b/maze/task1/maps/level5/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level5/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/10.txt b/maze/task1/maps/level5/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level5/question/10.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/11.txt b/maze/task1/maps/level5/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level5/question/11.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/12.txt b/maze/task1/maps/level5/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level5/question/12.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/13.txt b/maze/task1/maps/level5/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level5/question/13.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/14.txt b/maze/task1/maps/level5/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level5/question/14.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/15.txt b/maze/task1/maps/level5/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level5/question/15.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/16.txt b/maze/task1/maps/level5/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level5/question/16.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/17.txt b/maze/task1/maps/level5/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level5/question/17.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/18.txt b/maze/task1/maps/level5/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level5/question/18.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/19.txt b/maze/task1/maps/level5/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level5/question/19.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/2.txt b/maze/task1/maps/level5/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level5/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/20.txt b/maze/task1/maps/level5/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level5/question/20.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/21.txt b/maze/task1/maps/level5/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level5/question/21.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/22.txt b/maze/task1/maps/level5/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level5/question/22.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/23.txt b/maze/task1/maps/level5/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level5/question/23.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/24.txt b/maze/task1/maps/level5/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level5/question/24.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/25.txt b/maze/task1/maps/level5/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level5/question/25.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/26.txt b/maze/task1/maps/level5/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level5/question/26.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/27.txt b/maze/task1/maps/level5/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level5/question/27.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/28.txt b/maze/task1/maps/level5/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level5/question/28.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/29.txt b/maze/task1/maps/level5/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..812cbc96f7148ebcfa762a9a2de1b7e42ead798f --- /dev/null +++ b/maze/task1/maps/level5/question/29.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/3.txt b/maze/task1/maps/level5/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level5/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/30.txt b/maze/task1/maps/level5/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level5/question/30.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/31.txt b/maze/task1/maps/level5/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level5/question/31.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/32.txt b/maze/task1/maps/level5/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level5/question/32.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/33.txt b/maze/task1/maps/level5/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level5/question/33.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/34.txt b/maze/task1/maps/level5/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level5/question/34.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/35.txt b/maze/task1/maps/level5/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level5/question/35.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/36.txt b/maze/task1/maps/level5/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level5/question/36.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/37.txt b/maze/task1/maps/level5/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a5a36b3619d5b51fb41a9ee26acfb51a369406 --- /dev/null +++ b/maze/task1/maps/level5/question/37.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/38.txt b/maze/task1/maps/level5/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level5/question/38.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/39.txt b/maze/task1/maps/level5/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level5/question/39.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/4.txt b/maze/task1/maps/level5/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level5/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/40.txt b/maze/task1/maps/level5/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level5/question/40.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/41.txt b/maze/task1/maps/level5/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level5/question/41.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/42.txt b/maze/task1/maps/level5/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level5/question/42.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/43.txt b/maze/task1/maps/level5/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..16d4721f5c5658e494dfa10c15bc1258749faa01 --- /dev/null +++ b/maze/task1/maps/level5/question/43.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/44.txt b/maze/task1/maps/level5/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level5/question/44.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/45.txt b/maze/task1/maps/level5/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level5/question/45.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/46.txt b/maze/task1/maps/level5/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a5a36b3619d5b51fb41a9ee26acfb51a369406 --- /dev/null +++ b/maze/task1/maps/level5/question/46.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/47.txt b/maze/task1/maps/level5/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..812cbc96f7148ebcfa762a9a2de1b7e42ead798f --- /dev/null +++ b/maze/task1/maps/level5/question/47.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/48.txt b/maze/task1/maps/level5/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level5/question/48.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/49.txt b/maze/task1/maps/level5/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level5/question/49.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/5.txt b/maze/task1/maps/level5/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level5/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/50.txt b/maze/task1/maps/level5/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a5a36b3619d5b51fb41a9ee26acfb51a369406 --- /dev/null +++ b/maze/task1/maps/level5/question/50.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/51.txt b/maze/task1/maps/level5/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level5/question/51.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/52.txt b/maze/task1/maps/level5/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level5/question/52.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/53.txt b/maze/task1/maps/level5/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level5/question/53.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/54.txt b/maze/task1/maps/level5/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..16d4721f5c5658e494dfa10c15bc1258749faa01 --- /dev/null +++ b/maze/task1/maps/level5/question/54.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/55.txt b/maze/task1/maps/level5/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level5/question/55.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/56.txt b/maze/task1/maps/level5/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level5/question/56.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/57.txt b/maze/task1/maps/level5/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level5/question/57.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/58.txt b/maze/task1/maps/level5/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level5/question/58.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/59.txt b/maze/task1/maps/level5/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9aede805af915baa2df0e8e796da4fc5847723a --- /dev/null +++ b/maze/task1/maps/level5/question/59.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/6.txt b/maze/task1/maps/level5/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level5/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/60.txt b/maze/task1/maps/level5/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level5/question/60.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/61.txt b/maze/task1/maps/level5/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level5/question/61.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/62.txt b/maze/task1/maps/level5/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level5/question/62.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/63.txt b/maze/task1/maps/level5/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level5/question/63.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/64.txt b/maze/task1/maps/level5/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level5/question/64.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/65.txt b/maze/task1/maps/level5/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level5/question/65.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/66.txt b/maze/task1/maps/level5/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..812cbc96f7148ebcfa762a9a2de1b7e42ead798f --- /dev/null +++ b/maze/task1/maps/level5/question/66.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/67.txt b/maze/task1/maps/level5/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level5/question/67.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/68.txt b/maze/task1/maps/level5/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level5/question/68.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/69.txt b/maze/task1/maps/level5/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9aede805af915baa2df0e8e796da4fc5847723a --- /dev/null +++ b/maze/task1/maps/level5/question/69.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/7.txt b/maze/task1/maps/level5/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level5/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/70.txt b/maze/task1/maps/level5/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level5/question/70.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/71.txt b/maze/task1/maps/level5/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level5/question/71.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/72.txt b/maze/task1/maps/level5/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level5/question/72.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/73.txt b/maze/task1/maps/level5/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level5/question/73.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/74.txt b/maze/task1/maps/level5/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level5/question/74.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/75.txt b/maze/task1/maps/level5/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level5/question/75.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/76.txt b/maze/task1/maps/level5/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level5/question/76.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/77.txt b/maze/task1/maps/level5/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level5/question/77.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/78.txt b/maze/task1/maps/level5/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level5/question/78.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/79.txt b/maze/task1/maps/level5/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level5/question/79.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/8.txt b/maze/task1/maps/level5/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..16d4721f5c5658e494dfa10c15bc1258749faa01 --- /dev/null +++ b/maze/task1/maps/level5/question/8.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/80.txt b/maze/task1/maps/level5/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level5/question/80.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/81.txt b/maze/task1/maps/level5/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level5/question/81.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/82.txt b/maze/task1/maps/level5/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level5/question/82.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/83.txt b/maze/task1/maps/level5/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level5/question/83.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/84.txt b/maze/task1/maps/level5/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level5/question/84.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/85.txt b/maze/task1/maps/level5/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level5/question/85.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/86.txt b/maze/task1/maps/level5/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level5/question/86.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/87.txt b/maze/task1/maps/level5/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level5/question/87.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/88.txt b/maze/task1/maps/level5/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a5a36b3619d5b51fb41a9ee26acfb51a369406 --- /dev/null +++ b/maze/task1/maps/level5/question/88.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/89.txt b/maze/task1/maps/level5/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level5/question/89.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/9.txt b/maze/task1/maps/level5/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level5/question/9.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/90.txt b/maze/task1/maps/level5/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a5a36b3619d5b51fb41a9ee26acfb51a369406 --- /dev/null +++ b/maze/task1/maps/level5/question/90.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/91.txt b/maze/task1/maps/level5/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9aede805af915baa2df0e8e796da4fc5847723a --- /dev/null +++ b/maze/task1/maps/level5/question/91.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/92.txt b/maze/task1/maps/level5/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level5/question/92.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/93.txt b/maze/task1/maps/level5/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level5/question/93.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/94.txt b/maze/task1/maps/level5/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level5/question/94.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/95.txt b/maze/task1/maps/level5/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level5/question/95.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/96.txt b/maze/task1/maps/level5/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level5/question/96.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/97.txt b/maze/task1/maps/level5/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level5/question/97.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/98.txt b/maze/task1/maps/level5/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level5/question/98.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level5/question/99.txt b/maze/task1/maps/level5/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level5/question/99.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level5/table/0.txt b/maze/task1/maps/level5/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..036326df81af91795a6a4b35b9822ba3ae21a664 --- /dev/null +++ b/maze/task1/maps/level5/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | @ | # | # | # | _ | +| Row 4 | # | _ | # | _ | # | +| Row 5 | # | * | _ | # | _ | diff --git a/maze/task1/maps/level5/table/1.txt b/maze/task1/maps/level5/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b3c6d6f037610feee3e143c3faafedda18835b7 --- /dev/null +++ b/maze/task1/maps/level5/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | @ | _ | # | # | _ | +| Row 3 | # | _ | _ | # | # | +| Row 4 | # | _ | # | _ | # | +| Row 5 | # | * | # | # | _ | diff --git a/maze/task1/maps/level5/table/10.txt b/maze/task1/maps/level5/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b6dc52ffdc6e6f7af3df212d35915681d3ceba4 --- /dev/null +++ b/maze/task1/maps/level5/table/10.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | @ | _ | +| Row 2 | _ | # | # | # | _ | +| Row 3 | # | # | # | _ | # | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task1/maps/level5/table/11.txt b/maze/task1/maps/level5/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c96ad69fe42c4af9e4eca730e498e18c149ffc7 --- /dev/null +++ b/maze/task1/maps/level5/table/11.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | * | _ | +| Row 4 | # | # | # | # | # | +| Row 5 | _ | _ | @ | # | _ | diff --git a/maze/task1/maps/level5/table/12.txt b/maze/task1/maps/level5/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..49db49dbeb5cb8c087fa960f321f49bc3f40b942 --- /dev/null +++ b/maze/task1/maps/level5/table/12.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | # | +| Row 2 | _ | * | # | _ | # | +| Row 3 | # | # | # | # | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level5/table/13.txt b/maze/task1/maps/level5/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..7925a1c745ee2f93e4c444bfe1946dfc1eccd67e --- /dev/null +++ b/maze/task1/maps/level5/table/13.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | # | +| Row 2 | * | _ | # | # | # | +| Row 3 | # | # | _ | _ | _ | +| Row 4 | @ | _ | _ | # | # | +| Row 5 | # | _ | _ | # | # | diff --git a/maze/task1/maps/level5/table/14.txt b/maze/task1/maps/level5/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb995ec2f1dac9bbe78a6e343565e2f3a3b163eb --- /dev/null +++ b/maze/task1/maps/level5/table/14.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | * | _ | _ | +| Row 2 | # | _ | _ | # | # | +| Row 3 | # | # | # | # | # | +| Row 4 | _ | _ | _ | @ | # | +| Row 5 | _ | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/15.txt b/maze/task1/maps/level5/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff6dd1e72cde46ce9ba811a2e05357ce0d3fa2e6 --- /dev/null +++ b/maze/task1/maps/level5/table/15.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | # | +| Row 3 | # | # | # | # | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | # | # | _ | # | * | diff --git a/maze/task1/maps/level5/table/16.txt b/maze/task1/maps/level5/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bc383c2045b67056b653589e5cdb993662eb01a --- /dev/null +++ b/maze/task1/maps/level5/table/16.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | # | +| Row 3 | # | _ | # | _ | # | +| Row 4 | # | # | # | # | * | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task1/maps/level5/table/17.txt b/maze/task1/maps/level5/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eed6c5ec74d1cbc31d63eb1a764117b25d525fe --- /dev/null +++ b/maze/task1/maps/level5/table/17.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | @ | # | # | * | +| Row 3 | # | _ | _ | # | # | +| Row 4 | _ | # | # | # | # | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task1/maps/level5/table/18.txt b/maze/task1/maps/level5/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca8cbf8805003f4394eb7dd828282df0947b2aa0 --- /dev/null +++ b/maze/task1/maps/level5/table/18.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | # | _ | +| Row 2 | _ | # | # | # | # | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | _ | * | # | _ | # | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level5/table/19.txt b/maze/task1/maps/level5/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..0edd73eee4ae9647bb053901beb9bfd0bf627e4b --- /dev/null +++ b/maze/task1/maps/level5/table/19.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | # | # | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | # | # | _ | # | # | +| Row 4 | _ | _ | # | # | _ | +| Row 5 | # | _ | * | # | # | diff --git a/maze/task1/maps/level5/table/2.txt b/maze/task1/maps/level5/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..8de9609a100b630efd5c5daa10bf99f1e863d0d8 --- /dev/null +++ b/maze/task1/maps/level5/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | # | +| Row 2 | # | # | # | # | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | # | +| Row 5 | * | # | _ | @ | _ | diff --git a/maze/task1/maps/level5/table/20.txt b/maze/task1/maps/level5/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc5e5d89963bb05240ed803cc55b8d0d5481b739 --- /dev/null +++ b/maze/task1/maps/level5/table/20.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | @ | # | _ | # | # | +| Row 3 | # | # | # | _ | _ | +| Row 4 | _ | # | * | # | _ | +| Row 5 | _ | # | _ | # | # | diff --git a/maze/task1/maps/level5/table/21.txt b/maze/task1/maps/level5/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f4a90e9793a70610e95c332a72a42fee4c3bfd8 --- /dev/null +++ b/maze/task1/maps/level5/table/21.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | # | +| Row 2 | # | # | @ | * | _ | +| Row 3 | # | # | # | _ | # | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | # | # | _ | # | _ | diff --git a/maze/task1/maps/level5/table/22.txt b/maze/task1/maps/level5/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0594e02f1b233229af1bf1ae4e3c3e447215e9b --- /dev/null +++ b/maze/task1/maps/level5/table/22.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | * | _ | # | @ | # | +| Row 4 | # | # | _ | # | # | +| Row 5 | # | # | # | _ | _ | diff --git a/maze/task1/maps/level5/table/23.txt b/maze/task1/maps/level5/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..188fcf8375e5b65a5e659ed821db3b1aed15cbe1 --- /dev/null +++ b/maze/task1/maps/level5/table/23.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | * | # | _ | _ | # | +| Row 3 | _ | # | # | # | _ | +| Row 4 | # | _ | @ | # | _ | +| Row 5 | _ | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/24.txt b/maze/task1/maps/level5/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..32f2979630fc3d26b2827b593562826c207f1c38 --- /dev/null +++ b/maze/task1/maps/level5/table/24.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | # | * | @ | # | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | # | # | _ | # | # | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task1/maps/level5/table/25.txt b/maze/task1/maps/level5/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee07e0024b8fbf99af592426ea814efe6b4baafa --- /dev/null +++ b/maze/task1/maps/level5/table/25.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | # | @ | _ | _ | +| Row 3 | # | # | _ | # | _ | +| Row 4 | # | # | * | _ | _ | +| Row 5 | # | _ | # | # | # | diff --git a/maze/task1/maps/level5/table/26.txt b/maze/task1/maps/level5/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc073a9477dff5e6ea8817740693761d4f7b872a --- /dev/null +++ b/maze/task1/maps/level5/table/26.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | * | # | _ | _ | _ | +| Row 3 | # | # | # | # | # | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | # | _ | # | # | @ | diff --git a/maze/task1/maps/level5/table/27.txt b/maze/task1/maps/level5/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2e677012ecbb6dd599a81ef0556621ea00f9b91 --- /dev/null +++ b/maze/task1/maps/level5/table/27.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | * | # | _ | +| Row 2 | # | _ | _ | # | # | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | # | # | _ | +| Row 5 | # | # | _ | # | # | diff --git a/maze/task1/maps/level5/table/28.txt b/maze/task1/maps/level5/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3355bbbc77ae3c5722f613e6c06a9e8383d7d0d --- /dev/null +++ b/maze/task1/maps/level5/table/28.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | _ | _ | +| Row 2 | # | * | # | _ | # | +| Row 3 | @ | # | _ | _ | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | # | _ | # | diff --git a/maze/task1/maps/level5/table/29.txt b/maze/task1/maps/level5/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e0ea9d02a3c77831962586c3c2062713c4cd3d9 --- /dev/null +++ b/maze/task1/maps/level5/table/29.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | @ | _ | +| Row 2 | _ | * | # | # | # | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | # | # | _ | +| Row 5 | # | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/3.txt b/maze/task1/maps/level5/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4db4c49e16648c08254c4a0f6a2582299304b84e --- /dev/null +++ b/maze/task1/maps/level5/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | # | # | _ | # | # | +| Row 4 | # | # | # | @ | _ | +| Row 5 | # | _ | # | # | _ | diff --git a/maze/task1/maps/level5/table/30.txt b/maze/task1/maps/level5/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6258dd57cb7d6ed3614d8f361630f1235df2373 --- /dev/null +++ b/maze/task1/maps/level5/table/30.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | # | +| Row 2 | # | * | # | # | _ | +| Row 3 | _ | @ | _ | _ | # | +| Row 4 | # | # | # | # | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task1/maps/level5/table/31.txt b/maze/task1/maps/level5/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..58580a76088f7a133f2a630e750935e4c4f7a447 --- /dev/null +++ b/maze/task1/maps/level5/table/31.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | # | # | # | # | _ | +| Row 4 | _ | # | _ | # | @ | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task1/maps/level5/table/32.txt b/maze/task1/maps/level5/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d94807e8c6fbf02212fa3993837183adf1a7287 --- /dev/null +++ b/maze/task1/maps/level5/table/32.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | # | +| Row 2 | * | # | _ | # | _ | +| Row 3 | # | _ | # | _ | _ | +| Row 4 | _ | _ | @ | # | # | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task1/maps/level5/table/33.txt b/maze/task1/maps/level5/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..48be37f4e04aed688ffd63ec4cf937a91f7e8ca4 --- /dev/null +++ b/maze/task1/maps/level5/table/33.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | # | # | # | # | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | * | _ | # | @ | # | diff --git a/maze/task1/maps/level5/table/34.txt b/maze/task1/maps/level5/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..e83f23584b9cbb8e8e8df72087fdd9c4590fc18c --- /dev/null +++ b/maze/task1/maps/level5/table/34.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | # | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | @ | # | _ | # | _ | +| Row 4 | # | # | * | _ | _ | +| Row 5 | _ | # | # | # | _ | diff --git a/maze/task1/maps/level5/table/35.txt b/maze/task1/maps/level5/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba6c24e003d74cbc37b9094d474f227f8b098927 --- /dev/null +++ b/maze/task1/maps/level5/table/35.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | @ | _ | # | _ | _ | +| Row 3 | _ | # | # | # | # | +| Row 4 | # | # | # | # | * | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level5/table/36.txt b/maze/task1/maps/level5/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fb36343a1418df740efbd9f5396deb4584c476a --- /dev/null +++ b/maze/task1/maps/level5/table/36.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | # | _ | +| Row 2 | _ | # | # | # | # | +| Row 3 | # | _ | # | # | * | +| Row 4 | # | @ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level5/table/37.txt b/maze/task1/maps/level5/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..e30fd2f9c0e52781962bae77f5b336f3f4401cee --- /dev/null +++ b/maze/task1/maps/level5/table/37.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | _ | # | @ | # | +| Row 3 | # | _ | # | _ | # | +| Row 4 | * | # | _ | # | # | +| Row 5 | _ | # | # | # | _ | diff --git a/maze/task1/maps/level5/table/38.txt b/maze/task1/maps/level5/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9602d7d02772213e046f555c79712ffd2310bdc --- /dev/null +++ b/maze/task1/maps/level5/table/38.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | # | # | +| Row 2 | _ | _ | # | * | # | +| Row 3 | _ | # | # | _ | @ | +| Row 4 | # | _ | # | # | # | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level5/table/39.txt b/maze/task1/maps/level5/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ca9d35fa205634e8441123e82828c156a7247fe --- /dev/null +++ b/maze/task1/maps/level5/table/39.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | * | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | # | _ | # | _ | # | +| Row 4 | # | _ | # | # | # | +| Row 5 | # | # | @ | _ | _ | diff --git a/maze/task1/maps/level5/table/4.txt b/maze/task1/maps/level5/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ad9c43f229d8db7784d8913f3c9599f566b048c --- /dev/null +++ b/maze/task1/maps/level5/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | # | # | +| Row 2 | # | _ | # | * | @ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | # | # | # | _ | _ | +| Row 5 | # | # | # | _ | _ | diff --git a/maze/task1/maps/level5/table/40.txt b/maze/task1/maps/level5/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..258c83c04436265278b8161f1434af1a1d856bd1 --- /dev/null +++ b/maze/task1/maps/level5/table/40.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | # | @ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | _ | # | * | # | diff --git a/maze/task1/maps/level5/table/41.txt b/maze/task1/maps/level5/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9dd879f323edcc4ebc8b87048e42b9822dabf5e --- /dev/null +++ b/maze/task1/maps/level5/table/41.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | # | @ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | # | # | # | +| Row 4 | _ | # | # | _ | * | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level5/table/42.txt b/maze/task1/maps/level5/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f5222c131fd6b1c343e24cfc6a9d7697011c30a --- /dev/null +++ b/maze/task1/maps/level5/table/42.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | # | _ | _ | # | # | +| Row 4 | _ | # | # | # | _ | +| Row 5 | _ | _ | # | * | # | diff --git a/maze/task1/maps/level5/table/43.txt b/maze/task1/maps/level5/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..1161bb0a55fbd66aa0ddf70c0c7923f7b017d2f2 --- /dev/null +++ b/maze/task1/maps/level5/table/43.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | * | _ | # | +| Row 2 | _ | # | # | _ | # | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | # | # | # | # | # | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task1/maps/level5/table/44.txt b/maze/task1/maps/level5/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..21d90b32b0507bb6d8972e2fb705357735aa5b64 --- /dev/null +++ b/maze/task1/maps/level5/table/44.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | _ | # | +| Row 2 | _ | # | # | _ | # | +| Row 3 | # | # | # | * | # | +| Row 4 | _ | # | _ | @ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level5/table/45.txt b/maze/task1/maps/level5/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c295479a11a07a3b796a594770c565c3b560c1a --- /dev/null +++ b/maze/task1/maps/level5/table/45.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | * | _ | @ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | # | # | # | # | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level5/table/46.txt b/maze/task1/maps/level5/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..b525a70bc5ab61781cf52b5564680dedd23a05bc --- /dev/null +++ b/maze/task1/maps/level5/table/46.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | # | +| Row 2 | _ | _ | _ | # | @ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | # | # | # | # | +| Row 5 | # | _ | # | _ | * | diff --git a/maze/task1/maps/level5/table/47.txt b/maze/task1/maps/level5/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe215bd5f9b6529823d4ce5e30528f7acb1882cf --- /dev/null +++ b/maze/task1/maps/level5/table/47.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | _ | # | +| Row 2 | # | _ | # | # | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | # | @ | _ | # | # | +| Row 5 | _ | * | # | _ | # | diff --git a/maze/task1/maps/level5/table/48.txt b/maze/task1/maps/level5/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..92d9db141ccbc9b1cb88706a5265326b73246431 --- /dev/null +++ b/maze/task1/maps/level5/table/48.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | +| Row 4 | * | # | # | # | # | +| Row 5 | # | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/49.txt b/maze/task1/maps/level5/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..774deb931d978fd21b0b75274cd3803b86245456 --- /dev/null +++ b/maze/task1/maps/level5/table/49.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | # | _ | +| Row 2 | # | _ | # | # | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | * | # | +| Row 5 | @ | _ | # | _ | # | diff --git a/maze/task1/maps/level5/table/5.txt b/maze/task1/maps/level5/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e62ee917e598a3718204fc5dbf989cd62f33823 --- /dev/null +++ b/maze/task1/maps/level5/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | # | _ | # | # | # | +| Row 3 | @ | # | _ | # | # | +| Row 4 | * | _ | _ | _ | # | +| Row 5 | _ | _ | # | # | # | diff --git a/maze/task1/maps/level5/table/50.txt b/maze/task1/maps/level5/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc5b6559fc9c437c73718d25427229f1b9189ddf --- /dev/null +++ b/maze/task1/maps/level5/table/50.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | # | # | +| Row 2 | _ | _ | @ | _ | # | +| Row 3 | # | # | # | # | # | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level5/table/51.txt b/maze/task1/maps/level5/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6255371b01fad510722792c5fdde773bb2010d3 --- /dev/null +++ b/maze/task1/maps/level5/table/51.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | _ | # | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | # | # | * | # | diff --git a/maze/task1/maps/level5/table/52.txt b/maze/task1/maps/level5/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b07028fd8596c2baf314cb93de33cf09882da96 --- /dev/null +++ b/maze/task1/maps/level5/table/52.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | # | # | _ | +| Row 2 | _ | _ | # | @ | # | +| Row 3 | # | # | # | _ | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | # | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/53.txt b/maze/task1/maps/level5/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca4a9bf56340366a738b96e8f3b61a0090d957a7 --- /dev/null +++ b/maze/task1/maps/level5/table/53.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | # | @ | # | # | # | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | # | +| Row 5 | # | * | _ | # | _ | diff --git a/maze/task1/maps/level5/table/54.txt b/maze/task1/maps/level5/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1fa8b6f64acd86a7f5c499bdb719bf5eb5cd44e --- /dev/null +++ b/maze/task1/maps/level5/table/54.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | * | # | _ | _ | # | +| Row 3 | # | # | # | _ | # | +| Row 4 | _ | # | # | # | _ | +| Row 5 | _ | @ | # | _ | _ | diff --git a/maze/task1/maps/level5/table/55.txt b/maze/task1/maps/level5/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7a67665e59087334dfc213a61e1cdde76e49099 --- /dev/null +++ b/maze/task1/maps/level5/table/55.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | # | # | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | # | * | # | +| Row 5 | # | # | @ | _ | # | diff --git a/maze/task1/maps/level5/table/56.txt b/maze/task1/maps/level5/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f798ed495031bd1be4ec0bff8bb106ce0c2c72 --- /dev/null +++ b/maze/task1/maps/level5/table/56.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | # | # | # | +| Row 3 | _ | _ | # | @ | _ | +| Row 4 | # | # | * | _ | # | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level5/table/57.txt b/maze/task1/maps/level5/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c51311df9c9482f2b7125455e40d1a8a729cd57 --- /dev/null +++ b/maze/task1/maps/level5/table/57.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | # | # | * | _ | +| Row 3 | # | # | # | _ | @ | +| Row 4 | _ | # | # | # | _ | +| Row 5 | # | # | _ | # | _ | diff --git a/maze/task1/maps/level5/table/58.txt b/maze/task1/maps/level5/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..748ea31c9252b8635b6e5374d678c092f59fbd90 --- /dev/null +++ b/maze/task1/maps/level5/table/58.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | _ | +| Row 2 | _ | @ | # | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | # | * | # | # | _ | +| Row 5 | # | # | # | _ | _ | diff --git a/maze/task1/maps/level5/table/59.txt b/maze/task1/maps/level5/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..530e84161b2f69fb0049b918212c983d16e8d355 --- /dev/null +++ b/maze/task1/maps/level5/table/59.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | # | # | +| Row 2 | _ | _ | @ | # | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | # | _ | * | # | # | +| Row 5 | # | _ | # | # | _ | diff --git a/maze/task1/maps/level5/table/6.txt b/maze/task1/maps/level5/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9d540023caeaf88c66aad333b63d6ebd529acda --- /dev/null +++ b/maze/task1/maps/level5/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | # | +| Row 3 | # | # | # | # | * | +| Row 4 | _ | # | # | # | @ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level5/table/60.txt b/maze/task1/maps/level5/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0031bebcfbc7e52b9c22952cf0f81a97123ebde --- /dev/null +++ b/maze/task1/maps/level5/table/60.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | _ | # | +| Row 2 | # | # | _ | _ | * | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | # | # | # | _ | # | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task1/maps/level5/table/61.txt b/maze/task1/maps/level5/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..a91a9036ec81894e50a5c70fcf00ac88fa7b6719 --- /dev/null +++ b/maze/task1/maps/level5/table/61.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | # | # | _ | +| Row 3 | _ | # | # | # | # | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | _ | * | @ | # | diff --git a/maze/task1/maps/level5/table/62.txt b/maze/task1/maps/level5/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..695f9030b077666d33fd83110a9e92376af8392f --- /dev/null +++ b/maze/task1/maps/level5/table/62.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | # | # | _ | * | # | +| Row 4 | # | # | # | # | @ | +| Row 5 | # | # | # | _ | _ | diff --git a/maze/task1/maps/level5/table/63.txt b/maze/task1/maps/level5/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..54e5a938afd39f68ee4556ea769c39d60c03f77b --- /dev/null +++ b/maze/task1/maps/level5/table/63.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | # | # | _ | +| Row 2 | # | _ | # | # | * | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task1/maps/level5/table/64.txt b/maze/task1/maps/level5/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c1ea2b88f3b33db451e9fad96d874376b5783ed --- /dev/null +++ b/maze/task1/maps/level5/table/64.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | # | # | +| Row 2 | _ | * | # | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | # | # | _ | +| Row 5 | # | # | _ | # | # | diff --git a/maze/task1/maps/level5/table/65.txt b/maze/task1/maps/level5/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..870ca57be4df0bfd34f05f982c432d0c964ae5f2 --- /dev/null +++ b/maze/task1/maps/level5/table/65.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | # | @ | # | _ | * | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | # | # | # | _ | diff --git a/maze/task1/maps/level5/table/66.txt b/maze/task1/maps/level5/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..04cfd663c3158138f0936be758c2ba5e4b8164d4 --- /dev/null +++ b/maze/task1/maps/level5/table/66.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | # | +| Row 2 | _ | # | # | _ | @ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | # | # | # | * | # | diff --git a/maze/task1/maps/level5/table/67.txt b/maze/task1/maps/level5/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..88cf3a1fc0bed56049780557cbf44c6bb45fe5de --- /dev/null +++ b/maze/task1/maps/level5/table/67.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | @ | # | # | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/68.txt b/maze/task1/maps/level5/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..98f2b18b43f20de3030a66d9182087f7df69b1bb --- /dev/null +++ b/maze/task1/maps/level5/table/68.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | # | # | # | * | +| Row 4 | # | @ | # | # | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level5/table/69.txt b/maze/task1/maps/level5/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7abcb7f12bf215c99264952e160caa1f396e53c --- /dev/null +++ b/maze/task1/maps/level5/table/69.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | * | # | _ | _ | # | +| Row 3 | # | _ | _ | @ | # | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | # | # | _ | # | # | diff --git a/maze/task1/maps/level5/table/7.txt b/maze/task1/maps/level5/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e1ac3436dce4f130f92f2278ac960c39ddd708e --- /dev/null +++ b/maze/task1/maps/level5/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | # | # | # | # | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | # | # | _ | # | * | +| Row 5 | _ | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/70.txt b/maze/task1/maps/level5/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..46bbc2aed0bbc369fe3543f00016ecd971822cab --- /dev/null +++ b/maze/task1/maps/level5/table/70.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | * | # | +| Row 2 | _ | _ | @ | _ | # | +| Row 3 | # | # | _ | # | _ | +| Row 4 | # | _ | # | # | # | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level5/table/71.txt b/maze/task1/maps/level5/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd10f94679645ece20494f084f06053675eeb669 --- /dev/null +++ b/maze/task1/maps/level5/table/71.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | # | * | # | # | # | +| Row 4 | # | # | # | _ | _ | +| Row 5 | # | # | _ | _ | @ | diff --git a/maze/task1/maps/level5/table/72.txt b/maze/task1/maps/level5/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..af36c211222d326fc4a739f8f92937ae2cd66885 --- /dev/null +++ b/maze/task1/maps/level5/table/72.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | # | +| Row 2 | # | @ | _ | # | # | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | # | +| Row 5 | _ | # | # | # | # | diff --git a/maze/task1/maps/level5/table/73.txt b/maze/task1/maps/level5/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7d9ecb0246f9bb8836e200b2941a7b6764f19f0 --- /dev/null +++ b/maze/task1/maps/level5/table/73.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | # | # | # | _ | # | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | * | # | # | _ | _ | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task1/maps/level5/table/74.txt b/maze/task1/maps/level5/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dc60a53acf25b3654e97fe795ac8599bd15fa8d --- /dev/null +++ b/maze/task1/maps/level5/table/74.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | # | _ | _ | * | @ | +| Row 3 | _ | # | # | # | # | +| Row 4 | _ | # | # | _ | # | +| Row 5 | # | # | # | _ | _ | diff --git a/maze/task1/maps/level5/table/75.txt b/maze/task1/maps/level5/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..59a32c7a8990c5377ffe78ea532e44fe30e1e293 --- /dev/null +++ b/maze/task1/maps/level5/table/75.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | # | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | # | # | _ | # | _ | +| Row 4 | @ | _ | # | # | # | +| Row 5 | _ | * | _ | # | # | diff --git a/maze/task1/maps/level5/table/76.txt b/maze/task1/maps/level5/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b15759087d1b184623d3ae1868d732d0f9d10f3 --- /dev/null +++ b/maze/task1/maps/level5/table/76.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | # | +| Row 2 | # | _ | # | _ | # | +| Row 3 | # | # | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | # | * | @ | # | diff --git a/maze/task1/maps/level5/table/77.txt b/maze/task1/maps/level5/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f794b7b951aac4743275d1fd519a45168b0d87f --- /dev/null +++ b/maze/task1/maps/level5/table/77.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | # | _ | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | # | _ | # | # | +| Row 4 | _ | # | # | _ | # | +| Row 5 | * | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/78.txt b/maze/task1/maps/level5/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fdc666691509163adbb1c5c3cc155b882d4d371 --- /dev/null +++ b/maze/task1/maps/level5/table/78.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | # | # | # | # | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | # | * | +| Row 5 | _ | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/79.txt b/maze/task1/maps/level5/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..32857da00c66bf6335f111732b7139d0ee312307 --- /dev/null +++ b/maze/task1/maps/level5/table/79.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | # | # | # | * | # | +| Row 4 | # | # | # | # | # | +| Row 5 | _ | # | _ | _ | @ | diff --git a/maze/task1/maps/level5/table/8.txt b/maze/task1/maps/level5/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..0acc9dce52e8175585f1081fa12b9939d2c5299b --- /dev/null +++ b/maze/task1/maps/level5/table/8.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | # | _ | # | # | _ | +| Row 3 | # | # | # | _ | * | +| Row 4 | _ | # | # | # | @ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task1/maps/level5/table/80.txt b/maze/task1/maps/level5/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..227bd1161d9c3453d6dd7c1e654128ddfbebb64b --- /dev/null +++ b/maze/task1/maps/level5/table/80.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | # | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | # | # | # | +| Row 5 | * | _ | @ | # | _ | diff --git a/maze/task1/maps/level5/table/81.txt b/maze/task1/maps/level5/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b1e572d64ba04a273d31965f767907a122c611 --- /dev/null +++ b/maze/task1/maps/level5/table/81.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | _ | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | _ | * | # | _ | # | +| Row 5 | _ | # | _ | # | # | diff --git a/maze/task1/maps/level5/table/82.txt b/maze/task1/maps/level5/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..c95a83efed9d65fd92ee4186610c60e53ea29383 --- /dev/null +++ b/maze/task1/maps/level5/table/82.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | # | # | # | _ | # | +| Row 3 | _ | @ | # | # | # | +| Row 4 | _ | # | # | _ | # | +| Row 5 | # | _ | _ | _ | * | diff --git a/maze/task1/maps/level5/table/83.txt b/maze/task1/maps/level5/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe63b3ef855ae660d2e0f09e08840f6ba3319705 --- /dev/null +++ b/maze/task1/maps/level5/table/83.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | * | +| Row 2 | # | # | _ | # | # | +| Row 3 | # | _ | @ | _ | _ | +| Row 4 | _ | # | # | # | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task1/maps/level5/table/84.txt b/maze/task1/maps/level5/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..953c961d1bb5c9f715bb5c4fc9f89fc116d73668 --- /dev/null +++ b/maze/task1/maps/level5/table/84.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | @ | # | # | _ | +| Row 3 | # | # | # | # | _ | +| Row 4 | # | # | # | _ | * | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level5/table/85.txt b/maze/task1/maps/level5/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbea0e36206ae3686bb1cd7b4b8e7bf8394c30de --- /dev/null +++ b/maze/task1/maps/level5/table/85.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | # | +| Row 2 | _ | # | # | * | # | +| Row 3 | _ | @ | # | _ | # | +| Row 4 | _ | # | # | # | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level5/table/86.txt b/maze/task1/maps/level5/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..c25a61288815f02732c3e8a53da1939f493a2d09 --- /dev/null +++ b/maze/task1/maps/level5/table/86.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | # | @ | _ | # | +| Row 3 | # | _ | # | # | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | # | # | # | _ | # | diff --git a/maze/task1/maps/level5/table/87.txt b/maze/task1/maps/level5/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..99786dedf856d530de86406ad80b9713419c3a96 --- /dev/null +++ b/maze/task1/maps/level5/table/87.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | @ | # | _ | _ | # | +| Row 2 | _ | # | # | # | * | +| Row 3 | _ | # | # | # | _ | +| Row 4 | # | _ | _ | _ | # | +| Row 5 | _ | # | _ | # | # | diff --git a/maze/task1/maps/level5/table/88.txt b/maze/task1/maps/level5/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..07d034b0ae249b70f697c648ba19a45126b40f64 --- /dev/null +++ b/maze/task1/maps/level5/table/88.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | _ | @ | +| Row 3 | * | # | # | # | _ | +| Row 4 | # | # | # | _ | # | +| Row 5 | # | _ | _ | # | # | diff --git a/maze/task1/maps/level5/table/89.txt b/maze/task1/maps/level5/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..dca682a77bd17fe9d81b13999e2cc8cebaf544aa --- /dev/null +++ b/maze/task1/maps/level5/table/89.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | @ | # | # | # | _ | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | * | _ | # | # | _ | +| Row 5 | _ | # | # | # | # | diff --git a/maze/task1/maps/level5/table/9.txt b/maze/task1/maps/level5/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..23222dcd13061218fccbdeacbef4f907ffe97792 --- /dev/null +++ b/maze/task1/maps/level5/table/9.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | # | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | # | # | _ | # | # | +| Row 4 | _ | # | # | _ | # | +| Row 5 | # | * | _ | # | _ | diff --git a/maze/task1/maps/level5/table/90.txt b/maze/task1/maps/level5/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..086dec9167c10e2b1fd11ce03163400437ce2091 --- /dev/null +++ b/maze/task1/maps/level5/table/90.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | # | # | # | _ | +| Row 3 | _ | _ | # | @ | _ | +| Row 4 | # | # | # | _ | # | +| Row 5 | # | # | * | # | _ | diff --git a/maze/task1/maps/level5/table/91.txt b/maze/task1/maps/level5/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..b961ab2ebd96b9af34aeccab4483cbbda5fdd965 --- /dev/null +++ b/maze/task1/maps/level5/table/91.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | # | _ | _ | +| Row 2 | # | # | # | _ | # | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | @ | # | # | # | # | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task1/maps/level5/table/92.txt b/maze/task1/maps/level5/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae11fca1e51059875f2ae3fa9865f04b38a8dd20 --- /dev/null +++ b/maze/task1/maps/level5/table/92.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | # | # | # | _ | +| Row 4 | # | # | # | @ | # | +| Row 5 | * | _ | _ | # | _ | diff --git a/maze/task1/maps/level5/table/93.txt b/maze/task1/maps/level5/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6f1fbe70beac18906de4fcebe26c8e314c73d60 --- /dev/null +++ b/maze/task1/maps/level5/table/93.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | # | # | # | +| Row 3 | _ | # | _ | @ | # | +| Row 4 | # | _ | * | # | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level5/table/94.txt b/maze/task1/maps/level5/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..5622bab4f305eb267b1c6a70fb8bb0d301bee77f --- /dev/null +++ b/maze/task1/maps/level5/table/94.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | # | +| Row 2 | # | # | _ | _ | @ | +| Row 3 | _ | # | _ | # | # | +| Row 4 | * | # | # | _ | # | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level5/table/95.txt b/maze/task1/maps/level5/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..1de95c4cee017172d2967d011efab774d849380a --- /dev/null +++ b/maze/task1/maps/level5/table/95.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | # | _ | +| Row 2 | # | _ | _ | @ | _ | +| Row 3 | _ | _ | # | # | # | +| Row 4 | * | _ | # | # | # | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level5/table/96.txt b/maze/task1/maps/level5/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cab3d253252cdfbc2c86abcb7fb659019d8d3ae --- /dev/null +++ b/maze/task1/maps/level5/table/96.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | @ | # | # | # | # | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | # | # | # | # | +| Row 5 | _ | # | _ | * | _ | diff --git a/maze/task1/maps/level5/table/97.txt b/maze/task1/maps/level5/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..63aca6767f273fc8af73cc0f3be011198a923fd2 --- /dev/null +++ b/maze/task1/maps/level5/table/97.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | # | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | # | # | # | _ | # | +| Row 4 | # | _ | # | @ | # | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level5/table/98.txt b/maze/task1/maps/level5/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..f95200c892645455ccb4b74126cc4da8f1447f5f --- /dev/null +++ b/maze/task1/maps/level5/table/98.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | # | _ | # | +| Row 2 | # | # | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | # | # | _ | +| Row 5 | * | _ | # | _ | # | diff --git a/maze/task1/maps/level5/table/99.txt b/maze/task1/maps/level5/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..199e700a4af3d0d265b49a06b0241ca802f2ab62 --- /dev/null +++ b/maze/task1/maps/level5/table/99.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | _ | # | # | # | # | +| Row 4 | _ | # | _ | @ | # | +| Row 5 | * | # | _ | _ | # | diff --git a/maze/task1/maps/level6/answer/0.txt b/maze/task1/maps/level6/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/0.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/1.txt b/maze/task1/maps/level6/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/1.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/10.txt b/maze/task1/maps/level6/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/10.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/11.txt b/maze/task1/maps/level6/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/11.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/12.txt b/maze/task1/maps/level6/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/12.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/13.txt b/maze/task1/maps/level6/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/13.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/14.txt b/maze/task1/maps/level6/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/14.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/15.txt b/maze/task1/maps/level6/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/15.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/16.txt b/maze/task1/maps/level6/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/16.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/17.txt b/maze/task1/maps/level6/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/17.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/18.txt b/maze/task1/maps/level6/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/18.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/19.txt b/maze/task1/maps/level6/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/19.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/2.txt b/maze/task1/maps/level6/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/2.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/20.txt b/maze/task1/maps/level6/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/20.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/21.txt b/maze/task1/maps/level6/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/21.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/22.txt b/maze/task1/maps/level6/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/22.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/23.txt b/maze/task1/maps/level6/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/23.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/24.txt b/maze/task1/maps/level6/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/24.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/25.txt b/maze/task1/maps/level6/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/26.txt b/maze/task1/maps/level6/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/26.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/27.txt b/maze/task1/maps/level6/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/27.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/28.txt b/maze/task1/maps/level6/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/28.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/29.txt b/maze/task1/maps/level6/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/29.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/3.txt b/maze/task1/maps/level6/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/3.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/30.txt b/maze/task1/maps/level6/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/30.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/31.txt b/maze/task1/maps/level6/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/31.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/32.txt b/maze/task1/maps/level6/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/32.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/33.txt b/maze/task1/maps/level6/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/33.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/34.txt b/maze/task1/maps/level6/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/34.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/35.txt b/maze/task1/maps/level6/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/35.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/36.txt b/maze/task1/maps/level6/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/36.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/37.txt b/maze/task1/maps/level6/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/37.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/38.txt b/maze/task1/maps/level6/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/38.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/39.txt b/maze/task1/maps/level6/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/4.txt b/maze/task1/maps/level6/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/4.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/40.txt b/maze/task1/maps/level6/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/40.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/41.txt b/maze/task1/maps/level6/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/41.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/42.txt b/maze/task1/maps/level6/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/42.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/43.txt b/maze/task1/maps/level6/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/43.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/44.txt b/maze/task1/maps/level6/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/44.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/45.txt b/maze/task1/maps/level6/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/45.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/46.txt b/maze/task1/maps/level6/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/46.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/47.txt b/maze/task1/maps/level6/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/47.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/48.txt b/maze/task1/maps/level6/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/48.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/49.txt b/maze/task1/maps/level6/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/49.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/5.txt b/maze/task1/maps/level6/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/5.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/50.txt b/maze/task1/maps/level6/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/50.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/51.txt b/maze/task1/maps/level6/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/51.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/52.txt b/maze/task1/maps/level6/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/52.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/53.txt b/maze/task1/maps/level6/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/53.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/54.txt b/maze/task1/maps/level6/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/54.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/55.txt b/maze/task1/maps/level6/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/55.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/56.txt b/maze/task1/maps/level6/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/56.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/57.txt b/maze/task1/maps/level6/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/57.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/58.txt b/maze/task1/maps/level6/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/58.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/59.txt b/maze/task1/maps/level6/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/59.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/6.txt b/maze/task1/maps/level6/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/6.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/60.txt b/maze/task1/maps/level6/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/60.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/61.txt b/maze/task1/maps/level6/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/61.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/62.txt b/maze/task1/maps/level6/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/62.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/63.txt b/maze/task1/maps/level6/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/63.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/64.txt b/maze/task1/maps/level6/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/64.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/65.txt b/maze/task1/maps/level6/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/65.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/66.txt b/maze/task1/maps/level6/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/66.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/67.txt b/maze/task1/maps/level6/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/67.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/68.txt b/maze/task1/maps/level6/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/68.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/69.txt b/maze/task1/maps/level6/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/69.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/7.txt b/maze/task1/maps/level6/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/7.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/70.txt b/maze/task1/maps/level6/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/70.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/71.txt b/maze/task1/maps/level6/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/71.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/72.txt b/maze/task1/maps/level6/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/72.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/73.txt b/maze/task1/maps/level6/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/73.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/74.txt b/maze/task1/maps/level6/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/74.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/75.txt b/maze/task1/maps/level6/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/75.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/76.txt b/maze/task1/maps/level6/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/76.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/77.txt b/maze/task1/maps/level6/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/77.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/78.txt b/maze/task1/maps/level6/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/78.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/79.txt b/maze/task1/maps/level6/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/79.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/8.txt b/maze/task1/maps/level6/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/8.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/80.txt b/maze/task1/maps/level6/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/80.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/81.txt b/maze/task1/maps/level6/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/81.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/82.txt b/maze/task1/maps/level6/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/82.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/83.txt b/maze/task1/maps/level6/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/83.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/84.txt b/maze/task1/maps/level6/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/84.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/85.txt b/maze/task1/maps/level6/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/85.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/86.txt b/maze/task1/maps/level6/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/86.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/87.txt b/maze/task1/maps/level6/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/87.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/88.txt b/maze/task1/maps/level6/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/88.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/89.txt b/maze/task1/maps/level6/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/89.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/9.txt b/maze/task1/maps/level6/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/9.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/90.txt b/maze/task1/maps/level6/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/90.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/91.txt b/maze/task1/maps/level6/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/91.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/92.txt b/maze/task1/maps/level6/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/92.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/93.txt b/maze/task1/maps/level6/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/93.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/94.txt b/maze/task1/maps/level6/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/94.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/95.txt b/maze/task1/maps/level6/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/95.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/96.txt b/maze/task1/maps/level6/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/96.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/97.txt b/maze/task1/maps/level6/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/97.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/98.txt b/maze/task1/maps/level6/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level6/answer/98.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level6/answer/99.txt b/maze/task1/maps/level6/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level6/answer/99.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level6/img/0.png b/maze/task1/maps/level6/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0b233db2f4d86fd7c65ea3c05b86cb0fee94555f --- /dev/null +++ b/maze/task1/maps/level6/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c69418282a5a313b1e99e914c1286596efab3ade8c7493f49819565428af9e7 +size 13992 diff --git a/maze/task1/maps/level6/img/1.png b/maze/task1/maps/level6/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bccd0450551834e201788e0faa22e561c158bfce --- /dev/null +++ b/maze/task1/maps/level6/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696bb777a476894dd14fe4b11eee007c1e39b8ecf365d83a2a6357a7d6b68021 +size 13967 diff --git a/maze/task1/maps/level6/img/10.png b/maze/task1/maps/level6/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..eaffda3bbaabb795f0ad4a5e8b57fa4cc094a76d --- /dev/null +++ b/maze/task1/maps/level6/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16079e88587ea0aee884bd3e6f2a30a170622a128d6754a804bbe21f9b61bf1e +size 13742 diff --git a/maze/task1/maps/level6/img/11.png b/maze/task1/maps/level6/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf780a59722ebc637b139a2a22c5713b8dc7f71 --- /dev/null +++ b/maze/task1/maps/level6/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f997973dfdc3b761e587cbc064f2ed864f7045dc90c1d6e16788d4aa80ffa2 +size 14059 diff --git a/maze/task1/maps/level6/img/12.png b/maze/task1/maps/level6/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..73471d7567611972c39bf904075b500e6aa1a1bf --- /dev/null +++ b/maze/task1/maps/level6/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce867d08b66a259c78adc6f393994957a8534e81d5314fd2600ddd50d27274d3 +size 13871 diff --git a/maze/task1/maps/level6/img/13.png b/maze/task1/maps/level6/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..740ac227c16b7eb224486c0d61fccbf359241fef --- /dev/null +++ b/maze/task1/maps/level6/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17ed64abb83f3fc5ac035293839f018892380e032e9fb4c39f7cb5f22e2db13 +size 14115 diff --git a/maze/task1/maps/level6/img/14.png b/maze/task1/maps/level6/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..eec0fe769cabb84abcfb2183e81efa6e4da63511 --- /dev/null +++ b/maze/task1/maps/level6/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6d57120f37e00579be83edaddc1f3511a0e62be1175303ad71961c6e6034c1 +size 13980 diff --git a/maze/task1/maps/level6/img/15.png b/maze/task1/maps/level6/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..62940e9d816f4f2748e781b76756d9b5a03ed76b --- /dev/null +++ b/maze/task1/maps/level6/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61fe7fa68eeae37cdda29c14215cd7f4ba82904a12db12cdfa2201f6f9f7f142 +size 13943 diff --git a/maze/task1/maps/level6/img/16.png b/maze/task1/maps/level6/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a706629fa3b902ae525ee939977a5dc70d77e3 --- /dev/null +++ b/maze/task1/maps/level6/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3b8234539d87ef66ee0c02eae22e5a46ec4e7f0833152a7a13444c91e8dba8 +size 13948 diff --git a/maze/task1/maps/level6/img/17.png b/maze/task1/maps/level6/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..2d14e30315caaef538de2963262f7fb9b42edc1a --- /dev/null +++ b/maze/task1/maps/level6/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fecd02f9c0cffe56c35e1d2260e9e5e5d9c5c782d9ae012787335b9f6e5d9c4 +size 14047 diff --git a/maze/task1/maps/level6/img/18.png b/maze/task1/maps/level6/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..40571d66b1b770fb444380b86b3302a4bf3e5fc2 --- /dev/null +++ b/maze/task1/maps/level6/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c430f12cc740cd4fe843ac64a00bee173fd4c9a0ae8ae9cb79e55ce93b9b7c94 +size 13752 diff --git a/maze/task1/maps/level6/img/19.png b/maze/task1/maps/level6/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..130022db874ee3fc9fbec2524b9bcfb877501f49 --- /dev/null +++ b/maze/task1/maps/level6/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923de92677edf0cf052955792b425b209628b3ba2009acbc0967b1f19c4db9bb +size 14302 diff --git a/maze/task1/maps/level6/img/2.png b/maze/task1/maps/level6/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b7a72296d1ba1607e1d238565749a3a8cc7287f8 --- /dev/null +++ b/maze/task1/maps/level6/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d58c416642fcfc5ca3f0db52aa0a1769acd182ff3cae96a9159562267155b2 +size 13152 diff --git a/maze/task1/maps/level6/img/20.png b/maze/task1/maps/level6/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..ab702f298b0a4ed315ae7620ce16ae9b9d9e3eb2 --- /dev/null +++ b/maze/task1/maps/level6/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e47d5d14ac0c0fa81b5f649c43510ae442113e308fb9427796070794944379 +size 13371 diff --git a/maze/task1/maps/level6/img/21.png b/maze/task1/maps/level6/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..9a8396617ea7e8d55e653aca2bf602297ff408ae --- /dev/null +++ b/maze/task1/maps/level6/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51e91159669562dba4abb5ac6128b5459ba9390c1e9828016e45aa1fa59db0f3 +size 14135 diff --git a/maze/task1/maps/level6/img/22.png b/maze/task1/maps/level6/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c54b1f8e2c3b5adcc7cf57dc1bc1f255c82f88 --- /dev/null +++ b/maze/task1/maps/level6/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f005e49aaf40dddc01d6d0dd529f892c5adb895ed1f73eabc22af02f7cc30c +size 13839 diff --git a/maze/task1/maps/level6/img/23.png b/maze/task1/maps/level6/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..c164f84703ced4f13fbcfa40cc79a967b7e0ef71 --- /dev/null +++ b/maze/task1/maps/level6/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a88bf071ef49a870f85d7684860b2f869333e248d033d6470f546fcdb2f16e +size 13830 diff --git a/maze/task1/maps/level6/img/24.png b/maze/task1/maps/level6/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..0904fd258c61e40c7e33fe6400c5e7d1cfc4ff14 --- /dev/null +++ b/maze/task1/maps/level6/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbfcb021d4a3a3c810e828b294a0846e441473f8a051e6bf55153351b14fb1e9 +size 13954 diff --git a/maze/task1/maps/level6/img/25.png b/maze/task1/maps/level6/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..61ca95799a50b219ab010dc8eb10e3e86a98bb7a --- /dev/null +++ b/maze/task1/maps/level6/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c527c775ebf6c55cd761c289442a1525dc05db4ad1ded0da43d7ec18bddda1dc +size 13128 diff --git a/maze/task1/maps/level6/img/26.png b/maze/task1/maps/level6/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..76d4aae8980949518f16d318e6ca38bf33fc9718 --- /dev/null +++ b/maze/task1/maps/level6/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de4e6db37e3aac856fb200facb9594b5bab198ef325628e5703195071493222f +size 13944 diff --git a/maze/task1/maps/level6/img/27.png b/maze/task1/maps/level6/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..7b43e7950797a7bb6d02aca608842b6dc5b8917b --- /dev/null +++ b/maze/task1/maps/level6/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7131843e0ecfaf290eeb20b43e7108c9b0e390043d180f50c97882ffbf9396c3 +size 14195 diff --git a/maze/task1/maps/level6/img/28.png b/maze/task1/maps/level6/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..ef86af157ed2997836a11c98ef884fad0c817064 --- /dev/null +++ b/maze/task1/maps/level6/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2124bf282c344996db085479f1ad80f17a30ca4653f98aa8985166cd5054b816 +size 13614 diff --git a/maze/task1/maps/level6/img/29.png b/maze/task1/maps/level6/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..051e42605ef6f773d3bf45028a4b306a379fb267 --- /dev/null +++ b/maze/task1/maps/level6/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a02414d866883c29537f92c06ccd55768e2a3d9da186238cc37327ecd32e08 +size 13047 diff --git a/maze/task1/maps/level6/img/3.png b/maze/task1/maps/level6/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b327ae71ad08698a18612c973d1fcdf11d6193c6 --- /dev/null +++ b/maze/task1/maps/level6/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b260d1b5ff65e6f188e8cc340885cad66de3e5d20a00c9fe8e90d04b354cd7 +size 14001 diff --git a/maze/task1/maps/level6/img/30.png b/maze/task1/maps/level6/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..c959e8a68fb354eb3b7bee359fc5c626e70d36a0 --- /dev/null +++ b/maze/task1/maps/level6/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2196dd38e1d6629e91a60d482562d286dafccc661e2bafb7d1e2c87fea22c8 +size 14036 diff --git a/maze/task1/maps/level6/img/31.png b/maze/task1/maps/level6/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..a45aafb50e54bb5a8782b32ef84c1af72cbfd107 --- /dev/null +++ b/maze/task1/maps/level6/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55520b6cb69cb4a013fbd5ddafd76cc6fabb989f30ce54eb62d03cc7fa580fe3 +size 14121 diff --git a/maze/task1/maps/level6/img/32.png b/maze/task1/maps/level6/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..e95b9b45cd38f75c3a9d21113ef9b7ec1cae5661 --- /dev/null +++ b/maze/task1/maps/level6/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea4dffc5601689e0bd0596cbd0399081dbe8fab141edf35f3f6b382d05045c32 +size 13738 diff --git a/maze/task1/maps/level6/img/33.png b/maze/task1/maps/level6/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..3eddcf61baef72ae2c638dc053240236485c55c6 --- /dev/null +++ b/maze/task1/maps/level6/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0071c9ef92fbcca5312d1f5abe206a8b5a401f817d5ba259014171ed51684cfb +size 14004 diff --git a/maze/task1/maps/level6/img/34.png b/maze/task1/maps/level6/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..047f669082ab4bd52b5dfd0ad5dc762c3a2dec8f --- /dev/null +++ b/maze/task1/maps/level6/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d07b7918a75d99cfed13d53a683b6746823d0c6fdfcf01ef38238de54664ba9f +size 13905 diff --git a/maze/task1/maps/level6/img/35.png b/maze/task1/maps/level6/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..21d451a53bdf6b50c8bf5c63bff524684ea33014 --- /dev/null +++ b/maze/task1/maps/level6/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a7652599cab00ec95638ed776a10a78b92d88301cf692d0398256512bcdda0 +size 13785 diff --git a/maze/task1/maps/level6/img/36.png b/maze/task1/maps/level6/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..bd67e62cf7d256c2194d616be239ef1954639add --- /dev/null +++ b/maze/task1/maps/level6/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:251b33b2a6930681cfa4216c1cd1ab9477904a8caeb305eec690a2315e89ddda +size 13007 diff --git a/maze/task1/maps/level6/img/37.png b/maze/task1/maps/level6/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..7dc3b3756dd0688d48d2902e10d725432c541730 --- /dev/null +++ b/maze/task1/maps/level6/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d0232b02d72b1b33ebd2a3542e77db1564e5b2ef01af138308e8a52437e0c89 +size 14106 diff --git a/maze/task1/maps/level6/img/38.png b/maze/task1/maps/level6/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..5ed881e847d20aa3cf57e40efe957429c3af3aa4 --- /dev/null +++ b/maze/task1/maps/level6/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5e60f537dc411fdbc863e23a741f71b7f4666909aea9e1a11da1c771529bed +size 13933 diff --git a/maze/task1/maps/level6/img/39.png b/maze/task1/maps/level6/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..8685dbefceaff020872c82c5d4af5c1beba9c2a7 --- /dev/null +++ b/maze/task1/maps/level6/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738580420fd7218aaaa250c28fcc9f8c6aac48b0fb540704dfcfc3c24a12c749 +size 13975 diff --git a/maze/task1/maps/level6/img/4.png b/maze/task1/maps/level6/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..42a69a59c31a09b8d7f5f7f0c605ce792c182f80 --- /dev/null +++ b/maze/task1/maps/level6/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f4b9ac7d7e34b07c13234a137e21c4fc47e3afb2b498929435414e717a6583b +size 13950 diff --git a/maze/task1/maps/level6/img/40.png b/maze/task1/maps/level6/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..c5199826933113215553ccb8fa6511f40c691222 --- /dev/null +++ b/maze/task1/maps/level6/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3820f4286a1a7cf75e29bcca77f8bce4ca72ceb820956fcbb416a59d89687e05 +size 13918 diff --git a/maze/task1/maps/level6/img/41.png b/maze/task1/maps/level6/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..5cb021930382eb9ce473ef7867a65102f89ff6f6 --- /dev/null +++ b/maze/task1/maps/level6/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4271db7ffb38ea44c0ad2da7102bf40a19b67883a45ba4639523a078dcd32a +size 14170 diff --git a/maze/task1/maps/level6/img/42.png b/maze/task1/maps/level6/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..b61a2cc3b405224ec576d48d249c90f5a94a4b4f --- /dev/null +++ b/maze/task1/maps/level6/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a2184d195e852152015468a2f21998e98925a3bc703fd5a9cb7f1efad58b97 +size 13883 diff --git a/maze/task1/maps/level6/img/43.png b/maze/task1/maps/level6/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..035a8f6cb25abb74dfd233d2ea806add8d1c3834 --- /dev/null +++ b/maze/task1/maps/level6/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4eabff07d8bc9fe147fd8e33795c5ee7a001445ae60a69d52a02c5597b3080 +size 13723 diff --git a/maze/task1/maps/level6/img/44.png b/maze/task1/maps/level6/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..5bb77877714d99c0d49e4de4debfccc56f07acf4 --- /dev/null +++ b/maze/task1/maps/level6/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f81b239700ead8665dfd8e6b84f15ca0e92736331eaaee8b0ec55d82a95b7e +size 13970 diff --git a/maze/task1/maps/level6/img/45.png b/maze/task1/maps/level6/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd1b9d65af8262c871fc5fedba703091874c555 --- /dev/null +++ b/maze/task1/maps/level6/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60108428ce3af08b858b7eaa5109b4ea640cea7858cfe4008ff55c0bc79ea9e9 +size 13865 diff --git a/maze/task1/maps/level6/img/46.png b/maze/task1/maps/level6/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..b9008403a23335b281c8c68435b483cc6e0ed77e --- /dev/null +++ b/maze/task1/maps/level6/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d631f8f264e7e1a88acbe69dc0e291758590b0f52864653ea7721d4a99b6153e +size 13886 diff --git a/maze/task1/maps/level6/img/47.png b/maze/task1/maps/level6/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..9b32e2f150bef432871a6df9aa618ae623439da4 --- /dev/null +++ b/maze/task1/maps/level6/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689ade8cf5b2d8c4b93d8d449e9506dbb13995dcf759ed4b240afa0b70a2d159 +size 13941 diff --git a/maze/task1/maps/level6/img/48.png b/maze/task1/maps/level6/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..693c351957b627a6f456ef94d9e33f373df18aeb --- /dev/null +++ b/maze/task1/maps/level6/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76be0268ff2d15b2e3502334d46a54cc6434fb9ef8d5af0cc78a98a033171688 +size 12974 diff --git a/maze/task1/maps/level6/img/49.png b/maze/task1/maps/level6/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..424e6708f49def7297c30f0c89531a76845fb468 --- /dev/null +++ b/maze/task1/maps/level6/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56691fe564f1a5ac1e93859ed0375d225af178c14785527a70fd60c491b2576f +size 13033 diff --git a/maze/task1/maps/level6/img/5.png b/maze/task1/maps/level6/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..46ef0e7422a19b5c2489f8433470c07179245db7 --- /dev/null +++ b/maze/task1/maps/level6/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec9052bb750a88e303ff20f38d5a39a1923974f29ac96991bf603698a1dc79e +size 14080 diff --git a/maze/task1/maps/level6/img/50.png b/maze/task1/maps/level6/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..fc3f3bb2836038d4c6497b9ea44605bb62c913a0 --- /dev/null +++ b/maze/task1/maps/level6/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c104730de8abc3da2e9905c1e14a73248c9df637b8394ee22444542b16427dc +size 14081 diff --git a/maze/task1/maps/level6/img/51.png b/maze/task1/maps/level6/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..1bdd2eac448b0cd806bb0ec61186050480940051 --- /dev/null +++ b/maze/task1/maps/level6/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d0af4cb454ce3b56a057bfbf39a8dddeb9b33ba6805b43707664a2a798c127 +size 14037 diff --git a/maze/task1/maps/level6/img/52.png b/maze/task1/maps/level6/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..60ced149420d9295789ec7b3eaf9fdd6e0d6d0a3 --- /dev/null +++ b/maze/task1/maps/level6/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c4385d2a921b6926443dc613dbb529ae5863b3a7999b8e3f2278259b498d2d2 +size 14089 diff --git a/maze/task1/maps/level6/img/53.png b/maze/task1/maps/level6/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..0496ec90b0a8657048fd5f21c6a81fdcb78a8af4 --- /dev/null +++ b/maze/task1/maps/level6/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bba0f07b6b4d2edda878b4f559aea948afae4db662a710e3411d7e4b304fa21e +size 14197 diff --git a/maze/task1/maps/level6/img/54.png b/maze/task1/maps/level6/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..030e2dad01f6dedfff5c21958f4f37545f224d7c --- /dev/null +++ b/maze/task1/maps/level6/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7809a89c0b529b263dbd8c5b7120a44e62a1e46f93f796edd526bca7e400a902 +size 14088 diff --git a/maze/task1/maps/level6/img/55.png b/maze/task1/maps/level6/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..425cd7f69d76c918181c50264db3156d9565797a --- /dev/null +++ b/maze/task1/maps/level6/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2b84f66944ff8cb5359f0ccf362523c77cefffb0a4bc6f18ba43379c61359c +size 13698 diff --git a/maze/task1/maps/level6/img/56.png b/maze/task1/maps/level6/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..ce085c8007b12ca2828a582b470ccf22da49e55b --- /dev/null +++ b/maze/task1/maps/level6/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c77482c93c58fea78d194d44eeb47243df47e5a33a18ce33c5a9b96cc0ca2a2 +size 13795 diff --git a/maze/task1/maps/level6/img/57.png b/maze/task1/maps/level6/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..65eb02bba5794ea513d012f7004e118d4dc1fec0 --- /dev/null +++ b/maze/task1/maps/level6/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a767b95c6f327703f5bad43c598f5cb945b4cc8560b2a0f41675edb7da3b84e2 +size 13962 diff --git a/maze/task1/maps/level6/img/58.png b/maze/task1/maps/level6/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..694c72607a7fea206911d9bcf13be360cc5d791d --- /dev/null +++ b/maze/task1/maps/level6/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e1836d12e15f3775ddcd6efd3dc73421b21103a55e39a2ac420d5e38c79e2e +size 13947 diff --git a/maze/task1/maps/level6/img/59.png b/maze/task1/maps/level6/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..4cdeb636a686724d770d4a80ec35d4d799a7f6ba --- /dev/null +++ b/maze/task1/maps/level6/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8c193653b6d1d9eee49935e71ed930a8ea8ca588dbf24c2470e1b6e67632bf +size 13891 diff --git a/maze/task1/maps/level6/img/6.png b/maze/task1/maps/level6/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3022a6c2a256955638016e34699d0f3dc08a64b9 --- /dev/null +++ b/maze/task1/maps/level6/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af94f588ada783fcab9b2e0aadb7fce0c7aff9557cedb5051b51ec4ee1746c8f +size 13860 diff --git a/maze/task1/maps/level6/img/60.png b/maze/task1/maps/level6/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..2d210f121e48d673f8a350901026bce00893c0d2 --- /dev/null +++ b/maze/task1/maps/level6/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068699158c06957bd98fdaa89519f845388ee3fd2e499ed256bdff1a23275eda +size 12840 diff --git a/maze/task1/maps/level6/img/61.png b/maze/task1/maps/level6/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..ffd17034989a7d31a76e4c6faf184c7947152958 --- /dev/null +++ b/maze/task1/maps/level6/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e273d7ae7799c818e46d576e40b36a4f9c88168437283803032198a52667f7 +size 13973 diff --git a/maze/task1/maps/level6/img/62.png b/maze/task1/maps/level6/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..f08e72e2989f46c82c0fa0d72a646e59ae5b2c29 --- /dev/null +++ b/maze/task1/maps/level6/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f15ae74c3b6a26aea6dea2843aa8c388f2327d619628ccaa278fb3f16220a772 +size 13006 diff --git a/maze/task1/maps/level6/img/63.png b/maze/task1/maps/level6/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..75c5621030eb5a6899059c6aa9204a55b5b8f5e0 --- /dev/null +++ b/maze/task1/maps/level6/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07e8279b1dfe32129a82ba3e8409e2efb86e203c95b2bd2b115a41e5be71b10 +size 13447 diff --git a/maze/task1/maps/level6/img/64.png b/maze/task1/maps/level6/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..f2a1aede08079a276280280373cfca248ef4c747 --- /dev/null +++ b/maze/task1/maps/level6/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452956a87bd5bc9ad687d428e3990eb73dac745a143941f9745a2a8d28754492 +size 13916 diff --git a/maze/task1/maps/level6/img/65.png b/maze/task1/maps/level6/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..3ca6b64dcd708d56c39db38d09c9d601e2d3b55c --- /dev/null +++ b/maze/task1/maps/level6/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28549bd63cda114cdb09eacb10887c4290349bd17667d4a7e754c28b905f6fc +size 13963 diff --git a/maze/task1/maps/level6/img/66.png b/maze/task1/maps/level6/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..209bab59cb6628d43f83b806176c81fdea865b76 --- /dev/null +++ b/maze/task1/maps/level6/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05fd0477d4a037070f011f323dc27156bb70fcd96bcc7481be700bdbad5a7bdf +size 13849 diff --git a/maze/task1/maps/level6/img/67.png b/maze/task1/maps/level6/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..95da78e17baf75ef1f328b1bbab88bb5bdec61d2 --- /dev/null +++ b/maze/task1/maps/level6/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb405a5bf1bb0dcc2ee14161cffad40eb7b899bc7d575fce47adff2f6cee641 +size 14012 diff --git a/maze/task1/maps/level6/img/68.png b/maze/task1/maps/level6/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..e0f46b5ed1a650ef43eeffbcd687bc5dd1248d18 --- /dev/null +++ b/maze/task1/maps/level6/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:236e18c883b2b1c516c0f5e9d77eddcec74087edb79adcb987bb2fa5b509e627 +size 14079 diff --git a/maze/task1/maps/level6/img/69.png b/maze/task1/maps/level6/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..f5c8b3cd6f5ade8eba41c468f827b8af34a589f8 --- /dev/null +++ b/maze/task1/maps/level6/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2f08e8abdc3d28344463667f78c19b7d65b857495f6b112959031ed649645aa +size 13958 diff --git a/maze/task1/maps/level6/img/7.png b/maze/task1/maps/level6/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9ef617c185885a83b33e613162dc1c78f0a31f79 --- /dev/null +++ b/maze/task1/maps/level6/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ec1a11b0487f2f2c439665ffe336e9b0128fee08d50e647d86e75db35e96dc +size 13904 diff --git a/maze/task1/maps/level6/img/70.png b/maze/task1/maps/level6/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..de7cb022c2b595ccca2560191eb00a95e76d1148 --- /dev/null +++ b/maze/task1/maps/level6/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ec5deb327a728cd6a5bd0da2eff8d8cc3eab38a507f7e17f996ff48bdac61f +size 13954 diff --git a/maze/task1/maps/level6/img/71.png b/maze/task1/maps/level6/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..e4475a06645f007b945cb23a1bc450688287b6b1 --- /dev/null +++ b/maze/task1/maps/level6/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb4950ff2d5e43f2ea90ae1ae9626c65751bd1aa07e7568330be7760ec7f55b8 +size 14126 diff --git a/maze/task1/maps/level6/img/72.png b/maze/task1/maps/level6/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..f551fe0b6f02efbbacadabec8a1bd9eef8d9b2bc --- /dev/null +++ b/maze/task1/maps/level6/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:177962ee59291293eb81a1b1d2e7a5db530083c8d1fae0474537e9751cf00756 +size 13816 diff --git a/maze/task1/maps/level6/img/73.png b/maze/task1/maps/level6/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..812442d03ee53c5d1af4c1092a0bf41568e8c71f --- /dev/null +++ b/maze/task1/maps/level6/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe00ae515916aedad015b1b59d3dc57ea2d627c0ef328bfec1c2fa990bb7fbc +size 14009 diff --git a/maze/task1/maps/level6/img/74.png b/maze/task1/maps/level6/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..6e6f5484ae22e63976ee82fcb2d32fc31be7ec62 --- /dev/null +++ b/maze/task1/maps/level6/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b984e397a1c0bd622786dfb5d3a42abd8844494aef5bc2b5e458e1178b54a1 +size 14052 diff --git a/maze/task1/maps/level6/img/75.png b/maze/task1/maps/level6/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..72b7f005cbf9d2ec669bdc7c75c7f9fe361799e1 --- /dev/null +++ b/maze/task1/maps/level6/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80d73902a16a8735ddeee786c32eb9711554afc931e37141115d36419cab2d45 +size 14075 diff --git a/maze/task1/maps/level6/img/76.png b/maze/task1/maps/level6/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..8b15e05a344fb5ec974453fbe4ffaec0bbdbfbc5 --- /dev/null +++ b/maze/task1/maps/level6/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8acd30e81dae886265d600ad1e6efd98ea97371fece28a8156dec2078bb305 +size 14002 diff --git a/maze/task1/maps/level6/img/77.png b/maze/task1/maps/level6/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..53e42f84c25646dd48ad323d57235b726e7d530c --- /dev/null +++ b/maze/task1/maps/level6/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d5c3cac036a8e9df8693cf528dca335a7f61d242729a9ba0250aeb80d41120 +size 13994 diff --git a/maze/task1/maps/level6/img/78.png b/maze/task1/maps/level6/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..40cea4fa19586ccd6d06c637eff9f77cfebf3c81 --- /dev/null +++ b/maze/task1/maps/level6/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048436e0e2738e291fd85e12fc55759b0b02e486b2584a811cabca867f811337 +size 14069 diff --git a/maze/task1/maps/level6/img/79.png b/maze/task1/maps/level6/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..d111ca8677c032a60d57778967f72b39affb75c2 --- /dev/null +++ b/maze/task1/maps/level6/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe8573aef6ba777ed06cf3433476e93e5b4621bdef930f29705434a136667ffd +size 13996 diff --git a/maze/task1/maps/level6/img/8.png b/maze/task1/maps/level6/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b128b6be3091176ac6ea17e7f38d09d1fd6ca33a --- /dev/null +++ b/maze/task1/maps/level6/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c34fb7c213d24696b71a0863cd977379302e6a31137e90a5811a65970b661b93 +size 13944 diff --git a/maze/task1/maps/level6/img/80.png b/maze/task1/maps/level6/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..81be890159815b7a3aeff2522d1dc9294f02f608 --- /dev/null +++ b/maze/task1/maps/level6/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3e4acac2699104bbab39ef8b19c9f55fc65ce50d30e86c46af72e09a2e68b3 +size 13831 diff --git a/maze/task1/maps/level6/img/81.png b/maze/task1/maps/level6/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..80d55ddc2dd83c94bafbfa6387e8d872cacb7a3c --- /dev/null +++ b/maze/task1/maps/level6/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b77f307c4e8b5f24f065cd867527ef9e92e9c6d350fe6f1620c6fbf0da4d4f +size 13920 diff --git a/maze/task1/maps/level6/img/82.png b/maze/task1/maps/level6/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..157bbce3ba7ec206de808b69a30b54aa8fa7a9a8 --- /dev/null +++ b/maze/task1/maps/level6/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa71adabfa2639d6340d42155a26465ddb2960b2a7e7ca60af095937852146c2 +size 13846 diff --git a/maze/task1/maps/level6/img/83.png b/maze/task1/maps/level6/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..1ffcee2863ddac0c478996ab2e544d0be9674349 --- /dev/null +++ b/maze/task1/maps/level6/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f6d9baaee24d474fd500b41f4f3854ba78db082973a8f3bb78fc981834394a +size 13883 diff --git a/maze/task1/maps/level6/img/84.png b/maze/task1/maps/level6/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..9ebe94b29a2d06b2f4c69d9e3cd4725a2ae2ac42 --- /dev/null +++ b/maze/task1/maps/level6/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95cc872b3c3879bf107ad2caec77a69d15b69364d0c8aaa26fa4c83effbe3890 +size 13831 diff --git a/maze/task1/maps/level6/img/85.png b/maze/task1/maps/level6/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..330f36884471c7876cfb083d24137b6d7ac63668 --- /dev/null +++ b/maze/task1/maps/level6/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7af64c2173fc89568baaeadae9d95b9b7efce01d3d024287c2a00abceacbb8e +size 13504 diff --git a/maze/task1/maps/level6/img/86.png b/maze/task1/maps/level6/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..4c7563d81e95544b20819690f516755d0e1eaf3d --- /dev/null +++ b/maze/task1/maps/level6/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07fa21feae458f5fe7f8c2298cf2d3cbc40846d71d127fa75153698ed68f6aa +size 13218 diff --git a/maze/task1/maps/level6/img/87.png b/maze/task1/maps/level6/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..aae58266078ab4b60043563958b170e5729a5510 --- /dev/null +++ b/maze/task1/maps/level6/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a66a4b8efd22e1fd8ac3fff356cebaab9f78d27b0401906e4f49631f104636 +size 13886 diff --git a/maze/task1/maps/level6/img/88.png b/maze/task1/maps/level6/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..a018356693448138dad8aca09cc1657f58886aa9 --- /dev/null +++ b/maze/task1/maps/level6/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f206b3148f10f403d52ae880e37d04380a982034f9bf7b4bf8df0ce549a6851 +size 13814 diff --git a/maze/task1/maps/level6/img/89.png b/maze/task1/maps/level6/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..8cb652421c928d38ff9fbeb4c1172e247e7c11cf --- /dev/null +++ b/maze/task1/maps/level6/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ddcf56c5249ee058b48e7d6c6a3fb6a913722fbef518e0b11ab89fdc623fcf +size 14046 diff --git a/maze/task1/maps/level6/img/9.png b/maze/task1/maps/level6/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ce148eeaaab1320ab3d9d416925aa72f801ed5f5 --- /dev/null +++ b/maze/task1/maps/level6/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34fda55db17924eb6452d302758d09684fd80f4daef5ed467ea61fc82a9fffe7 +size 14133 diff --git a/maze/task1/maps/level6/img/90.png b/maze/task1/maps/level6/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..f65286fb778f6ee9b3f3b0ff60cffd84bfb3259f --- /dev/null +++ b/maze/task1/maps/level6/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbc19a032841b657e3f847bd75236782d8158ad0e1863dc3aee486745dc35698 +size 13895 diff --git a/maze/task1/maps/level6/img/91.png b/maze/task1/maps/level6/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..067f5fa2ab13533e2588f85c9643dde05ef9d473 --- /dev/null +++ b/maze/task1/maps/level6/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b975cc9c390ef11499c403fa207a62479f0035843791937575651f7798e45a57 +size 14115 diff --git a/maze/task1/maps/level6/img/92.png b/maze/task1/maps/level6/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..bc8fd87de60f8156a2033d0c739900bf9df279ba --- /dev/null +++ b/maze/task1/maps/level6/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0825a38b86e6e01392c56b8c5b4887e156205d53c25911b8cd27448ab0d96523 +size 13953 diff --git a/maze/task1/maps/level6/img/93.png b/maze/task1/maps/level6/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..930cc7a655e516e49a9ef4ddbeb80886c33f89b6 --- /dev/null +++ b/maze/task1/maps/level6/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c389fdcacd3a8a7aeb0f904b3ef1ca77a0f99bf6f282dca534bb2052cdcce3 +size 13957 diff --git a/maze/task1/maps/level6/img/94.png b/maze/task1/maps/level6/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..5528088f4bc9e1f12ab95194e3a2bd48cb2018a9 --- /dev/null +++ b/maze/task1/maps/level6/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a372b5857b407cd63afb6eaf40689754a63597c9925387461922e3c7a01e9c +size 13845 diff --git a/maze/task1/maps/level6/img/95.png b/maze/task1/maps/level6/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..043f74479a00558251c25d9fce8cff6a73c2a6b5 --- /dev/null +++ b/maze/task1/maps/level6/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca0bffd22893f2095409e76decdbaaa1dce1e281aea2d02de4d64397758aa90 +size 14155 diff --git a/maze/task1/maps/level6/img/96.png b/maze/task1/maps/level6/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..8b98877cb1967ce7b5732e5f89c3726a033e9550 --- /dev/null +++ b/maze/task1/maps/level6/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f06b85458246cec303bd286e4e82e091432bc8e04a7fc53f9f67bf92b31cd0 +size 13494 diff --git a/maze/task1/maps/level6/img/97.png b/maze/task1/maps/level6/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..744f55b5829b1df58c39c85915613891e567619d --- /dev/null +++ b/maze/task1/maps/level6/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883e6da9f262f754e70eb451b4e250c616cd6ade09e6dd06445fc8b39caa1f18 +size 13849 diff --git a/maze/task1/maps/level6/img/98.png b/maze/task1/maps/level6/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..ffd1a9d02f75e6f846ee3edae43ddf93527e42d4 --- /dev/null +++ b/maze/task1/maps/level6/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18603a694cb76b29589c1aad530534667dc11aaff38c340bf723d67d8c51bc9e +size 14097 diff --git a/maze/task1/maps/level6/img/99.png b/maze/task1/maps/level6/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..9f5536e3faf088a923afaad0e03e548d8634597d --- /dev/null +++ b/maze/task1/maps/level6/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec93129e40efde9fbb3f1c7c07af56e70c05716841a77fcb487ce5067007fa62 +size 13954 diff --git a/maze/task1/maps/level6/pure_text/0.txt b/maze/task1/maps/level6/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..182d0ac6ccfc00fb44b7276c3b4d43070536770c --- /dev/null +++ b/maze/task1/maps/level6/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/1.txt b/maze/task1/maps/level6/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..677935b69c2b9092d92675770e59091dacb69896 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/10.txt b/maze/task1/maps/level6/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ea14a253260595856fc6e3509f507921cbdaeb4 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/11.txt b/maze/task1/maps/level6/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff3b647032803f5b56d22d86636de70cfcb52d58 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; Row 5, Column 5; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/12.txt b/maze/task1/maps/level6/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..a64a5012ccc35ab656fd7248c654bda3e38d1697 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/13.txt b/maze/task1/maps/level6/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dbf5557ef8f2a9ad358d191a127d640b37e64b6 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/14.txt b/maze/task1/maps/level6/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f5f24479c32e8b955a4f4a3324e192d9aa49421 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/15.txt b/maze/task1/maps/level6/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..fff6ca011194beda40bcff9235b1cf39ccdd0ecf --- /dev/null +++ b/maze/task1/maps/level6/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 5; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/16.txt b/maze/task1/maps/level6/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..503080ebde52aa4be24e604bb7815c263caaf9bf --- /dev/null +++ b/maze/task1/maps/level6/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 6; Row 4, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/17.txt b/maze/task1/maps/level6/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..46d6b7fb60a7fbe11674cef2373a86035fabb377 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 3; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/18.txt b/maze/task1/maps/level6/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca48a2cb301d8d4d057875392779297d4e8ce9ed --- /dev/null +++ b/maze/task1/maps/level6/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/19.txt b/maze/task1/maps/level6/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..bafe2697e61feff23e92077c9e0344db72b1f49c --- /dev/null +++ b/maze/task1/maps/level6/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/2.txt b/maze/task1/maps/level6/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..643556ca8690f4ff586cbf235336c48baf33fba0 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/20.txt b/maze/task1/maps/level6/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8841b0d4f56f4fa393987f5d9d54220cd3c8c41 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/21.txt b/maze/task1/maps/level6/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..7db59f23a76e68c151b77af9be90e9a9f8844c28 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/22.txt b/maze/task1/maps/level6/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2507766e7e572aabe24dc851e71b05792bd7f0ef --- /dev/null +++ b/maze/task1/maps/level6/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/23.txt b/maze/task1/maps/level6/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..86e7b6ca6727bb26c3a486c3539df016f41b6d95 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/24.txt b/maze/task1/maps/level6/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff6311e5db0367f2bb5020c8db1a2e7df2e6f1df --- /dev/null +++ b/maze/task1/maps/level6/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 6; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 6, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/25.txt b/maze/task1/maps/level6/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..77537fa516e94bef913aec03743c262c36757c20 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/26.txt b/maze/task1/maps/level6/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8294ecc83a90cc0696531be8a74444234cdd89d --- /dev/null +++ b/maze/task1/maps/level6/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 6; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/27.txt b/maze/task1/maps/level6/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..86cc6c8aed1740cd41af6af8fda0211eb50c8f27 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/28.txt b/maze/task1/maps/level6/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..04823dfe4359679a8e8db877a37484b3738eda6f --- /dev/null +++ b/maze/task1/maps/level6/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/29.txt b/maze/task1/maps/level6/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..03603796e1ea4d444a304cea3ccef1afbd616ebe --- /dev/null +++ b/maze/task1/maps/level6/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/3.txt b/maze/task1/maps/level6/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1bc16d60988c6d6d555768ad8192bfd28ee5683 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/30.txt b/maze/task1/maps/level6/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fa881235cd2113b3dd6ae5e2a38b67f75f61969 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/31.txt b/maze/task1/maps/level6/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..b02337d0262dd27d322a805d1374ea5cd465bddd --- /dev/null +++ b/maze/task1/maps/level6/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 6; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/32.txt b/maze/task1/maps/level6/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..9df7561c9e71f9715153f4a800eacedbc748a412 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 2; Row 6, Column 1; Row 6, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/33.txt b/maze/task1/maps/level6/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..45b19621e7152de27fb2a0ea0a1139b8c400ea18 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 5; Row 2, Column 6; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/34.txt b/maze/task1/maps/level6/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2040b9094486383d0ed275fe1825a6f0bf3db599 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/35.txt b/maze/task1/maps/level6/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fe7d683b629d71fc47f6fa646647c7e50031c6d --- /dev/null +++ b/maze/task1/maps/level6/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 4; Row 2, Column 6; Row 3, Column 3; Row 4, Column 1; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/36.txt b/maze/task1/maps/level6/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce8b0c2a2b5d765fecd714a80f0d4ea33d184315 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/37.txt b/maze/task1/maps/level6/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..42eabe741393df2dff0855645805b70f0789cb2a --- /dev/null +++ b/maze/task1/maps/level6/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/38.txt b/maze/task1/maps/level6/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..8dc224d543f12e81e6309862ff30ea69271560b8 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/39.txt b/maze/task1/maps/level6/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..abbe8dd1c543669a59512168eb4a7cabd8d85b95 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/4.txt b/maze/task1/maps/level6/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..de2f19887def82c6ed33b29753b3af44f3317b3b --- /dev/null +++ b/maze/task1/maps/level6/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/40.txt b/maze/task1/maps/level6/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..89a21cba960fc14b5a7e4ef625580ef5343f8778 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/41.txt b/maze/task1/maps/level6/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..389c956b107fa234b1e92bad400bff826530e974 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 4, Column 6; Row 5, Column 3; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/42.txt b/maze/task1/maps/level6/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ba45d3c1851c2b89f0343063fa6d1c83f882b31 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 4; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/43.txt b/maze/task1/maps/level6/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..713433ee768e55e56a2ecae22b2867d165e368a5 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 6, Column 1; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/44.txt b/maze/task1/maps/level6/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..06160ce47051d512ae99d2d43458f0228f635fd5 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/45.txt b/maze/task1/maps/level6/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae0ce56ab15c30c6fc3959bc53ce9b18a88fb8c4 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 5; Row 6, Column 1; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/46.txt b/maze/task1/maps/level6/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..d177a83b2d6bfd3c398344ed0be452c14ee65eff --- /dev/null +++ b/maze/task1/maps/level6/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/47.txt b/maze/task1/maps/level6/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9e900f66a5dc0264d55f8355339f65576f60494 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/48.txt b/maze/task1/maps/level6/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ab8d5c71093245a9a683db02bced255bafc1882 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/49.txt b/maze/task1/maps/level6/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa70b1c094714c3b80beb8b4552c655174f7f411 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/5.txt b/maze/task1/maps/level6/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ead0ed892ab01acad5a142daf07b69b5236be79 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/50.txt b/maze/task1/maps/level6/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..09ac0294982869a375273d97a88f784af6315c07 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 5, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/51.txt b/maze/task1/maps/level6/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..62acd05d0c4a392f01808d4653c12295e81af21c --- /dev/null +++ b/maze/task1/maps/level6/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/52.txt b/maze/task1/maps/level6/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..75f8b15a02679cf7b46fd81386301f16dc8514b2 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 4, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/53.txt b/maze/task1/maps/level6/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..69ecb0f6c7ca85229b4cf8dbb6277297b2ab5b7a --- /dev/null +++ b/maze/task1/maps/level6/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 6, Column 3; Row 6, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/54.txt b/maze/task1/maps/level6/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..f813f4e76b7c87ed214c390db4d1c9afbb102f1e --- /dev/null +++ b/maze/task1/maps/level6/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/55.txt b/maze/task1/maps/level6/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5b40ca4c0ca76cdcfd8479f26bfe871504f7400 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/56.txt b/maze/task1/maps/level6/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..f48e2c2f4d1eaaa52fd9048b7e78e599b9bffd71 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/57.txt b/maze/task1/maps/level6/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..27a6df077b33ec2a724768150a400bf731e473fe --- /dev/null +++ b/maze/task1/maps/level6/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 5, Column 4; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/58.txt b/maze/task1/maps/level6/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..025424fc832ac582474b2ad3d71d1448d22d818b --- /dev/null +++ b/maze/task1/maps/level6/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 2; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/59.txt b/maze/task1/maps/level6/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..81b116f30058b4643cd02192d2c720d282fcf04c --- /dev/null +++ b/maze/task1/maps/level6/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 3; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/6.txt b/maze/task1/maps/level6/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d58cee7a5b7d6ba5f2d6003774c6fe012ef953af --- /dev/null +++ b/maze/task1/maps/level6/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/60.txt b/maze/task1/maps/level6/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9c9474c0a9d6445252bba2c0a266eace8afd3a4 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/61.txt b/maze/task1/maps/level6/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6126646b477075b3ae6f41d3d1b6e6e2e04ebcc --- /dev/null +++ b/maze/task1/maps/level6/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/62.txt b/maze/task1/maps/level6/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..b49c289fdaa7d03073e5d7c3c17ca91c0910cbab --- /dev/null +++ b/maze/task1/maps/level6/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/63.txt b/maze/task1/maps/level6/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..50f645425e820c30ebb59d504f1bb61d9fa17159 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/64.txt b/maze/task1/maps/level6/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..58d336fd8b7345e297d909f67c92e300da26b0e0 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 5; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/65.txt b/maze/task1/maps/level6/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..e03f3069edf3b41df3985aca1c97c654a1dfeb13 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/66.txt b/maze/task1/maps/level6/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..660cc558ecc5631d07a77727db30f44840d36859 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/67.txt b/maze/task1/maps/level6/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..df7bc2dcb4e0c88d7ad74932d4bbb5af6b23c50d --- /dev/null +++ b/maze/task1/maps/level6/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 4, Column 4; Row 4, Column 6; Row 5, Column 3; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/68.txt b/maze/task1/maps/level6/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..55756d856e020795f04952a41077b6ceddb38f46 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/69.txt b/maze/task1/maps/level6/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd714dcf4410ab9ea5aa481232572ffbf3d11494 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/7.txt b/maze/task1/maps/level6/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab7c1796b6fc62cc0585b4f936cfedc54fd5a8f5 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/70.txt b/maze/task1/maps/level6/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..880f1275cbb19e5f227ed09bbc5aa0a4903aea7f --- /dev/null +++ b/maze/task1/maps/level6/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/71.txt b/maze/task1/maps/level6/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..c51c712e06ba9e783f5e25102721d4bb046c1409 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 6; Row 4, Column 1; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/72.txt b/maze/task1/maps/level6/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..6882e791f299947177859daae73c6f60146029b5 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/73.txt b/maze/task1/maps/level6/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..403499c22eba9741ef74af8b1458016e3ee8fb31 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/74.txt b/maze/task1/maps/level6/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ad56167271e967e2b60688ec8501423ab8d5d2b --- /dev/null +++ b/maze/task1/maps/level6/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 4; Row 2, Column 6; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/75.txt b/maze/task1/maps/level6/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..c123b761cc805526b09ab9bbf22ef897f0e14ebb --- /dev/null +++ b/maze/task1/maps/level6/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 1; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/76.txt b/maze/task1/maps/level6/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..a95d9743f23dd40a4297beb2ee799a74e55d0b91 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 5, Column 3; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/77.txt b/maze/task1/maps/level6/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..7213c9911fb4788c1c0cc6d3072d7ad941c476e2 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/78.txt b/maze/task1/maps/level6/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..199875ed860d73037df798083c53bda083747803 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 4; Row 4, Column 6; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/79.txt b/maze/task1/maps/level6/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..191a2d4367cb47c986ea3d350cc8f907f80e9c18 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/8.txt b/maze/task1/maps/level6/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..51970b263d80d4f35de39f4a312fb551e74981c7 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/80.txt b/maze/task1/maps/level6/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..be3a4a70c675ff64c45b58bb36ecc79c272ee659 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/81.txt b/maze/task1/maps/level6/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..49bb6c8c491971201d411b7e4de2544e16d51e46 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/82.txt b/maze/task1/maps/level6/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..520fd2fb12b1385edee3d0e2f810ab9ea8954c3a --- /dev/null +++ b/maze/task1/maps/level6/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 4; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/83.txt b/maze/task1/maps/level6/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..16042eb68dd0f9271ab2d034651b78948b209a3c --- /dev/null +++ b/maze/task1/maps/level6/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/84.txt b/maze/task1/maps/level6/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2fda2463dec10624531e6bfc3a00b03471c9a59 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/85.txt b/maze/task1/maps/level6/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..aba2367e8ad7fd1cd09948e39b86bd825816c0ec --- /dev/null +++ b/maze/task1/maps/level6/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/86.txt b/maze/task1/maps/level6/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..b817fce4e802bbc9eb205b14dbd39b39139dd005 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/87.txt b/maze/task1/maps/level6/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ad681c500300596cf3d429f9af7b55d6457e529 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/88.txt b/maze/task1/maps/level6/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecf2dd1d6b04ef3ed27c8285a4ad688e8646d5f0 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 3; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/89.txt b/maze/task1/maps/level6/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bdf104106a593e82d18e75349573d639f3b3b59 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/9.txt b/maze/task1/maps/level6/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..03a203535d59b854295adf265b3f8326a93e2e88 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 6, Column 1; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/90.txt b/maze/task1/maps/level6/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..0812e45a9cd072b76557c50939e6059b99a07ad6 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 6, Column 3; Row 6, Column 6; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/91.txt b/maze/task1/maps/level6/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..be00b71d950de407e05abb5a247464beec9d1bbc --- /dev/null +++ b/maze/task1/maps/level6/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/92.txt b/maze/task1/maps/level6/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..a019be1630134b90d5cc1b9d130e5967c0827c88 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 5, Column 3; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/93.txt b/maze/task1/maps/level6/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..7616f009d6d88ea5d8c5ac528f27f0b55e5242b2 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 6; Row 4, Column 1; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/94.txt b/maze/task1/maps/level6/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..28d4c8347f4d5cd26236450846e17fd2ebc9a946 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/95.txt b/maze/task1/maps/level6/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..e904cdc8e65fb66861d4a86dc41c14ab5627729d --- /dev/null +++ b/maze/task1/maps/level6/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 5, Column 5; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/96.txt b/maze/task1/maps/level6/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e665f8b34deabe0d0211ae36d7e497d6b3157c1 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/97.txt b/maze/task1/maps/level6/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..a85800c1c85b133ae443007daa05565f3de17026 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/98.txt b/maze/task1/maps/level6/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2c405d5eb94a6e0d2c0783be513aed35bc4765c --- /dev/null +++ b/maze/task1/maps/level6/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level6/pure_text/99.txt b/maze/task1/maps/level6/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..33878c819e635d341f64f20bfa699e4cdcaaecf7 --- /dev/null +++ b/maze/task1/maps/level6/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level6/question/0.txt b/maze/task1/maps/level6/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level6/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/1.txt b/maze/task1/maps/level6/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level6/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/10.txt b/maze/task1/maps/level6/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..fefad67cc5a0d24b2caa6c0d6037874ea5a69a9c --- /dev/null +++ b/maze/task1/maps/level6/question/10.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/11.txt b/maze/task1/maps/level6/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level6/question/11.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/12.txt b/maze/task1/maps/level6/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e49afba9e1af330a81d3349999e4dea3cb0f9da --- /dev/null +++ b/maze/task1/maps/level6/question/12.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/13.txt b/maze/task1/maps/level6/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level6/question/13.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/14.txt b/maze/task1/maps/level6/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level6/question/14.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/15.txt b/maze/task1/maps/level6/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4cf4f87f8bc39eb8469193b431d1f19d3a11b2c --- /dev/null +++ b/maze/task1/maps/level6/question/15.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/16.txt b/maze/task1/maps/level6/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level6/question/16.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/17.txt b/maze/task1/maps/level6/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/maps/level6/question/17.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/18.txt b/maze/task1/maps/level6/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level6/question/18.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/19.txt b/maze/task1/maps/level6/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level6/question/19.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/2.txt b/maze/task1/maps/level6/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level6/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/20.txt b/maze/task1/maps/level6/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level6/question/20.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/21.txt b/maze/task1/maps/level6/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/maps/level6/question/21.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/22.txt b/maze/task1/maps/level6/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4cf4f87f8bc39eb8469193b431d1f19d3a11b2c --- /dev/null +++ b/maze/task1/maps/level6/question/22.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/23.txt b/maze/task1/maps/level6/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level6/question/23.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/24.txt b/maze/task1/maps/level6/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level6/question/24.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/25.txt b/maze/task1/maps/level6/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level6/question/25.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/26.txt b/maze/task1/maps/level6/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level6/question/26.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/27.txt b/maze/task1/maps/level6/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..e133c21dab2158efbba6d6cbe7fbae5b82d7e8cb --- /dev/null +++ b/maze/task1/maps/level6/question/27.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/28.txt b/maze/task1/maps/level6/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level6/question/28.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/29.txt b/maze/task1/maps/level6/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9aede805af915baa2df0e8e796da4fc5847723a --- /dev/null +++ b/maze/task1/maps/level6/question/29.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/3.txt b/maze/task1/maps/level6/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level6/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/30.txt b/maze/task1/maps/level6/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level6/question/30.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/31.txt b/maze/task1/maps/level6/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level6/question/31.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/32.txt b/maze/task1/maps/level6/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/maps/level6/question/32.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/33.txt b/maze/task1/maps/level6/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level6/question/33.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/34.txt b/maze/task1/maps/level6/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef3d19c783d53d1fb484bd1afa107ecf006dfc52 --- /dev/null +++ b/maze/task1/maps/level6/question/34.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/35.txt b/maze/task1/maps/level6/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/maps/level6/question/35.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/36.txt b/maze/task1/maps/level6/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4cf4f87f8bc39eb8469193b431d1f19d3a11b2c --- /dev/null +++ b/maze/task1/maps/level6/question/36.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/37.txt b/maze/task1/maps/level6/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level6/question/37.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/38.txt b/maze/task1/maps/level6/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/maps/level6/question/38.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/39.txt b/maze/task1/maps/level6/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..8068d8815974b06292880ebb1b040361e0f386b4 --- /dev/null +++ b/maze/task1/maps/level6/question/39.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/4.txt b/maze/task1/maps/level6/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level6/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/40.txt b/maze/task1/maps/level6/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level6/question/40.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/41.txt b/maze/task1/maps/level6/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level6/question/41.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/42.txt b/maze/task1/maps/level6/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level6/question/42.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/43.txt b/maze/task1/maps/level6/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level6/question/43.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/44.txt b/maze/task1/maps/level6/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e49afba9e1af330a81d3349999e4dea3cb0f9da --- /dev/null +++ b/maze/task1/maps/level6/question/44.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/45.txt b/maze/task1/maps/level6/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..fefad67cc5a0d24b2caa6c0d6037874ea5a69a9c --- /dev/null +++ b/maze/task1/maps/level6/question/45.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/46.txt b/maze/task1/maps/level6/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level6/question/46.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/47.txt b/maze/task1/maps/level6/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level6/question/47.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/48.txt b/maze/task1/maps/level6/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level6/question/48.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/49.txt b/maze/task1/maps/level6/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level6/question/49.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/5.txt b/maze/task1/maps/level6/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level6/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/50.txt b/maze/task1/maps/level6/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level6/question/50.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/51.txt b/maze/task1/maps/level6/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level6/question/51.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/52.txt b/maze/task1/maps/level6/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..fefad67cc5a0d24b2caa6c0d6037874ea5a69a9c --- /dev/null +++ b/maze/task1/maps/level6/question/52.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/53.txt b/maze/task1/maps/level6/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level6/question/53.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/54.txt b/maze/task1/maps/level6/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level6/question/54.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/55.txt b/maze/task1/maps/level6/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e49afba9e1af330a81d3349999e4dea3cb0f9da --- /dev/null +++ b/maze/task1/maps/level6/question/55.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/56.txt b/maze/task1/maps/level6/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level6/question/56.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/57.txt b/maze/task1/maps/level6/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level6/question/57.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/58.txt b/maze/task1/maps/level6/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..8068d8815974b06292880ebb1b040361e0f386b4 --- /dev/null +++ b/maze/task1/maps/level6/question/58.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/59.txt b/maze/task1/maps/level6/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level6/question/59.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/6.txt b/maze/task1/maps/level6/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e49afba9e1af330a81d3349999e4dea3cb0f9da --- /dev/null +++ b/maze/task1/maps/level6/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/60.txt b/maze/task1/maps/level6/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/maps/level6/question/60.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/61.txt b/maze/task1/maps/level6/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level6/question/61.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/62.txt b/maze/task1/maps/level6/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level6/question/62.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/63.txt b/maze/task1/maps/level6/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level6/question/63.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/64.txt b/maze/task1/maps/level6/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level6/question/64.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/65.txt b/maze/task1/maps/level6/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level6/question/65.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/66.txt b/maze/task1/maps/level6/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..e133c21dab2158efbba6d6cbe7fbae5b82d7e8cb --- /dev/null +++ b/maze/task1/maps/level6/question/66.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/67.txt b/maze/task1/maps/level6/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level6/question/67.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/68.txt b/maze/task1/maps/level6/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level6/question/68.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/69.txt b/maze/task1/maps/level6/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..16d4721f5c5658e494dfa10c15bc1258749faa01 --- /dev/null +++ b/maze/task1/maps/level6/question/69.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/7.txt b/maze/task1/maps/level6/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level6/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/70.txt b/maze/task1/maps/level6/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ebfbfdb38e2b5c36bde6d0d9786d921ea3b55fa --- /dev/null +++ b/maze/task1/maps/level6/question/70.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/71.txt b/maze/task1/maps/level6/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level6/question/71.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/72.txt b/maze/task1/maps/level6/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/maps/level6/question/72.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/73.txt b/maze/task1/maps/level6/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..fefad67cc5a0d24b2caa6c0d6037874ea5a69a9c --- /dev/null +++ b/maze/task1/maps/level6/question/73.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/74.txt b/maze/task1/maps/level6/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level6/question/74.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/75.txt b/maze/task1/maps/level6/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level6/question/75.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/76.txt b/maze/task1/maps/level6/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level6/question/76.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/77.txt b/maze/task1/maps/level6/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level6/question/77.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/78.txt b/maze/task1/maps/level6/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level6/question/78.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/79.txt b/maze/task1/maps/level6/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level6/question/79.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/8.txt b/maze/task1/maps/level6/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level6/question/8.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/80.txt b/maze/task1/maps/level6/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4cf4f87f8bc39eb8469193b431d1f19d3a11b2c --- /dev/null +++ b/maze/task1/maps/level6/question/80.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/81.txt b/maze/task1/maps/level6/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level6/question/81.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/82.txt b/maze/task1/maps/level6/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level6/question/82.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/83.txt b/maze/task1/maps/level6/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..8068d8815974b06292880ebb1b040361e0f386b4 --- /dev/null +++ b/maze/task1/maps/level6/question/83.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/84.txt b/maze/task1/maps/level6/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level6/question/84.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/85.txt b/maze/task1/maps/level6/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level6/question/85.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/86.txt b/maze/task1/maps/level6/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level6/question/86.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/87.txt b/maze/task1/maps/level6/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level6/question/87.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/88.txt b/maze/task1/maps/level6/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..e133c21dab2158efbba6d6cbe7fbae5b82d7e8cb --- /dev/null +++ b/maze/task1/maps/level6/question/88.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/89.txt b/maze/task1/maps/level6/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef3d19c783d53d1fb484bd1afa107ecf006dfc52 --- /dev/null +++ b/maze/task1/maps/level6/question/89.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/9.txt b/maze/task1/maps/level6/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4cf4f87f8bc39eb8469193b431d1f19d3a11b2c --- /dev/null +++ b/maze/task1/maps/level6/question/9.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/90.txt b/maze/task1/maps/level6/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level6/question/90.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/91.txt b/maze/task1/maps/level6/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level6/question/91.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/92.txt b/maze/task1/maps/level6/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..812cbc96f7148ebcfa762a9a2de1b7e42ead798f --- /dev/null +++ b/maze/task1/maps/level6/question/92.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/93.txt b/maze/task1/maps/level6/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level6/question/93.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/94.txt b/maze/task1/maps/level6/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level6/question/94.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/95.txt b/maze/task1/maps/level6/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level6/question/95.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/96.txt b/maze/task1/maps/level6/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e49afba9e1af330a81d3349999e4dea3cb0f9da --- /dev/null +++ b/maze/task1/maps/level6/question/96.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/97.txt b/maze/task1/maps/level6/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level6/question/97.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/98.txt b/maze/task1/maps/level6/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level6/question/98.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level6/question/99.txt b/maze/task1/maps/level6/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e133c21dab2158efbba6d6cbe7fbae5b82d7e8cb --- /dev/null +++ b/maze/task1/maps/level6/question/99.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level6/table/0.txt b/maze/task1/maps/level6/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe1d099258364ade621a7c23239f0ade7518138c --- /dev/null +++ b/maze/task1/maps/level6/table/0.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | # | +| Row 2 | # | _ | # | # | # | _ | +| Row 3 | # | # | _ | # | _ | _ | +| Row 4 | _ | * | # | # | _ | # | +| Row 5 | _ | # | @ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task1/maps/level6/table/1.txt b/maze/task1/maps/level6/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..21ff803888834d3c076095d6c1a38f8fdbc9b264 --- /dev/null +++ b/maze/task1/maps/level6/table/1.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | # | _ | _ | # | +| Row 3 | _ | # | # | # | # | # | +| Row 4 | # | # | # | _ | * | # | +| Row 5 | _ | # | _ | _ | # | _ | +| Row 6 | # | _ | @ | _ | # | # | diff --git a/maze/task1/maps/level6/table/10.txt b/maze/task1/maps/level6/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..97172b12fde29b6a27a55f681f0c0d59e50f4031 --- /dev/null +++ b/maze/task1/maps/level6/table/10.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | # | _ | +| Row 2 | # | # | _ | _ | # | # | +| Row 3 | # | # | # | # | * | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | @ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level6/table/11.txt b/maze/task1/maps/level6/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..376bf64477f494a6dc58eaf73c59b0a03a2db33b --- /dev/null +++ b/maze/task1/maps/level6/table/11.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | _ | # | _ | +| Row 2 | _ | # | # | _ | # | # | +| Row 3 | # | _ | _ | # | # | @ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | # | * | +| Row 6 | _ | # | _ | # | # | _ | diff --git a/maze/task1/maps/level6/table/12.txt b/maze/task1/maps/level6/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7910e48e9a7b6a9508ff9e5569e25a826fc7e8f --- /dev/null +++ b/maze/task1/maps/level6/table/12.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | # | # | _ | +| Row 2 | _ | # | _ | # | _ | # | +| Row 3 | _ | # | _ | * | _ | _ | +| Row 4 | # | _ | # | @ | # | _ | +| Row 5 | # | _ | # | # | # | # | +| Row 6 | _ | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/13.txt b/maze/task1/maps/level6/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..b736a4d0a02a214de7253e52d0c5b985f52ca51b --- /dev/null +++ b/maze/task1/maps/level6/table/13.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | # | _ | # | +| Row 2 | _ | # | # | _ | * | _ | +| Row 3 | # | _ | _ | # | _ | # | +| Row 4 | # | # | _ | # | # | _ | +| Row 5 | # | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | _ | # | @ | diff --git a/maze/task1/maps/level6/table/14.txt b/maze/task1/maps/level6/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..723c753076e88434fa2184b5a432fdb922fb670c --- /dev/null +++ b/maze/task1/maps/level6/table/14.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | # | +| Row 2 | # | # | _ | * | # | _ | +| Row 3 | @ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | # | # | +| Row 5 | _ | # | # | _ | _ | _ | +| Row 6 | # | # | _ | # | # | # | diff --git a/maze/task1/maps/level6/table/15.txt b/maze/task1/maps/level6/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..8847ec6df21918f7dfc4467b7ded02af121fd510 --- /dev/null +++ b/maze/task1/maps/level6/table/15.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | _ | # | +| Row 2 | # | _ | _ | # | _ | * | +| Row 3 | # | _ | _ | # | # | # | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | # | _ | # | # | +| Row 6 | # | _ | @ | # | # | _ | diff --git a/maze/task1/maps/level6/table/16.txt b/maze/task1/maps/level6/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb6fa8e5ac4afeda6a47f3eecad4a191ab066a00 --- /dev/null +++ b/maze/task1/maps/level6/table/16.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | _ | _ | # | _ | +| Row 2 | # | # | # | # | _ | # | +| Row 3 | # | * | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | # | +| Row 5 | # | # | # | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | # | diff --git a/maze/task1/maps/level6/table/17.txt b/maze/task1/maps/level6/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..002e0be1a1735cdeb111175cdc0c6779dc799b6c --- /dev/null +++ b/maze/task1/maps/level6/table/17.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | * | # | # | # | # | _ | +| Row 3 | # | _ | # | # | # | _ | +| Row 4 | # | _ | # | # | @ | # | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | _ | diff --git a/maze/task1/maps/level6/table/18.txt b/maze/task1/maps/level6/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..eddcbb510072b7fa18e8b109cc2685a896fb95fe --- /dev/null +++ b/maze/task1/maps/level6/table/18.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | # | # | +| Row 3 | # | # | _ | _ | # | * | +| Row 4 | # | # | # | _ | # | # | +| Row 5 | _ | _ | # | # | # | # | +| Row 6 | _ | _ | _ | # | # | # | diff --git a/maze/task1/maps/level6/table/19.txt b/maze/task1/maps/level6/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..79c1674feca0edb274e5bc2fb45ff8e540bee113 --- /dev/null +++ b/maze/task1/maps/level6/table/19.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | # | _ | +| Row 2 | # | _ | # | * | _ | # | +| Row 3 | # | _ | # | # | _ | # | +| Row 4 | # | _ | _ | _ | # | # | +| Row 5 | _ | # | @ | _ | # | # | +| Row 6 | # | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level6/table/2.txt b/maze/task1/maps/level6/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..96fd9e6448f0281cb7048af247d7556538fc1f91 --- /dev/null +++ b/maze/task1/maps/level6/table/2.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | * | # | _ | # | +| Row 2 | # | # | # | _ | # | # | +| Row 3 | _ | # | # | _ | # | # | +| Row 4 | _ | _ | # | # | _ | # | +| Row 5 | _ | @ | _ | _ | _ | _ | +| Row 6 | # | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level6/table/20.txt b/maze/task1/maps/level6/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..98978900b30fa5cbacdea7899df414ac2b25ab3e --- /dev/null +++ b/maze/task1/maps/level6/table/20.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | * | @ | +| Row 3 | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | +| Row 5 | # | # | # | # | _ | # | +| Row 6 | # | # | # | # | # | # | diff --git a/maze/task1/maps/level6/table/21.txt b/maze/task1/maps/level6/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f2039c043b10b1a8ddf049171f934751cce012a --- /dev/null +++ b/maze/task1/maps/level6/table/21.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | @ | +| Row 2 | # | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | * | _ | # | +| Row 4 | # | # | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | # | # | +| Row 6 | _ | # | # | # | _ | # | diff --git a/maze/task1/maps/level6/table/22.txt b/maze/task1/maps/level6/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..524ef9477c3f860753ed154e58228e9fbcba4094 --- /dev/null +++ b/maze/task1/maps/level6/table/22.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | @ | # | +| Row 2 | # | _ | # | _ | # | # | +| Row 3 | _ | # | # | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | # | +| Row 5 | # | _ | * | # | # | _ | +| Row 6 | _ | # | # | # | # | # | diff --git a/maze/task1/maps/level6/table/23.txt b/maze/task1/maps/level6/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f9f76670c0912808ceb49be3d547ed451330814 --- /dev/null +++ b/maze/task1/maps/level6/table/23.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | # | _ | +| Row 3 | _ | # | _ | _ | @ | # | +| Row 4 | # | # | * | # | # | _ | +| Row 5 | _ | # | # | # | # | # | +| Row 6 | # | # | _ | _ | # | _ | diff --git a/maze/task1/maps/level6/table/24.txt b/maze/task1/maps/level6/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbc39432a38bdc5ef2e0a6961cf384a112c48b92 --- /dev/null +++ b/maze/task1/maps/level6/table/24.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | * | _ | _ | # | +| Row 2 | # | _ | _ | _ | # | _ | +| Row 3 | # | # | # | # | # | _ | +| Row 4 | # | _ | _ | # | # | # | +| Row 5 | # | @ | _ | # | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level6/table/25.txt b/maze/task1/maps/level6/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d542d692086726a8d7fb9580a81bd69547c43be --- /dev/null +++ b/maze/task1/maps/level6/table/25.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | +| Row 3 | @ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | * | _ | _ | +| Row 5 | # | # | # | # | _ | # | +| Row 6 | # | # | _ | # | # | # | diff --git a/maze/task1/maps/level6/table/26.txt b/maze/task1/maps/level6/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..01f0761b1f47d7ed89aa9dfc84742634ab30a68a --- /dev/null +++ b/maze/task1/maps/level6/table/26.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | # | # | _ | # | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | # | @ | # | * | # | +| Row 5 | # | _ | _ | # | # | # | +| Row 6 | # | # | # | _ | _ | # | diff --git a/maze/task1/maps/level6/table/27.txt b/maze/task1/maps/level6/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..f50ec4317e63bfeac8b9c2977914a1396d2e95ee --- /dev/null +++ b/maze/task1/maps/level6/table/27.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | # | # | _ | +| Row 2 | _ | * | _ | # | # | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | # | _ | _ | # | +| Row 5 | @ | # | # | _ | # | # | +| Row 6 | # | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level6/table/28.txt b/maze/task1/maps/level6/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..70bc32a4d9f4f426e35ce8f2d4125c24d8a8c730 --- /dev/null +++ b/maze/task1/maps/level6/table/28.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | @ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | +| Row 4 | # | # | _ | _ | # | # | +| Row 5 | * | # | _ | # | _ | _ | +| Row 6 | # | # | # | # | # | # | diff --git a/maze/task1/maps/level6/table/29.txt b/maze/task1/maps/level6/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4d8f236361b3d2bedbe2b43e2b2e73127b86109 --- /dev/null +++ b/maze/task1/maps/level6/table/29.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | # | _ | # | # | # | +| Row 3 | _ | # | * | # | # | # | +| Row 4 | # | # | _ | # | _ | # | +| Row 5 | _ | _ | # | # | _ | # | +| Row 6 | @ | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level6/table/3.txt b/maze/task1/maps/level6/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd146c3c94095d264e85016ab4399490af86b7b8 --- /dev/null +++ b/maze/task1/maps/level6/table/3.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | # | +| Row 2 | _ | _ | # | # | _ | # | +| Row 3 | _ | # | # | _ | * | _ | +| Row 4 | # | # | _ | # | _ | _ | +| Row 5 | _ | # | # | # | @ | # | +| Row 6 | _ | # | # | _ | # | _ | diff --git a/maze/task1/maps/level6/table/30.txt b/maze/task1/maps/level6/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7023fac03948afbfa02467d9a9c0269bc904602 --- /dev/null +++ b/maze/task1/maps/level6/table/30.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | # | # | # | # | _ | # | +| Row 3 | @ | # | # | _ | _ | _ | +| Row 4 | # | _ | _ | * | # | _ | +| Row 5 | # | # | _ | # | # | _ | +| Row 6 | # | # | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/31.txt b/maze/task1/maps/level6/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..e42198775c633a3f82adecdf756e44ad626b358a --- /dev/null +++ b/maze/task1/maps/level6/table/31.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | # | _ | _ | +| Row 2 | # | # | _ | _ | _ | # | +| Row 3 | _ | # | * | _ | # | # | +| Row 4 | # | _ | # | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | @ | # | diff --git a/maze/task1/maps/level6/table/32.txt b/maze/task1/maps/level6/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..e89c8a37c63fd8bf51e4be46c0ec6c806ab30244 --- /dev/null +++ b/maze/task1/maps/level6/table/32.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | # | _ | +| Row 2 | _ | @ | # | # | _ | _ | +| Row 3 | _ | # | # | # | # | # | +| Row 4 | # | # | _ | _ | # | _ | +| Row 5 | * | # | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | diff --git a/maze/task1/maps/level6/table/33.txt b/maze/task1/maps/level6/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..f28d6cc93837f2c528b8a410a1fd529a60ec7ade --- /dev/null +++ b/maze/task1/maps/level6/table/33.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | # | +| Row 3 | _ | _ | @ | _ | # | # | +| Row 4 | # | # | _ | # | # | _ | +| Row 5 | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | # | * | diff --git a/maze/task1/maps/level6/table/34.txt b/maze/task1/maps/level6/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..843cfeece8912eae288c40b157ba9af04f07b68f --- /dev/null +++ b/maze/task1/maps/level6/table/34.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | # | _ | # | +| Row 2 | # | # | _ | # | _ | _ | +| Row 3 | # | @ | # | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | # | +| Row 5 | * | _ | _ | _ | _ | # | +| Row 6 | # | _ | # | _ | # | # | diff --git a/maze/task1/maps/level6/table/35.txt b/maze/task1/maps/level6/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b4080853ed6b332320b1e1676585beda68577e7 --- /dev/null +++ b/maze/task1/maps/level6/table/35.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | # | # | # | +| Row 2 | * | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | _ | +| Row 5 | # | # | # | _ | # | @ | +| Row 6 | _ | # | _ | # | # | # | diff --git a/maze/task1/maps/level6/table/36.txt b/maze/task1/maps/level6/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..86ed1907b8fe350014d936b7f4f52bcf9839e4ed --- /dev/null +++ b/maze/task1/maps/level6/table/36.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | +| Row 3 | # | _ | # | _ | _ | # | +| Row 4 | # | * | # | _ | # | @ | +| Row 5 | # | # | # | # | _ | # | +| Row 6 | _ | # | # | _ | # | # | diff --git a/maze/task1/maps/level6/table/37.txt b/maze/task1/maps/level6/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..83b26dc1a49a222dffc391f785fee957288395b6 --- /dev/null +++ b/maze/task1/maps/level6/table/37.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | _ | _ | +| Row 2 | _ | @ | _ | # | # | _ | +| Row 3 | # | _ | # | # | # | _ | +| Row 4 | # | _ | # | * | _ | _ | +| Row 5 | # | _ | # | # | # | # | +| Row 6 | _ | # | _ | # | # | _ | diff --git a/maze/task1/maps/level6/table/38.txt b/maze/task1/maps/level6/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a62da7be16083960b548217d10772b5df932d40 --- /dev/null +++ b/maze/task1/maps/level6/table/38.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | # | # | # | _ | # | # | +| Row 3 | _ | # | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | # | # | * | +| Row 6 | # | _ | # | # | # | # | diff --git a/maze/task1/maps/level6/table/39.txt b/maze/task1/maps/level6/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..f032a7b3e5e38a8c684ace8e86434e71ab59af9e --- /dev/null +++ b/maze/task1/maps/level6/table/39.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | # | # | # | # | +| Row 2 | # | _ | _ | _ | # | _ | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | # | # | # | _ | # | # | +| Row 5 | _ | _ | _ | # | # | _ | +| Row 6 | # | _ | @ | # | # | _ | diff --git a/maze/task1/maps/level6/table/4.txt b/maze/task1/maps/level6/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..13eb7228650ba76de0e360162c867c888e8f0d9d --- /dev/null +++ b/maze/task1/maps/level6/table/4.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | # | _ | # | +| Row 2 | # | _ | _ | # | * | _ | +| Row 3 | # | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | @ | # | # | +| Row 5 | # | # | # | _ | # | _ | +| Row 6 | _ | _ | # | _ | # | # | diff --git a/maze/task1/maps/level6/table/40.txt b/maze/task1/maps/level6/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..7600b6b6a564d1d07a697d69c246256dd81d0684 --- /dev/null +++ b/maze/task1/maps/level6/table/40.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | # | _ | +| Row 2 | # | _ | # | _ | # | _ | +| Row 3 | _ | # | # | _ | * | @ | +| Row 4 | # | # | # | # | # | _ | +| Row 5 | # | # | # | _ | _ | # | +| Row 6 | _ | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level6/table/41.txt b/maze/task1/maps/level6/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cdac5b355cb97d5ea4b2dfd348d23aafcc5a38f --- /dev/null +++ b/maze/task1/maps/level6/table/41.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | # | # | _ | +| Row 2 | # | _ | # | _ | # | * | +| Row 3 | # | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | +| Row 5 | _ | @ | # | _ | _ | # | +| Row 6 | # | # | # | _ | _ | # | diff --git a/maze/task1/maps/level6/table/42.txt b/maze/task1/maps/level6/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cff605192e34516a64126bf6c89bcef45c47c8b --- /dev/null +++ b/maze/task1/maps/level6/table/42.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | # | # | +| Row 2 | # | # | @ | # | _ | # | +| Row 3 | _ | _ | * | # | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | +| Row 5 | _ | _ | # | # | # | _ | +| Row 6 | # | # | # | _ | _ | _ | diff --git a/maze/task1/maps/level6/table/43.txt b/maze/task1/maps/level6/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..09e6350d060ee868241fc4726240293c88ee3570 --- /dev/null +++ b/maze/task1/maps/level6/table/43.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | * | # | # | +| Row 2 | _ | # | _ | # | # | # | +| Row 3 | _ | # | # | # | # | # | +| Row 4 | _ | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | @ | _ | +| Row 6 | # | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/44.txt b/maze/task1/maps/level6/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..acb83dc55fbc5c6b0b2b8055575ebfac58602107 --- /dev/null +++ b/maze/task1/maps/level6/table/44.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | # | # | _ | _ | _ | +| Row 2 | _ | # | # | # | @ | # | +| Row 3 | # | _ | _ | _ | # | # | +| Row 4 | _ | _ | # | # | # | _ | +| Row 5 | # | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/45.txt b/maze/task1/maps/level6/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e2cd5afd9ad6f54720fa37a3b9225427e79eaea --- /dev/null +++ b/maze/task1/maps/level6/table/45.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | _ | +| Row 2 | # | _ | _ | @ | _ | # | +| Row 3 | # | # | _ | _ | # | # | +| Row 4 | _ | # | # | # | # | # | +| Row 5 | _ | * | _ | _ | # | _ | +| Row 6 | # | _ | _ | # | _ | # | diff --git a/maze/task1/maps/level6/table/46.txt b/maze/task1/maps/level6/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd3867df849808ef2b01ce3bb6f645fb4d5cf71d --- /dev/null +++ b/maze/task1/maps/level6/table/46.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | * | # | _ | # | _ | +| Row 2 | # | # | # | # | # | _ | +| Row 3 | # | # | @ | # | # | _ | +| Row 4 | _ | # | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task1/maps/level6/table/47.txt b/maze/task1/maps/level6/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5ab8f8968a8d50921abcf68fb56ab67049ac0cf --- /dev/null +++ b/maze/task1/maps/level6/table/47.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | * | _ | # | +| Row 2 | # | # | _ | # | _ | # | +| Row 3 | _ | # | # | # | # | _ | +| Row 4 | # | _ | _ | # | _ | @ | +| Row 5 | # | _ | # | _ | _ | _ | +| Row 6 | # | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level6/table/48.txt b/maze/task1/maps/level6/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..3fc4e922956ff280a564d64bb20bec07a6a48bf6 --- /dev/null +++ b/maze/task1/maps/level6/table/48.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | _ | # | # | +| Row 2 | * | # | # | # | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | # | # | _ | +| Row 5 | # | # | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/49.txt b/maze/task1/maps/level6/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..d62ff408b987bb432541527817038a98ad7b2251 --- /dev/null +++ b/maze/task1/maps/level6/table/49.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | _ | # | +| Row 2 | _ | # | # | _ | # | @ | +| Row 3 | _ | # | * | # | _ | # | +| Row 4 | # | _ | # | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | # | # | # | # | diff --git a/maze/task1/maps/level6/table/5.txt b/maze/task1/maps/level6/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..46b262313c86e4991968ef633d35d9074c52c3b9 --- /dev/null +++ b/maze/task1/maps/level6/table/5.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | # | +| Row 2 | # | # | # | _ | * | _ | +| Row 3 | # | # | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | +| Row 5 | # | @ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/50.txt b/maze/task1/maps/level6/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b5b14dcf7e818acc044e646578e25e9de347a9a --- /dev/null +++ b/maze/task1/maps/level6/table/50.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | * | _ | +| Row 2 | # | # | # | # | @ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | # | # | _ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | # | _ | _ | # | # | # | diff --git a/maze/task1/maps/level6/table/51.txt b/maze/task1/maps/level6/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f732a3cf96b53a33484a15bae45dad7af819f61 --- /dev/null +++ b/maze/task1/maps/level6/table/51.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | _ | +| Row 2 | _ | @ | _ | _ | # | # | +| Row 3 | _ | # | _ | # | _ | # | +| Row 4 | # | _ | # | # | # | _ | +| Row 5 | _ | _ | # | # | _ | # | +| Row 6 | _ | # | # | # | _ | * | diff --git a/maze/task1/maps/level6/table/52.txt b/maze/task1/maps/level6/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..5480726234af9ee70aba764d4529d9202932eb8e --- /dev/null +++ b/maze/task1/maps/level6/table/52.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | # | _ | # | +| Row 2 | * | _ | _ | # | # | _ | +| Row 3 | # | _ | _ | # | _ | # | +| Row 4 | _ | _ | # | _ | _ | # | +| Row 5 | # | _ | _ | _ | # | # | +| Row 6 | # | _ | # | # | @ | # | diff --git a/maze/task1/maps/level6/table/53.txt b/maze/task1/maps/level6/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..fae5aa1f0ad9a02baa9f26e2dc5e977675cbd579 --- /dev/null +++ b/maze/task1/maps/level6/table/53.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | * | _ | +| Row 2 | _ | # | @ | _ | # | # | +| Row 3 | # | _ | # | _ | _ | # | +| Row 4 | # | # | _ | _ | # | # | +| Row 5 | # | # | # | _ | _ | # | +| Row 6 | _ | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level6/table/54.txt b/maze/task1/maps/level6/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cb2c3076e74717868f858ff6f2623d5bf7bbdf6 --- /dev/null +++ b/maze/task1/maps/level6/table/54.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | # | _ | +| Row 2 | _ | _ | # | # | # | _ | +| Row 3 | @ | # | # | _ | * | # | +| Row 4 | _ | # | _ | # | # | _ | +| Row 5 | _ | _ | # | _ | # | # | +| Row 6 | # | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level6/table/55.txt b/maze/task1/maps/level6/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2a6679e6af676d951f9521700ffcacdab94e85d --- /dev/null +++ b/maze/task1/maps/level6/table/55.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | _ | +| Row 2 | # | # | # | # | _ | # | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | # | # | # | # | _ | +| Row 5 | * | _ | _ | _ | _ | # | +| Row 6 | _ | _ | @ | # | # | # | diff --git a/maze/task1/maps/level6/table/56.txt b/maze/task1/maps/level6/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c6534e1ea7185d75cc5ef28eb747cf692d817e6 --- /dev/null +++ b/maze/task1/maps/level6/table/56.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | # | # | +| Row 3 | # | # | # | # | _ | # | +| Row 4 | # | # | * | _ | _ | _ | +| Row 5 | # | @ | # | _ | # | _ | +| Row 6 | # | # | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/57.txt b/maze/task1/maps/level6/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..49524c3ba4075387395a1e1c4cae00179be1d4d6 --- /dev/null +++ b/maze/task1/maps/level6/table/57.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | # | # | _ | # | # | # | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | # | # | # | # | _ | @ | +| Row 5 | * | # | _ | # | _ | _ | +| Row 6 | # | _ | _ | # | # | # | diff --git a/maze/task1/maps/level6/table/58.txt b/maze/task1/maps/level6/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..9980bb940aea29596aede7b44efb68143ff6c7de --- /dev/null +++ b/maze/task1/maps/level6/table/58.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | # | # | _ | +| Row 2 | _ | # | _ | # | _ | # | +| Row 3 | # | # | _ | * | # | @ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | # | # | +| Row 6 | # | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level6/table/59.txt b/maze/task1/maps/level6/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bbb53e642f6e39f15460e96437d09dc5f3d820b --- /dev/null +++ b/maze/task1/maps/level6/table/59.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | +| Row 3 | # | # | _ | _ | # | _ | +| Row 4 | @ | # | # | # | # | * | +| Row 5 | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | # | _ | # | _ | diff --git a/maze/task1/maps/level6/table/6.txt b/maze/task1/maps/level6/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e09d4215e4ec725391a92563338dd07d1ed5b4c --- /dev/null +++ b/maze/task1/maps/level6/table/6.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | # | # | +| Row 2 | # | _ | # | * | # | @ | +| Row 3 | # | _ | _ | # | # | # | +| Row 4 | _ | _ | _ | # | # | # | +| Row 5 | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/60.txt b/maze/task1/maps/level6/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a1c53148773e2176a5e9895a8d7329f6966e446 --- /dev/null +++ b/maze/task1/maps/level6/table/60.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | # | # | # | # | # | _ | +| Row 3 | _ | _ | _ | _ | * | _ | +| Row 4 | # | # | _ | # | # | # | +| Row 5 | # | _ | _ | # | @ | _ | +| Row 6 | _ | # | # | # | # | _ | diff --git a/maze/task1/maps/level6/table/61.txt b/maze/task1/maps/level6/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6217d54abc891820f3895d07b13f62e8e1bd646 --- /dev/null +++ b/maze/task1/maps/level6/table/61.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | _ | # | +| Row 2 | # | _ | # | # | _ | _ | +| Row 3 | # | # | # | _ | _ | # | +| Row 4 | @ | _ | * | _ | # | # | +| Row 5 | # | _ | _ | # | _ | # | +| Row 6 | # | _ | _ | # | _ | # | diff --git a/maze/task1/maps/level6/table/62.txt b/maze/task1/maps/level6/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb2f91c773d74c93655087d826155a8d23940abb --- /dev/null +++ b/maze/task1/maps/level6/table/62.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | * | _ | +| Row 2 | # | _ | # | # | # | # | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | @ | # | # | _ | +| Row 5 | # | # | # | # | _ | # | +| Row 6 | _ | _ | # | # | _ | # | diff --git a/maze/task1/maps/level6/table/63.txt b/maze/task1/maps/level6/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..12c4754e472960d6700483993595b9c4f3a8a160 --- /dev/null +++ b/maze/task1/maps/level6/table/63.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | * | # | # | @ | +| Row 3 | _ | _ | _ | # | # | # | +| Row 4 | # | # | # | # | # | # | +| Row 5 | # | _ | _ | # | # | _ | +| Row 6 | _ | # | # | # | _ | _ | diff --git a/maze/task1/maps/level6/table/64.txt b/maze/task1/maps/level6/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a98aa0cef73f36189d2e58e3e6956a51ec66757 --- /dev/null +++ b/maze/task1/maps/level6/table/64.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | _ | # | +| Row 2 | # | # | # | * | _ | # | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | # | _ | +| Row 6 | # | _ | _ | # | @ | # | diff --git a/maze/task1/maps/level6/table/65.txt b/maze/task1/maps/level6/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6cc84a64aff9dbbaacccfb910b954ee69b1e7f6 --- /dev/null +++ b/maze/task1/maps/level6/table/65.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | # | _ | # | _ | # | +| Row 3 | # | _ | # | _ | # | @ | +| Row 4 | # | _ | # | # | * | # | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | # | _ | # | # | # | diff --git a/maze/task1/maps/level6/table/66.txt b/maze/task1/maps/level6/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..3aeafcfd81abb7c7ffb934696524e3687de4aeed --- /dev/null +++ b/maze/task1/maps/level6/table/66.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | @ | # | +| Row 3 | _ | # | _ | # | _ | # | +| Row 4 | * | # | # | _ | # | _ | +| Row 5 | # | _ | # | _ | # | # | +| Row 6 | # | _ | # | _ | # | # | diff --git a/maze/task1/maps/level6/table/67.txt b/maze/task1/maps/level6/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..86e2b4d37be4b44d2041eb29c427f34dbe867201 --- /dev/null +++ b/maze/task1/maps/level6/table/67.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | # | # | # | # | # | _ | +| Row 3 | # | # | _ | @ | # | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | _ | * | # | _ | _ | _ | +| Row 6 | # | _ | # | # | _ | # | diff --git a/maze/task1/maps/level6/table/68.txt b/maze/task1/maps/level6/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..a20f8b4babb89916c9732dd09ef4531021689566 --- /dev/null +++ b/maze/task1/maps/level6/table/68.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | _ | @ | +| Row 2 | # | # | _ | _ | # | _ | +| Row 3 | _ | # | # | # | _ | _ | +| Row 4 | # | _ | _ | # | # | # | +| Row 5 | # | # | _ | * | _ | # | +| Row 6 | # | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level6/table/69.txt b/maze/task1/maps/level6/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..f060f68cef96d915eee4825712d5f87160e92ba4 --- /dev/null +++ b/maze/task1/maps/level6/table/69.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | # | _ | _ | +| Row 2 | # | _ | # | # | # | # | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | * | _ | # | +| Row 5 | # | _ | # | _ | # | _ | +| Row 6 | _ | _ | @ | # | _ | # | diff --git a/maze/task1/maps/level6/table/7.txt b/maze/task1/maps/level6/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c677d02201923dae4e47da6cb216890341beb8f --- /dev/null +++ b/maze/task1/maps/level6/table/7.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | # | _ | +| Row 2 | _ | # | # | _ | _ | # | +| Row 3 | * | _ | # | _ | # | # | +| Row 4 | _ | # | _ | # | _ | _ | +| Row 5 | # | _ | _ | _ | # | _ | +| Row 6 | # | @ | # | _ | # | _ | diff --git a/maze/task1/maps/level6/table/70.txt b/maze/task1/maps/level6/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3cd7386e7e4b8dac26d9b4fc4b8bc4ee5e0be3a --- /dev/null +++ b/maze/task1/maps/level6/table/70.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | # | _ | _ | +| Row 4 | # | # | _ | # | _ | # | +| Row 5 | # | # | _ | # | _ | * | +| Row 6 | @ | _ | # | # | # | # | diff --git a/maze/task1/maps/level6/table/71.txt b/maze/task1/maps/level6/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..49cabd382df13cb07b795503db70be881e21f80d --- /dev/null +++ b/maze/task1/maps/level6/table/71.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | * | # | @ | +| Row 2 | # | # | _ | _ | # | # | +| Row 3 | # | # | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | # | +| Row 5 | # | # | _ | # | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | diff --git a/maze/task1/maps/level6/table/72.txt b/maze/task1/maps/level6/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..f23e63da2da319fc91f87e4a0eab1104b7ac9a7f --- /dev/null +++ b/maze/task1/maps/level6/table/72.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | # | _ | +| Row 2 | # | _ | # | _ | _ | _ | +| Row 3 | * | # | # | _ | _ | @ | +| Row 4 | _ | _ | _ | # | # | # | +| Row 5 | # | _ | # | _ | # | _ | +| Row 6 | _ | _ | # | # | # | _ | diff --git a/maze/task1/maps/level6/table/73.txt b/maze/task1/maps/level6/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..3349adcf98340a7bc00760bddcce3f28198e7c7d --- /dev/null +++ b/maze/task1/maps/level6/table/73.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | _ | _ | +| Row 2 | # | * | # | _ | # | # | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | # | # | @ | # | _ | +| Row 5 | _ | # | _ | # | # | # | +| Row 6 | # | _ | _ | # | _ | # | diff --git a/maze/task1/maps/level6/table/74.txt b/maze/task1/maps/level6/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..195f31749a909c92a361f7407d5cedee3ed32d63 --- /dev/null +++ b/maze/task1/maps/level6/table/74.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | # | +| Row 3 | _ | * | # | _ | # | _ | +| Row 4 | # | _ | # | # | # | # | +| Row 5 | _ | # | # | # | _ | # | +| Row 6 | # | _ | _ | # | # | @ | diff --git a/maze/task1/maps/level6/table/75.txt b/maze/task1/maps/level6/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a3d1da3a1e0429c755c5e508ffe3b72513ab248 --- /dev/null +++ b/maze/task1/maps/level6/table/75.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | # | # | +| Row 4 | _ | # | # | # | # | * | +| Row 5 | @ | _ | # | _ | # | # | +| Row 6 | _ | # | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/76.txt b/maze/task1/maps/level6/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..02279df20d4a6cecf1cad9c55b9e10e669081575 --- /dev/null +++ b/maze/task1/maps/level6/table/76.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | * | _ | # | # | # | +| Row 4 | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | # | _ | # | _ | +| Row 6 | # | # | # | # | @ | _ | diff --git a/maze/task1/maps/level6/table/77.txt b/maze/task1/maps/level6/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2eb6cb2b650d5ca19e99eb53df3ab5385f27fdc --- /dev/null +++ b/maze/task1/maps/level6/table/77.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | _ | _ | +| Row 2 | # | # | _ | # | _ | # | +| Row 3 | @ | # | # | _ | # | # | +| Row 4 | _ | # | _ | # | _ | _ | +| Row 5 | # | # | # | _ | * | _ | +| Row 6 | _ | # | # | # | _ | _ | diff --git a/maze/task1/maps/level6/table/78.txt b/maze/task1/maps/level6/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e222cbe588d127423fb3df8ce492d8a5bf161fb5 --- /dev/null +++ b/maze/task1/maps/level6/table/78.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | # | _ | +| Row 2 | _ | _ | _ | # | # | # | +| Row 3 | _ | # | # | _ | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | _ | @ | # | * | # | # | +| Row 6 | # | _ | # | # | _ | # | diff --git a/maze/task1/maps/level6/table/79.txt b/maze/task1/maps/level6/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..518e96a1011f480fac39c5f61bbda99e517cec51 --- /dev/null +++ b/maze/task1/maps/level6/table/79.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | # | _ | @ | +| Row 2 | _ | _ | * | # | # | # | +| Row 3 | _ | # | _ | # | # | _ | +| Row 4 | # | _ | _ | _ | # | # | +| Row 5 | # | _ | # | _ | # | _ | +| Row 6 | _ | _ | # | # | # | _ | diff --git a/maze/task1/maps/level6/table/8.txt b/maze/task1/maps/level6/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4f2f46c28517db5255ac5cb57c9111dd7f80a1d --- /dev/null +++ b/maze/task1/maps/level6/table/8.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | # | # | +| Row 2 | _ | _ | # | # | _ | # | +| Row 3 | # | _ | # | _ | # | # | +| Row 4 | # | # | # | _ | _ | @ | +| Row 5 | # | # | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level6/table/80.txt b/maze/task1/maps/level6/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..46de34d61c833085219e3af6c0c405b150f7b644 --- /dev/null +++ b/maze/task1/maps/level6/table/80.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | # | # | # | +| Row 2 | # | # | # | _ | # | # | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | # | # | _ | _ | +| Row 5 | * | # | _ | # | # | # | +| Row 6 | _ | # | # | _ | _ | _ | diff --git a/maze/task1/maps/level6/table/81.txt b/maze/task1/maps/level6/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..a270c851c3e28bd8c009fb16a3b70d01b6188541 --- /dev/null +++ b/maze/task1/maps/level6/table/81.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | * | # | _ | +| Row 2 | # | _ | _ | # | # | # | +| Row 3 | # | # | _ | # | _ | # | +| Row 4 | _ | @ | # | _ | # | _ | +| Row 5 | # | # | # | # | _ | _ | +| Row 6 | _ | # | _ | # | _ | # | diff --git a/maze/task1/maps/level6/table/82.txt b/maze/task1/maps/level6/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..21b0af714bb628b59a1d7669144a834a9dc0dc2b --- /dev/null +++ b/maze/task1/maps/level6/table/82.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | # | _ | +| Row 2 | # | # | _ | _ | _ | # | +| Row 3 | _ | # | # | * | # | _ | +| Row 4 | # | # | # | # | _ | _ | +| Row 5 | # | _ | _ | # | @ | _ | +| Row 6 | _ | # | _ | # | _ | # | diff --git a/maze/task1/maps/level6/table/83.txt b/maze/task1/maps/level6/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..97849ff9f8e55255331e5250e144677c83dd03f7 --- /dev/null +++ b/maze/task1/maps/level6/table/83.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | # | # | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | # | _ | * | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | # | +| Row 6 | # | # | @ | # | # | # | diff --git a/maze/task1/maps/level6/table/84.txt b/maze/task1/maps/level6/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..a130adead733ecf47a10754350687f00868df947 --- /dev/null +++ b/maze/task1/maps/level6/table/84.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | _ | _ | * | +| Row 2 | # | # | _ | # | # | # | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | # | @ | _ | # | _ | # | +| Row 6 | _ | # | # | # | # | _ | diff --git a/maze/task1/maps/level6/table/85.txt b/maze/task1/maps/level6/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..51045d1a843ef6a98dc2378d42c8428c9859a282 --- /dev/null +++ b/maze/task1/maps/level6/table/85.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | # | # | _ | _ | # | _ | +| Row 3 | @ | # | _ | # | _ | # | +| Row 4 | # | _ | # | _ | * | # | +| Row 5 | # | _ | # | _ | _ | _ | +| Row 6 | # | # | # | # | # | # | diff --git a/maze/task1/maps/level6/table/86.txt b/maze/task1/maps/level6/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f55c1de968af66161b0951fd86d37d4981a34e4 --- /dev/null +++ b/maze/task1/maps/level6/table/86.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | _ | # | # | +| Row 2 | _ | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | * | # | # | _ | _ | # | +| Row 5 | _ | # | @ | # | # | _ | +| Row 6 | # | _ | # | # | # | _ | diff --git a/maze/task1/maps/level6/table/87.txt b/maze/task1/maps/level6/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc60482a0cd312068a115cec0e87583c114152d4 --- /dev/null +++ b/maze/task1/maps/level6/table/87.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | * | # | # | +| Row 2 | # | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | # | # | # | +| Row 4 | _ | # | # | _ | # | _ | +| Row 5 | _ | # | # | @ | # | # | +| Row 6 | _ | _ | _ | # | _ | # | diff --git a/maze/task1/maps/level6/table/88.txt b/maze/task1/maps/level6/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3bc46e3090fb609a48d593a28d8a90aeebf79b5 --- /dev/null +++ b/maze/task1/maps/level6/table/88.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | # | +| Row 2 | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | # | _ | * | _ | +| Row 4 | _ | _ | # | _ | @ | _ | +| Row 5 | _ | # | # | # | # | # | +| Row 6 | # | _ | # | # | # | _ | diff --git a/maze/task1/maps/level6/table/89.txt b/maze/task1/maps/level6/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fc7e9e34800d6f98d01d9d90b1c1e1b8a05e59f --- /dev/null +++ b/maze/task1/maps/level6/table/89.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | # | _ | +| Row 3 | _ | # | _ | # | # | _ | +| Row 4 | @ | # | # | _ | # | # | +| Row 5 | _ | _ | # | _ | # | # | +| Row 6 | # | # | _ | # | # | * | diff --git a/maze/task1/maps/level6/table/9.txt b/maze/task1/maps/level6/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9dcc299d5fbff1b68dfa532c38137c4b49f217f --- /dev/null +++ b/maze/task1/maps/level6/table/9.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | _ | _ | # | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | # | # | # | _ | # | _ | +| Row 4 | @ | # | _ | _ | _ | # | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | * | _ | # | # | diff --git a/maze/task1/maps/level6/table/90.txt b/maze/task1/maps/level6/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6c1684b8fdbfab268ee0c515fb83afb21cf041a --- /dev/null +++ b/maze/task1/maps/level6/table/90.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | _ | +| Row 2 | # | _ | # | # | # | @ | +| Row 3 | _ | * | # | # | # | _ | +| Row 4 | # | # | # | # | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | diff --git a/maze/task1/maps/level6/table/91.txt b/maze/task1/maps/level6/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b3ed69a817249432ea5085497c341ce335ebc97 --- /dev/null +++ b/maze/task1/maps/level6/table/91.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | _ | _ | _ | +| Row 2 | # | # | _ | _ | # | # | +| Row 3 | _ | # | * | _ | @ | _ | +| Row 4 | # | _ | _ | # | # | # | +| Row 5 | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | # | _ | # | # | diff --git a/maze/task1/maps/level6/table/92.txt b/maze/task1/maps/level6/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6563973e5ae437377832e89abd392d5361d0533 --- /dev/null +++ b/maze/task1/maps/level6/table/92.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | _ | _ | # | +| Row 2 | _ | # | # | _ | @ | _ | +| Row 3 | _ | # | # | _ | _ | _ | +| Row 4 | # | # | # | _ | _ | * | +| Row 5 | _ | _ | # | _ | _ | # | +| Row 6 | # | _ | # | # | # | # | diff --git a/maze/task1/maps/level6/table/93.txt b/maze/task1/maps/level6/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf70635cfc01caf7f42842a64b016119bc47dcec --- /dev/null +++ b/maze/task1/maps/level6/table/93.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | # | # | +| Row 2 | _ | # | _ | # | _ | # | +| Row 3 | _ | # | _ | @ | _ | # | +| Row 4 | # | _ | _ | # | _ | # | +| Row 5 | # | # | # | _ | _ | _ | +| Row 6 | # | # | _ | # | * | # | diff --git a/maze/task1/maps/level6/table/94.txt b/maze/task1/maps/level6/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..69b150ccf0e54ea4af0b07c775208f326f00ac55 --- /dev/null +++ b/maze/task1/maps/level6/table/94.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | # | _ | +| Row 2 | # | # | # | _ | * | # | +| Row 3 | _ | _ | # | _ | # | # | +| Row 4 | # | # | _ | _ | @ | _ | +| Row 5 | # | _ | # | _ | # | _ | +| Row 6 | _ | # | # | # | _ | _ | diff --git a/maze/task1/maps/level6/table/95.txt b/maze/task1/maps/level6/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3dd4e98ec23b7ab816527bf411068094a92a747 --- /dev/null +++ b/maze/task1/maps/level6/table/95.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | # | _ | _ | +| Row 2 | _ | # | # | _ | # | # | +| Row 3 | _ | # | _ | # | # | # | +| Row 4 | # | _ | # | # | _ | @ | +| Row 5 | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | * | diff --git a/maze/task1/maps/level6/table/96.txt b/maze/task1/maps/level6/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..5801df8c681ecb2e1b900cae6b415406bd4dae6e --- /dev/null +++ b/maze/task1/maps/level6/table/96.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | _ | # | _ | _ | # | _ | +| Row 3 | # | # | _ | # | _ | _ | +| Row 4 | # | # | # | # | # | # | +| Row 5 | _ | _ | @ | # | _ | _ | +| Row 6 | # | # | * | _ | # | # | diff --git a/maze/task1/maps/level6/table/97.txt b/maze/task1/maps/level6/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..07e7610d2edd8a3eec6c9be61056ae7e0842e761 --- /dev/null +++ b/maze/task1/maps/level6/table/97.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | # | # | +| Row 3 | # | * | # | _ | # | # | +| Row 4 | _ | _ | @ | # | # | _ | +| Row 5 | # | _ | _ | # | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task1/maps/level6/table/98.txt b/maze/task1/maps/level6/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..133c1af79fdb458e4ceabf739f8695b20c9e663c --- /dev/null +++ b/maze/task1/maps/level6/table/98.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | # | _ | # | +| Row 2 | _ | # | # | # | _ | _ | +| Row 3 | _ | # | # | # | _ | @ | +| Row 4 | # | _ | _ | # | _ | _ | +| Row 5 | _ | # | # | # | * | _ | +| Row 6 | # | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level6/table/99.txt b/maze/task1/maps/level6/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..effde1eb787a8627ff325da98e5a3b02ca0f85d9 --- /dev/null +++ b/maze/task1/maps/level6/table/99.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | _ | # | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | @ | +| Row 4 | _ | # | * | # | # | # | +| Row 5 | # | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | # | # | # | diff --git a/maze/task1/maps/level7/answer/0.txt b/maze/task1/maps/level7/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/0.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/1.txt b/maze/task1/maps/level7/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/1.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/10.txt b/maze/task1/maps/level7/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/10.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/11.txt b/maze/task1/maps/level7/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/11.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/12.txt b/maze/task1/maps/level7/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/12.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/13.txt b/maze/task1/maps/level7/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/13.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/14.txt b/maze/task1/maps/level7/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/14.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/15.txt b/maze/task1/maps/level7/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/15.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/16.txt b/maze/task1/maps/level7/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/16.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/17.txt b/maze/task1/maps/level7/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/17.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/18.txt b/maze/task1/maps/level7/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/18.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/19.txt b/maze/task1/maps/level7/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/19.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/2.txt b/maze/task1/maps/level7/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/20.txt b/maze/task1/maps/level7/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/20.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/21.txt b/maze/task1/maps/level7/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/21.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/22.txt b/maze/task1/maps/level7/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/22.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/23.txt b/maze/task1/maps/level7/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/23.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/24.txt b/maze/task1/maps/level7/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/24.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/25.txt b/maze/task1/maps/level7/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/25.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/26.txt b/maze/task1/maps/level7/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/26.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/27.txt b/maze/task1/maps/level7/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/27.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/28.txt b/maze/task1/maps/level7/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/28.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/29.txt b/maze/task1/maps/level7/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/29.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/3.txt b/maze/task1/maps/level7/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/30.txt b/maze/task1/maps/level7/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/30.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/31.txt b/maze/task1/maps/level7/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/31.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/32.txt b/maze/task1/maps/level7/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/32.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/33.txt b/maze/task1/maps/level7/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/33.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/34.txt b/maze/task1/maps/level7/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/34.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/35.txt b/maze/task1/maps/level7/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/35.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/36.txt b/maze/task1/maps/level7/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/36.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/37.txt b/maze/task1/maps/level7/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/37.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/38.txt b/maze/task1/maps/level7/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/38.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/39.txt b/maze/task1/maps/level7/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/4.txt b/maze/task1/maps/level7/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/4.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/40.txt b/maze/task1/maps/level7/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/40.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/41.txt b/maze/task1/maps/level7/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/41.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/42.txt b/maze/task1/maps/level7/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/42.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/43.txt b/maze/task1/maps/level7/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/43.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/44.txt b/maze/task1/maps/level7/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/44.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/45.txt b/maze/task1/maps/level7/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/45.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/46.txt b/maze/task1/maps/level7/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/46.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/47.txt b/maze/task1/maps/level7/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/47.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/48.txt b/maze/task1/maps/level7/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/48.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/49.txt b/maze/task1/maps/level7/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/49.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/5.txt b/maze/task1/maps/level7/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/5.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/50.txt b/maze/task1/maps/level7/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/50.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/51.txt b/maze/task1/maps/level7/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/51.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/52.txt b/maze/task1/maps/level7/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/52.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/53.txt b/maze/task1/maps/level7/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/53.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/54.txt b/maze/task1/maps/level7/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/54.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/55.txt b/maze/task1/maps/level7/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/55.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/56.txt b/maze/task1/maps/level7/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/56.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/57.txt b/maze/task1/maps/level7/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/57.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/58.txt b/maze/task1/maps/level7/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/58.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/59.txt b/maze/task1/maps/level7/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/59.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/6.txt b/maze/task1/maps/level7/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/60.txt b/maze/task1/maps/level7/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/60.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/61.txt b/maze/task1/maps/level7/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/61.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/62.txt b/maze/task1/maps/level7/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/62.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/63.txt b/maze/task1/maps/level7/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/63.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/64.txt b/maze/task1/maps/level7/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/64.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/65.txt b/maze/task1/maps/level7/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/65.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/66.txt b/maze/task1/maps/level7/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/66.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/67.txt b/maze/task1/maps/level7/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/67.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/68.txt b/maze/task1/maps/level7/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/68.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/69.txt b/maze/task1/maps/level7/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/69.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/7.txt b/maze/task1/maps/level7/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/7.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/70.txt b/maze/task1/maps/level7/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/70.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/71.txt b/maze/task1/maps/level7/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/71.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/72.txt b/maze/task1/maps/level7/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/72.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/73.txt b/maze/task1/maps/level7/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/73.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/74.txt b/maze/task1/maps/level7/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/74.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/75.txt b/maze/task1/maps/level7/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/75.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/76.txt b/maze/task1/maps/level7/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/76.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/77.txt b/maze/task1/maps/level7/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/77.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/78.txt b/maze/task1/maps/level7/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/78.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/79.txt b/maze/task1/maps/level7/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/79.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/8.txt b/maze/task1/maps/level7/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/8.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/80.txt b/maze/task1/maps/level7/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/80.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/81.txt b/maze/task1/maps/level7/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/81.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/82.txt b/maze/task1/maps/level7/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/82.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/83.txt b/maze/task1/maps/level7/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/83.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/84.txt b/maze/task1/maps/level7/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/84.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/85.txt b/maze/task1/maps/level7/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/85.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/86.txt b/maze/task1/maps/level7/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/86.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/87.txt b/maze/task1/maps/level7/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/87.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/88.txt b/maze/task1/maps/level7/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/88.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/89.txt b/maze/task1/maps/level7/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/89.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/9.txt b/maze/task1/maps/level7/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/9.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/90.txt b/maze/task1/maps/level7/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/90.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/91.txt b/maze/task1/maps/level7/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/91.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/92.txt b/maze/task1/maps/level7/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/92.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/93.txt b/maze/task1/maps/level7/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/93.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/94.txt b/maze/task1/maps/level7/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/94.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/95.txt b/maze/task1/maps/level7/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level7/answer/95.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/96.txt b/maze/task1/maps/level7/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/96.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/97.txt b/maze/task1/maps/level7/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/97.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/98.txt b/maze/task1/maps/level7/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/98.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/answer/99.txt b/maze/task1/maps/level7/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level7/answer/99.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level7/img/0.png b/maze/task1/maps/level7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e77f4847ff59011b5fd2b0a29c713468392d6c68 --- /dev/null +++ b/maze/task1/maps/level7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf5887c5947e145ffa1d239a73a61015b7404dba6460dccfee04abbc258c849 +size 16593 diff --git a/maze/task1/maps/level7/img/1.png b/maze/task1/maps/level7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9e6c2c705b51ee7b6378a3707becdd8b4022b2f9 --- /dev/null +++ b/maze/task1/maps/level7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e5275b95529a34d071a619ee9376917a29a7fbeaf27b0375dea9d01dfe6d405 +size 16797 diff --git a/maze/task1/maps/level7/img/10.png b/maze/task1/maps/level7/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a6f79030347b69d8d62a291b1e3a200d62beca0a --- /dev/null +++ b/maze/task1/maps/level7/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dbe342eb1c65fd9f376a63b8623f8e218f99bf96f2cbfa951fc9faa140b330f +size 16696 diff --git a/maze/task1/maps/level7/img/11.png b/maze/task1/maps/level7/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..79ac5647b6914f6ca04c1a907ab3ae9345164598 --- /dev/null +++ b/maze/task1/maps/level7/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b268fee0ea63d510ea46b5715fbd9b664944bb6093a898f305a8a3a8e15c34 +size 16666 diff --git a/maze/task1/maps/level7/img/12.png b/maze/task1/maps/level7/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..dfffa168c173791b12f852e56d4fbb5aeb72199a --- /dev/null +++ b/maze/task1/maps/level7/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68668fbfecbd662ee5e66217761ffafcafccf2b9b054d36947c43327b320967c +size 16696 diff --git a/maze/task1/maps/level7/img/13.png b/maze/task1/maps/level7/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6c4a17eb3234c5c51d641010cf27b3181bee6250 --- /dev/null +++ b/maze/task1/maps/level7/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de4bbdef3acf5bf125a90352f1d877143f0751a5e9c4e1a3be5a1c076556a5e +size 16933 diff --git a/maze/task1/maps/level7/img/14.png b/maze/task1/maps/level7/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..55c21608956a1a8dc11318040d3be232cbd5c263 --- /dev/null +++ b/maze/task1/maps/level7/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c014153b1edf61cabc705431163923bc86097c4c2eb33e7e30ebbc62ae85aa94 +size 16638 diff --git a/maze/task1/maps/level7/img/15.png b/maze/task1/maps/level7/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..0d7546e192ddf0774cd6de1d0c226a76f5c0ffa6 --- /dev/null +++ b/maze/task1/maps/level7/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acaa4322ee8de0807e16a9ff414c343bf3703873c511f027c715512325e36140 +size 16707 diff --git a/maze/task1/maps/level7/img/16.png b/maze/task1/maps/level7/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..43f5309bada64bd0fdc03d53f356f2e7a129f7f1 --- /dev/null +++ b/maze/task1/maps/level7/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5436f64613da9da6127e52a87e7664454c6f06bab0558bc858eaab3649da8b2b +size 16760 diff --git a/maze/task1/maps/level7/img/17.png b/maze/task1/maps/level7/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..3c6b06f1cb6336b78385b62cb07aefe6aafc2284 --- /dev/null +++ b/maze/task1/maps/level7/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95623aded81578445eb41510d22404dd0da54c534cd34d5ff4565de93359d92d +size 16703 diff --git a/maze/task1/maps/level7/img/18.png b/maze/task1/maps/level7/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..cca836ccad08e9216a4d0235a50abfa7282721d0 --- /dev/null +++ b/maze/task1/maps/level7/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c42ff02fe8696921c66a134dc8d9033d03286aeed686aadcaaea58a0d03af0e +size 16835 diff --git a/maze/task1/maps/level7/img/19.png b/maze/task1/maps/level7/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..64d7b1cee4cb9f28212161a8d3bb4daa6b855bab --- /dev/null +++ b/maze/task1/maps/level7/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a86f67f5e944cc01965923016f0bb02439bc48b2da8b4f2a678c0a131006b5 +size 16545 diff --git a/maze/task1/maps/level7/img/2.png b/maze/task1/maps/level7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1ff222549ef5c4c74681bf41976e427f948d87fd --- /dev/null +++ b/maze/task1/maps/level7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d1572927e7d5632c89d23fadced4ba1c05f95a5fe02e7d3366b450b0a4021e +size 16633 diff --git a/maze/task1/maps/level7/img/20.png b/maze/task1/maps/level7/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..bd842cf12cd7e329a379ba7d1bdeaddfeac7ddb0 --- /dev/null +++ b/maze/task1/maps/level7/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12bf2b19dad02459de515ca7b535bfbde721348f5b404bdf652c468b99d2f66 +size 16732 diff --git a/maze/task1/maps/level7/img/21.png b/maze/task1/maps/level7/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..0bc47e46939fa7fab30722d2f4eef5e5cb7f3a46 --- /dev/null +++ b/maze/task1/maps/level7/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724c79e79c612dfe7bf4a5c18e3ad991593e0b05d493806a48228820c8849e89 +size 16725 diff --git a/maze/task1/maps/level7/img/22.png b/maze/task1/maps/level7/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..c4c8b888607b61061e6ef8784438d489e07a1dab --- /dev/null +++ b/maze/task1/maps/level7/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092418b557fd39b33f07b389d3df18825ef820dad08c30798a2f3603fef8a7e3 +size 16721 diff --git a/maze/task1/maps/level7/img/23.png b/maze/task1/maps/level7/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..0644e2e2bdb383d81c44d4639337117d137dbc34 --- /dev/null +++ b/maze/task1/maps/level7/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b5cf30dd8771e74e58d30a841c3b9a13a90cf5154db29cee2c9508407663b0b +size 17012 diff --git a/maze/task1/maps/level7/img/24.png b/maze/task1/maps/level7/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..be5c024a89bc5acc75c29644a381aba555a5b741 --- /dev/null +++ b/maze/task1/maps/level7/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7963eadf7ac30059a9fe19c8404b65ae5e4b5450740475f75593150dbfbc09 +size 16838 diff --git a/maze/task1/maps/level7/img/25.png b/maze/task1/maps/level7/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..f0fec021e65b801c0faffde1bea528ca9f4b6365 --- /dev/null +++ b/maze/task1/maps/level7/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa5f6014b295d2e2a18b3deb0945854d5f25bb42ff2ad3153a5e2d26fc1d288 +size 16680 diff --git a/maze/task1/maps/level7/img/26.png b/maze/task1/maps/level7/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..9e789cd390394a206f02bb621242f81b3f911029 --- /dev/null +++ b/maze/task1/maps/level7/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3c39a0ecc8640e349044ed0bf82c665f4714cdd76d7060ab95b2f7b9514dab +size 16704 diff --git a/maze/task1/maps/level7/img/27.png b/maze/task1/maps/level7/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..5a2f3cdda46758a2cc020136fa6e8548e7838069 --- /dev/null +++ b/maze/task1/maps/level7/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639758908ae1e7af5fa21fe86026db772e0dde1eaa732dcd10a62f327cb5de2c +size 16987 diff --git a/maze/task1/maps/level7/img/28.png b/maze/task1/maps/level7/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..a9eea76ae59666fe726064da781765b9e0e9f15b --- /dev/null +++ b/maze/task1/maps/level7/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a7a01e5fbb651f196f09c604e945fad2b78fe5f0e5a2fad958009d8d624f75 +size 16716 diff --git a/maze/task1/maps/level7/img/29.png b/maze/task1/maps/level7/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..34f01658a99b7bbc225a7aaa3ca506fb90c72ca2 --- /dev/null +++ b/maze/task1/maps/level7/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8558bf64fc0f4e33e5d7ad27f2ef26c25bf3073aa60669ec42859f5b9543ea +size 16503 diff --git a/maze/task1/maps/level7/img/3.png b/maze/task1/maps/level7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3b119961605f7642d05a1b7370153874c142fe73 --- /dev/null +++ b/maze/task1/maps/level7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbca8901b8efb812b3901f4bf754e5e128e2fa54230f3238843a88232b2e198 +size 16629 diff --git a/maze/task1/maps/level7/img/30.png b/maze/task1/maps/level7/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..b36ac63ab234227fd91c1ec08f07e16e375db969 --- /dev/null +++ b/maze/task1/maps/level7/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28acc35079db199027804f0bec73ae13ed41ba0dbe02eb0713b7e43e4d06bbe3 +size 16496 diff --git a/maze/task1/maps/level7/img/31.png b/maze/task1/maps/level7/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..9a4cac6dc69808650ce2cc282ffdd130f5462832 --- /dev/null +++ b/maze/task1/maps/level7/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d463c445d30b059d6864c8b7c9e13922a389fca84d82d41d9dcaedd2088b7c59 +size 16818 diff --git a/maze/task1/maps/level7/img/32.png b/maze/task1/maps/level7/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..8f239f6566d85f8a206ceab9ea8e35861a03c356 --- /dev/null +++ b/maze/task1/maps/level7/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd1f18abe1b0c3d1f90121acc7a7c0ee42f4edd3da2357b428bbe34c86a838b +size 16578 diff --git a/maze/task1/maps/level7/img/33.png b/maze/task1/maps/level7/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..d12ed604d6f6b934ad5ac6ca672bf8394517d40d --- /dev/null +++ b/maze/task1/maps/level7/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b21cb87e94ab16b32410299d3556e1904136c7d949f9b2a00c2783b5224c00 +size 16724 diff --git a/maze/task1/maps/level7/img/34.png b/maze/task1/maps/level7/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..aab06df06194a644113b4420b207c47c6d61ed71 --- /dev/null +++ b/maze/task1/maps/level7/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9117e608c2c91bd32868ce5faef7c861ce6722114a1d0de04ecd9811bf1ca63f +size 16678 diff --git a/maze/task1/maps/level7/img/35.png b/maze/task1/maps/level7/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..94da37719b46cde84e51a6436d045880fa1c612e --- /dev/null +++ b/maze/task1/maps/level7/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9f197de3e11e0efa390bc0cf8321e87098488631cd8f8e98354ef31db19200 +size 16926 diff --git a/maze/task1/maps/level7/img/36.png b/maze/task1/maps/level7/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..d10d304f6c58cc9e12e3e9e09db1011563d972b3 --- /dev/null +++ b/maze/task1/maps/level7/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5d1e7c19862c1a4d8ff85a461b7a9dd9a4a14baf81f665b5b0e8ce06262bf41 +size 16796 diff --git a/maze/task1/maps/level7/img/37.png b/maze/task1/maps/level7/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..f929c7326f30fb4ba502c9beb700e2eb8023db83 --- /dev/null +++ b/maze/task1/maps/level7/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d03183f4818c14a2f6fbcb1e09bcf668d58310e110e64538e84255e2da56463 +size 16711 diff --git a/maze/task1/maps/level7/img/38.png b/maze/task1/maps/level7/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..bbe08e427d763ac1e953eaf917901d3217bb5638 --- /dev/null +++ b/maze/task1/maps/level7/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9badfd246cacdb95b88cdc85342267008a54cb11695a99e33f01d56cc5ace0e2 +size 16671 diff --git a/maze/task1/maps/level7/img/39.png b/maze/task1/maps/level7/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..733a11b609c9ecccbdf0a27dd8363bfdc0aa6872 --- /dev/null +++ b/maze/task1/maps/level7/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2ff1c339dd416cf862e6cc901accd13668d2780805b2d99973638910589001 +size 16656 diff --git a/maze/task1/maps/level7/img/4.png b/maze/task1/maps/level7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..16b4e9186ee8ba54f13332f02d0abf391ac40470 --- /dev/null +++ b/maze/task1/maps/level7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642a6555fe330ea84e773eb76efb36110f38d21b407351bfe7045f776f27e2ea +size 16621 diff --git a/maze/task1/maps/level7/img/40.png b/maze/task1/maps/level7/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..84f8454d45ff59660e4c5e1632dee8218d4ef926 --- /dev/null +++ b/maze/task1/maps/level7/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c887bc6caed6324a9e7a1de51fe21f5b64877be94a46faa71bf6a7d24378a7 +size 16848 diff --git a/maze/task1/maps/level7/img/41.png b/maze/task1/maps/level7/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..2354791d613144f77542a4bd059197e2414fda0d --- /dev/null +++ b/maze/task1/maps/level7/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a4e2691766f5bd4ddded78b8abe2edd65f76604ed5a2e8fd7e9b7d316f69d7 +size 16684 diff --git a/maze/task1/maps/level7/img/42.png b/maze/task1/maps/level7/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..9cb6d4d89dcefb960492d3c04ae0460456dbafd0 --- /dev/null +++ b/maze/task1/maps/level7/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e2318aabd675352a56117637a6bfaa49d9a1de8dfd82098e75b701cdceebb2 +size 17019 diff --git a/maze/task1/maps/level7/img/43.png b/maze/task1/maps/level7/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..a15425b91ddf3f3151524ad736f0e20c8f24bad6 --- /dev/null +++ b/maze/task1/maps/level7/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:726209d7834974a882c4547654fa6d5f1e2b56f6a364629495e9e7151267a4c1 +size 16525 diff --git a/maze/task1/maps/level7/img/44.png b/maze/task1/maps/level7/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..919117b586993805b88786a7829db5ca275bf67d --- /dev/null +++ b/maze/task1/maps/level7/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f27a3d5323a11049b27c349b1f67202b28906ef4a151e574c7bf8af657c46bc +size 16748 diff --git a/maze/task1/maps/level7/img/45.png b/maze/task1/maps/level7/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..e7034d9aa87851405fb36e2e07a8f6be6269a435 --- /dev/null +++ b/maze/task1/maps/level7/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7ee3ed3b8a94436e2fc7df9803732aab3f18e8e56abf270314a48d228bc213 +size 16864 diff --git a/maze/task1/maps/level7/img/46.png b/maze/task1/maps/level7/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..d3dc6f9626b946511c9eae1ba30d42292682931b --- /dev/null +++ b/maze/task1/maps/level7/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7aabfee9f431ae430e824ad175c950e832b7a47f953a3eda3305e159d090471 +size 16810 diff --git a/maze/task1/maps/level7/img/47.png b/maze/task1/maps/level7/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..97c7fa2d1f7bc4f4bb48b66520e6f05a9a993fd9 --- /dev/null +++ b/maze/task1/maps/level7/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6edf44f99dba35ee74f05c6a7509e41e23ae2b9e8af9b568c334c5d3805ea393 +size 16673 diff --git a/maze/task1/maps/level7/img/48.png b/maze/task1/maps/level7/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..b855c9a245a4500d7663a5f59f285d5c04116448 --- /dev/null +++ b/maze/task1/maps/level7/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce80046b38199845d517e44d5aa2977cf94ccffaaf03bf841bc9aeef9c105d55 +size 16714 diff --git a/maze/task1/maps/level7/img/49.png b/maze/task1/maps/level7/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..f5b1bb6f6317b76d1e82b3ab1424ac2733c9ba70 --- /dev/null +++ b/maze/task1/maps/level7/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faaf6eb5e07d4526b72ebbb6a3d81b68797c23718183a992e6c0d2aba1dee5df +size 16931 diff --git a/maze/task1/maps/level7/img/5.png b/maze/task1/maps/level7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ec2628193c838dee5699bdfdd66ab7577d014e52 --- /dev/null +++ b/maze/task1/maps/level7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481795c9a2da2947d172adf89cfa6a49f1f09c0e9cc1e05d0b99a7401100a3cc +size 16805 diff --git a/maze/task1/maps/level7/img/50.png b/maze/task1/maps/level7/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..bdcbf25474f71ddb6118c037373ee388710a9fc6 --- /dev/null +++ b/maze/task1/maps/level7/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b56da8d268d09ccf06f779384f4f3474d825c667dfbb56e908911cbb7007e5 +size 15867 diff --git a/maze/task1/maps/level7/img/51.png b/maze/task1/maps/level7/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..f35d06886d9afa35f47726689e65f6d325c440ca --- /dev/null +++ b/maze/task1/maps/level7/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff72f1836157ad806d7a1d5a2314d3cfb76ab57a34e4a3aaf8992aab41fc044 +size 16510 diff --git a/maze/task1/maps/level7/img/52.png b/maze/task1/maps/level7/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..986b06c7626ab72e2b358c82535911521e6f80e1 --- /dev/null +++ b/maze/task1/maps/level7/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d47edee08bc19546196abae99cbeab81c05b0469057b7722e05ac6ce73a2a65 +size 16705 diff --git a/maze/task1/maps/level7/img/53.png b/maze/task1/maps/level7/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..70b4f3197486a674700d41dd9d05d3f08c0e4b7e --- /dev/null +++ b/maze/task1/maps/level7/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9f4886ce96220ce7fd23151608bfabfdf9d6a4de3fda74c7d6f95910dcdc50 +size 16710 diff --git a/maze/task1/maps/level7/img/54.png b/maze/task1/maps/level7/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..e1e64d755036ebbaed83ddab0c58471c64a55fc1 --- /dev/null +++ b/maze/task1/maps/level7/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264521769848ef7c45befa56e58e0e3d700710088f6a6a723e959f6fd94c26ad +size 16763 diff --git a/maze/task1/maps/level7/img/55.png b/maze/task1/maps/level7/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..48e5698fd5714b5234718f5f57c5f396d7830b78 --- /dev/null +++ b/maze/task1/maps/level7/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9caf9bdf5c220d3fb9a28257913e522a8ddd1d1462b319a0d15a8031a2ed7412 +size 16658 diff --git a/maze/task1/maps/level7/img/56.png b/maze/task1/maps/level7/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..a8fc172377c66297f35d715498d5fe322e51c23a --- /dev/null +++ b/maze/task1/maps/level7/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4582a39b37c30c010596e61814fd4f18409a38d36f0bef0344e6cf58869de0 +size 16536 diff --git a/maze/task1/maps/level7/img/57.png b/maze/task1/maps/level7/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..be9b6ab698cde733a8e37f9a110a92c960e98214 --- /dev/null +++ b/maze/task1/maps/level7/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbdc58bb778f716de0cdb05f422dea62dd63f41fa4428ba32939d9f4b2e07aa0 +size 16752 diff --git a/maze/task1/maps/level7/img/58.png b/maze/task1/maps/level7/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..02e371f23059507b79aed218f44b48a69c117dac --- /dev/null +++ b/maze/task1/maps/level7/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b0fd8713840a8ad05fe156feb3f780849c690a6c134d95cde08c50d9b456c9 +size 16663 diff --git a/maze/task1/maps/level7/img/59.png b/maze/task1/maps/level7/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..90056b5629212ef303d907338d2357e9ef62b3d2 --- /dev/null +++ b/maze/task1/maps/level7/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9393449ce6573c07c34af2f596f0410f91af81d3cf5a7337794eb3c6a5399c06 +size 16872 diff --git a/maze/task1/maps/level7/img/6.png b/maze/task1/maps/level7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..66d79e813d887bd8265bfddacf03188b215bac5f --- /dev/null +++ b/maze/task1/maps/level7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5469d60946312293524181dd95a74d1de8d657503ab46a75e59a4c3b832ed1a1 +size 16797 diff --git a/maze/task1/maps/level7/img/60.png b/maze/task1/maps/level7/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..57af9e19535a082d0f65563fe7833f720e0f0d52 --- /dev/null +++ b/maze/task1/maps/level7/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea18b9a302056c668f8a6263160d1008f17054e0a7135cb9e0662a1b79a3b62 +size 16581 diff --git a/maze/task1/maps/level7/img/61.png b/maze/task1/maps/level7/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..5e8a236c99bb7ef69fdd0715940503d4df405ee2 --- /dev/null +++ b/maze/task1/maps/level7/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e06b532df48c4e5298f4cc1a8b5ab5661c3606a253b2b2a15a65a2905b62357 +size 16617 diff --git a/maze/task1/maps/level7/img/62.png b/maze/task1/maps/level7/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..400e3941816382fde17aea06a60268a54e510de5 --- /dev/null +++ b/maze/task1/maps/level7/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f516fde2e409bc08f010e544723bd6da3b9c27cd2f71ae5a76906e5658398ce +size 16077 diff --git a/maze/task1/maps/level7/img/63.png b/maze/task1/maps/level7/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..858c8bf2770d0451a566c352b19d93fd2ae0d341 --- /dev/null +++ b/maze/task1/maps/level7/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38fbec4ef3ffb058acc583e62cd7245942d3ec5219ebe10c8710dd9199ff66f +size 16268 diff --git a/maze/task1/maps/level7/img/64.png b/maze/task1/maps/level7/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..f80b6dc6bdb1b992810ed2eaae33d091745a9104 --- /dev/null +++ b/maze/task1/maps/level7/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:320f03fb27bec9bcbe07c8b78c7415432ffc315babbf89cb0a08186e09c40397 +size 16890 diff --git a/maze/task1/maps/level7/img/65.png b/maze/task1/maps/level7/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..1c20596b892103cb880122c85f15935652dbf5d4 --- /dev/null +++ b/maze/task1/maps/level7/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d48e3ce502706dac9c03e21f4b574430943f6d75d15d065e478ebc305cdf3fae +size 16491 diff --git a/maze/task1/maps/level7/img/66.png b/maze/task1/maps/level7/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..a133f4a6ceb85fe948d3f12991dfa41728bc8e84 --- /dev/null +++ b/maze/task1/maps/level7/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5ebcf2ddf74abcacc2b81756e8ee0feaf1cdeb2f8e034844f4d3d87222d59c +size 16822 diff --git a/maze/task1/maps/level7/img/67.png b/maze/task1/maps/level7/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..b6c719c890aeb680b47f546b87b67c98511e0f00 --- /dev/null +++ b/maze/task1/maps/level7/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf745f2025b97fbabdd69e04cb00a79b03b90ea2806e8949acdb58ccad4f48c9 +size 16735 diff --git a/maze/task1/maps/level7/img/68.png b/maze/task1/maps/level7/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..841840659a678269122f9dab6659b137cc94affc --- /dev/null +++ b/maze/task1/maps/level7/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:143f1c8575a5b2a85fc42650cba4e937c6b3b4551e98297f53a0b3563d370bc5 +size 16530 diff --git a/maze/task1/maps/level7/img/69.png b/maze/task1/maps/level7/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..dd0653237a4e40ad1dfb6b9f826362c2e6a8ea22 --- /dev/null +++ b/maze/task1/maps/level7/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7200da0a7c8fe6ee4013782da51cd572954b8549ecdab1930a9acd575a539e80 +size 16768 diff --git a/maze/task1/maps/level7/img/7.png b/maze/task1/maps/level7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..116963c2f8bf5e90e9dd096a2b3328c0b70bfa20 --- /dev/null +++ b/maze/task1/maps/level7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a8cb07f3c6652ddb9640b1f8a21c1d001592296677c997d0d509a66a12c1650 +size 16674 diff --git a/maze/task1/maps/level7/img/70.png b/maze/task1/maps/level7/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..e0b1ee3e47fec0a7c54bfbf984597f6dfa732551 --- /dev/null +++ b/maze/task1/maps/level7/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72c0009119566f85d1eea1b54cc602278b774a401b8421c0b7268a0c1b3f8cad +size 16995 diff --git a/maze/task1/maps/level7/img/71.png b/maze/task1/maps/level7/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..1868a96a1557d14f224db3b7cd49a0711a341496 --- /dev/null +++ b/maze/task1/maps/level7/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:034da53d1565feefe76c3d2c24fc3b09e83e773b772bc8ea00213c441365f3c7 +size 16680 diff --git a/maze/task1/maps/level7/img/72.png b/maze/task1/maps/level7/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..ad1d70f6cda452a4f79d0046327f0b08422b3d86 --- /dev/null +++ b/maze/task1/maps/level7/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed1926253a8afc5447a35da3e5f2332c0e59417e170a4b9299353962bf5a483 +size 16819 diff --git a/maze/task1/maps/level7/img/73.png b/maze/task1/maps/level7/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..50e44fb8a9fda2e20637868cbb5c1b60e6e6866e --- /dev/null +++ b/maze/task1/maps/level7/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e66fcecfc60a535e1d0bcd1c85f838fa77874fb16bf83bce21e9960f87b606 +size 16756 diff --git a/maze/task1/maps/level7/img/74.png b/maze/task1/maps/level7/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..7df9312fef274bfe33740dfa84af708959150017 --- /dev/null +++ b/maze/task1/maps/level7/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:833a87046b111b9bdec9ae0c25b7ae066622cc79ae069c0ac361fcf69b6b7ea4 +size 16489 diff --git a/maze/task1/maps/level7/img/75.png b/maze/task1/maps/level7/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..4989ebb79580cbb2fa0433158f8e8faa84efda8b --- /dev/null +++ b/maze/task1/maps/level7/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3236ca2ea281576b4ef76d93f69e065edf34b450e9c8674b0246309b9439aa5 +size 16658 diff --git a/maze/task1/maps/level7/img/76.png b/maze/task1/maps/level7/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..551f3469897a9adf372d56f41e96721d316b4107 --- /dev/null +++ b/maze/task1/maps/level7/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b93679aef2d0d25223d13892e1e60613807de2eafe3d56e0cf49f6962a1b3ae +size 16743 diff --git a/maze/task1/maps/level7/img/77.png b/maze/task1/maps/level7/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..c66ece6920a7bf97b7c2605067bc2ae7f18386d5 --- /dev/null +++ b/maze/task1/maps/level7/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6c9fe34ff4b0d68bfb30f38451784cc76244e75b1165a5679f6422526f14db +size 16872 diff --git a/maze/task1/maps/level7/img/78.png b/maze/task1/maps/level7/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..3b02c61cc2abb691557803d8fdf7a0d7697b8241 --- /dev/null +++ b/maze/task1/maps/level7/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be013715c1bd9a7b6ddc1bed6c285e55df2be8ae2a1c8857c52b0ace07e5c61 +size 16621 diff --git a/maze/task1/maps/level7/img/79.png b/maze/task1/maps/level7/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..5fa53baf816f7b8e103dd4661f5f5e0029cee4e8 --- /dev/null +++ b/maze/task1/maps/level7/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67161d331aaae886cbc17a4666b15058160f6b6a4669aff3e1725abbf4ab6be8 +size 16898 diff --git a/maze/task1/maps/level7/img/8.png b/maze/task1/maps/level7/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a447d845e0ef2af04f86ec54df01bd4d6fb54f03 --- /dev/null +++ b/maze/task1/maps/level7/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b9913c1061446ce44825ade5d167dc1b1e9ce07b0a0e94abbad301b498908a +size 16794 diff --git a/maze/task1/maps/level7/img/80.png b/maze/task1/maps/level7/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..dc4a4883d6ab2e6129ed3b937f21bb4580ef2867 --- /dev/null +++ b/maze/task1/maps/level7/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f11e9549b2d305d13d3284e60e3495e637809f550330e45d91740deba918556a +size 16762 diff --git a/maze/task1/maps/level7/img/81.png b/maze/task1/maps/level7/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..33d61477d033c93bebb84909c416c752710273f4 --- /dev/null +++ b/maze/task1/maps/level7/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3432bb575af6023456157ca10bdb49fcd0634372524ffacc13d2508e0c52efe6 +size 16727 diff --git a/maze/task1/maps/level7/img/82.png b/maze/task1/maps/level7/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..83905c47ea3a7769f6679775457740af0b7b5560 --- /dev/null +++ b/maze/task1/maps/level7/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f56302472c223fa81cdde8a4a55c5e51f4c29a51d6b7229944a9c19cd51d00 +size 16776 diff --git a/maze/task1/maps/level7/img/83.png b/maze/task1/maps/level7/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..f5bcfdb3e103db9681f1f90f47fec2ed99bbe82e --- /dev/null +++ b/maze/task1/maps/level7/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1b57f1ca1242ba0c3378530534c1116c56bec3b3b5378fa8f8cb6057704137 +size 16349 diff --git a/maze/task1/maps/level7/img/84.png b/maze/task1/maps/level7/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..7ca90f0489aeebed435df359c9fa58ee95ea3135 --- /dev/null +++ b/maze/task1/maps/level7/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4859393f198f1f489f520b53d9b5b705925b2ddb3476093ff23ab9349ee88839 +size 16669 diff --git a/maze/task1/maps/level7/img/85.png b/maze/task1/maps/level7/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..95b0848b610e1c8d3255e05b71580e3c51d03996 --- /dev/null +++ b/maze/task1/maps/level7/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:397de1c69661f75dda45894dc9056b8be94dcbc78f3085e810355225d55e98d3 +size 16676 diff --git a/maze/task1/maps/level7/img/86.png b/maze/task1/maps/level7/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..3f95fd89a8034f3eb0220c9e832d7af4e8029467 --- /dev/null +++ b/maze/task1/maps/level7/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48c140e7ac1d323e428cdbd0e34bed9926099d9e2f8ebe98723b0e3716a5c15 +size 16497 diff --git a/maze/task1/maps/level7/img/87.png b/maze/task1/maps/level7/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2bec9ec43c62602802e7350a9fc8161236de9a --- /dev/null +++ b/maze/task1/maps/level7/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dce9e6d11fc579cf74c991a6815e1d4fac05278b156df403b74526911689ba4 +size 16576 diff --git a/maze/task1/maps/level7/img/88.png b/maze/task1/maps/level7/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..e730e9ca1449ae0378d801a24fd9c1e5083e1f56 --- /dev/null +++ b/maze/task1/maps/level7/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e8cae73188e5606b01308956b85c8c5bd239aaa25ea71afceba4c4b84dadc8 +size 16462 diff --git a/maze/task1/maps/level7/img/89.png b/maze/task1/maps/level7/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..cd6030f8a82a30cdd6772e3f2671bfb99b89bf42 --- /dev/null +++ b/maze/task1/maps/level7/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84fe3527fe7b1212bf9c055ce30b8547756daf15c406cf086f52aec8c57cdff9 +size 16424 diff --git a/maze/task1/maps/level7/img/9.png b/maze/task1/maps/level7/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2591e2962129883ef6abec56221886d06326df8d --- /dev/null +++ b/maze/task1/maps/level7/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1132cc606e717c534940fbe4d83c183e0ffddc0ba129b594d38629fa2b69df45 +size 16756 diff --git a/maze/task1/maps/level7/img/90.png b/maze/task1/maps/level7/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..687cd46a81751d1e51365dce26a9aa681df8990b --- /dev/null +++ b/maze/task1/maps/level7/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70360a4a7018e57b86db003fd3ed38cc3cf5fa84f9c09d84ef803e38349592e +size 16838 diff --git a/maze/task1/maps/level7/img/91.png b/maze/task1/maps/level7/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..94c83912c12712b3d276d99e863abc007d698a06 --- /dev/null +++ b/maze/task1/maps/level7/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa08c943ae423f308c2be8af9c57119fbd706363959d5d6e99d4297b78f7dc2 +size 16767 diff --git a/maze/task1/maps/level7/img/92.png b/maze/task1/maps/level7/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..388496e1e3a8f08f9c57dab2aaa82e87390551af --- /dev/null +++ b/maze/task1/maps/level7/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387998ef0d35acea3bb987b9ba304a3a2773c0e441da148c59078906afe6c450 +size 16596 diff --git a/maze/task1/maps/level7/img/93.png b/maze/task1/maps/level7/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..d91197f653db77b185aa9ad480d7e8261e0f87ec --- /dev/null +++ b/maze/task1/maps/level7/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e6c5673437772bb64a5ce27650b12ceb224ad9f1c5b54fd2b7e4d027dfbb73 +size 16667 diff --git a/maze/task1/maps/level7/img/94.png b/maze/task1/maps/level7/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..21919c6cfb70ff669c5a7f5609ee343f5997f40a --- /dev/null +++ b/maze/task1/maps/level7/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b0feec19a96771961b91b0c2f5acea68e06b645840db42ae224737deca708f +size 16326 diff --git a/maze/task1/maps/level7/img/95.png b/maze/task1/maps/level7/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..b524322e2a3ee862dd997bc5a0b94ead60b07e93 --- /dev/null +++ b/maze/task1/maps/level7/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99bfc8bd41c886f9584aa11718fa8198c17f43bddf53fcf62bcc9b0400f31e6c +size 16981 diff --git a/maze/task1/maps/level7/img/96.png b/maze/task1/maps/level7/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..122573c5bddd9c51283efa2e58b8d22e118adb76 --- /dev/null +++ b/maze/task1/maps/level7/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92fc64841efbcbbb9285175b894a83099369ea3dd0a1cf5ddba39dc5e407da6 +size 16602 diff --git a/maze/task1/maps/level7/img/97.png b/maze/task1/maps/level7/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..dbd9018ad0a2645c4f0cb9034bec95808b67a0d1 --- /dev/null +++ b/maze/task1/maps/level7/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1752ba2a5a34ace0b321357a6deb5d8372215a506c76879f764f4da35b16ec4e +size 16601 diff --git a/maze/task1/maps/level7/img/98.png b/maze/task1/maps/level7/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..dacd323edc315cded8e3708ed2f8ebc6251f5d2f --- /dev/null +++ b/maze/task1/maps/level7/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd561f4720c74f628a79348d35fbffde1fdd13f8379c4a20d811dbd4486e378 +size 16807 diff --git a/maze/task1/maps/level7/img/99.png b/maze/task1/maps/level7/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..b74ff81e8037a5e4a46f8d29de4823b8661a98b3 --- /dev/null +++ b/maze/task1/maps/level7/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc879489c92b7c101743b83e9d35d73b902ef1f51414d23caaed7303df7b0d83 +size 16630 diff --git a/maze/task1/maps/level7/pure_text/0.txt b/maze/task1/maps/level7/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe043e71e60b48a501a0874574a277e26075f705 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 7, Column 1; Row 7, Column 2; Row 7, Column 5; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/1.txt b/maze/task1/maps/level7/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..12f3f493751a67071e8b85965e036f7f6462aef7 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 3, Column 7; Row 4, Column 2; Row 4, Column 5; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/10.txt b/maze/task1/maps/level7/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b0fc7e8d858e314d33ab9b5a0ce7a38a1fbbaef --- /dev/null +++ b/maze/task1/maps/level7/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 4; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/11.txt b/maze/task1/maps/level7/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ef7c9d34d0960052c6462255626aed210cfb525 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/12.txt b/maze/task1/maps/level7/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..16aa0451979bcd8114d98c6c72ab9b3b62d9a959 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 7; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 3; Row 4, Column 7; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/13.txt b/maze/task1/maps/level7/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..3af64b8d511684143ceac0a1f0b2a57f1b608987 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/14.txt b/maze/task1/maps/level7/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd5cc51a2f82bc5ad3573bc24c2e2585c8f2de8d --- /dev/null +++ b/maze/task1/maps/level7/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 3; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/15.txt b/maze/task1/maps/level7/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..749db99ca29ed7d61ef0bed1764a886a3cedc947 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/16.txt b/maze/task1/maps/level7/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f2001541d46dbe5fbfff8fccb20a495d675a001 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 6; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 2; Row 5, Column 5; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/17.txt b/maze/task1/maps/level7/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ec685e0ba54f741313552d29de1820b53f54fc3 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 3; Row 4, Column 5; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/18.txt b/maze/task1/maps/level7/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6b0b0c9d8546c5f1e057547ae5c9600a09414ed --- /dev/null +++ b/maze/task1/maps/level7/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 7; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/19.txt b/maze/task1/maps/level7/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..389727116296e4823129f07120d577585b85dd5e --- /dev/null +++ b/maze/task1/maps/level7/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 5; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/2.txt b/maze/task1/maps/level7/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..815c8915c508580ccc46504ec05773cd15cb17e6 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 5; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/20.txt b/maze/task1/maps/level7/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..e37709476e9cedd9424692566bc8865de14bef60 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 5, Column 7; Row 6, Column 2; Row 6, Column 7; Row 7, Column 1; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/21.txt b/maze/task1/maps/level7/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ca87397d269333530359f943c79c37691819533 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 6; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/22.txt b/maze/task1/maps/level7/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..131f1a4211215ea2d614203055765b80e588a631 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 2, Column 7; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 5; Row 7, Column 1; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/23.txt b/maze/task1/maps/level7/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..16cefc8f72ff0fc66d707e040c56561a9243599b --- /dev/null +++ b/maze/task1/maps/level7/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 7, Column 4; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/24.txt b/maze/task1/maps/level7/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f7bf5a4c9adaf96d5bb853414112c8814c005c0 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/25.txt b/maze/task1/maps/level7/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d07fb6b270ac2b58c738444cd26ad5a6eb430c8 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/26.txt b/maze/task1/maps/level7/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..85e7e5ac5f8b5ca5befac47a727c3aadd4daeb62 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 7; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 7; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/27.txt b/maze/task1/maps/level7/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..7925eea162e87a7cbb908746320455cbb664d79e --- /dev/null +++ b/maze/task1/maps/level7/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 7; Row 4, Column 1; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 4; Row 7, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/28.txt b/maze/task1/maps/level7/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bfb338cfb712316a8d8fc2b516fb2136736b7b3 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 7; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/29.txt b/maze/task1/maps/level7/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..873fc585f95111990bbb6fa22949bf0bf67cfb54 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/3.txt b/maze/task1/maps/level7/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..912a68dac6dec0997629c3f91dc3e470c7e0cccb --- /dev/null +++ b/maze/task1/maps/level7/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/30.txt b/maze/task1/maps/level7/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..5051b158b3391a7e053206eb9ac87ef98bdedee6 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 5; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/31.txt b/maze/task1/maps/level7/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb0fb30a527acbfa53bb2aa1df46ae4e6256c1f4 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 5, Column 7; Row 6, Column 3; Row 6, Column 6; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/32.txt b/maze/task1/maps/level7/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..2da3f5679bbcb3b627f37e7ee060d3bba717acb3 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 4; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/33.txt b/maze/task1/maps/level7/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..810810527f7eab62a5f97e4c2f17f0fd679d2eb7 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/34.txt b/maze/task1/maps/level7/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed1f9d1fe862a3c23a1792ece095f29f2676054d --- /dev/null +++ b/maze/task1/maps/level7/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 7; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 3; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/35.txt b/maze/task1/maps/level7/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb88ef0d09f6182d9d505dac770f2c68d67d8a13 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/36.txt b/maze/task1/maps/level7/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..930e9ae86d2ea29d9a6dd1f9189499e77e3c1073 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/37.txt b/maze/task1/maps/level7/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fbab5bc8b296b2d453ac7c690cedddecbaffe44 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 6; Row 7, Column 3; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/38.txt b/maze/task1/maps/level7/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3ad2c33bd70812471e87a39e0c95f430a80b5c6 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/39.txt b/maze/task1/maps/level7/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..22c4578aee36c43f9327bbd970f8d18af04765b8 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/4.txt b/maze/task1/maps/level7/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c5baf7feb8f43215335ba13edd8c9bbb3e79338 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/40.txt b/maze/task1/maps/level7/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..39629334879ad69faa46a7c2d62d73c343be8a58 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 5; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/41.txt b/maze/task1/maps/level7/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..5744c810b268b846e2d19988b93cda62ceaaf728 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 7; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 6, Column 7; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/42.txt b/maze/task1/maps/level7/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..462191b772e54e8245777f2d05793701fe5eb745 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 7; Row 6, Column 4; Row 6, Column 7; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/43.txt b/maze/task1/maps/level7/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..33923af05ae589d5d88eeb6ec6967f9bbc6ba7b9 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 4; Row 3, Column 1; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/44.txt b/maze/task1/maps/level7/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9fee5b3535c5945d068746df35b16f8680cab9f --- /dev/null +++ b/maze/task1/maps/level7/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/45.txt b/maze/task1/maps/level7/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b19cf91eb2d91ec178f5a06c3db1a7495584ef1 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 3, Column 2; Row 3, Column 7; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/46.txt b/maze/task1/maps/level7/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc26ec3c007414ed44f295c3a51f7ea30efc6af5 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 5; Row 4, Column 6; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; Row 6, Column 7; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/47.txt b/maze/task1/maps/level7/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b88753a20eb6fd1ec6783e87423c5c1527c9511 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/48.txt b/maze/task1/maps/level7/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..a59065b78ba60c6e272558b0e68116785ae42efb --- /dev/null +++ b/maze/task1/maps/level7/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 3; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/49.txt b/maze/task1/maps/level7/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f77a1728267daf8497d317b7f6981462f7b199f --- /dev/null +++ b/maze/task1/maps/level7/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 7; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/5.txt b/maze/task1/maps/level7/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..54d7b004be687872232ee3cc8ea0df78efc5fd14 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 7, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/50.txt b/maze/task1/maps/level7/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..9389a7c2ba0e68abfd19d481299b56c0f2e09f4a --- /dev/null +++ b/maze/task1/maps/level7/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/51.txt b/maze/task1/maps/level7/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6c8d78174bcd2a3a9fc33245044688292fcaa36 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 4; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 2; Row 7, Column 6; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/52.txt b/maze/task1/maps/level7/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..493325ce2471185963f2715e30e9b2c08aa42ba7 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/53.txt b/maze/task1/maps/level7/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d634f20bdff5cf21d28a01b644891d6b2b12bdb5 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/54.txt b/maze/task1/maps/level7/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..941ff6e721c13e70c39d6db351237eaf09af1137 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 4; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 7; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/55.txt b/maze/task1/maps/level7/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f912f53d7de57e0b1d7bbd76cd2b5dbb7db47d0 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 7; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 4; Row 6, Column 7; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/56.txt b/maze/task1/maps/level7/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f744cb43caeeeebe3746d63e341ec9e39bc58f7 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 3; Row 5, Column 5; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 7, Column 1; Row 7, Column 5; +The goal is at: Row 7, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/57.txt b/maze/task1/maps/level7/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f795a6f141d58644d315f815a3a96641007efbb --- /dev/null +++ b/maze/task1/maps/level7/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/58.txt b/maze/task1/maps/level7/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..df1b8dc36f5dc2819e6c30f23d2148974a58f710 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/59.txt b/maze/task1/maps/level7/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1ed9cef254b4113b76a4cb55489f0f3bc28c87f --- /dev/null +++ b/maze/task1/maps/level7/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/6.txt b/maze/task1/maps/level7/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..609848c97b86f7d243c1cf9ba6765ec7c3757991 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/60.txt b/maze/task1/maps/level7/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab38de1e211d712225ae4e7c67098b77444bd962 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 5, Column 2; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 7, Column 1; Row 7, Column 2; Row 7, Column 5; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/61.txt b/maze/task1/maps/level7/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9c20d86339262d9eedc7c192def03c001dc6b11 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 2; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/62.txt b/maze/task1/maps/level7/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d4158939d4368735cc65f603e2e6234c3f15eec --- /dev/null +++ b/maze/task1/maps/level7/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/63.txt b/maze/task1/maps/level7/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6b9a18602e96cc49ffd6eb4c485106fd733bfc1 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 3; Row 4, Column 7; Row 5, Column 4; Row 5, Column 6; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 6; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/64.txt b/maze/task1/maps/level7/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..c40effb6fb64a32c1169ce5d379195e723c3550e --- /dev/null +++ b/maze/task1/maps/level7/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 2; Row 6, Column 4; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/65.txt b/maze/task1/maps/level7/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ea688d268c633714ab78a24e9eff4320a3786e2 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 3, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/66.txt b/maze/task1/maps/level7/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..8edd2537bc702d69290fec6c5edddbded9dffdb5 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 3; Row 6, Column 4; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/67.txt b/maze/task1/maps/level7/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce1ece21af892470be1fe2238c07310dec8bcc3b --- /dev/null +++ b/maze/task1/maps/level7/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 7, Column 2; Row 7, Column 7; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/68.txt b/maze/task1/maps/level7/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..8642c4535b3f51318937742b67c990e43fce238d --- /dev/null +++ b/maze/task1/maps/level7/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 4, Column 7; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/69.txt b/maze/task1/maps/level7/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cd604594230897cbbd2b213e080ee68da3e1773 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 4; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/7.txt b/maze/task1/maps/level7/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..af5e65b71bfb7a647101b7c1d9639ea8f88dadf8 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 1; Row 6, Column 4; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/70.txt b/maze/task1/maps/level7/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f91537d470b2f7d6fe4acd7d4fa74dfd1977711 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/71.txt b/maze/task1/maps/level7/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f3c7fabb74207e11f8e4a785f0570632a629033 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 7; Row 6, Column 2; Row 6, Column 5; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/72.txt b/maze/task1/maps/level7/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fb6c59441f2224bd26e613fcf83a4b9bec50568 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 7; Row 2, Column 1; Row 2, Column 5; Row 2, Column 7; Row 3, Column 3; Row 3, Column 6; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/73.txt b/maze/task1/maps/level7/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2d93178ca1821ba0194148f723e275dc7e7f2f5 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 7, Column 2; Row 7, Column 3; Row 7, Column 7; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/74.txt b/maze/task1/maps/level7/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f60e426f110c940f3502149b8011f3f1522599a --- /dev/null +++ b/maze/task1/maps/level7/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/75.txt b/maze/task1/maps/level7/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..81df0459c88774a49b7555194fe4012802d646b5 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 6; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 6; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/76.txt b/maze/task1/maps/level7/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1393d96df1d4b4b24f5f3802c8b947a28a722cc --- /dev/null +++ b/maze/task1/maps/level7/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 7; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/77.txt b/maze/task1/maps/level7/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc65da3526d960029aa7487a76db880ef9223425 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 7; Row 4, Column 2; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; Row 7, Column 1; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/78.txt b/maze/task1/maps/level7/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f69bd40c64b9ac77b6fde57453dd7c855972336 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 4, Column 7; Row 5, Column 2; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/79.txt b/maze/task1/maps/level7/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..11c13e1ba734b91a385f0c3a71ee27fb7c664de6 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 7; Row 7, Column 2; Row 7, Column 5; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/8.txt b/maze/task1/maps/level7/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..1903bcc03739610b0bf8a0eaa0f44a13c7037dde --- /dev/null +++ b/maze/task1/maps/level7/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 4, Column 7; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/80.txt b/maze/task1/maps/level7/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..77e8679206a32f4decb8238149b5efe704d7b56f --- /dev/null +++ b/maze/task1/maps/level7/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 3; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 5, Column 7; Row 6, Column 3; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/81.txt b/maze/task1/maps/level7/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..efde7411783c5bf021d71a780824229034945680 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/82.txt b/maze/task1/maps/level7/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..94e8e966dbff4e012339dd1936b49fba556a7e72 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; Row 5, Column 4; Row 6, Column 1; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/83.txt b/maze/task1/maps/level7/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..b34f9edb36ea30236dad3cb2202b920ba8b7be05 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/84.txt b/maze/task1/maps/level7/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..e945da4be5ca24ba16c2a3dc3dd2b22b1fc86d70 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/85.txt b/maze/task1/maps/level7/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..2243987b03166b01bc269357452f1f5f68feedb0 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 4; Row 2, Column 7; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/86.txt b/maze/task1/maps/level7/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7321f13cecfeb746ebccbbd329ca35f0140b121 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 5; Row 7, Column 1; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/87.txt b/maze/task1/maps/level7/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a4de06799120c26fb6846f4d2c0ed5c54e96799 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 7, Column 1; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 7, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/88.txt b/maze/task1/maps/level7/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ca476e073f91fb687981d542455622114bc1b7e --- /dev/null +++ b/maze/task1/maps/level7/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 4; Row 6, Column 7; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/89.txt b/maze/task1/maps/level7/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..e907c783eb371d7fddd93d4d8de9b13b8864433b --- /dev/null +++ b/maze/task1/maps/level7/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 2, Column 5; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 5; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 2; Row 7, Column 3; +The goal is at: Row 7, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/9.txt b/maze/task1/maps/level7/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..94e2dae0b47d2a96dc3aa48b923ef6a7db3bd018 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 3; Row 6, Column 4; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/90.txt b/maze/task1/maps/level7/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1ed834a4721cc422cfaaa8505011c92cc20248d --- /dev/null +++ b/maze/task1/maps/level7/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 7; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/91.txt b/maze/task1/maps/level7/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c0ae11a4b4b5628503104c3ff2dffbfe14709a0 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 5; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/92.txt b/maze/task1/maps/level7/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..e369d50c448fd480228aacacc8dfc006f65e767e --- /dev/null +++ b/maze/task1/maps/level7/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 2, Column 7; Row 3, Column 2; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 7; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/93.txt b/maze/task1/maps/level7/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..213fb1a2347e3a8d9e25587462623815bf2ad706 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/94.txt b/maze/task1/maps/level7/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..efab2c1294aa5eb995f80e823efb8ab2e4e44c87 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 6; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 2; Row 7, Column 7; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/95.txt b/maze/task1/maps/level7/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..20849d2508e0c22312c96226dacf440994b41a44 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/96.txt b/maze/task1/maps/level7/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..32865e05b74f419c0c6bfa7c50409001c2fd9ef9 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/97.txt b/maze/task1/maps/level7/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..017c4d761ec522f2089ae3c2e2e2536f056a53d3 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 7; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/98.txt b/maze/task1/maps/level7/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6ca98dd4f25df2e8650b4d03745c59f2aabcc24 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 5; Row 5, Column 7; Row 6, Column 5; Row 6, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level7/pure_text/99.txt b/maze/task1/maps/level7/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..122506ac46cef1613410304ddb1fa31e8a513f34 --- /dev/null +++ b/maze/task1/maps/level7/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 2, Column 7; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level7/question/0.txt b/maze/task1/maps/level7/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..8068d8815974b06292880ebb1b040361e0f386b4 --- /dev/null +++ b/maze/task1/maps/level7/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/1.txt b/maze/task1/maps/level7/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e97ad2f10d80069f226ce7476c70a0fdfae4391 --- /dev/null +++ b/maze/task1/maps/level7/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/10.txt b/maze/task1/maps/level7/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level7/question/10.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/11.txt b/maze/task1/maps/level7/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..fefad67cc5a0d24b2caa6c0d6037874ea5a69a9c --- /dev/null +++ b/maze/task1/maps/level7/question/11.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/12.txt b/maze/task1/maps/level7/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..1771d9d8fa2e332d820398e601ab025fb178d85a --- /dev/null +++ b/maze/task1/maps/level7/question/12.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/13.txt b/maze/task1/maps/level7/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level7/question/13.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/14.txt b/maze/task1/maps/level7/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4cf4f87f8bc39eb8469193b431d1f19d3a11b2c --- /dev/null +++ b/maze/task1/maps/level7/question/14.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/15.txt b/maze/task1/maps/level7/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b67fd756fa02b150e0516d1e29a08097f051cf0 --- /dev/null +++ b/maze/task1/maps/level7/question/15.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/16.txt b/maze/task1/maps/level7/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level7/question/16.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/17.txt b/maze/task1/maps/level7/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef3d19c783d53d1fb484bd1afa107ecf006dfc52 --- /dev/null +++ b/maze/task1/maps/level7/question/17.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/18.txt b/maze/task1/maps/level7/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level7/question/18.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/19.txt b/maze/task1/maps/level7/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level7/question/19.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/2.txt b/maze/task1/maps/level7/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level7/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/20.txt b/maze/task1/maps/level7/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9aede805af915baa2df0e8e796da4fc5847723a --- /dev/null +++ b/maze/task1/maps/level7/question/20.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/21.txt b/maze/task1/maps/level7/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6ffc2d4bb6aec39a38132cf821ae9333ccff6fc --- /dev/null +++ b/maze/task1/maps/level7/question/21.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/22.txt b/maze/task1/maps/level7/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level7/question/22.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/23.txt b/maze/task1/maps/level7/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..7001659d1fc0834719cfd044003d44426ad21617 --- /dev/null +++ b/maze/task1/maps/level7/question/23.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/24.txt b/maze/task1/maps/level7/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level7/question/24.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/25.txt b/maze/task1/maps/level7/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..16d4721f5c5658e494dfa10c15bc1258749faa01 --- /dev/null +++ b/maze/task1/maps/level7/question/25.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/26.txt b/maze/task1/maps/level7/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level7/question/26.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/27.txt b/maze/task1/maps/level7/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e436e3f18b95db221dc2583f87d74d4613830c5 --- /dev/null +++ b/maze/task1/maps/level7/question/27.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/28.txt b/maze/task1/maps/level7/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level7/question/28.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/29.txt b/maze/task1/maps/level7/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level7/question/29.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/3.txt b/maze/task1/maps/level7/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level7/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/30.txt b/maze/task1/maps/level7/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level7/question/30.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/31.txt b/maze/task1/maps/level7/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level7/question/31.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/32.txt b/maze/task1/maps/level7/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f65f74cd1a3b6f8be9bc8ddd5b39add42a1fc9c --- /dev/null +++ b/maze/task1/maps/level7/question/32.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/33.txt b/maze/task1/maps/level7/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f65f74cd1a3b6f8be9bc8ddd5b39add42a1fc9c --- /dev/null +++ b/maze/task1/maps/level7/question/33.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/34.txt b/maze/task1/maps/level7/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level7/question/34.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/35.txt b/maze/task1/maps/level7/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6ffc2d4bb6aec39a38132cf821ae9333ccff6fc --- /dev/null +++ b/maze/task1/maps/level7/question/35.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/36.txt b/maze/task1/maps/level7/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a5a36b3619d5b51fb41a9ee26acfb51a369406 --- /dev/null +++ b/maze/task1/maps/level7/question/36.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/37.txt b/maze/task1/maps/level7/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level7/question/37.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/38.txt b/maze/task1/maps/level7/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..7001659d1fc0834719cfd044003d44426ad21617 --- /dev/null +++ b/maze/task1/maps/level7/question/38.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/39.txt b/maze/task1/maps/level7/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..1771d9d8fa2e332d820398e601ab025fb178d85a --- /dev/null +++ b/maze/task1/maps/level7/question/39.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/4.txt b/maze/task1/maps/level7/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level7/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/40.txt b/maze/task1/maps/level7/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..7001659d1fc0834719cfd044003d44426ad21617 --- /dev/null +++ b/maze/task1/maps/level7/question/40.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/41.txt b/maze/task1/maps/level7/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level7/question/41.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/42.txt b/maze/task1/maps/level7/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b9c5034d016df09ce1a08dc6c749e79603290f5 --- /dev/null +++ b/maze/task1/maps/level7/question/42.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/43.txt b/maze/task1/maps/level7/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..fefad67cc5a0d24b2caa6c0d6037874ea5a69a9c --- /dev/null +++ b/maze/task1/maps/level7/question/43.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/44.txt b/maze/task1/maps/level7/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level7/question/44.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/45.txt b/maze/task1/maps/level7/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level7/question/45.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/46.txt b/maze/task1/maps/level7/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level7/question/46.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/47.txt b/maze/task1/maps/level7/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e436e3f18b95db221dc2583f87d74d4613830c5 --- /dev/null +++ b/maze/task1/maps/level7/question/47.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/48.txt b/maze/task1/maps/level7/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b67fd756fa02b150e0516d1e29a08097f051cf0 --- /dev/null +++ b/maze/task1/maps/level7/question/48.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/49.txt b/maze/task1/maps/level7/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level7/question/49.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/5.txt b/maze/task1/maps/level7/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level7/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/50.txt b/maze/task1/maps/level7/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level7/question/50.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/51.txt b/maze/task1/maps/level7/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2622128d2b60ef34b70d7bfd4a265ea8dac6b550 --- /dev/null +++ b/maze/task1/maps/level7/question/51.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/52.txt b/maze/task1/maps/level7/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level7/question/52.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/53.txt b/maze/task1/maps/level7/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..c077a737efb1e8a195950c091c121f62d2e3ca27 --- /dev/null +++ b/maze/task1/maps/level7/question/53.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/54.txt b/maze/task1/maps/level7/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level7/question/54.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/55.txt b/maze/task1/maps/level7/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level7/question/55.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/56.txt b/maze/task1/maps/level7/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level7/question/56.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/57.txt b/maze/task1/maps/level7/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef3d19c783d53d1fb484bd1afa107ecf006dfc52 --- /dev/null +++ b/maze/task1/maps/level7/question/57.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/58.txt b/maze/task1/maps/level7/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e97ad2f10d80069f226ce7476c70a0fdfae4391 --- /dev/null +++ b/maze/task1/maps/level7/question/58.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/59.txt b/maze/task1/maps/level7/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..df501fedfd36d0e931750c80355b4f94da3839d3 --- /dev/null +++ b/maze/task1/maps/level7/question/59.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/6.txt b/maze/task1/maps/level7/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level7/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/60.txt b/maze/task1/maps/level7/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d74ca0764b8d54f74c3434186314472f7a4bdda --- /dev/null +++ b/maze/task1/maps/level7/question/60.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/61.txt b/maze/task1/maps/level7/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e49afba9e1af330a81d3349999e4dea3cb0f9da --- /dev/null +++ b/maze/task1/maps/level7/question/61.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/62.txt b/maze/task1/maps/level7/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level7/question/62.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/63.txt b/maze/task1/maps/level7/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e97ad2f10d80069f226ce7476c70a0fdfae4391 --- /dev/null +++ b/maze/task1/maps/level7/question/63.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/64.txt b/maze/task1/maps/level7/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4cf4f87f8bc39eb8469193b431d1f19d3a11b2c --- /dev/null +++ b/maze/task1/maps/level7/question/64.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/65.txt b/maze/task1/maps/level7/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef3d19c783d53d1fb484bd1afa107ecf006dfc52 --- /dev/null +++ b/maze/task1/maps/level7/question/65.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/66.txt b/maze/task1/maps/level7/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level7/question/66.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/67.txt b/maze/task1/maps/level7/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2622128d2b60ef34b70d7bfd4a265ea8dac6b550 --- /dev/null +++ b/maze/task1/maps/level7/question/67.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/68.txt b/maze/task1/maps/level7/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level7/question/68.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/69.txt b/maze/task1/maps/level7/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level7/question/69.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/7.txt b/maze/task1/maps/level7/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dbd28bd5e1938f874803271205f0a0294170c7d --- /dev/null +++ b/maze/task1/maps/level7/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/70.txt b/maze/task1/maps/level7/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level7/question/70.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/71.txt b/maze/task1/maps/level7/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level7/question/71.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/72.txt b/maze/task1/maps/level7/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level7/question/72.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/73.txt b/maze/task1/maps/level7/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level7/question/73.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/74.txt b/maze/task1/maps/level7/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level7/question/74.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/75.txt b/maze/task1/maps/level7/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..8068d8815974b06292880ebb1b040361e0f386b4 --- /dev/null +++ b/maze/task1/maps/level7/question/75.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/76.txt b/maze/task1/maps/level7/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level7/question/76.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/77.txt b/maze/task1/maps/level7/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ebfbfdb38e2b5c36bde6d0d9786d921ea3b55fa --- /dev/null +++ b/maze/task1/maps/level7/question/77.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/78.txt b/maze/task1/maps/level7/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e97ad2f10d80069f226ce7476c70a0fdfae4391 --- /dev/null +++ b/maze/task1/maps/level7/question/78.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/79.txt b/maze/task1/maps/level7/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..fefad67cc5a0d24b2caa6c0d6037874ea5a69a9c --- /dev/null +++ b/maze/task1/maps/level7/question/79.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/8.txt b/maze/task1/maps/level7/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f65f74cd1a3b6f8be9bc8ddd5b39add42a1fc9c --- /dev/null +++ b/maze/task1/maps/level7/question/8.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/80.txt b/maze/task1/maps/level7/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..df501fedfd36d0e931750c80355b4f94da3839d3 --- /dev/null +++ b/maze/task1/maps/level7/question/80.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/81.txt b/maze/task1/maps/level7/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level7/question/81.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/82.txt b/maze/task1/maps/level7/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level7/question/82.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/83.txt b/maze/task1/maps/level7/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level7/question/83.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/84.txt b/maze/task1/maps/level7/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..7001659d1fc0834719cfd044003d44426ad21617 --- /dev/null +++ b/maze/task1/maps/level7/question/84.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/85.txt b/maze/task1/maps/level7/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6ffc2d4bb6aec39a38132cf821ae9333ccff6fc --- /dev/null +++ b/maze/task1/maps/level7/question/85.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/86.txt b/maze/task1/maps/level7/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..0eef4d41ed07af81c079478081acbfe11b96da7a --- /dev/null +++ b/maze/task1/maps/level7/question/86.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/87.txt b/maze/task1/maps/level7/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ebfbfdb38e2b5c36bde6d0d9786d921ea3b55fa --- /dev/null +++ b/maze/task1/maps/level7/question/87.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/88.txt b/maze/task1/maps/level7/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dbd28bd5e1938f874803271205f0a0294170c7d --- /dev/null +++ b/maze/task1/maps/level7/question/88.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/89.txt b/maze/task1/maps/level7/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level7/question/89.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/9.txt b/maze/task1/maps/level7/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..8068d8815974b06292880ebb1b040361e0f386b4 --- /dev/null +++ b/maze/task1/maps/level7/question/9.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/90.txt b/maze/task1/maps/level7/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level7/question/90.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/91.txt b/maze/task1/maps/level7/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level7/question/91.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/92.txt b/maze/task1/maps/level7/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..812cbc96f7148ebcfa762a9a2de1b7e42ead798f --- /dev/null +++ b/maze/task1/maps/level7/question/92.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/93.txt b/maze/task1/maps/level7/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level7/question/93.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/94.txt b/maze/task1/maps/level7/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef3d19c783d53d1fb484bd1afa107ecf006dfc52 --- /dev/null +++ b/maze/task1/maps/level7/question/94.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/95.txt b/maze/task1/maps/level7/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6ffc2d4bb6aec39a38132cf821ae9333ccff6fc --- /dev/null +++ b/maze/task1/maps/level7/question/95.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/96.txt b/maze/task1/maps/level7/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e49afba9e1af330a81d3349999e4dea3cb0f9da --- /dev/null +++ b/maze/task1/maps/level7/question/96.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/97.txt b/maze/task1/maps/level7/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..e133c21dab2158efbba6d6cbe7fbae5b82d7e8cb --- /dev/null +++ b/maze/task1/maps/level7/question/97.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/98.txt b/maze/task1/maps/level7/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a5a36b3619d5b51fb41a9ee26acfb51a369406 --- /dev/null +++ b/maze/task1/maps/level7/question/98.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/question/99.txt b/maze/task1/maps/level7/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e56f456b7f34e133461f084410c14f551aaa5602 --- /dev/null +++ b/maze/task1/maps/level7/question/99.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level7/table/0.txt b/maze/task1/maps/level7/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2a80245dd1703a9d23e5f06d1e7506c9be614ee --- /dev/null +++ b/maze/task1/maps/level7/table/0.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | # | # | # | +| Row 3 | # | # | _ | _ | # | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | # | # | _ | * | # | +| Row 6 | # | # | # | # | _ | _ | _ | +| Row 7 | # | # | _ | _ | # | _ | @ | diff --git a/maze/task1/maps/level7/table/1.txt b/maze/task1/maps/level7/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c59569fe42e7beb150e8648c8cff6f9b9b475b04 --- /dev/null +++ b/maze/task1/maps/level7/table/1.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | _ | # | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | # | _ | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | # | # | _ | +| Row 6 | _ | # | # | # | # | _ | _ | +| Row 7 | * | # | # | # | # | _ | _ | diff --git a/maze/task1/maps/level7/table/10.txt b/maze/task1/maps/level7/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a5fba10546a031a0df46c831cfa44a5b6e999bd --- /dev/null +++ b/maze/task1/maps/level7/table/10.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | _ | _ | # | +| Row 2 | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | # | # | # | _ | # | # | +| Row 4 | _ | # | # | _ | _ | # | _ | +| Row 5 | _ | # | _ | # | # | _ | # | +| Row 6 | * | _ | _ | # | _ | @ | # | +| Row 7 | _ | _ | # | # | # | # | # | diff --git a/maze/task1/maps/level7/table/11.txt b/maze/task1/maps/level7/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..e50722d07154881c25ac6387d26432fd6f64be4f --- /dev/null +++ b/maze/task1/maps/level7/table/11.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | @ | _ | # | _ | # | +| Row 2 | # | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | # | _ | _ | _ | # | +| Row 4 | # | # | # | # | # | _ | _ | +| Row 5 | * | # | # | _ | # | # | _ | +| Row 6 | _ | # | _ | _ | _ | # | _ | +| Row 7 | # | _ | # | # | # | # | _ | diff --git a/maze/task1/maps/level7/table/12.txt b/maze/task1/maps/level7/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6841ca7c84a694f2300fe3d1e5c288c47347309 --- /dev/null +++ b/maze/task1/maps/level7/table/12.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | * | _ | # | +| Row 2 | _ | # | _ | # | # | # | # | +| Row 3 | _ | _ | # | # | # | # | # | +| Row 4 | # | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | # | _ | _ | _ | # | +| Row 7 | # | _ | # | _ | # | # | @ | diff --git a/maze/task1/maps/level7/table/13.txt b/maze/task1/maps/level7/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..8317c7ff400a68a33ed13eec8df1483217e284ab --- /dev/null +++ b/maze/task1/maps/level7/table/13.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | _ | _ | _ | +| Row 2 | _ | # | # | # | _ | # | # | +| Row 3 | # | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | _ | _ | # | _ | # | +| Row 5 | # | # | # | # | _ | _ | _ | +| Row 6 | # | @ | # | # | * | _ | _ | +| Row 7 | _ | # | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level7/table/14.txt b/maze/task1/maps/level7/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..d00b6200de6c959117cadbc6e48cdd7289b49f62 --- /dev/null +++ b/maze/task1/maps/level7/table/14.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | _ | # | _ | +| Row 2 | _ | _ | # | @ | _ | _ | # | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | _ | # | +| Row 5 | # | # | _ | # | _ | # | _ | +| Row 6 | # | _ | # | _ | * | # | # | +| Row 7 | _ | # | # | # | _ | # | _ | diff --git a/maze/task1/maps/level7/table/15.txt b/maze/task1/maps/level7/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..94ee41e926a8a99e3e99ec6adecf236448891930 --- /dev/null +++ b/maze/task1/maps/level7/table/15.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | # | _ | * | +| Row 2 | # | _ | _ | # | # | # | _ | +| Row 3 | _ | # | # | # | _ | # | # | +| Row 4 | # | _ | _ | _ | # | # | _ | +| Row 5 | _ | # | _ | _ | _ | _ | @ | +| Row 6 | # | # | # | _ | # | _ | # | +| Row 7 | _ | # | # | # | # | _ | _ | diff --git a/maze/task1/maps/level7/table/16.txt b/maze/task1/maps/level7/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b6b9db75df7c1c4ea14294ef2943b7745132fdd --- /dev/null +++ b/maze/task1/maps/level7/table/16.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | @ | _ | # | # | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | # | # | _ | _ | +| Row 4 | # | # | _ | # | _ | # | * | +| Row 5 | _ | # | _ | _ | # | _ | # | +| Row 6 | _ | # | # | # | # | # | _ | +| Row 7 | # | # | # | _ | # | # | # | diff --git a/maze/task1/maps/level7/table/17.txt b/maze/task1/maps/level7/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d3716b7693b6df8853853ecb72894a315d22f4d --- /dev/null +++ b/maze/task1/maps/level7/table/17.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | * | # | # | +| Row 2 | _ | # | _ | _ | # | _ | # | +| Row 3 | _ | # | # | # | _ | # | # | +| Row 4 | _ | _ | # | _ | # | _ | # | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | # | # | # | @ | # | _ | _ | +| Row 7 | # | # | # | _ | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/18.txt b/maze/task1/maps/level7/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..49c51211444c74ac5f1350a9e320f9c11ee97f8c --- /dev/null +++ b/maze/task1/maps/level7/table/18.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | _ | # | _ | +| Row 2 | * | # | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | # | _ | +| Row 4 | # | _ | # | # | # | _ | _ | +| Row 5 | # | # | # | # | _ | _ | # | +| Row 6 | _ | # | # | # | _ | _ | # | +| Row 7 | # | _ | # | _ | # | _ | @ | diff --git a/maze/task1/maps/level7/table/19.txt b/maze/task1/maps/level7/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..1934fe61510a003226c490644523d3f85ee89bfa --- /dev/null +++ b/maze/task1/maps/level7/table/19.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | # | _ | # | +| Row 2 | _ | # | # | _ | # | # | _ | +| Row 3 | # | # | # | # | _ | # | * | +| Row 4 | # | _ | _ | # | _ | # | # | +| Row 5 | _ | # | # | # | # | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | # | _ | _ | _ | # | _ | _ | diff --git a/maze/task1/maps/level7/table/2.txt b/maze/task1/maps/level7/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e596be3fc8cab5dc02818a344b882077f2eaac8b --- /dev/null +++ b/maze/task1/maps/level7/table/2.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | _ | # | # | +| Row 2 | _ | _ | # | _ | _ | @ | # | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | # | # | # | # | +| Row 5 | # | _ | _ | _ | _ | # | # | +| Row 6 | _ | # | # | _ | # | _ | # | +| Row 7 | # | # | * | _ | # | _ | _ | diff --git a/maze/task1/maps/level7/table/20.txt b/maze/task1/maps/level7/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..817bc50cda7a9e4a3bae823bbf84a45335747be6 --- /dev/null +++ b/maze/task1/maps/level7/table/20.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | # | _ | +| Row 2 | _ | # | @ | # | # | _ | # | +| Row 3 | # | _ | # | _ | _ | _ | _ | +| Row 4 | # | # | _ | # | # | _ | _ | +| Row 5 | # | # | _ | _ | # | _ | # | +| Row 6 | _ | # | * | _ | _ | _ | # | +| Row 7 | # | _ | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level7/table/21.txt b/maze/task1/maps/level7/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..893200c50d9c48464b840d24310897ed2f3bdbbb --- /dev/null +++ b/maze/task1/maps/level7/table/21.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | # | +| Row 3 | # | # | _ | # | # | # | _ | +| Row 4 | _ | _ | # | # | # | _ | # | +| Row 5 | # | _ | _ | # | * | # | # | +| Row 6 | # | # | # | # | _ | # | @ | +| Row 7 | # | # | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level7/table/22.txt b/maze/task1/maps/level7/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9f9d390bb3b30b3fe16f5a6fdd0512585fc0eee --- /dev/null +++ b/maze/task1/maps/level7/table/22.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | # | # | # | # | +| Row 2 | # | # | # | _ | _ | # | # | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | @ | # | # | # | # | _ | # | +| Row 5 | _ | # | _ | _ | # | # | _ | +| Row 6 | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | * | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/23.txt b/maze/task1/maps/level7/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..1afc27974d4333f5ff2e8b066455d54b194b2727 --- /dev/null +++ b/maze/task1/maps/level7/table/23.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | _ | _ | +| Row 2 | # | _ | # | # | _ | _ | _ | +| Row 3 | @ | # | _ | # | # | # | _ | +| Row 4 | # | _ | # | # | _ | # | # | +| Row 5 | # | # | _ | # | # | _ | # | +| Row 6 | # | # | * | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/24.txt b/maze/task1/maps/level7/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..1173e1bfcd35784e9113b3a3d04aa57c1f0604c9 --- /dev/null +++ b/maze/task1/maps/level7/table/24.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | # | # | # | # | _ | +| Row 3 | # | _ | @ | # | # | # | # | +| Row 4 | # | _ | # | # | _ | _ | # | +| Row 5 | _ | # | * | # | _ | # | _ | +| Row 6 | _ | _ | # | _ | # | # | # | +| Row 7 | _ | _ | _ | # | _ | # | # | diff --git a/maze/task1/maps/level7/table/25.txt b/maze/task1/maps/level7/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b4eb0c29abfb32bcc4f2bb5791b79954fd0a0d1 --- /dev/null +++ b/maze/task1/maps/level7/table/25.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | # | # | _ | +| Row 2 | _ | # | # | # | # | # | _ | +| Row 3 | _ | _ | _ | # | # | _ | _ | +| Row 4 | # | _ | @ | # | * | # | # | +| Row 5 | _ | # | _ | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | # | +| Row 7 | # | # | _ | _ | # | _ | # | diff --git a/maze/task1/maps/level7/table/26.txt b/maze/task1/maps/level7/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7575e337d9419bb323ebeb106f31a46a7b29378c --- /dev/null +++ b/maze/task1/maps/level7/table/26.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | _ | _ | _ | +| Row 2 | # | # | _ | # | # | # | # | +| Row 3 | _ | # | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | * | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | # | @ | # | _ | # | # | _ | +| Row 7 | _ | # | _ | # | # | _ | # | diff --git a/maze/task1/maps/level7/table/27.txt b/maze/task1/maps/level7/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4f62b29a322f5b0f8bcfe75477ccefa48f31ed4 --- /dev/null +++ b/maze/task1/maps/level7/table/27.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | # | # | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | # | _ | +| Row 5 | # | _ | * | _ | # | _ | # | +| Row 6 | # | # | _ | # | # | _ | # | +| Row 7 | # | _ | @ | # | # | _ | _ | diff --git a/maze/task1/maps/level7/table/28.txt b/maze/task1/maps/level7/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..aadc4251ea4ebb6302ed1be527a793f9857ab89c --- /dev/null +++ b/maze/task1/maps/level7/table/28.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | # | _ | +| Row 3 | _ | # | # | _ | # | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | # | # | _ | * | _ | +| Row 6 | @ | # | # | # | _ | # | _ | +| Row 7 | _ | _ | # | # | # | # | # | diff --git a/maze/task1/maps/level7/table/29.txt b/maze/task1/maps/level7/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccdb06c09c4af957c66c6c99493718db1197d920 --- /dev/null +++ b/maze/task1/maps/level7/table/29.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | # | # | # | +| Row 2 | # | * | # | @ | # | # | # | +| Row 3 | # | # | _ | # | # | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | # | _ | # | _ | # | _ | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level7/table/3.txt b/maze/task1/maps/level7/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..171ea1812b2be9255a15a0267e70b230cf4aba6e --- /dev/null +++ b/maze/task1/maps/level7/table/3.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | * | +| Row 2 | # | # | # | # | _ | # | @ | +| Row 3 | # | # | # | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | # | # | # | _ | # | _ | # | +| Row 7 | # | # | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/30.txt b/maze/task1/maps/level7/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc9a65419dc460eec15b9298340325b725dfeccd --- /dev/null +++ b/maze/task1/maps/level7/table/30.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | # | _ | # | # | +| Row 2 | # | _ | _ | _ | # | _ | * | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | # | @ | _ | # | +| Row 5 | _ | _ | # | # | # | # | # | +| Row 6 | # | # | # | # | _ | # | # | +| Row 7 | # | _ | # | _ | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/31.txt b/maze/task1/maps/level7/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..b951d247a67f6248f68dfb7c9d4ce26cf028e65b --- /dev/null +++ b/maze/task1/maps/level7/table/31.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | @ | # | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | # | _ | # | # | # | # | # | +| Row 4 | # | # | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | # | _ | # | +| Row 6 | _ | * | # | _ | _ | # | _ | +| Row 7 | _ | # | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level7/table/32.txt b/maze/task1/maps/level7/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..64ffd4b1cea5f6b8942ac6b3a81fbd9a8693957b --- /dev/null +++ b/maze/task1/maps/level7/table/32.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | _ | _ | # | +| Row 2 | # | # | # | # | # | # | _ | +| Row 3 | # | # | _ | # | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | _ | # | # | # | +| Row 7 | _ | # | * | # | _ | _ | @ | diff --git a/maze/task1/maps/level7/table/33.txt b/maze/task1/maps/level7/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..2745a55441e0d1d2b0b53bca08db9ae7a76c61f9 --- /dev/null +++ b/maze/task1/maps/level7/table/33.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | # | # | # | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | @ | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | # | # | # | # | +| Row 6 | # | # | # | _ | # | _ | # | +| Row 7 | _ | _ | # | # | # | _ | * | diff --git a/maze/task1/maps/level7/table/34.txt b/maze/task1/maps/level7/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..45428fba93ca31d394acda0afafe0f204aae62b4 --- /dev/null +++ b/maze/task1/maps/level7/table/34.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | # | # | # | _ | * | # | # | +| Row 4 | _ | # | # | _ | # | # | # | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | @ | # | # | _ | # | _ | +| Row 7 | # | _ | # | # | # | # | _ | diff --git a/maze/task1/maps/level7/table/35.txt b/maze/task1/maps/level7/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..d58cf2834cc61546631443cd9297cd195939fc8f --- /dev/null +++ b/maze/task1/maps/level7/table/35.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | _ | # | +| Row 2 | # | _ | # | # | _ | # | # | +| Row 3 | _ | # | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | # | * | # | # | +| Row 5 | # | _ | _ | # | # | _ | # | +| Row 6 | # | # | _ | _ | # | _ | _ | +| Row 7 | @ | _ | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level7/table/36.txt b/maze/task1/maps/level7/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..4215b1470f96fe22332b9cee969f921996fad452 --- /dev/null +++ b/maze/task1/maps/level7/table/36.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | * | # | _ | # | +| Row 2 | # | # | # | _ | _ | # | _ | +| Row 3 | # | _ | # | _ | _ | _ | _ | +| Row 4 | # | # | @ | _ | # | _ | _ | +| Row 5 | _ | _ | # | # | # | # | # | +| Row 6 | _ | # | # | _ | # | _ | # | +| Row 7 | # | _ | # | # | _ | _ | # | diff --git a/maze/task1/maps/level7/table/37.txt b/maze/task1/maps/level7/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d9da2ac732cbf77f1f30514a5966b9797e02189 --- /dev/null +++ b/maze/task1/maps/level7/table/37.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | # | # | # | # | +| Row 2 | # | _ | # | _ | _ | # | # | +| Row 3 | _ | _ | # | _ | # | # | # | +| Row 4 | _ | # | @ | _ | _ | * | _ | +| Row 5 | _ | # | _ | # | # | # | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | # | _ | # | diff --git a/maze/task1/maps/level7/table/38.txt b/maze/task1/maps/level7/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..4da89d45ca6d2f6dd793453e7f74a180a6a4a7cc --- /dev/null +++ b/maze/task1/maps/level7/table/38.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | # | _ | +| Row 2 | # | # | @ | _ | _ | # | # | +| Row 3 | _ | * | # | _ | # | # | # | +| Row 4 | _ | # | # | _ | # | # | # | +| Row 5 | _ | # | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | # | _ | # | _ | +| Row 7 | _ | # | # | _ | # | _ | # | diff --git a/maze/task1/maps/level7/table/39.txt b/maze/task1/maps/level7/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..766fd8489252ded32103c4bbcb26bb621b285f6f --- /dev/null +++ b/maze/task1/maps/level7/table/39.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | # | # | +| Row 5 | # | @ | _ | _ | # | _ | # | +| Row 6 | # | * | # | # | # | _ | # | +| Row 7 | # | # | # | # | _ | _ | # | diff --git a/maze/task1/maps/level7/table/4.txt b/maze/task1/maps/level7/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..115f62bb5b728506baddf43469adda4b263ac361 --- /dev/null +++ b/maze/task1/maps/level7/table/4.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | # | # | # | # | +| Row 2 | _ | _ | # | # | # | # | # | +| Row 3 | _ | # | # | _ | * | # | _ | +| Row 4 | _ | # | _ | _ | # | # | _ | +| Row 5 | # | # | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | # | @ | _ | +| Row 7 | _ | _ | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level7/table/40.txt b/maze/task1/maps/level7/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f72d0f2db00dfa6c4d212c12db895ef8da9ee8e8 --- /dev/null +++ b/maze/task1/maps/level7/table/40.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | # | +| Row 2 | # | # | # | # | _ | _ | # | +| Row 3 | # | _ | _ | # | _ | # | # | +| Row 4 | _ | # | * | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | _ | _ | +| Row 6 | # | # | # | _ | _ | # | # | +| Row 7 | # | # | @ | _ | # | _ | _ | diff --git a/maze/task1/maps/level7/table/41.txt b/maze/task1/maps/level7/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dcb60232b4e3c6df2ba55f7f87d631bcbfa0381 --- /dev/null +++ b/maze/task1/maps/level7/table/41.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | @ | # | +| Row 3 | # | # | _ | # | _ | # | # | +| Row 4 | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | # | _ | # | # | # | +| Row 6 | # | # | * | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task1/maps/level7/table/42.txt b/maze/task1/maps/level7/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..09c066a818105f247932274777555ce5c2719f71 --- /dev/null +++ b/maze/task1/maps/level7/table/42.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | # | # | _ | _ | +| Row 2 | # | _ | _ | # | # | * | # | +| Row 3 | # | _ | _ | _ | # | # | # | +| Row 4 | # | # | # | _ | # | # | _ | +| Row 5 | _ | # | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | # | _ | _ | # | +| Row 7 | _ | # | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level7/table/43.txt b/maze/task1/maps/level7/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..c17c3abf3858dbad8c2f379b3c575842f14696c8 --- /dev/null +++ b/maze/task1/maps/level7/table/43.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | _ | # | # | +| Row 2 | # | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | * | +| Row 4 | @ | # | # | # | # | _ | # | +| Row 5 | # | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | +| Row 7 | # | # | # | # | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/44.txt b/maze/task1/maps/level7/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..c12dd3f90e49396b735e304c5004e3c1bccbc52a --- /dev/null +++ b/maze/task1/maps/level7/table/44.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | @ | _ | _ | +| Row 2 | # | # | # | _ | _ | # | _ | +| Row 3 | # | # | # | _ | _ | # | # | +| Row 4 | _ | # | _ | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | * | # | _ | +| Row 6 | _ | # | # | _ | # | # | _ | +| Row 7 | # | # | _ | # | _ | # | # | diff --git a/maze/task1/maps/level7/table/45.txt b/maze/task1/maps/level7/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..74ebab683d3f1b9c9b325007dd73ab3561d30d6d --- /dev/null +++ b/maze/task1/maps/level7/table/45.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | # | _ | +| Row 2 | # | # | # | # | _ | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | # | _ | +| Row 6 | # | _ | # | _ | _ | # | @ | +| Row 7 | # | _ | # | # | _ | _ | # | diff --git a/maze/task1/maps/level7/table/46.txt b/maze/task1/maps/level7/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..b278343cb51f789d6e75c28b964c50551831ff35 --- /dev/null +++ b/maze/task1/maps/level7/table/46.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | # | _ | # | +| Row 3 | # | _ | # | # | # | # | * | +| Row 4 | # | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | # | _ | # | # | _ | +| Row 6 | # | # | # | _ | @ | # | # | +| Row 7 | _ | _ | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level7/table/47.txt b/maze/task1/maps/level7/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4d28cd93e31e46833f8985aff4ed06d309b24aa --- /dev/null +++ b/maze/task1/maps/level7/table/47.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | # | # | +| Row 3 | _ | # | # | @ | _ | _ | # | +| Row 4 | # | # | # | # | _ | # | _ | +| Row 5 | _ | _ | # | # | # | # | # | +| Row 6 | # | # | _ | _ | _ | * | _ | +| Row 7 | _ | _ | # | _ | # | # | _ | diff --git a/maze/task1/maps/level7/table/48.txt b/maze/task1/maps/level7/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..999ae188adab8228b07890b3dff4fa6803f2889e --- /dev/null +++ b/maze/task1/maps/level7/table/48.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | # | _ | # | +| Row 2 | _ | # | # | # | # | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | # | # | +| Row 5 | _ | _ | _ | # | # | # | _ | +| Row 6 | # | _ | # | # | * | # | # | +| Row 7 | _ | _ | # | @ | # | _ | # | diff --git a/maze/task1/maps/level7/table/49.txt b/maze/task1/maps/level7/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..83b8c5ef51853ae8ceae3f1fd87abf4b2e20adda --- /dev/null +++ b/maze/task1/maps/level7/table/49.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | * | # | _ | # | # | _ | +| Row 2 | # | # | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | +| Row 4 | # | # | # | _ | _ | # | _ | +| Row 5 | _ | # | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | # | # | # | # | +| Row 7 | _ | # | # | @ | # | _ | # | diff --git a/maze/task1/maps/level7/table/5.txt b/maze/task1/maps/level7/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..71bbfec32711b6c63aa9cde9eb71469cc170e1e0 --- /dev/null +++ b/maze/task1/maps/level7/table/5.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | # | # | +| Row 2 | _ | _ | # | _ | # | # | # | +| Row 3 | # | _ | _ | _ | # | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | # | +| Row 5 | # | _ | # | # | _ | # | _ | +| Row 6 | @ | # | _ | # | _ | # | _ | +| Row 7 | _ | * | # | # | _ | # | # | diff --git a/maze/task1/maps/level7/table/50.txt b/maze/task1/maps/level7/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..464941fb746338d8611409430f7bd18c547857b0 --- /dev/null +++ b/maze/task1/maps/level7/table/50.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | * | # | # | _ | _ | # | +| Row 2 | # | # | # | # | _ | # | _ | +| Row 3 | _ | # | # | # | _ | # | # | +| Row 4 | _ | # | _ | @ | # | # | # | +| Row 5 | # | _ | _ | # | # | # | # | +| Row 6 | _ | # | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/51.txt b/maze/task1/maps/level7/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..3701c0ebe38a07c60c1daafc6d683e3bce1c7ad4 --- /dev/null +++ b/maze/task1/maps/level7/table/51.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | _ | +| Row 2 | # | _ | # | _ | # | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | # | +| Row 4 | # | # | _ | # | # | # | # | +| Row 5 | _ | _ | _ | # | * | _ | # | +| Row 6 | # | # | # | # | # | @ | # | +| Row 7 | _ | # | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level7/table/52.txt b/maze/task1/maps/level7/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fe80606e6c8df500ec967e53b33fd3f5ab249b8 --- /dev/null +++ b/maze/task1/maps/level7/table/52.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | # | _ | # | +| Row 2 | # | _ | # | _ | _ | # | _ | +| Row 3 | # | # | # | # | # | _ | * | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | # | # | _ | _ | _ | # | +| Row 6 | _ | # | # | _ | # | # | # | +| Row 7 | _ | # | _ | _ | # | # | @ | diff --git a/maze/task1/maps/level7/table/53.txt b/maze/task1/maps/level7/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..76d15540bc19ac4de44f69eb50c7ce22b2564cb4 --- /dev/null +++ b/maze/task1/maps/level7/table/53.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | _ | _ | # | @ | +| Row 2 | _ | # | # | _ | # | # | * | +| Row 3 | _ | _ | _ | _ | _ | # | # | +| Row 4 | _ | # | _ | # | _ | _ | _ | +| Row 5 | # | _ | # | # | # | _ | # | +| Row 6 | # | # | _ | # | # | _ | _ | +| Row 7 | # | _ | # | # | # | # | _ | diff --git a/maze/task1/maps/level7/table/54.txt b/maze/task1/maps/level7/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..50ab0aaad2056baf2e635c704938d6f919396d11 --- /dev/null +++ b/maze/task1/maps/level7/table/54.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | _ | # | # | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | # | _ | _ | # | @ | _ | # | +| Row 4 | _ | _ | * | # | # | # | _ | +| Row 5 | # | _ | # | # | _ | _ | # | +| Row 6 | _ | _ | # | # | _ | # | # | +| Row 7 | # | # | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level7/table/55.txt b/maze/task1/maps/level7/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..0925df02b000192c5374dd3f22eb88a6add1afaf --- /dev/null +++ b/maze/task1/maps/level7/table/55.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | # | _ | # | _ | +| Row 2 | # | _ | # | _ | _ | @ | # | +| Row 3 | _ | # | _ | _ | # | # | _ | +| Row 4 | # | # | # | * | # | # | # | +| Row 5 | # | _ | _ | # | # | # | # | +| Row 6 | _ | _ | _ | # | _ | _ | # | +| Row 7 | _ | _ | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level7/table/56.txt b/maze/task1/maps/level7/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..04d6e3f06e1d2abd5d000627aac063050d44e27e --- /dev/null +++ b/maze/task1/maps/level7/table/56.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | _ | _ | # | +| Row 2 | # | # | _ | _ | _ | # | _ | +| Row 3 | # | # | # | # | # | _ | # | +| Row 4 | _ | _ | # | # | _ | # | @ | +| Row 5 | _ | _ | # | _ | # | _ | _ | +| Row 6 | _ | # | # | # | _ | # | _ | +| Row 7 | # | _ | _ | _ | # | * | _ | diff --git a/maze/task1/maps/level7/table/57.txt b/maze/task1/maps/level7/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..180ed3e98d8747cd1d057880bb8ec7773ef95bb0 --- /dev/null +++ b/maze/task1/maps/level7/table/57.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | _ | _ | # | +| Row 2 | _ | # | # | _ | # | # | _ | +| Row 3 | # | _ | _ | # | _ | # | # | +| Row 4 | _ | # | _ | # | _ | _ | _ | +| Row 5 | # | # | _ | @ | # | _ | * | +| Row 6 | # | # | _ | # | # | # | _ | +| Row 7 | _ | _ | # | # | # | _ | # | diff --git a/maze/task1/maps/level7/table/58.txt b/maze/task1/maps/level7/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2c60365721771bd1bc687fa08beae9f5bc49593 --- /dev/null +++ b/maze/task1/maps/level7/table/58.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | # | # | # | +| Row 2 | _ | _ | * | # | _ | _ | _ | +| Row 3 | # | # | # | _ | # | # | # | +| Row 4 | _ | _ | @ | # | # | # | # | +| Row 5 | _ | # | _ | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | # | # | _ | _ | # | diff --git a/maze/task1/maps/level7/table/59.txt b/maze/task1/maps/level7/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..41774a61ba023ae47707187c008d4c3e9950ab6d --- /dev/null +++ b/maze/task1/maps/level7/table/59.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | # | # | # | _ | # | _ | _ | +| Row 4 | # | _ | # | * | # | _ | _ | +| Row 5 | # | @ | # | # | # | _ | # | +| Row 6 | _ | _ | _ | # | # | _ | # | +| Row 7 | # | _ | _ | _ | # | # | # | diff --git a/maze/task1/maps/level7/table/6.txt b/maze/task1/maps/level7/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..49c7d692b2791054e59892cc83a22615de239710 --- /dev/null +++ b/maze/task1/maps/level7/table/6.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | @ | * | _ | _ | # | +| Row 2 | # | # | _ | _ | _ | # | # | +| Row 3 | # | _ | _ | # | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | # | # | # | _ | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | # | # | # | # | # | # | _ | diff --git a/maze/task1/maps/level7/table/60.txt b/maze/task1/maps/level7/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..39a01fb9000970d602c8f68186b3ab9a25e1ffa1 --- /dev/null +++ b/maze/task1/maps/level7/table/60.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | # | _ | _ | _ | +| Row 2 | # | # | # | # | # | _ | # | +| Row 3 | # | # | # | # | * | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | # | +| Row 6 | # | # | # | _ | _ | _ | _ | +| Row 7 | # | # | _ | _ | # | _ | @ | diff --git a/maze/task1/maps/level7/table/61.txt b/maze/task1/maps/level7/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..33b0b1e037ddaa7990f2c68f1548e63a80bb2d93 --- /dev/null +++ b/maze/task1/maps/level7/table/61.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | # | # | # | +| Row 2 | _ | # | _ | # | _ | _ | # | +| Row 3 | # | # | # | _ | # | _ | * | +| Row 4 | # | _ | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | @ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | # | # | # | # | _ | _ | # | diff --git a/maze/task1/maps/level7/table/62.txt b/maze/task1/maps/level7/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8ff61ad8008664cc74e8cf5256249194fab08be --- /dev/null +++ b/maze/task1/maps/level7/table/62.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | # | +| Row 2 | # | # | # | # | # | # | # | +| Row 3 | # | _ | _ | # | # | _ | # | +| Row 4 | @ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | _ | # | _ | * | +| Row 7 | # | # | _ | # | _ | # | # | diff --git a/maze/task1/maps/level7/table/63.txt b/maze/task1/maps/level7/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..15eaf3cb6b514636f1f8c797367024cc23bacb71 --- /dev/null +++ b/maze/task1/maps/level7/table/63.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | # | _ | # | +| Row 2 | # | # | # | # | # | # | # | +| Row 3 | # | # | _ | # | _ | _ | _ | +| Row 4 | # | _ | # | _ | * | _ | # | +| Row 5 | _ | _ | _ | # | _ | # | _ | +| Row 6 | _ | _ | _ | @ | # | # | # | +| Row 7 | # | # | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level7/table/64.txt b/maze/task1/maps/level7/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1577acf320c6525687d6f4ce55a69c5807f2b3b9 --- /dev/null +++ b/maze/task1/maps/level7/table/64.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | # | _ | _ | +| Row 2 | # | # | _ | # | _ | # | # | +| Row 3 | _ | # | # | # | _ | # | _ | +| Row 4 | _ | # | * | _ | # | _ | # | +| Row 5 | # | _ | _ | # | # | _ | # | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | # | # | # | @ | _ | # | _ | diff --git a/maze/task1/maps/level7/table/65.txt b/maze/task1/maps/level7/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..45505f1769b14f165697e5a32e877f6e6decbf28 --- /dev/null +++ b/maze/task1/maps/level7/table/65.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | # | # | +| Row 3 | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | # | # | # | +| Row 6 | # | # | # | _ | _ | # | # | +| Row 7 | # | _ | * | # | # | # | # | diff --git a/maze/task1/maps/level7/table/66.txt b/maze/task1/maps/level7/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a9e83f7f3ab617eb8c4b6a5c1fd5cf07981d558 --- /dev/null +++ b/maze/task1/maps/level7/table/66.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | # | _ | # | _ | # | # | +| Row 2 | # | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | # | +| Row 4 | # | # | _ | _ | # | # | # | +| Row 5 | # | # | # | # | _ | # | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | # | # | # | _ | _ | # | diff --git a/maze/task1/maps/level7/table/67.txt b/maze/task1/maps/level7/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc11cd15ebd6a90a0e7f781cc16acc2292bbcfe0 --- /dev/null +++ b/maze/task1/maps/level7/table/67.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | @ | _ | _ | +| Row 2 | # | _ | # | _ | # | _ | # | +| Row 3 | # | # | _ | _ | # | # | _ | +| Row 4 | # | _ | # | _ | # | # | # | +| Row 5 | _ | # | # | # | _ | # | _ | +| Row 6 | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | * | _ | _ | # | diff --git a/maze/task1/maps/level7/table/68.txt b/maze/task1/maps/level7/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..7eca9b2c9c6ffa6c9e8841c8848b6966a9c91dc6 --- /dev/null +++ b/maze/task1/maps/level7/table/68.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | # | +| Row 2 | _ | # | _ | # | _ | # | # | +| Row 3 | # | _ | # | _ | # | _ | # | +| Row 4 | # | _ | # | _ | # | * | # | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | # | # | # | # | _ | +| Row 7 | # | _ | # | @ | _ | # | _ | diff --git a/maze/task1/maps/level7/table/69.txt b/maze/task1/maps/level7/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..891731c089f359908cd21618b31858337336e3c9 --- /dev/null +++ b/maze/task1/maps/level7/table/69.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | _ | # | # | +| Row 2 | # | # | _ | # | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | # | # | # | # | _ | _ | +| Row 5 | # | _ | @ | _ | # | # | # | +| Row 6 | _ | _ | _ | # | _ | _ | * | +| Row 7 | # | # | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/7.txt b/maze/task1/maps/level7/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d9a0198cb1bb5f690246279881186acda9ca5e0 --- /dev/null +++ b/maze/task1/maps/level7/table/7.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | * | # | _ | _ | # | _ | +| Row 2 | _ | # | # | # | # | # | # | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | # | _ | # | # | _ | # | # | +| Row 5 | _ | # | # | # | _ | _ | # | +| Row 6 | # | _ | _ | # | @ | _ | _ | +| Row 7 | # | # | # | _ | _ | # | _ | diff --git a/maze/task1/maps/level7/table/70.txt b/maze/task1/maps/level7/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..99c6e1fe8aa80d5d4f3779e1217e35a8925d8533 --- /dev/null +++ b/maze/task1/maps/level7/table/70.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | # | _ | # | # | # | _ | +| Row 3 | # | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | # | _ | # | _ | +| Row 5 | # | _ | * | @ | _ | # | # | +| Row 6 | # | # | _ | _ | _ | # | # | +| Row 7 | _ | # | _ | # | # | # | # | diff --git a/maze/task1/maps/level7/table/71.txt b/maze/task1/maps/level7/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..c06b4b947ab52587f58637cd7331b79bf2fb7156 --- /dev/null +++ b/maze/task1/maps/level7/table/71.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | # | # | # | _ | +| Row 2 | _ | # | # | _ | * | # | _ | +| Row 3 | # | _ | # | # | _ | # | # | +| Row 4 | # | _ | _ | # | # | # | # | +| Row 5 | # | _ | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | @ | # | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | diff --git a/maze/task1/maps/level7/table/72.txt b/maze/task1/maps/level7/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c8f50aa737e0c77382d7b7fc91b907977017cbd --- /dev/null +++ b/maze/task1/maps/level7/table/72.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | # | _ | # | +| Row 3 | @ | _ | # | _ | _ | # | # | +| Row 4 | _ | _ | # | # | _ | # | # | +| Row 5 | # | _ | _ | # | # | _ | # | +| Row 6 | # | # | _ | _ | # | _ | _ | +| Row 7 | _ | # | # | # | # | # | _ | diff --git a/maze/task1/maps/level7/table/73.txt b/maze/task1/maps/level7/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bdd98fa6b5b49e173018f91e9990afcf7e364df --- /dev/null +++ b/maze/task1/maps/level7/table/73.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | _ | * | # | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | # | # | +| Row 4 | _ | _ | _ | # | # | # | _ | +| Row 5 | _ | # | _ | # | _ | # | # | +| Row 6 | _ | # | # | _ | # | # | _ | +| Row 7 | @ | # | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level7/table/74.txt b/maze/task1/maps/level7/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..c71e001d4a5dad21e8903be437dcf9d07081eeb1 --- /dev/null +++ b/maze/task1/maps/level7/table/74.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | # | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | # | _ | _ | @ | # | _ | +| Row 4 | # | # | _ | # | _ | # | # | +| Row 5 | # | _ | _ | # | _ | # | _ | +| Row 6 | _ | # | * | # | _ | # | # | +| Row 7 | _ | _ | _ | # | # | # | # | diff --git a/maze/task1/maps/level7/table/75.txt b/maze/task1/maps/level7/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e7f5a81405c76a47996ab6de313433d3f773dbb --- /dev/null +++ b/maze/task1/maps/level7/table/75.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | # | # | _ | # | # | +| Row 4 | _ | _ | # | # | # | # | _ | +| Row 5 | # | _ | _ | # | _ | # | _ | +| Row 6 | # | # | # | # | # | _ | # | +| Row 7 | * | _ | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level7/table/76.txt b/maze/task1/maps/level7/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..42c36ced1f45611736323555960828b4fbcbee8f --- /dev/null +++ b/maze/task1/maps/level7/table/76.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | # | _ | _ | # | +| Row 2 | # | _ | # | _ | _ | _ | # | +| Row 3 | # | # | # | # | # | _ | # | +| Row 4 | _ | _ | # | _ | # | # | @ | +| Row 5 | _ | # | # | # | _ | _ | # | +| Row 6 | _ | _ | * | _ | _ | # | # | +| Row 7 | _ | # | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level7/table/77.txt b/maze/task1/maps/level7/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb63d3aeb4bca94ac5a33bd822ef04ad9e1ec5d4 --- /dev/null +++ b/maze/task1/maps/level7/table/77.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | _ | # | +| Row 2 | * | # | # | _ | # | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | # | _ | _ | +| Row 5 | # | _ | # | # | _ | _ | # | +| Row 6 | # | _ | # | _ | # | _ | _ | +| Row 7 | # | @ | _ | # | # | # | # | diff --git a/maze/task1/maps/level7/table/78.txt b/maze/task1/maps/level7/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea919a23522dc9685631d941b8383b610b82f2e4 --- /dev/null +++ b/maze/task1/maps/level7/table/78.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | _ | # | # | _ | +| Row 2 | # | # | # | # | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | # | # | +| Row 4 | # | # | * | @ | # | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | _ | # | # | # | +| Row 7 | _ | _ | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level7/table/79.txt b/maze/task1/maps/level7/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..05aeb8d5a505f16ce48575e52eb98998cb51502b --- /dev/null +++ b/maze/task1/maps/level7/table/79.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | # | _ | +| Row 2 | # | _ | # | _ | _ | # | @ | +| Row 3 | # | # | _ | # | # | _ | _ | +| Row 4 | # | _ | # | _ | _ | # | # | +| Row 5 | _ | # | # | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | _ | # | +| Row 7 | * | # | _ | _ | # | _ | _ | diff --git a/maze/task1/maps/level7/table/8.txt b/maze/task1/maps/level7/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..883685a7b82576b5c3fb944572e123b5481e1437 --- /dev/null +++ b/maze/task1/maps/level7/table/8.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | # | _ | _ | _ | _ | _ | +| Row 2 | # | # | _ | # | # | # | # | +| Row 3 | # | _ | # | _ | # | # | _ | +| Row 4 | _ | # | # | _ | _ | # | # | +| Row 5 | _ | _ | @ | # | # | # | _ | +| Row 6 | # | # | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | diff --git a/maze/task1/maps/level7/table/80.txt b/maze/task1/maps/level7/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..32902f04cf2e3fc69ec7e20d885fec4749aa0669 --- /dev/null +++ b/maze/task1/maps/level7/table/80.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | # | # | +| Row 3 | _ | # | _ | _ | # | # | # | +| Row 4 | _ | _ | # | @ | * | _ | # | +| Row 5 | # | # | _ | _ | # | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | # | # | # | # | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/81.txt b/maze/task1/maps/level7/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1cd0062d9e148b06bca6424ca419e1a906e0963 --- /dev/null +++ b/maze/task1/maps/level7/table/81.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | * | # | # | +| Row 5 | _ | # | # | _ | # | @ | # | +| Row 6 | # | # | _ | # | # | _ | # | +| Row 7 | _ | # | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level7/table/82.txt b/maze/task1/maps/level7/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5de6e2170a4f368f9fb11a5e797ce23dbdd1bed3 --- /dev/null +++ b/maze/task1/maps/level7/table/82.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | # | # | _ | +| Row 2 | # | _ | # | _ | # | _ | _ | +| Row 3 | # | # | # | # | # | _ | # | +| Row 4 | # | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | @ | _ | +| Row 6 | # | _ | _ | * | _ | _ | # | +| Row 7 | # | # | # | _ | _ | # | # | diff --git a/maze/task1/maps/level7/table/83.txt b/maze/task1/maps/level7/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce38462402a7d5b0b162f7f33d496194f58e388b --- /dev/null +++ b/maze/task1/maps/level7/table/83.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | # | # | # | _ | # | # | _ | +| Row 3 | _ | _ | # | # | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | # | # | # | # | # | # | +| Row 6 | # | _ | # | # | _ | * | _ | +| Row 7 | @ | _ | # | # | _ | _ | # | diff --git a/maze/task1/maps/level7/table/84.txt b/maze/task1/maps/level7/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..80f74cca0722003561c53cccadf98e459e30abb9 --- /dev/null +++ b/maze/task1/maps/level7/table/84.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | # | # | * | _ | # | # | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | # | # | # | # | # | _ | # | +| Row 6 | # | # | _ | _ | # | # | # | +| Row 7 | _ | # | # | _ | _ | # | _ | diff --git a/maze/task1/maps/level7/table/85.txt b/maze/task1/maps/level7/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..40a5a042930e5fda54665510714233caf8e94a2e --- /dev/null +++ b/maze/task1/maps/level7/table/85.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | # | _ | # | # | # | +| Row 5 | # | _ | # | # | # | _ | _ | +| Row 6 | # | # | # | _ | # | * | _ | +| Row 7 | _ | @ | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level7/table/86.txt b/maze/task1/maps/level7/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..50a512d92834ef2de3e68800b80532481d36bd69 --- /dev/null +++ b/maze/task1/maps/level7/table/86.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | * | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | # | _ | +| Row 3 | # | # | # | # | # | # | _ | +| Row 4 | # | # | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | @ | # | # | +| Row 6 | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level7/table/87.txt b/maze/task1/maps/level7/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c5fb4e7b076b1f2ec3c070eeadc900c46464301 --- /dev/null +++ b/maze/task1/maps/level7/table/87.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | # | # | _ | +| Row 2 | # | _ | _ | # | # | # | # | +| Row 3 | _ | # | # | _ | _ | _ | # | +| Row 4 | # | # | # | _ | # | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | # | # | # | # | _ | _ | # | +| Row 7 | # | _ | _ | # | _ | * | # | diff --git a/maze/task1/maps/level7/table/88.txt b/maze/task1/maps/level7/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..46b098f8fb80276d19d51327e2c39aea3da09935 --- /dev/null +++ b/maze/task1/maps/level7/table/88.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | # | # | # | +| Row 2 | _ | # | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | # | # | # | _ | +| Row 4 | # | # | * | @ | # | _ | _ | +| Row 5 | _ | # | # | # | # | # | # | +| Row 6 | _ | _ | _ | # | _ | _ | # | +| Row 7 | _ | _ | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level7/table/89.txt b/maze/task1/maps/level7/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..06cb469c163d0f864587cad8757efbd5e742815a --- /dev/null +++ b/maze/task1/maps/level7/table/89.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | # | _ | # | # | +| Row 2 | _ | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | # | # | # | # | +| Row 4 | _ | # | # | # | # | _ | # | +| Row 5 | _ | @ | _ | _ | # | _ | _ | +| Row 6 | _ | # | # | # | # | # | _ | +| Row 7 | _ | # | # | _ | _ | * | _ | diff --git a/maze/task1/maps/level7/table/9.txt b/maze/task1/maps/level7/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..c09a6c36889ca3807dbaff3a4f88a3f0ab813b7f --- /dev/null +++ b/maze/task1/maps/level7/table/9.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | # | _ | _ | +| Row 2 | # | _ | # | # | _ | # | _ | +| Row 3 | # | _ | # | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | # | _ | # | # | # | # | +| Row 6 | _ | @ | # | # | _ | _ | _ | +| Row 7 | _ | _ | # | # | * | # | # | diff --git a/maze/task1/maps/level7/table/90.txt b/maze/task1/maps/level7/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9161c34def80bc170a3f1273bf380a725078302 --- /dev/null +++ b/maze/task1/maps/level7/table/90.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | _ | # | _ | +| Row 2 | _ | # | _ | * | # | _ | _ | +| Row 3 | # | # | @ | # | _ | _ | # | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | # | _ | _ | # | # | # | _ | +| Row 6 | _ | # | # | _ | _ | _ | # | +| Row 7 | # | # | # | # | _ | # | # | diff --git a/maze/task1/maps/level7/table/91.txt b/maze/task1/maps/level7/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..15ab8b4bf7c60a0691c6fbe568c196b4f208af99 --- /dev/null +++ b/maze/task1/maps/level7/table/91.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | _ | _ | +| Row 2 | _ | * | _ | # | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | # | # | _ | # | _ | +| Row 5 | # | _ | # | _ | # | _ | # | +| Row 6 | _ | # | # | _ | # | # | _ | +| Row 7 | # | _ | # | # | # | # | # | diff --git a/maze/task1/maps/level7/table/92.txt b/maze/task1/maps/level7/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d195a66f552497126c8fa73e6446fb6916b8227 --- /dev/null +++ b/maze/task1/maps/level7/table/92.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | _ | # | # | # | +| Row 2 | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | * | # | _ | +| Row 4 | # | _ | # | # | _ | # | # | +| Row 5 | _ | # | # | _ | _ | @ | # | +| Row 6 | _ | _ | _ | # | # | # | _ | +| Row 7 | _ | # | # | # | # | _ | # | diff --git a/maze/task1/maps/level7/table/93.txt b/maze/task1/maps/level7/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed71dcef390e6013bd83498ae635a573ca4d7849 --- /dev/null +++ b/maze/task1/maps/level7/table/93.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | # | # | # | +| Row 2 | _ | _ | # | # | # | * | _ | +| Row 3 | _ | # | @ | # | _ | _ | _ | +| Row 4 | # | # | # | _ | _ | _ | # | +| Row 5 | _ | # | _ | # | # | # | # | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | # | # | _ | diff --git a/maze/task1/maps/level7/table/94.txt b/maze/task1/maps/level7/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..aac4ffa4fb97551b14c4b7d9aa6dc1b43a7e1f22 --- /dev/null +++ b/maze/task1/maps/level7/table/94.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | # | # | +| Row 2 | # | # | # | * | _ | _ | _ | +| Row 3 | # | _ | # | _ | _ | # | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | +| Row 5 | @ | _ | # | # | _ | # | _ | +| Row 6 | _ | # | _ | # | # | # | _ | +| Row 7 | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task1/maps/level7/table/95.txt b/maze/task1/maps/level7/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..07aad164b2eab414e9982d9309e432ab485416e8 --- /dev/null +++ b/maze/task1/maps/level7/table/95.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | # | # | _ | # | _ | _ | +| Row 2 | _ | # | _ | * | _ | # | # | +| Row 3 | _ | # | # | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | _ | # | +| Row 5 | # | _ | # | # | # | # | _ | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level7/table/96.txt b/maze/task1/maps/level7/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc7e48d97be2fa0f7db20e053dd3db33d9743922 --- /dev/null +++ b/maze/task1/maps/level7/table/96.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | # | # | # | +| Row 2 | _ | # | # | _ | # | _ | _ | +| Row 3 | _ | # | # | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | +| Row 6 | # | # | # | _ | # | # | # | +| Row 7 | # | # | # | * | _ | # | @ | diff --git a/maze/task1/maps/level7/table/97.txt b/maze/task1/maps/level7/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..182e9c85d4e93b75536736fade8e2c2b651346f1 --- /dev/null +++ b/maze/task1/maps/level7/table/97.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | _ | +| Row 2 | # | _ | # | _ | # | _ | # | +| Row 3 | # | _ | _ | @ | _ | _ | # | +| Row 4 | # | _ | # | _ | # | * | _ | +| Row 5 | # | # | # | # | _ | # | # | +| Row 6 | # | # | # | # | _ | # | # | +| Row 7 | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task1/maps/level7/table/98.txt b/maze/task1/maps/level7/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..3eafad628d3e733938b8b473fb5df33d0cf9b513 --- /dev/null +++ b/maze/task1/maps/level7/table/98.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | * | # | # | +| Row 2 | # | _ | # | _ | _ | # | _ | +| Row 3 | # | # | _ | _ | _ | # | # | +| Row 4 | _ | # | @ | _ | _ | # | # | +| Row 5 | # | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | # | _ | +| Row 7 | # | _ | # | # | _ | _ | # | diff --git a/maze/task1/maps/level7/table/99.txt b/maze/task1/maps/level7/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..953c2b9c3997d0a925490359d35e91cdc4e77319 --- /dev/null +++ b/maze/task1/maps/level7/table/99.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | # | # | # | +| Row 2 | _ | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | # | # | +| Row 4 | _ | # | _ | # | # | _ | # | +| Row 5 | # | # | _ | _ | _ | _ | @ | +| Row 6 | # | # | # | _ | _ | _ | * | +| Row 7 | # | _ | # | # | # | _ | # | diff --git a/maze/task1/maps/level8/answer/0.txt b/maze/task1/maps/level8/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/0.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/1.txt b/maze/task1/maps/level8/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/1.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/10.txt b/maze/task1/maps/level8/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/10.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/11.txt b/maze/task1/maps/level8/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/11.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/12.txt b/maze/task1/maps/level8/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/12.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/13.txt b/maze/task1/maps/level8/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/13.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/14.txt b/maze/task1/maps/level8/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/14.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/15.txt b/maze/task1/maps/level8/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/15.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/16.txt b/maze/task1/maps/level8/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/16.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/17.txt b/maze/task1/maps/level8/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/17.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/18.txt b/maze/task1/maps/level8/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/18.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/19.txt b/maze/task1/maps/level8/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/19.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/2.txt b/maze/task1/maps/level8/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/2.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/20.txt b/maze/task1/maps/level8/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/20.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/21.txt b/maze/task1/maps/level8/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/21.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/22.txt b/maze/task1/maps/level8/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/22.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/23.txt b/maze/task1/maps/level8/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/23.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/24.txt b/maze/task1/maps/level8/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/24.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/25.txt b/maze/task1/maps/level8/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/26.txt b/maze/task1/maps/level8/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/26.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/27.txt b/maze/task1/maps/level8/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/27.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/28.txt b/maze/task1/maps/level8/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/28.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/29.txt b/maze/task1/maps/level8/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/29.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/3.txt b/maze/task1/maps/level8/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/30.txt b/maze/task1/maps/level8/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/30.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/31.txt b/maze/task1/maps/level8/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/31.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/32.txt b/maze/task1/maps/level8/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/32.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/33.txt b/maze/task1/maps/level8/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/33.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/34.txt b/maze/task1/maps/level8/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/34.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/35.txt b/maze/task1/maps/level8/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/35.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/36.txt b/maze/task1/maps/level8/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/36.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/37.txt b/maze/task1/maps/level8/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/37.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/38.txt b/maze/task1/maps/level8/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/38.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/39.txt b/maze/task1/maps/level8/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/4.txt b/maze/task1/maps/level8/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/4.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/40.txt b/maze/task1/maps/level8/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/40.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/41.txt b/maze/task1/maps/level8/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/41.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/42.txt b/maze/task1/maps/level8/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/42.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/43.txt b/maze/task1/maps/level8/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/43.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/44.txt b/maze/task1/maps/level8/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/44.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/45.txt b/maze/task1/maps/level8/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/45.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/46.txt b/maze/task1/maps/level8/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/46.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/47.txt b/maze/task1/maps/level8/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/47.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/48.txt b/maze/task1/maps/level8/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/48.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/49.txt b/maze/task1/maps/level8/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/49.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/5.txt b/maze/task1/maps/level8/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/5.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/50.txt b/maze/task1/maps/level8/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/50.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/51.txt b/maze/task1/maps/level8/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/51.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/52.txt b/maze/task1/maps/level8/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/52.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/53.txt b/maze/task1/maps/level8/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/53.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/54.txt b/maze/task1/maps/level8/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/54.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/55.txt b/maze/task1/maps/level8/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/55.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/56.txt b/maze/task1/maps/level8/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/56.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/57.txt b/maze/task1/maps/level8/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/57.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/58.txt b/maze/task1/maps/level8/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/58.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/59.txt b/maze/task1/maps/level8/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/59.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/6.txt b/maze/task1/maps/level8/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/60.txt b/maze/task1/maps/level8/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/60.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/61.txt b/maze/task1/maps/level8/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/61.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/62.txt b/maze/task1/maps/level8/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/62.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/63.txt b/maze/task1/maps/level8/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/63.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/64.txt b/maze/task1/maps/level8/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/64.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/65.txt b/maze/task1/maps/level8/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/65.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/66.txt b/maze/task1/maps/level8/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/66.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/67.txt b/maze/task1/maps/level8/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/67.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/68.txt b/maze/task1/maps/level8/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/68.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/69.txt b/maze/task1/maps/level8/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/69.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/7.txt b/maze/task1/maps/level8/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/7.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/70.txt b/maze/task1/maps/level8/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/70.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/71.txt b/maze/task1/maps/level8/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/71.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/72.txt b/maze/task1/maps/level8/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/72.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/73.txt b/maze/task1/maps/level8/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/73.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/74.txt b/maze/task1/maps/level8/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/74.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/75.txt b/maze/task1/maps/level8/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/75.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/76.txt b/maze/task1/maps/level8/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/76.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/77.txt b/maze/task1/maps/level8/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/77.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/78.txt b/maze/task1/maps/level8/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/78.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/79.txt b/maze/task1/maps/level8/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/79.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/8.txt b/maze/task1/maps/level8/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/8.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/80.txt b/maze/task1/maps/level8/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/80.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/81.txt b/maze/task1/maps/level8/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/81.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/82.txt b/maze/task1/maps/level8/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/82.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/83.txt b/maze/task1/maps/level8/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/83.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/84.txt b/maze/task1/maps/level8/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/84.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/85.txt b/maze/task1/maps/level8/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/85.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/86.txt b/maze/task1/maps/level8/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/86.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/87.txt b/maze/task1/maps/level8/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/87.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/88.txt b/maze/task1/maps/level8/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/88.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/89.txt b/maze/task1/maps/level8/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/89.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/9.txt b/maze/task1/maps/level8/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/9.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/90.txt b/maze/task1/maps/level8/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/90.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/91.txt b/maze/task1/maps/level8/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/91.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/92.txt b/maze/task1/maps/level8/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/92.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/93.txt b/maze/task1/maps/level8/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/93.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/94.txt b/maze/task1/maps/level8/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/94.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/95.txt b/maze/task1/maps/level8/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task1/maps/level8/answer/95.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/96.txt b/maze/task1/maps/level8/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/96.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/97.txt b/maze/task1/maps/level8/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/97.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/98.txt b/maze/task1/maps/level8/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/98.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/answer/99.txt b/maze/task1/maps/level8/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task1/maps/level8/answer/99.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task1/maps/level8/img/0.png b/maze/task1/maps/level8/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2be95f7965272c3cea5880a9581ba8e10e0e51b5 --- /dev/null +++ b/maze/task1/maps/level8/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b3eb903abfdbdc77714e774e58e6fc5eecc35f72d461af086317271ce040db +size 19461 diff --git a/maze/task1/maps/level8/img/1.png b/maze/task1/maps/level8/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e73ea7ce931403e20a27fbcbc308808c955ccd45 --- /dev/null +++ b/maze/task1/maps/level8/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b089e8b22fdb028452149660e6a82d5d934fd386a9ce01be2109fcfaad1b1c5d +size 19658 diff --git a/maze/task1/maps/level8/img/10.png b/maze/task1/maps/level8/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..5db91d1282501c62a28a965c18bc954822ba2355 --- /dev/null +++ b/maze/task1/maps/level8/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34220215d772dad2d0b28189a383545e3f5f9ca90d95cc2a1951d118b9c991d5 +size 19685 diff --git a/maze/task1/maps/level8/img/11.png b/maze/task1/maps/level8/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b2bba9553c935c12a8c9bce5478230322dc74a41 --- /dev/null +++ b/maze/task1/maps/level8/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede732706895b31eeef9ed3db72709fe9d4c72355e74f2eae2b5db4335d8e788 +size 19699 diff --git a/maze/task1/maps/level8/img/12.png b/maze/task1/maps/level8/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b651136202d2d643cf55a64155a312a03a22eede --- /dev/null +++ b/maze/task1/maps/level8/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c7771e01a7269c3557e16f90ac019d9f40f055538335c66ff8222e20d1ea5a5 +size 19821 diff --git a/maze/task1/maps/level8/img/13.png b/maze/task1/maps/level8/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3eef3f6bbea17f601262ffe91cc0945926db1d29 --- /dev/null +++ b/maze/task1/maps/level8/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814c10c22467667b1ea44b1895f664d50a90a5bed5fc194fc3ce655039d754c1 +size 18982 diff --git a/maze/task1/maps/level8/img/14.png b/maze/task1/maps/level8/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3c5437c3d82112ad36c750e1f6c6ae9036cf5a93 --- /dev/null +++ b/maze/task1/maps/level8/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffda922e694b4b9a657b1c044f2a6963b6dea9cdaf18df13b11fb245f3c9387d +size 19655 diff --git a/maze/task1/maps/level8/img/15.png b/maze/task1/maps/level8/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..94191220d0b0a6c711ab641e28077311e5a79eed --- /dev/null +++ b/maze/task1/maps/level8/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336dab1bc33778c9564121c1f4d524506fbca3b7161f164b123a839919174954 +size 19616 diff --git a/maze/task1/maps/level8/img/16.png b/maze/task1/maps/level8/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8c58e931e166cb650ad9b0fc867cdeab3a36334e --- /dev/null +++ b/maze/task1/maps/level8/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93237260aec108534ef8575086e6a6f8ef31f223886b0fae18e0f0bf14f99a97 +size 19793 diff --git a/maze/task1/maps/level8/img/17.png b/maze/task1/maps/level8/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f5056452243c0dc6ec774a5600913338862a49 --- /dev/null +++ b/maze/task1/maps/level8/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ff66259c0435a293b869a58cf58a573dc63c27fbcc7ea9eddb72e549179800 +size 19733 diff --git a/maze/task1/maps/level8/img/18.png b/maze/task1/maps/level8/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4facdd334220eb6d5e4b5d574f6799d7c3765111 --- /dev/null +++ b/maze/task1/maps/level8/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d73233c6a1de8c6456fa4471d8f9dfbaa4278eeceb7ce13dd575ea701c9749a +size 19600 diff --git a/maze/task1/maps/level8/img/19.png b/maze/task1/maps/level8/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..9845951e23aec67667cf1402270ef7294a6c8475 --- /dev/null +++ b/maze/task1/maps/level8/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420b230281f2f9430ef71d468d1a7c66963b8fe3a2fbcc2aea47be92961055b0 +size 19773 diff --git a/maze/task1/maps/level8/img/2.png b/maze/task1/maps/level8/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..dcac526c1f7049e9cc461d957deab64258241f2e --- /dev/null +++ b/maze/task1/maps/level8/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eaf11a530d51c8bd4070250fa9f028cddbb69ee1106b0a18210678bf50bd69c +size 19755 diff --git a/maze/task1/maps/level8/img/20.png b/maze/task1/maps/level8/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..3b4204b5f8663cbd7d9183dd7734492a4fbb6df5 --- /dev/null +++ b/maze/task1/maps/level8/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b01988e0291c47a8c5eb0c8f268ecf5ed0f1b41cf1601cd97e74b8ef2220b493 +size 19885 diff --git a/maze/task1/maps/level8/img/21.png b/maze/task1/maps/level8/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..48c467364a9ffc4e2724614b969d1d08af6867a9 --- /dev/null +++ b/maze/task1/maps/level8/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a87d72619368311fab3e8040518da9b0d81f2a478bb9454645b70593c0060b +size 19368 diff --git a/maze/task1/maps/level8/img/22.png b/maze/task1/maps/level8/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..fec87b008730658ddbbe2ccb91ffc4cf6ee2b8f3 --- /dev/null +++ b/maze/task1/maps/level8/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5c38caf9ace23c430ef5b8666ba32302e07291c41259809c06109a2221377c +size 19512 diff --git a/maze/task1/maps/level8/img/23.png b/maze/task1/maps/level8/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..031fc038dc12a4f13486ad527ad037cca184f5d8 --- /dev/null +++ b/maze/task1/maps/level8/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e171838cec5bf6dd912d8f283f4876cd262caf21b007d8d97049fa35f035a5 +size 18806 diff --git a/maze/task1/maps/level8/img/24.png b/maze/task1/maps/level8/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..2e4bc3a9f0854328dd79b913bd54acbce7098b85 --- /dev/null +++ b/maze/task1/maps/level8/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cffd2b840ef61d9e5728ed90e885045e4f0f7ee818b9cff826d83f22f2459ba3 +size 19687 diff --git a/maze/task1/maps/level8/img/25.png b/maze/task1/maps/level8/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..e03f7ee2e87ff1b98f42a528717bb6bc92b04a0c --- /dev/null +++ b/maze/task1/maps/level8/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f0c50afecaa92dc7c2e172a48612f6d44c4a883dfae4e0343762231d817021 +size 19488 diff --git a/maze/task1/maps/level8/img/26.png b/maze/task1/maps/level8/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..741ee2b5badad0c3cc62fb4021ffe6e77dbd5ee3 --- /dev/null +++ b/maze/task1/maps/level8/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5b7946bd96db7ef1397024b4d1e3715567d85473828a94b63f20da254c8fdf +size 19451 diff --git a/maze/task1/maps/level8/img/27.png b/maze/task1/maps/level8/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..e92c2ebfd65507268759d9ef2804093ca856a65f --- /dev/null +++ b/maze/task1/maps/level8/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d69a79c78f6395025ad20fde46782b2a073437c3fdff4736f635d8039281aa +size 19751 diff --git a/maze/task1/maps/level8/img/28.png b/maze/task1/maps/level8/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..c998a952c96a77311f6db25568082fa331dfcd9c --- /dev/null +++ b/maze/task1/maps/level8/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f80347f810a6a45ef9babc07fd539e26c891963c1923148f42b71e1fef5e3fd +size 19830 diff --git a/maze/task1/maps/level8/img/29.png b/maze/task1/maps/level8/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..b6b9a5098c03607ca0e0ac4252156fda3283c308 --- /dev/null +++ b/maze/task1/maps/level8/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a68e13891f679e9cfc9cebb8bd10441510fcde6985295ac2fd6e1f3c11a69250 +size 20088 diff --git a/maze/task1/maps/level8/img/3.png b/maze/task1/maps/level8/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..03d21cec6c7b311fd3b3d2bfce5b83c2c5c02dcf --- /dev/null +++ b/maze/task1/maps/level8/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4238045a84da2eaad4b5775610c49263214550d76c940ba9501375de9ab3a2b8 +size 19977 diff --git a/maze/task1/maps/level8/img/30.png b/maze/task1/maps/level8/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..cd15da1d95c4cda4c00d59a3062452998eba4802 --- /dev/null +++ b/maze/task1/maps/level8/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0975fbabd81ff21381e0c44f0dd0276d463b4105f8f46a4581eaa837cad1377 +size 19902 diff --git a/maze/task1/maps/level8/img/31.png b/maze/task1/maps/level8/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..ebd3b924dedc71431c5e45f22aefe2c5d6bb922f --- /dev/null +++ b/maze/task1/maps/level8/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7a549c915f7cd86d6fb68e95459f3ec139686c69b31dd4aa1e61d609ba7ae04 +size 19750 diff --git a/maze/task1/maps/level8/img/32.png b/maze/task1/maps/level8/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..d340ad8875703c1bb1af019a51b78ae4122cf4e4 --- /dev/null +++ b/maze/task1/maps/level8/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f677918d061d44df2ae10c272e7be41a156c6a3c5e7cf1da9ee295724191df4 +size 19700 diff --git a/maze/task1/maps/level8/img/33.png b/maze/task1/maps/level8/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..dd6b5ef51f0c3e2079ef26585ba190dfb0daea75 --- /dev/null +++ b/maze/task1/maps/level8/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea8afdae9d5d9d11deff966227114c51d317e35d1e0db7ef8a94a9e367b8677 +size 19836 diff --git a/maze/task1/maps/level8/img/34.png b/maze/task1/maps/level8/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..16787fbd879877ec44c9b30841f670d438a6da98 --- /dev/null +++ b/maze/task1/maps/level8/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cbf06cf5d6b3d71618b1b88a1f3723b7224e98eac29d1715798b0c79d273185 +size 19885 diff --git a/maze/task1/maps/level8/img/35.png b/maze/task1/maps/level8/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..e603fafc721a7e819531292890a9ce5ecc323322 --- /dev/null +++ b/maze/task1/maps/level8/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23e0ab36f475d943144e8a884a423ccbb5fae11eb598c74228d7ca31890aa67c +size 19802 diff --git a/maze/task1/maps/level8/img/36.png b/maze/task1/maps/level8/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..144b6650ebb1ec8ef5bc0db7ab5ed9e38c6d2d19 --- /dev/null +++ b/maze/task1/maps/level8/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab99580970d678eecd1cb999ae64158aabc778ee54f00bfa0588f19f0c68414 +size 19944 diff --git a/maze/task1/maps/level8/img/37.png b/maze/task1/maps/level8/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..5653cf2b527f518209b5b173adcc1c902edd1d66 --- /dev/null +++ b/maze/task1/maps/level8/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3d6a68e82f8a9c2acc6da40f628e11ab1eceb2f5e4852045a4fe2eddef34e8 +size 19591 diff --git a/maze/task1/maps/level8/img/38.png b/maze/task1/maps/level8/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..6f9506c81950be54f098f7b099839ddad9953ae1 --- /dev/null +++ b/maze/task1/maps/level8/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2eaa93bd053625d4af475031c9a9f150fd8bf760f1af35435c205eebd4c414 +size 19679 diff --git a/maze/task1/maps/level8/img/39.png b/maze/task1/maps/level8/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..ef948e167afcea8f2f12c897a8391d78057894c8 --- /dev/null +++ b/maze/task1/maps/level8/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:256b494dfcab685e1db853f4912d55596fe117ba1eddc1e22dc6516455441743 +size 19651 diff --git a/maze/task1/maps/level8/img/4.png b/maze/task1/maps/level8/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f8f6c394dfb2cc0371358165e852ae6bf3b625a8 --- /dev/null +++ b/maze/task1/maps/level8/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acaa11f6d54f4f7a2e02278078dd590646532b72d2d1d15ab77e0e83588eb03c +size 19955 diff --git a/maze/task1/maps/level8/img/40.png b/maze/task1/maps/level8/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6ca8a3553909b055a7f23bef36a10c3c21ee82 --- /dev/null +++ b/maze/task1/maps/level8/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e4c961c59255f7be2cbbcb03d3505ac83247d7f88ec9341a3a95ed1ccdd42f +size 19761 diff --git a/maze/task1/maps/level8/img/41.png b/maze/task1/maps/level8/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..2e55ede98b3647c8369d4c980d8e64426ffef963 --- /dev/null +++ b/maze/task1/maps/level8/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623521f1f4f4d4155272a3f314de407ae4432d6426ccfec6b2cfe675ea91e314 +size 19697 diff --git a/maze/task1/maps/level8/img/42.png b/maze/task1/maps/level8/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..582e4cbdf208457301ab51e90f446c8db55cca47 --- /dev/null +++ b/maze/task1/maps/level8/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73adb44fdcc5b89de8960d6023ea024f0c1daa63b264a65b888b0342afff759b +size 19295 diff --git a/maze/task1/maps/level8/img/43.png b/maze/task1/maps/level8/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..2deb74ce718a5983591ced502c7b7e2c10f2a01a --- /dev/null +++ b/maze/task1/maps/level8/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6ad6459a52970b065b7a6160a7ac02f5c6941894500af570ce7d8b583e3a6a +size 19651 diff --git a/maze/task1/maps/level8/img/44.png b/maze/task1/maps/level8/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..83be36466086cabd6e0164e9661a7ffccd6426d2 --- /dev/null +++ b/maze/task1/maps/level8/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6254e191200f2b907c9196e56173a8ba9cbb9db505b3dc7f17f3009e5a68fa6 +size 19616 diff --git a/maze/task1/maps/level8/img/45.png b/maze/task1/maps/level8/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..367e7c0eda3f5f5c9e7ee4b068c5a569ca7ef7b0 --- /dev/null +++ b/maze/task1/maps/level8/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e3e45c5c8639ebfe72a0b4650cf73c924ba8bb9f7b5dd19eced51465dda2cf9 +size 19851 diff --git a/maze/task1/maps/level8/img/46.png b/maze/task1/maps/level8/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..a54cd44edc55632e577c255083492164b4c77682 --- /dev/null +++ b/maze/task1/maps/level8/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a253890c0796deabfae8c5d2b72bb9e5b5eb0ee82539de33e905721297bfca1 +size 19908 diff --git a/maze/task1/maps/level8/img/47.png b/maze/task1/maps/level8/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..abc867a258511bf1c6ffbc740277e701637b8a2f --- /dev/null +++ b/maze/task1/maps/level8/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902acc06846cb99b922ba484125d609772dda3fdb4e04002b95a5ea9f33ae700 +size 19303 diff --git a/maze/task1/maps/level8/img/48.png b/maze/task1/maps/level8/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..6bf88d30c1e1c59d4cd617f2984cf3ba577c570a --- /dev/null +++ b/maze/task1/maps/level8/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aaa746beebad16beaba5b56944be297ed977e4c66c0067b2f98dc3de5feee0f +size 18696 diff --git a/maze/task1/maps/level8/img/49.png b/maze/task1/maps/level8/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..74c435a9cf3e841693e6059ace5ea8094b6ef78a --- /dev/null +++ b/maze/task1/maps/level8/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd35f18b47e881efea03abaf36076200f1c91e90003a35f01ad294d14b9c155e +size 19496 diff --git a/maze/task1/maps/level8/img/5.png b/maze/task1/maps/level8/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..bbb1ea29fc373f64b05ede9c374e22bf19ecb799 --- /dev/null +++ b/maze/task1/maps/level8/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bda01922514d9386d72bc4a55fa671a041efef7c06013bcfb41578b905024d4 +size 19776 diff --git a/maze/task1/maps/level8/img/50.png b/maze/task1/maps/level8/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..7337eb79508610570823974e4d1935ff8f8e0c9b --- /dev/null +++ b/maze/task1/maps/level8/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b66066fa5ef2f59d6a66a31bde350edaf357775fab4eb4ee5b2c6ff7f21c66 +size 20039 diff --git a/maze/task1/maps/level8/img/51.png b/maze/task1/maps/level8/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..3f5a93acee9c7e09e7bae161af43ca47c4793cb5 --- /dev/null +++ b/maze/task1/maps/level8/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24fb985b312811fd39d87321e2abae6e456966f2d2524812a73365670b44448e +size 19919 diff --git a/maze/task1/maps/level8/img/52.png b/maze/task1/maps/level8/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..c801fbe6a7d015a062500b197924e88b81d0fe34 --- /dev/null +++ b/maze/task1/maps/level8/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd88d66f34595c8688faa6f42aa252d2e5af2b5bccac60da1a86434479b28c60 +size 19544 diff --git a/maze/task1/maps/level8/img/53.png b/maze/task1/maps/level8/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..91e4e8ecc4fcc3a15000a45ac107406076e072a1 --- /dev/null +++ b/maze/task1/maps/level8/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b7f9ca06b539e0e64269f9c2feb31582b56b19375754203778dfaa710f2b55 +size 19685 diff --git a/maze/task1/maps/level8/img/54.png b/maze/task1/maps/level8/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..ebd6b7656c149cf9aa5eda35ea1dd7cd85ca9eba --- /dev/null +++ b/maze/task1/maps/level8/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b10bf5b53acba289a076c8010484895472f095d2a28d5faeb771526d04d5652a +size 19628 diff --git a/maze/task1/maps/level8/img/55.png b/maze/task1/maps/level8/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..579f336a1d31fe18881e0097585cef01cf62a9d8 --- /dev/null +++ b/maze/task1/maps/level8/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd4bae5ad7f66d55579ffa744d977a542c7aa7b82a082f686e2562a1577020d +size 19901 diff --git a/maze/task1/maps/level8/img/56.png b/maze/task1/maps/level8/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..a90d2e905739a379c3393a58bb168834b89c66f2 --- /dev/null +++ b/maze/task1/maps/level8/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b742720802f909f27954f420085f0f7bd49d37536becdca9e3e41bdb5c3ea621 +size 19695 diff --git a/maze/task1/maps/level8/img/57.png b/maze/task1/maps/level8/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..fc11242be8bd7752ba08cb202c34100628c17488 --- /dev/null +++ b/maze/task1/maps/level8/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa35222cbd1d4ec0485cb1c4a8284905dd2c8ea207fd8d83687683c06af932d8 +size 19725 diff --git a/maze/task1/maps/level8/img/58.png b/maze/task1/maps/level8/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..ec4372bc5b90480397450d5b80804a5a23a239a9 --- /dev/null +++ b/maze/task1/maps/level8/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c583fc13adde0bcf24f82da007888727a96f7009533f0d185c671af51e262c4e +size 19861 diff --git a/maze/task1/maps/level8/img/59.png b/maze/task1/maps/level8/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..573d833863e0756115c9039d26d8abcd3ee3fbc8 --- /dev/null +++ b/maze/task1/maps/level8/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076fa4c12f9dfaef9b4ab32b198a589c6e3b363135e67fbd95302f63461bcaf5 +size 19413 diff --git a/maze/task1/maps/level8/img/6.png b/maze/task1/maps/level8/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..13feac7795f527528bb0e438f0027b580181ffc0 --- /dev/null +++ b/maze/task1/maps/level8/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ba82ea0de02c413e049d41cc566c28f1e82838ef4d36d6d30fec3e6e7cf23f +size 19604 diff --git a/maze/task1/maps/level8/img/60.png b/maze/task1/maps/level8/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..25ee1164b37c612d4e5abe6d293229db717ca556 --- /dev/null +++ b/maze/task1/maps/level8/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9435440c0f1cdd6ed0a97e92be94a95de11294d1333fba02b29f34db9890537e +size 19548 diff --git a/maze/task1/maps/level8/img/61.png b/maze/task1/maps/level8/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..7afa7a76533d0fcc7fc6084acb1f27d0679a4b0a --- /dev/null +++ b/maze/task1/maps/level8/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2c9109320827fae4dc77331a450e8c327a311f40064a1966b753b04f61f5eb +size 19693 diff --git a/maze/task1/maps/level8/img/62.png b/maze/task1/maps/level8/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..4585f44c4b8e6840739e090de2b5883eb673ca25 --- /dev/null +++ b/maze/task1/maps/level8/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7ec1ab01adc35ea3135b8f898597bdc75a62cc823cd868779c9dfc2bf8b1c66 +size 19470 diff --git a/maze/task1/maps/level8/img/63.png b/maze/task1/maps/level8/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..dfc2f960ab7853b5f8ff30078a87c276f03f6c4d --- /dev/null +++ b/maze/task1/maps/level8/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4de7764e2ac10e3d89677347ac6ca1f98f445e1ebe610a34c8295ec2ed4175a +size 19683 diff --git a/maze/task1/maps/level8/img/64.png b/maze/task1/maps/level8/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..51cc4afcd4cd268cbf2140bd14adf640f9fdc56d --- /dev/null +++ b/maze/task1/maps/level8/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411f6ab0903bb503a4ecedd057c10166872d0fd560f65220d77994e4561b26c3 +size 19803 diff --git a/maze/task1/maps/level8/img/65.png b/maze/task1/maps/level8/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..c87d45bd0708502f9391534428dcfc19eab08176 --- /dev/null +++ b/maze/task1/maps/level8/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb0d95b1a046486889874196c7b410e12d710563ab5f28d85e1322eba86bc4f +size 19781 diff --git a/maze/task1/maps/level8/img/66.png b/maze/task1/maps/level8/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..1a6c22d5853e97783dc6fb9c4439ca8d7b37aac0 --- /dev/null +++ b/maze/task1/maps/level8/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc11690b955ae4162152cb0b04b1686a6ead9084bf279b291afd52a32c9f8ba +size 19537 diff --git a/maze/task1/maps/level8/img/67.png b/maze/task1/maps/level8/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..d8fd553b91e9db46b6c1df35d159245b635b8c38 --- /dev/null +++ b/maze/task1/maps/level8/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8025dcbc61917f01498c04e1161223e7556d7ff25454fb8de8c3b35ae4a641b +size 19735 diff --git a/maze/task1/maps/level8/img/68.png b/maze/task1/maps/level8/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..30bae414bddfa557f39ca3365c1d4d0058cc6d69 --- /dev/null +++ b/maze/task1/maps/level8/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:986ca9e8feffee7213febf01c765bb4bce5a893ee1505355eef74e5c6d48f14a +size 19835 diff --git a/maze/task1/maps/level8/img/69.png b/maze/task1/maps/level8/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..c2edf4beba9d79d13a442e614e6a5d93d44d820b --- /dev/null +++ b/maze/task1/maps/level8/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f5a57e8f9ec63ca8e15b1db999a0e495cf66882304dd281a7f9fda864fb1bbe +size 19569 diff --git a/maze/task1/maps/level8/img/7.png b/maze/task1/maps/level8/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b72311ee8ba0c2862643025a2eb12cc5f258dc5f --- /dev/null +++ b/maze/task1/maps/level8/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98557c26bf52211f65878bd63f8a9dd6654eea0e92bdc1af0b63724937c2f1ca +size 19760 diff --git a/maze/task1/maps/level8/img/70.png b/maze/task1/maps/level8/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..2603db13008d3789385e2094e5e1d84ce01f34a9 --- /dev/null +++ b/maze/task1/maps/level8/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e74d1f84fd3224e4b8001e9af649ee56401a4e001fb676a2e815e913f656ac9 +size 19529 diff --git a/maze/task1/maps/level8/img/71.png b/maze/task1/maps/level8/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..ec491603946390bd8c4966d8647c391d5112cddc --- /dev/null +++ b/maze/task1/maps/level8/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8635748ea49835faca184ef829d7f84f147187daa89c0ea6b02dbcc64afa203 +size 19910 diff --git a/maze/task1/maps/level8/img/72.png b/maze/task1/maps/level8/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..7231af2f0c41500022d5153fa6484f4428238f65 --- /dev/null +++ b/maze/task1/maps/level8/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238f14f7f96b7f6fd78c93f6e1a9bb45505cae61d4b76721b089fb3cf6c469b3 +size 19669 diff --git a/maze/task1/maps/level8/img/73.png b/maze/task1/maps/level8/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..a6f4135662cc235e26b702dd83c19371a2679344 --- /dev/null +++ b/maze/task1/maps/level8/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de28e7a1b7e92c88f30e6d44c8ba20618280ae8e68d16ce2f81530b9da0d099 +size 19586 diff --git a/maze/task1/maps/level8/img/74.png b/maze/task1/maps/level8/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..1f1caf842bce67e07fa15219c320428479622544 --- /dev/null +++ b/maze/task1/maps/level8/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96b5cffb4ddaad15f74c841f64222217fa580b9e405b57df53ed0004407e1c1 +size 19774 diff --git a/maze/task1/maps/level8/img/75.png b/maze/task1/maps/level8/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..a66d9b894616c823bde4dce378641e49f1ba0e01 --- /dev/null +++ b/maze/task1/maps/level8/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8cf600f8a5a977bba3dd5ebffc47ef6b3d8751fe0c499c547cd11426eda989 +size 19686 diff --git a/maze/task1/maps/level8/img/76.png b/maze/task1/maps/level8/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..e3fd2cdda4ccfa48567dc7547ffb85c465f6a5d0 --- /dev/null +++ b/maze/task1/maps/level8/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7c751ea0ffa39900292cf24935120f6e1ba39178e143741f73a030c04939e2 +size 19596 diff --git a/maze/task1/maps/level8/img/77.png b/maze/task1/maps/level8/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..3eabf9f767c2c9e87ee1cff2819d381ff2c46f59 --- /dev/null +++ b/maze/task1/maps/level8/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e075d20327268dd25b71cca6f512b4c57872e477e8f69e555070d304933a148 +size 19670 diff --git a/maze/task1/maps/level8/img/78.png b/maze/task1/maps/level8/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..02ea5c86a09f680788663089d524b929c04968c7 --- /dev/null +++ b/maze/task1/maps/level8/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75e142e39b94c9968414a292e083e597ff411424cfcc3d0cfd20f6cf0ca95c14 +size 19534 diff --git a/maze/task1/maps/level8/img/79.png b/maze/task1/maps/level8/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..577043d51a765f7aa0af2a9640a3a6f415a84c4e --- /dev/null +++ b/maze/task1/maps/level8/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2da088a481810604f111d2aa64763d74413fcd7b14042ad8553c35b3828782e8 +size 19636 diff --git a/maze/task1/maps/level8/img/8.png b/maze/task1/maps/level8/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5659456dd14a735d69e97e08496c2b8ea9d3c6f6 --- /dev/null +++ b/maze/task1/maps/level8/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b998e3f77e35cc14ca8c95b4fbfcb0423a97b37a5fd50a3e10d319c54a4831 +size 19829 diff --git a/maze/task1/maps/level8/img/80.png b/maze/task1/maps/level8/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..4e0ad401733dcff082dc3ed8b8f1ecdfbd605a75 --- /dev/null +++ b/maze/task1/maps/level8/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33231276802bba6d20cf147c5e528bca581ca9a5ebe4680bdcd78fcc1629920c +size 19758 diff --git a/maze/task1/maps/level8/img/81.png b/maze/task1/maps/level8/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..cc40559f6785ab4b1a3fc3df6f0a0167f7d71a3a --- /dev/null +++ b/maze/task1/maps/level8/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab4f03981667fbfa42a51f4c345d74cc8ea5faf82bfb6662d7398e58bba6430 +size 18890 diff --git a/maze/task1/maps/level8/img/82.png b/maze/task1/maps/level8/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..22f6a054a7843c8149900772e9c2b36c0065ffb2 --- /dev/null +++ b/maze/task1/maps/level8/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f211292dfa0d0443bd7219dc9184986d8e72d38397b100e1554b99e591e31cc5 +size 19872 diff --git a/maze/task1/maps/level8/img/83.png b/maze/task1/maps/level8/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..9ea7ad74ae502905a9bbc5409f4f80fa9460c19b --- /dev/null +++ b/maze/task1/maps/level8/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d222dd189c7d8e36d89d506acd7734734339c1787b6bb2dcd86449ae0fab4a4d +size 19827 diff --git a/maze/task1/maps/level8/img/84.png b/maze/task1/maps/level8/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..1785fff21ab03946c6190da7e557f769de591b29 --- /dev/null +++ b/maze/task1/maps/level8/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a33f53d0fae9f49daeb36bb62f164d4e2648bea9daa693a89cd04176f0c5ef +size 19819 diff --git a/maze/task1/maps/level8/img/85.png b/maze/task1/maps/level8/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..cb8a2206c6c00fee1f8027af108ffc8f323318eb --- /dev/null +++ b/maze/task1/maps/level8/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613da5bf3eca3ece4914246228ce330eba5ec4ad407bde28a53fb60781c877ad +size 19999 diff --git a/maze/task1/maps/level8/img/86.png b/maze/task1/maps/level8/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..fe15c4f46f312642bc0ecf79099768c083cef0a5 --- /dev/null +++ b/maze/task1/maps/level8/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27edf93d518628aab0e1363869b6c7b0a26df78cb6ecc6918ff990695e9805a9 +size 19820 diff --git a/maze/task1/maps/level8/img/87.png b/maze/task1/maps/level8/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..5c803b0cef14414e6c94fcedba09bde5df820619 --- /dev/null +++ b/maze/task1/maps/level8/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fe9ee150d0d3c838b6fa742049f00a59bcd806302865e7af0d64fbe45d6e7f +size 20029 diff --git a/maze/task1/maps/level8/img/88.png b/maze/task1/maps/level8/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..fe638aa5503935342af9f587d5f4a125ceeb4c5c --- /dev/null +++ b/maze/task1/maps/level8/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f319a8ca09b290ff7856537e7edde5e62e7b274c1efd80b2de5311249e82488 +size 19644 diff --git a/maze/task1/maps/level8/img/89.png b/maze/task1/maps/level8/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..36f2c9a09ef581714c41aa8bac70e727032ba064 --- /dev/null +++ b/maze/task1/maps/level8/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d147768b66e6f73f3fb028703d6ce9a942f061d852727f4715f5c5ad1f47d65 +size 19522 diff --git a/maze/task1/maps/level8/img/9.png b/maze/task1/maps/level8/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..47b368158f6599d7a38e2f8a54af83729552df57 --- /dev/null +++ b/maze/task1/maps/level8/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7993ce67ac5c095c7afd55681d8e2c8476e3394634b534f9185f0e95cc08b8b1 +size 19537 diff --git a/maze/task1/maps/level8/img/90.png b/maze/task1/maps/level8/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..d4e23e7e0c029d23fd6038d032ed2b9b8a62f74d --- /dev/null +++ b/maze/task1/maps/level8/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56271ee3b4f63bafbd80f475f2e8bd90f0eb29fdefb6cd1ff0896b4f13fa0db8 +size 19793 diff --git a/maze/task1/maps/level8/img/91.png b/maze/task1/maps/level8/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..52b382117f83d2d69bd9b217f9df131179b6ff5f --- /dev/null +++ b/maze/task1/maps/level8/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c5e3a46855b91998610588302f5427faf3daf6790e68da26b8c44c6dfdbcaab +size 19616 diff --git a/maze/task1/maps/level8/img/92.png b/maze/task1/maps/level8/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..228d6ffc851c001bd2520a03bde0fb6b212e08b0 --- /dev/null +++ b/maze/task1/maps/level8/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f233e94e5415b9e266da02e58e40f68abea08a8892a3b3e33c2a01dbd824e171 +size 19812 diff --git a/maze/task1/maps/level8/img/93.png b/maze/task1/maps/level8/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..593ec4968cb6334e65172a9ebe19389a89e3b344 --- /dev/null +++ b/maze/task1/maps/level8/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e402744198229a9236a3f084d1b50c7f5e591ab4b91841495bbf31a7f7ffbb7 +size 19532 diff --git a/maze/task1/maps/level8/img/94.png b/maze/task1/maps/level8/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..142b89f3ce09b86031e074947c56fe26d9e97954 --- /dev/null +++ b/maze/task1/maps/level8/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b8df3bb6893352bb6aa130be8404ca1db68b395c75b31c7f9975a183397b39 +size 19521 diff --git a/maze/task1/maps/level8/img/95.png b/maze/task1/maps/level8/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1539c8d76559bd4fbdfb1aecc0caf4717a1bfd --- /dev/null +++ b/maze/task1/maps/level8/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39441ff5a2a4a122006a594b465ee0afdf53e15a180c9b413665122809813b33 +size 19777 diff --git a/maze/task1/maps/level8/img/96.png b/maze/task1/maps/level8/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..0252e470186a71b3770d04d0eb519e1649d60e37 --- /dev/null +++ b/maze/task1/maps/level8/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15491e13bbc8f37ed33c5411bf0257f2e59e440536aa37d31ea4e8981ec2448a +size 20065 diff --git a/maze/task1/maps/level8/img/97.png b/maze/task1/maps/level8/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..b937df1cd5d425745396d79e63305d39e1132698 --- /dev/null +++ b/maze/task1/maps/level8/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d24234321a528b182a7f1a165eea796b24f10e4949a2b3505d607a71fabaa4 +size 19863 diff --git a/maze/task1/maps/level8/img/98.png b/maze/task1/maps/level8/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..aa0bbb823f0ab89acf9de5822020d5b2fd295bbb --- /dev/null +++ b/maze/task1/maps/level8/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:158932e15194b1885bafbecfca7f2fa3e79c15f65e253dfe1d27e85c923423cd +size 18943 diff --git a/maze/task1/maps/level8/img/99.png b/maze/task1/maps/level8/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..ac04d58ac9fe282fbfeab1ee6fec18cef09f2c4b --- /dev/null +++ b/maze/task1/maps/level8/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:697133d1744ef51b994a6bc9ba8957d3c976491bbcea6f2821af1285a52bb638 +size 19779 diff --git a/maze/task1/maps/level8/pure_text/0.txt b/maze/task1/maps/level8/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9165888d7e962954c9251e340c03990abab464e --- /dev/null +++ b/maze/task1/maps/level8/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 1, Column 8; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 2, Column 8; Row 3, Column 4; Row 4, Column 2; Row 4, Column 5; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 7; Row 5, Column 8; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 5; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/1.txt b/maze/task1/maps/level8/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..edd3ecc88b3a1a49694de847872f9731910c4b5f --- /dev/null +++ b/maze/task1/maps/level8/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 8; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/10.txt b/maze/task1/maps/level8/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d94ddac39756c10306ad4b5eb1fe8c6dcf76724b --- /dev/null +++ b/maze/task1/maps/level8/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 1, Column 8; Row 2, Column 5; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 3; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 7; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/11.txt b/maze/task1/maps/level8/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..df6bd46f7bab5d88120b58812b1d29d67b6ef716 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 5; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 8; Row 6, Column 2; Row 6, Column 6; Row 7, Column 2; Row 7, Column 4; Row 7, Column 7; Row 8, Column 3; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/12.txt b/maze/task1/maps/level8/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0afa0b19c1c341989c90c082a1d90eaf21d4142 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 8; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 7; Row 4, Column 8; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 5, Column 8; Row 6, Column 5; Row 6, Column 8; Row 7, Column 4; Row 7, Column 7; Row 8, Column 1; Row 8, Column 3; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/13.txt b/maze/task1/maps/level8/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fa731f9706e7232a646207e39099a677be63a63 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 8, Column 3; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 8, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/14.txt b/maze/task1/maps/level8/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ac972909783c0e92a66a3e997fc0f77b6524e0c --- /dev/null +++ b/maze/task1/maps/level8/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 1, Column 8; Row 2, Column 1; Row 2, Column 4; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 7; Row 5, Column 8; Row 6, Column 6; Row 6, Column 8; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 8; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/15.txt b/maze/task1/maps/level8/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef84ae97d598629261027795c3f5aa5741d74a67 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 8; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 6; Row 6, Column 8; Row 7, Column 1; Row 7, Column 7; Row 8, Column 1; Row 8, Column 2; Row 8, Column 4; Row 8, Column 6; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/16.txt b/maze/task1/maps/level8/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..d46303d88cb5a522c4578ffab6ce9e33eec9a274 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 8; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 8; Row 5, Column 4; Row 5, Column 8; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/17.txt b/maze/task1/maps/level8/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a835bd9f33364bd292b9d4c1e509e7d040b7565 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/18.txt b/maze/task1/maps/level8/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..f65ab4c30b86d52a69e2dadf2853bf9fc24b6aed --- /dev/null +++ b/maze/task1/maps/level8/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 8; Row 2, Column 6; Row 2, Column 8; Row 3, Column 1; Row 3, Column 4; Row 3, Column 8; Row 4, Column 3; Row 4, Column 5; Row 4, Column 7; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 8; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/19.txt b/maze/task1/maps/level8/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f0121770defe6e1ccc8135a4d9a54a0c9316821 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 1, Column 8; Row 2, Column 3; Row 2, Column 8; Row 3, Column 2; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; Row 8, Column 1; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/2.txt b/maze/task1/maps/level8/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..33bc249e33dcb480a348e6de3fece30c123dc87e --- /dev/null +++ b/maze/task1/maps/level8/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 4; Row 5, Column 7; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 7, Column 3; Row 7, Column 7; Row 8, Column 1; Row 8, Column 2; Row 8, Column 4; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/20.txt b/maze/task1/maps/level8/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24f5dec9001696389fe367b8f4358400828cec03 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 8; Row 5, Column 6; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/21.txt b/maze/task1/maps/level8/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f255f38b7e8960e751e16f765d05f886be472b5 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 4; Row 6, Column 8; Row 7, Column 1; Row 7, Column 6; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/22.txt b/maze/task1/maps/level8/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..b30f09f923d863c716c35c74a55d7e18f1e920fc --- /dev/null +++ b/maze/task1/maps/level8/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 7; Row 3, Column 8; Row 4, Column 3; Row 4, Column 5; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 6; Row 7, Column 8; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 6, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/23.txt b/maze/task1/maps/level8/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb616130c7bbd2180a88ae746b316ce513df647c --- /dev/null +++ b/maze/task1/maps/level8/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 4, Column 8; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 8; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/24.txt b/maze/task1/maps/level8/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..4df292d11d75e9dc32d2d013c64fc6782c78a761 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 8; Row 4, Column 4; Row 4, Column 5; Row 4, Column 8; Row 5, Column 2; Row 5, Column 3; Row 5, Column 8; Row 6, Column 2; Row 6, Column 8; Row 7, Column 1; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/25.txt b/maze/task1/maps/level8/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..46c6066b7323485bd546cc802de93d34a3736954 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 7; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 8, Column 1; Row 8, Column 6; +The goal is at: Row 1, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/26.txt b/maze/task1/maps/level8/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcff3ce690d7f71157b31935149164d4573bfd86 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 4; Row 2, Column 6; Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 8; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 8, Column 1; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/27.txt b/maze/task1/maps/level8/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cdf829be39682cd8ed62fbc5e10c45a25d3b8d9 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 2, Column 8; Row 3, Column 2; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; Row 6, Column 8; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 3; Row 8, Column 5; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/28.txt b/maze/task1/maps/level8/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..1727119ef267ecc7e2b80098f3d91a9426c97fad --- /dev/null +++ b/maze/task1/maps/level8/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 8; Row 2, Column 1; Row 2, Column 5; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 4; Row 5, Column 8; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/29.txt b/maze/task1/maps/level8/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4bc6e3e8301c8e537e09e966a0376a11fc2bf3f --- /dev/null +++ b/maze/task1/maps/level8/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 7; Row 1, Column 8; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 8; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/3.txt b/maze/task1/maps/level8/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..bae60c450904235f8e2af437986ec5c241986e02 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 6; Row 7, Column 2; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/30.txt b/maze/task1/maps/level8/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d86bfd28ae310be67d884b192b40d94d82c9e94 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 3, Column 8; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 2; Row 5, Column 3; Row 5, Column 8; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 6, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/31.txt b/maze/task1/maps/level8/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b37a2c0ccb7cb981f640d62c5f016d5ff8b456a --- /dev/null +++ b/maze/task1/maps/level8/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 4; Row 2, Column 8; Row 3, Column 2; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 3; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 7; +The goal is at: Row 3, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/32.txt b/maze/task1/maps/level8/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..75923c86022a58de73916cc1fe1a8fb61b95e515 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 1, Column 8; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 3, Column 2; Row 3, Column 5; Row 3, Column 8; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 4, Column 8; Row 5, Column 3; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; Row 7, Column 8; Row 8, Column 2; Row 8, Column 5; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/33.txt b/maze/task1/maps/level8/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..0492bcb9e10e8ca498402e6c378119623fabd430 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 3; Row 3, Column 6; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; Row 7, Column 8; Row 8, Column 3; Row 8, Column 7; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/34.txt b/maze/task1/maps/level8/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b2b1bfce54e1a4ebdf74b6206d4b43456de4a98 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 8; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 8; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 4; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/35.txt b/maze/task1/maps/level8/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b7e2a89a71d1ef01eb818a5824d8a3150296ae6 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 8; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; Row 6, Column 8; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/36.txt b/maze/task1/maps/level8/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..03f49ddefe608a6a7b0ac84d57a792e357e73e8a --- /dev/null +++ b/maze/task1/maps/level8/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 1, Column 8; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 8; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 7, Column 1; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 8, Column 1; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/37.txt b/maze/task1/maps/level8/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f17fcf97331a624d86ecaa365f0bf3e6bd6144f5 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/38.txt b/maze/task1/maps/level8/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..78a73b199ee5ecfd3ff5e86cf77a046556f4415d --- /dev/null +++ b/maze/task1/maps/level8/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 7; Row 6, Column 4; Row 6, Column 7; Row 6, Column 8; Row 7, Column 3; Row 7, Column 4; Row 7, Column 8; Row 8, Column 2; Row 8, Column 3; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/39.txt b/maze/task1/maps/level8/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f07f245ffa7171b8f2caf701dbb5b0fc0b29d51 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 4; Row 3, Column 8; Row 4, Column 1; Row 4, Column 6; Row 5, Column 1; Row 5, Column 3; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/4.txt b/maze/task1/maps/level8/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3310b9c6bcd07f58fdbe080a10617e5b60dee8e9 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 2, Column 8; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 8; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 8, Column 2; Row 8, Column 4; Row 8, Column 5; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/40.txt b/maze/task1/maps/level8/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dd4ac2df149b80fcdde6c32837da9995ced1366 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 2, Column 8; Row 3, Column 6; Row 3, Column 7; Row 3, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 8; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 4; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 8, Column 1; Row 8, Column 3; Row 8, Column 5; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/41.txt b/maze/task1/maps/level8/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..c140dd7775448b667eeba75e48c5781f93afc15f --- /dev/null +++ b/maze/task1/maps/level8/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 1, Column 8; Row 2, Column 2; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 5; Row 5, Column 7; Row 5, Column 8; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 7; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/42.txt b/maze/task1/maps/level8/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3fdcf428c4d0689757657723a2ca00e530b7654 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 8; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 4, Column 4; Row 5, Column 1; Row 5, Column 4; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/43.txt b/maze/task1/maps/level8/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..62b42dae35c83502cbf5af51f32ece14a33898a5 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 1, Column 8; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 5, Column 8; Row 6, Column 1; Row 6, Column 3; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 8; Row 8, Column 1; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/44.txt b/maze/task1/maps/level8/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ce4d3485266c8f41ef9216e533ac134f6d069c6 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 5; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/45.txt b/maze/task1/maps/level8/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab9bc822fa7ff0e0ef3cec4077f455503435d22e --- /dev/null +++ b/maze/task1/maps/level8/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 8; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; Row 8, Column 1; Row 8, Column 2; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/46.txt b/maze/task1/maps/level8/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..873b7dc4302294130746b75f5030dfad1ed75494 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 8; Row 2, Column 4; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 5, Column 8; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 2; Row 7, Column 5; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/47.txt b/maze/task1/maps/level8/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..03f71ba4a72c42e90800cb0771323a505e6873b5 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 6; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 8; Row 7, Column 3; Row 7, Column 5; Row 7, Column 8; Row 8, Column 2; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 3, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/48.txt b/maze/task1/maps/level8/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..d019efb7e555f187cad46edd2ab78b89ef938b05 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 8; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 6, Column 8; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; +The goal is at: Row 8, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/49.txt b/maze/task1/maps/level8/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..c90feb4c96093abea408af188601ebffcd78ee19 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 4; Row 8, Column 2; Row 8, Column 4; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/5.txt b/maze/task1/maps/level8/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e530d1fe3b3b6de66cabc50b2067286c797ec8bf --- /dev/null +++ b/maze/task1/maps/level8/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 8; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 6, Column 8; Row 7, Column 3; Row 7, Column 6; Row 8, Column 2; Row 8, Column 5; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/50.txt b/maze/task1/maps/level8/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa73f2e9f9a66dc3d319e6d0f2096493b3b22402 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 2, Column 8; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 8; Row 6, Column 2; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/51.txt b/maze/task1/maps/level8/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..f24d59e89793ac11a6f0b48c020f8d8a7b520194 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 4; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 6; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; Row 8, Column 1; Row 8, Column 2; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 1, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/52.txt b/maze/task1/maps/level8/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..074eb592956868c32f2ccebb8743a319c8d4759b --- /dev/null +++ b/maze/task1/maps/level8/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 8; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 3; Row 5, Column 6; Row 5, Column 8; Row 6, Column 4; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/53.txt b/maze/task1/maps/level8/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..a96d20ba854d0bb4d1bd354b78fb2bdd83af9a62 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 3, Column 8; Row 4, Column 4; Row 4, Column 8; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 4; Row 6, Column 5; Row 6, Column 8; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/54.txt b/maze/task1/maps/level8/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..a082051f8e299fd9933d82ba18db3a443a120aeb --- /dev/null +++ b/maze/task1/maps/level8/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 5; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/55.txt b/maze/task1/maps/level8/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b18230fbae0c3a2c1e0090c992677f018c15a86 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 3, Column 8; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 7, Column 4; Row 7, Column 5; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/56.txt b/maze/task1/maps/level8/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..295d855f2ba73b8324c2854db49d68e274db1278 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 2; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 3; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; Row 7, Column 7; Row 8, Column 1; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/57.txt b/maze/task1/maps/level8/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c0ab27d6e18f2c0d9d2e8e79103a078c365f8cb --- /dev/null +++ b/maze/task1/maps/level8/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 8; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 2, Column 8; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 4; Row 5, Column 6; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 3; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 4; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/58.txt b/maze/task1/maps/level8/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..17ed912dee77e286cfe3b1ef5eb99be245db48d8 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 1, Column 8; Row 2, Column 3; Row 2, Column 8; Row 3, Column 1; Row 3, Column 2; Row 3, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 2; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 8; Row 7, Column 1; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; Row 8, Column 7; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/59.txt b/maze/task1/maps/level8/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d0fe7ed758e9e6065935c252fbbd5e1767d63ba --- /dev/null +++ b/maze/task1/maps/level8/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 6, Column 3; Row 6, Column 5; Row 6, Column 8; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/6.txt b/maze/task1/maps/level8/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb323ba19447fee14d14177800a922e54a7909bd --- /dev/null +++ b/maze/task1/maps/level8/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 5; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 8, Column 3; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/60.txt b/maze/task1/maps/level8/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dbd272868f267e4897fbabeb19939d3525cdc14 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; Row 8, Column 2; Row 8, Column 4; Row 8, Column 8; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/61.txt b/maze/task1/maps/level8/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ca2e52ea7b899ec677c0d188b60454c9a8770df --- /dev/null +++ b/maze/task1/maps/level8/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 2, Column 4; Row 2, Column 8; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 8; Row 6, Column 1; Row 6, Column 6; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 4; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/62.txt b/maze/task1/maps/level8/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b3d67d237b4768aa364f0d219e8ec5f475d130c --- /dev/null +++ b/maze/task1/maps/level8/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 7; Row 3, Column 6; Row 3, Column 7; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 4; Row 5, Column 8; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 6, Column 8; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 7, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/63.txt b/maze/task1/maps/level8/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..e90fbfa6b99abe6c268a598f97e84e1bcd44a6c5 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 3, Column 7; Row 4, Column 2; Row 4, Column 3; Row 4, Column 7; Row 4, Column 8; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 6, Column 8; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 8, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/64.txt b/maze/task1/maps/level8/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0e763d3dc5bae7021ab517ac0e17798ca314d54 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 8; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 1, Column 7; Row 2, Column 4; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 3, Column 4; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 5, Column 8; Row 6, Column 2; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 3; Row 7, Column 4; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 4; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/65.txt b/maze/task1/maps/level8/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bbb2e088790890dd79eaabbdfd6976984194bdd --- /dev/null +++ b/maze/task1/maps/level8/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 8; Row 6, Column 1; Row 6, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 2; Row 8, Column 5; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/66.txt b/maze/task1/maps/level8/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..267c28f9bec3fc23652a25356b165118c892d609 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 8; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 8; Row 6, Column 3; Row 6, Column 5; Row 6, Column 8; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 7; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 7; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/67.txt b/maze/task1/maps/level8/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d9a7177578e39bbbec61fa1d74fff9939933731 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 7; Row 7, Column 1; Row 7, Column 4; Row 7, Column 5; Row 7, Column 8; Row 8, Column 1; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/68.txt b/maze/task1/maps/level8/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..b98ed678c06e9b7a74488a90c8bbab07b4cce1f1 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 3, Column 2; Row 3, Column 7; Row 4, Column 1; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 5; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 4; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/69.txt b/maze/task1/maps/level8/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ae94a820d87647ee0defdb8e43b0843bae84733 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 5; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/7.txt b/maze/task1/maps/level8/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d26a127be3bf1967e4a6676424d251b863860305 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 3, Column 4; Row 3, Column 7; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; Row 8, Column 2; Row 8, Column 4; Row 8, Column 8; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/70.txt b/maze/task1/maps/level8/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3c6db936febb0c26640edba92a5a140e9c62c1b --- /dev/null +++ b/maze/task1/maps/level8/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 3, Column 5; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 5, Column 3; Row 5, Column 8; Row 6, Column 2; Row 6, Column 3; Row 6, Column 5; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 4; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/71.txt b/maze/task1/maps/level8/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0bcce702d29da5538476223a4c7e5b87b52e1b1 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 8; Row 2, Column 2; Row 2, Column 6; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 5, Column 7; Row 5, Column 8; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/72.txt b/maze/task1/maps/level8/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..49967366cdd0169ae9073cb2d87aab7d15289884 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 6; Row 1, Column 8; Row 2, Column 2; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 5; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; Row 8, Column 8; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/73.txt b/maze/task1/maps/level8/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab1d9aafb672bdb00f16e6ed1681f8796fd35a34 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 3, Column 7; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/74.txt b/maze/task1/maps/level8/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ea2411e62653c458843f976d2cf962bf8ed022d --- /dev/null +++ b/maze/task1/maps/level8/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/75.txt b/maze/task1/maps/level8/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..80773b62370464d30ceef79c4d0cb05702ca478a --- /dev/null +++ b/maze/task1/maps/level8/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 3, Column 8; Row 4, Column 3; Row 4, Column 6; Row 4, Column 8; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/76.txt b/maze/task1/maps/level8/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..91be5ecf57182d42753b8d5466a8f60eb8a1dae5 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 2, Column 3; Row 2, Column 8; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 3, Column 7; Row 3, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 5; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 7; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/77.txt b/maze/task1/maps/level8/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..25469a2c81003c87b18a68a80784667536d245eb --- /dev/null +++ b/maze/task1/maps/level8/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 8; Row 3, Column 5; Row 3, Column 6; Row 3, Column 8; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 8, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/78.txt b/maze/task1/maps/level8/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..51529292073b7ef1dc091b510f3577b3dd09f8f3 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 5, Column 8; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 6; Row 8, Column 1; Row 8, Column 2; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/79.txt b/maze/task1/maps/level8/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7e08e2ea9f0d34a1abb84b70001c9b1f84175bf --- /dev/null +++ b/maze/task1/maps/level8/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 1, Column 8; Row 2, Column 2; Row 2, Column 4; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 5; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 5, Column 7; Row 5, Column 8; Row 6, Column 3; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 3; Row 7, Column 6; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/8.txt b/maze/task1/maps/level8/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..4efca9d5d09ceb6553ca1554af12b06e52d01e91 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 8; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 4; +The goal is at: Row 2, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/80.txt b/maze/task1/maps/level8/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..121b2b5cfbaa6644095b7fa265d521d57fd101a0 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 6; Row 2, Column 8; Row 3, Column 1; Row 3, Column 2; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/81.txt b/maze/task1/maps/level8/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..3234108477e8818059f962927892597e9ef84bcf --- /dev/null +++ b/maze/task1/maps/level8/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 8; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 5, Column 8; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/82.txt b/maze/task1/maps/level8/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..51cf51bc90b1c8476d84bee1e53bcc42c17bfff3 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 7; Row 1, Column 8; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 3; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 2; Row 5, Column 5; Row 5, Column 8; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/83.txt b/maze/task1/maps/level8/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9ad5e197f60af3440b7d14a8d1d0f458853b56f --- /dev/null +++ b/maze/task1/maps/level8/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 6; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 8; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 6; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/84.txt b/maze/task1/maps/level8/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..d31a090d97b62d00c459499d931650db78876fd0 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 8; Row 3, Column 3; Row 3, Column 7; Row 3, Column 8; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 6, Column 8; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/85.txt b/maze/task1/maps/level8/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..244427cf97bf5bec903f54c3026ed1ad99bc9885 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 4; Row 4, Column 6; Row 4, Column 7; Row 4, Column 8; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/86.txt b/maze/task1/maps/level8/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..7974578ca0941bf6ae8b3c02684621078770e0b0 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 1, Column 7; Row 2, Column 3; Row 3, Column 2; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/87.txt b/maze/task1/maps/level8/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..26be8914e01cf8e2d580072fa4d5d2b94214ca18 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 8; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 2, Column 8; Row 3, Column 2; Row 3, Column 5; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 4; Row 8, Column 8; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/88.txt b/maze/task1/maps/level8/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cba2cea67db233e02caa16793658815eee3f899 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 8; Row 2, Column 3; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 3, Column 8; Row 4, Column 1; Row 4, Column 5; Row 4, Column 8; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 4; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/89.txt b/maze/task1/maps/level8/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..98952fe2064e6838f08fbf9e4d9dab2281178c1f --- /dev/null +++ b/maze/task1/maps/level8/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 3, Column 7; Row 4, Column 1; Row 4, Column 5; Row 5, Column 3; Row 5, Column 5; Row 5, Column 8; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; Row 8, Column 1; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/9.txt b/maze/task1/maps/level8/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..26dbb6aa2078e9355bfa78f5df17a17678f22012 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 4, Column 7; Row 5, Column 4; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/90.txt b/maze/task1/maps/level8/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f6689278df4f870e430bddd5ea26288c36616e2 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 6; Row 6, Column 7; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/91.txt b/maze/task1/maps/level8/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..4aad7667033cb669a4c88db7696309174e3b953c --- /dev/null +++ b/maze/task1/maps/level8/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 8; Row 7, Column 7; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 7, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/92.txt b/maze/task1/maps/level8/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c494d634065d7208f4464de0504be9d4900613d --- /dev/null +++ b/maze/task1/maps/level8/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 4; Row 4, Column 5; Row 4, Column 8; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 7; Row 7, Column 2; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 5, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/93.txt b/maze/task1/maps/level8/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..abf93b45541be2935c37cc3d412a0766a90a2439 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 8; Row 3, Column 6; Row 3, Column 8; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 4, Column 8; Row 5, Column 3; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/94.txt b/maze/task1/maps/level8/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9676540943fad687c67b489e6a7aa9d7e309c64 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 1, Column 8; Row 2, Column 6; Row 2, Column 7; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 6; Row 7, Column 8; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/95.txt b/maze/task1/maps/level8/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..52633219004fa0e361b8fbcd1c8ceb21b61aec9b --- /dev/null +++ b/maze/task1/maps/level8/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 4; Row 4, Column 8; Row 5, Column 3; Row 5, Column 4; Row 5, Column 8; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/96.txt b/maze/task1/maps/level8/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..65a970cee12410b803f4254c81224c3f1caf86c3 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 1, Column 8; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 5; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 8; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 6; Row 7, Column 7; Row 8, Column 3; Row 8, Column 4; Row 8, Column 5; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 7, Column 2. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/97.txt b/maze/task1/maps/level8/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd25cd4453396cc1aa3e15c2d4561c2ac11c9233 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 2, Column 8; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 3, Column 8; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/98.txt b/maze/task1/maps/level8/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ab8c7141f10ac563a40fbc9660381b052d9d9d0 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 4, Column 8; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task1/maps/level8/pure_text/99.txt b/maze/task1/maps/level8/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..07fde88f8642f3dfb2da0d54a137a3f317ff10a6 --- /dev/null +++ b/maze/task1/maps/level8/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 4; Row 1, Column 6; Row 1, Column 7; Row 2, Column 1; Row 2, Column 5; Row 2, Column 6; Row 3, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 1; Row 5, Column 5; Row 5, Column 8; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 8; Row 7, Column 1; Row 7, Column 2; Row 7, Column 7; Row 8, Column 1; Row 8, Column 2; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 1, Column 8. \ No newline at end of file diff --git a/maze/task1/maps/level8/question/0.txt b/maze/task1/maps/level8/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef3d19c783d53d1fb484bd1afa107ecf006dfc52 --- /dev/null +++ b/maze/task1/maps/level8/question/0.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/1.txt b/maze/task1/maps/level8/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level8/question/1.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/10.txt b/maze/task1/maps/level8/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0125cf0c3fedcebbd1a2f2859f380e4bbbec240 --- /dev/null +++ b/maze/task1/maps/level8/question/10.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/11.txt b/maze/task1/maps/level8/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccaf38e8c5a2d88b701ce901a9feb262178d803d --- /dev/null +++ b/maze/task1/maps/level8/question/11.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 8? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/12.txt b/maze/task1/maps/level8/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level8/question/12.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/13.txt b/maze/task1/maps/level8/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..594c673db4e6987ce820741900d0837d1a11a36c --- /dev/null +++ b/maze/task1/maps/level8/question/13.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/14.txt b/maze/task1/maps/level8/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..df501fedfd36d0e931750c80355b4f94da3839d3 --- /dev/null +++ b/maze/task1/maps/level8/question/14.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/15.txt b/maze/task1/maps/level8/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef3d19c783d53d1fb484bd1afa107ecf006dfc52 --- /dev/null +++ b/maze/task1/maps/level8/question/15.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/16.txt b/maze/task1/maps/level8/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..1771d9d8fa2e332d820398e601ab025fb178d85a --- /dev/null +++ b/maze/task1/maps/level8/question/16.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/17.txt b/maze/task1/maps/level8/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..a41828e4f1e8cc14860f3a2b055f36cb71890f12 --- /dev/null +++ b/maze/task1/maps/level8/question/17.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/18.txt b/maze/task1/maps/level8/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..3addc6a598c921dac7cccb8362f5eacc65e2a141 --- /dev/null +++ b/maze/task1/maps/level8/question/18.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/19.txt b/maze/task1/maps/level8/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..df501fedfd36d0e931750c80355b4f94da3839d3 --- /dev/null +++ b/maze/task1/maps/level8/question/19.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/2.txt b/maze/task1/maps/level8/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e9fa45cfd3a3aba90c9e364d5c893262b836a5f --- /dev/null +++ b/maze/task1/maps/level8/question/2.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/20.txt b/maze/task1/maps/level8/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level8/question/20.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/21.txt b/maze/task1/maps/level8/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..fefad67cc5a0d24b2caa6c0d6037874ea5a69a9c --- /dev/null +++ b/maze/task1/maps/level8/question/21.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/22.txt b/maze/task1/maps/level8/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ebfbfdb38e2b5c36bde6d0d9786d921ea3b55fa --- /dev/null +++ b/maze/task1/maps/level8/question/22.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/23.txt b/maze/task1/maps/level8/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level8/question/23.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/24.txt b/maze/task1/maps/level8/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/maps/level8/question/24.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/25.txt b/maze/task1/maps/level8/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef3d19c783d53d1fb484bd1afa107ecf006dfc52 --- /dev/null +++ b/maze/task1/maps/level8/question/25.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/26.txt b/maze/task1/maps/level8/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..0564a2ac3a73d8bf61439c93f423f63a59c2f27f --- /dev/null +++ b/maze/task1/maps/level8/question/26.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/27.txt b/maze/task1/maps/level8/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..36a6ad16ea5d3c042db2a36990614fba5a7ed5d7 --- /dev/null +++ b/maze/task1/maps/level8/question/27.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 8? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/28.txt b/maze/task1/maps/level8/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..df501fedfd36d0e931750c80355b4f94da3839d3 --- /dev/null +++ b/maze/task1/maps/level8/question/28.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/29.txt b/maze/task1/maps/level8/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level8/question/29.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/3.txt b/maze/task1/maps/level8/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level8/question/3.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/30.txt b/maze/task1/maps/level8/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level8/question/30.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/31.txt b/maze/task1/maps/level8/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..0564a2ac3a73d8bf61439c93f423f63a59c2f27f --- /dev/null +++ b/maze/task1/maps/level8/question/31.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/32.txt b/maze/task1/maps/level8/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e436e3f18b95db221dc2583f87d74d4613830c5 --- /dev/null +++ b/maze/task1/maps/level8/question/32.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/33.txt b/maze/task1/maps/level8/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6ec744cbd714984c8ab25225ceb4cb67c3d73cd --- /dev/null +++ b/maze/task1/maps/level8/question/33.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/34.txt b/maze/task1/maps/level8/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dbd28bd5e1938f874803271205f0a0294170c7d --- /dev/null +++ b/maze/task1/maps/level8/question/34.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/35.txt b/maze/task1/maps/level8/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..6680e3bdbdc623569c5a7c50e68aba8c8da325c5 --- /dev/null +++ b/maze/task1/maps/level8/question/35.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/36.txt b/maze/task1/maps/level8/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level8/question/36.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/37.txt b/maze/task1/maps/level8/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level8/question/37.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/38.txt b/maze/task1/maps/level8/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level8/question/38.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/39.txt b/maze/task1/maps/level8/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level8/question/39.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/4.txt b/maze/task1/maps/level8/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level8/question/4.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/40.txt b/maze/task1/maps/level8/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e9fa45cfd3a3aba90c9e364d5c893262b836a5f --- /dev/null +++ b/maze/task1/maps/level8/question/40.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/41.txt b/maze/task1/maps/level8/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..812cbc96f7148ebcfa762a9a2de1b7e42ead798f --- /dev/null +++ b/maze/task1/maps/level8/question/41.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/42.txt b/maze/task1/maps/level8/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7d727d127780d75158a846f058d3f8c19f1122 --- /dev/null +++ b/maze/task1/maps/level8/question/42.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/43.txt b/maze/task1/maps/level8/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level8/question/43.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/44.txt b/maze/task1/maps/level8/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..f938bc6fd6e925eb937be32c9063c94f682f91a6 --- /dev/null +++ b/maze/task1/maps/level8/question/44.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/45.txt b/maze/task1/maps/level8/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level8/question/45.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/46.txt b/maze/task1/maps/level8/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e9fa45cfd3a3aba90c9e364d5c893262b836a5f --- /dev/null +++ b/maze/task1/maps/level8/question/46.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/47.txt b/maze/task1/maps/level8/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..7771609ec2010c48fc6dbb04c6d9cf73972b2c07 --- /dev/null +++ b/maze/task1/maps/level8/question/47.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 8? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/48.txt b/maze/task1/maps/level8/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..837f28cda676fd939dced66f358c3158340c309f --- /dev/null +++ b/maze/task1/maps/level8/question/48.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/49.txt b/maze/task1/maps/level8/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..aea66549a8182bcdc3cb575403ee585099190165 --- /dev/null +++ b/maze/task1/maps/level8/question/49.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 8? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/5.txt b/maze/task1/maps/level8/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d74ca0764b8d54f74c3434186314472f7a4bdda --- /dev/null +++ b/maze/task1/maps/level8/question/5.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/50.txt b/maze/task1/maps/level8/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6ffc2d4bb6aec39a38132cf821ae9333ccff6fc --- /dev/null +++ b/maze/task1/maps/level8/question/50.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/51.txt b/maze/task1/maps/level8/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..6680e3bdbdc623569c5a7c50e68aba8c8da325c5 --- /dev/null +++ b/maze/task1/maps/level8/question/51.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/52.txt b/maze/task1/maps/level8/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..aea66549a8182bcdc3cb575403ee585099190165 --- /dev/null +++ b/maze/task1/maps/level8/question/52.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 8? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/53.txt b/maze/task1/maps/level8/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..812cbc96f7148ebcfa762a9a2de1b7e42ead798f --- /dev/null +++ b/maze/task1/maps/level8/question/53.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/54.txt b/maze/task1/maps/level8/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff0ce0a9e6be30b4c2a87b2104adb943fb82e526 --- /dev/null +++ b/maze/task1/maps/level8/question/54.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/55.txt b/maze/task1/maps/level8/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f65f74cd1a3b6f8be9bc8ddd5b39add42a1fc9c --- /dev/null +++ b/maze/task1/maps/level8/question/55.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/56.txt b/maze/task1/maps/level8/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0125cf0c3fedcebbd1a2f2859f380e4bbbec240 --- /dev/null +++ b/maze/task1/maps/level8/question/56.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/57.txt b/maze/task1/maps/level8/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..132b09cffb04a00fb7f02060710110e6edfed96b --- /dev/null +++ b/maze/task1/maps/level8/question/57.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/58.txt b/maze/task1/maps/level8/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..e133c21dab2158efbba6d6cbe7fbae5b82d7e8cb --- /dev/null +++ b/maze/task1/maps/level8/question/58.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/59.txt b/maze/task1/maps/level8/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..c02581221bb152bff09a8ff025257f0aced3b94f --- /dev/null +++ b/maze/task1/maps/level8/question/59.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/6.txt b/maze/task1/maps/level8/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4de3360e0097ada5e6e4e970facc6b74f4ff4b28 --- /dev/null +++ b/maze/task1/maps/level8/question/6.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/60.txt b/maze/task1/maps/level8/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f5a5ddfcc34b9ada55f4cf204666f008080cf9a --- /dev/null +++ b/maze/task1/maps/level8/question/60.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/61.txt b/maze/task1/maps/level8/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level8/question/61.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/62.txt b/maze/task1/maps/level8/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b4f373aadbb6523176671d448c8e90d7598daa --- /dev/null +++ b/maze/task1/maps/level8/question/62.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/63.txt b/maze/task1/maps/level8/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2622128d2b60ef34b70d7bfd4a265ea8dac6b550 --- /dev/null +++ b/maze/task1/maps/level8/question/63.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/64.txt b/maze/task1/maps/level8/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dbd28bd5e1938f874803271205f0a0294170c7d --- /dev/null +++ b/maze/task1/maps/level8/question/64.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/65.txt b/maze/task1/maps/level8/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..0564a2ac3a73d8bf61439c93f423f63a59c2f27f --- /dev/null +++ b/maze/task1/maps/level8/question/65.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/66.txt b/maze/task1/maps/level8/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccaf38e8c5a2d88b701ce901a9feb262178d803d --- /dev/null +++ b/maze/task1/maps/level8/question/66.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 8? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/67.txt b/maze/task1/maps/level8/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ed58063f62cb91a6ae0759fb7f503aae71363e --- /dev/null +++ b/maze/task1/maps/level8/question/67.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/68.txt b/maze/task1/maps/level8/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..3514acbac064d30fa78d39709b7c275f99794eff --- /dev/null +++ b/maze/task1/maps/level8/question/68.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/69.txt b/maze/task1/maps/level8/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e9fa45cfd3a3aba90c9e364d5c893262b836a5f --- /dev/null +++ b/maze/task1/maps/level8/question/69.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/7.txt b/maze/task1/maps/level8/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff0ce0a9e6be30b4c2a87b2104adb943fb82e526 --- /dev/null +++ b/maze/task1/maps/level8/question/7.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/70.txt b/maze/task1/maps/level8/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..df501fedfd36d0e931750c80355b4f94da3839d3 --- /dev/null +++ b/maze/task1/maps/level8/question/70.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/71.txt b/maze/task1/maps/level8/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dbd28bd5e1938f874803271205f0a0294170c7d --- /dev/null +++ b/maze/task1/maps/level8/question/71.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/72.txt b/maze/task1/maps/level8/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb863c038616ac7be18732e42565aa159f7e335c --- /dev/null +++ b/maze/task1/maps/level8/question/72.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/73.txt b/maze/task1/maps/level8/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..1124a6c1a7cae7a77c066921fc6de4015697a88a --- /dev/null +++ b/maze/task1/maps/level8/question/73.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/74.txt b/maze/task1/maps/level8/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dbd28bd5e1938f874803271205f0a0294170c7d --- /dev/null +++ b/maze/task1/maps/level8/question/74.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/75.txt b/maze/task1/maps/level8/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..0564a2ac3a73d8bf61439c93f423f63a59c2f27f --- /dev/null +++ b/maze/task1/maps/level8/question/75.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/76.txt b/maze/task1/maps/level8/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..7771609ec2010c48fc6dbb04c6d9cf73972b2c07 --- /dev/null +++ b/maze/task1/maps/level8/question/76.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 8? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/77.txt b/maze/task1/maps/level8/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..df501fedfd36d0e931750c80355b4f94da3839d3 --- /dev/null +++ b/maze/task1/maps/level8/question/77.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/78.txt b/maze/task1/maps/level8/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0125cf0c3fedcebbd1a2f2859f380e4bbbec240 --- /dev/null +++ b/maze/task1/maps/level8/question/78.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/79.txt b/maze/task1/maps/level8/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..6680e3bdbdc623569c5a7c50e68aba8c8da325c5 --- /dev/null +++ b/maze/task1/maps/level8/question/79.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/8.txt b/maze/task1/maps/level8/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e436e3f18b95db221dc2583f87d74d4613830c5 --- /dev/null +++ b/maze/task1/maps/level8/question/8.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/80.txt b/maze/task1/maps/level8/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c077a737efb1e8a195950c091c121f62d2e3ca27 --- /dev/null +++ b/maze/task1/maps/level8/question/80.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/81.txt b/maze/task1/maps/level8/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level8/question/81.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/82.txt b/maze/task1/maps/level8/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d30d8de338610068896f903b12a0d7afc1f00a --- /dev/null +++ b/maze/task1/maps/level8/question/82.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/83.txt b/maze/task1/maps/level8/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e97ad2f10d80069f226ce7476c70a0fdfae4391 --- /dev/null +++ b/maze/task1/maps/level8/question/83.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/84.txt b/maze/task1/maps/level8/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..2622128d2b60ef34b70d7bfd4a265ea8dac6b550 --- /dev/null +++ b/maze/task1/maps/level8/question/84.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/85.txt b/maze/task1/maps/level8/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..16d4721f5c5658e494dfa10c15bc1258749faa01 --- /dev/null +++ b/maze/task1/maps/level8/question/85.txt @@ -0,0 +1 @@ +Is there a hole in row 5, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/86.txt b/maze/task1/maps/level8/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dbd28bd5e1938f874803271205f0a0294170c7d --- /dev/null +++ b/maze/task1/maps/level8/question/86.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/87.txt b/maze/task1/maps/level8/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..1771d9d8fa2e332d820398e601ab025fb178d85a --- /dev/null +++ b/maze/task1/maps/level8/question/87.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 6? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/88.txt b/maze/task1/maps/level8/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea945d83f54f4a28b7d3bd8419ee93b5686bbf15 --- /dev/null +++ b/maze/task1/maps/level8/question/88.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/89.txt b/maze/task1/maps/level8/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..379b226a9c554ce299cef43ae60a8ad1c5c6fdf7 --- /dev/null +++ b/maze/task1/maps/level8/question/89.txt @@ -0,0 +1 @@ +Is there a hole in row 8, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/9.txt b/maze/task1/maps/level8/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..df501fedfd36d0e931750c80355b4f94da3839d3 --- /dev/null +++ b/maze/task1/maps/level8/question/9.txt @@ -0,0 +1 @@ +Is there a hole in row 6, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/90.txt b/maze/task1/maps/level8/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d74ca0764b8d54f74c3434186314472f7a4bdda --- /dev/null +++ b/maze/task1/maps/level8/question/90.txt @@ -0,0 +1 @@ +Is there a hole in row 7, column 2? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/91.txt b/maze/task1/maps/level8/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f1b81a8a663099d6746d1c4f01ab6e6230c621 --- /dev/null +++ b/maze/task1/maps/level8/question/91.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/92.txt b/maze/task1/maps/level8/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..6807f3666790413804f81981fb5a518f536ac9e8 --- /dev/null +++ b/maze/task1/maps/level8/question/92.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 3? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/93.txt b/maze/task1/maps/level8/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..48e5f387060cd3cae3edb31cb52eda65678383ce --- /dev/null +++ b/maze/task1/maps/level8/question/93.txt @@ -0,0 +1 @@ +Is there a hole in row 4, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/94.txt b/maze/task1/maps/level8/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..812cbc96f7148ebcfa762a9a2de1b7e42ead798f --- /dev/null +++ b/maze/task1/maps/level8/question/94.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 5? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/95.txt b/maze/task1/maps/level8/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccaf38e8c5a2d88b701ce901a9feb262178d803d --- /dev/null +++ b/maze/task1/maps/level8/question/95.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 8? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/96.txt b/maze/task1/maps/level8/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7001659d1fc0834719cfd044003d44426ad21617 --- /dev/null +++ b/maze/task1/maps/level8/question/96.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/97.txt b/maze/task1/maps/level8/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..2912e68ffe41f8c41b3202d245ad723b88c22e85 --- /dev/null +++ b/maze/task1/maps/level8/question/97.txt @@ -0,0 +1 @@ +Is there a hole in row 3, column 1? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/98.txt b/maze/task1/maps/level8/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..7001659d1fc0834719cfd044003d44426ad21617 --- /dev/null +++ b/maze/task1/maps/level8/question/98.txt @@ -0,0 +1 @@ +Is there a hole in row 2, column 7? \ No newline at end of file diff --git a/maze/task1/maps/level8/question/99.txt b/maze/task1/maps/level8/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..d75f53e2e06fa19b3f1ca02ae32a2a5b4718dc4c --- /dev/null +++ b/maze/task1/maps/level8/question/99.txt @@ -0,0 +1 @@ +Is there a hole in row 1, column 4? \ No newline at end of file diff --git a/maze/task1/maps/level8/table/0.txt b/maze/task1/maps/level8/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a961faaa662eb5831644ba6dfe07d10f3ed5832d --- /dev/null +++ b/maze/task1/maps/level8/table/0.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | # | +| Row 2 | _ | # | # | # | _ | _ | # | # | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | _ | _ | # | +| Row 5 | # | # | # | _ | # | * | # | # | +| Row 6 | _ | _ | # | # | @ | # | # | # | +| Row 7 | _ | _ | _ | _ | _ | # | # | # | +| Row 8 | # | # | _ | _ | # | _ | # | # | diff --git a/maze/task1/maps/level8/table/1.txt b/maze/task1/maps/level8/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..47bd698729fb9af8e31fcb4bb47ed8aa338bda01 --- /dev/null +++ b/maze/task1/maps/level8/table/1.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | @ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | # | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | # | # | # | _ | +| Row 5 | # | # | # | # | # | _ | _ | # | +| Row 6 | * | _ | _ | # | _ | # | # | # | +| Row 7 | # | _ | # | # | _ | # | _ | # | +| Row 8 | # | _ | # | # | _ | # | # | _ | diff --git a/maze/task1/maps/level8/table/10.txt b/maze/task1/maps/level8/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dc3289d86c3f5fdf442147a76b873d6d006da64 --- /dev/null +++ b/maze/task1/maps/level8/table/10.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | _ | _ | # | # | +| Row 2 | _ | * | _ | _ | # | # | _ | _ | +| Row 3 | @ | # | _ | # | _ | # | _ | # | +| Row 4 | _ | # | _ | # | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | # | # | # | # | # | +| Row 7 | _ | # | # | _ | _ | _ | # | # | +| Row 8 | # | # | # | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level8/table/11.txt b/maze/task1/maps/level8/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cb30dc1b7b061fbbe83100247d58e17479c72e3 --- /dev/null +++ b/maze/task1/maps/level8/table/11.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | # | # | +| Row 2 | # | # | # | _ | # | _ | # | _ | +| Row 3 | # | # | # | # | _ | # | _ | # | +| Row 4 | # | # | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | # | +| Row 6 | * | # | _ | _ | _ | # | _ | _ | +| Row 7 | _ | # | _ | # | _ | _ | # | _ | +| Row 8 | _ | _ | # | _ | @ | # | # | # | diff --git a/maze/task1/maps/level8/table/12.txt b/maze/task1/maps/level8/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..60675cef360916cd4695ffba2b98203634606c09 --- /dev/null +++ b/maze/task1/maps/level8/table/12.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | _ | # | _ | # | @ | +| Row 2 | # | _ | # | # | * | # | # | # | +| Row 3 | _ | _ | # | # | # | _ | _ | # | +| Row 4 | # | # | # | _ | _ | _ | # | # | +| Row 5 | _ | # | # | # | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | # | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | # | _ | # | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/13.txt b/maze/task1/maps/level8/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f50b763bfa63c23ce4ac09b2f20da05c0e4e354 --- /dev/null +++ b/maze/task1/maps/level8/table/13.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | # | # | # | _ | _ | # | _ | +| Row 3 | # | _ | # | # | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | # | # | # | _ | +| Row 5 | # | # | # | _ | # | # | _ | # | +| Row 6 | _ | # | # | _ | # | # | _ | _ | +| Row 7 | _ | # | # | # | # | # | _ | _ | +| Row 8 | _ | * | # | _ | _ | # | # | # | diff --git a/maze/task1/maps/level8/table/14.txt b/maze/task1/maps/level8/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..13659b5487fe6184ed84b1c5862606121310c2e0 --- /dev/null +++ b/maze/task1/maps/level8/table/14.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | _ | # | _ | _ | # | +| Row 2 | # | _ | _ | # | _ | _ | # | # | +| Row 3 | # | _ | _ | # | # | _ | # | # | +| Row 4 | _ | _ | # | # | # | # | _ | _ | +| Row 5 | _ | # | _ | * | _ | @ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | # | +| Row 7 | # | # | # | # | # | # | _ | # | +| Row 8 | _ | # | _ | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level8/table/15.txt b/maze/task1/maps/level8/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b45327ad0f66fcea9ad32e7631fa79296bd7b59 --- /dev/null +++ b/maze/task1/maps/level8/table/15.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | # | _ | # | # | # | # | _ | +| Row 3 | # | # | * | # | _ | # | # | _ | +| Row 4 | # | # | # | # | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | # | # | # | +| Row 6 | _ | # | _ | _ | _ | # | _ | # | +| Row 7 | # | _ | _ | _ | _ | _ | # | _ | +| Row 8 | # | # | _ | # | @ | # | _ | _ | diff --git a/maze/task1/maps/level8/table/16.txt b/maze/task1/maps/level8/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..07d5c098ae6d4c628f95cc7ee3b0423294e5b3af --- /dev/null +++ b/maze/task1/maps/level8/table/16.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | @ | _ | _ | # | # | # | _ | # | +| Row 2 | # | # | # | # | _ | # | _ | # | +| Row 3 | # | _ | # | # | # | # | * | _ | +| Row 4 | # | # | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | # | +| Row 6 | # | # | _ | _ | _ | # | # | _ | +| Row 7 | _ | # | # | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | # | # | # | diff --git a/maze/task1/maps/level8/table/17.txt b/maze/task1/maps/level8/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..79555b4a4e3b140419ce703384a2eca8e5c7c2f0 --- /dev/null +++ b/maze/task1/maps/level8/table/17.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | # | _ | _ | _ | +| Row 2 | # | _ | * | # | # | # | # | _ | +| Row 3 | _ | # | _ | @ | # | # | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | # | _ | # | # | _ | _ | +| Row 6 | # | # | # | _ | # | _ | # | _ | +| Row 7 | _ | # | # | # | _ | # | _ | # | +| Row 8 | # | _ | # | _ | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/18.txt b/maze/task1/maps/level8/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dae3645306c0d651b45cfe14bd51e5fd0a16d9c --- /dev/null +++ b/maze/task1/maps/level8/table/18.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | * | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | # | _ | # | +| Row 3 | # | _ | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | # | _ | # | # | +| Row 5 | # | # | # | _ | # | # | # | # | +| Row 6 | _ | # | # | # | _ | # | _ | # | +| Row 7 | _ | _ | # | _ | # | # | _ | _ | +| Row 8 | # | # | # | _ | @ | # | _ | # | diff --git a/maze/task1/maps/level8/table/19.txt b/maze/task1/maps/level8/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..c11416188570c70800f0cc93026e928ceab49ec8 --- /dev/null +++ b/maze/task1/maps/level8/table/19.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | _ | # | # | _ | # | +| Row 2 | _ | _ | # | _ | _ | @ | _ | # | +| Row 3 | _ | # | _ | _ | _ | # | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | # | _ | +| Row 5 | # | _ | # | # | # | # | _ | _ | +| Row 6 | _ | # | # | _ | _ | * | # | # | +| Row 7 | # | # | _ | # | # | _ | # | _ | +| Row 8 | # | _ | _ | # | _ | # | # | _ | diff --git a/maze/task1/maps/level8/table/2.txt b/maze/task1/maps/level8/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..a80bc196aec5024b7a00a371e3f73d6f6b01cf3a --- /dev/null +++ b/maze/task1/maps/level8/table/2.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | _ | _ | # | _ | _ | +| Row 2 | # | # | # | # | # | _ | _ | _ | +| Row 3 | _ | _ | # | # | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | # | # | # | +| Row 5 | _ | _ | _ | # | @ | _ | # | _ | +| Row 6 | _ | # | * | # | # | # | _ | # | +| Row 7 | _ | _ | # | _ | _ | _ | # | _ | +| Row 8 | # | # | _ | # | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/20.txt b/maze/task1/maps/level8/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..dac068f2fedbc08e8521439e00ec5f86d780c91a --- /dev/null +++ b/maze/task1/maps/level8/table/20.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | _ | # | # | # | _ | _ | +| Row 2 | # | # | # | # | @ | _ | # | _ | +| Row 3 | # | # | _ | # | _ | _ | _ | # | +| Row 4 | # | # | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | # | # | _ | _ | +| Row 7 | # | # | # | _ | _ | # | _ | # | +| Row 8 | # | _ | _ | # | # | # | # | # | diff --git a/maze/task1/maps/level8/table/21.txt b/maze/task1/maps/level8/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2343000df35d826b66c8f0aa962d5f7af1449d4 --- /dev/null +++ b/maze/task1/maps/level8/table/21.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | # | # | * | _ | # | +| Row 2 | # | _ | # | # | # | # | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | # | _ | +| Row 5 | _ | # | _ | @ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | _ | +| Row 8 | # | # | # | # | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/22.txt b/maze/task1/maps/level8/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..102c1338d18dac29874ddebd61623d4ea63a01de --- /dev/null +++ b/maze/task1/maps/level8/table/22.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | # | # | _ | # | +| Row 2 | # | # | # | # | # | _ | _ | _ | +| Row 3 | # | # | _ | # | _ | _ | # | # | +| Row 4 | _ | _ | # | _ | # | _ | _ | # | +| Row 5 | # | # | _ | # | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | # | # | * | +| Row 7 | # | _ | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | @ | # | # | diff --git a/maze/task1/maps/level8/table/23.txt b/maze/task1/maps/level8/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad6ce60a6093b1002a9166198656ba686567d3a4 --- /dev/null +++ b/maze/task1/maps/level8/table/23.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | _ | # | # | # | +| Row 3 | * | _ | # | # | _ | _ | # | # | +| Row 4 | # | # | # | _ | _ | # | _ | # | +| Row 5 | _ | _ | # | # | # | _ | _ | # | +| Row 6 | _ | # | _ | # | _ | # | # | # | +| Row 7 | _ | _ | _ | _ | _ | # | # | # | +| Row 8 | # | # | # | _ | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/24.txt b/maze/task1/maps/level8/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..571b45d4ebb2ffadc9dba92ca5b7c9de8475f268 --- /dev/null +++ b/maze/task1/maps/level8/table/24.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | # | # | # | # | +| Row 2 | _ | _ | # | _ | # | # | # | @ | +| Row 3 | # | # | _ | # | # | # | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | _ | * | _ | _ | # | +| Row 7 | # | _ | _ | # | _ | # | _ | # | +| Row 8 | _ | # | # | _ | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/25.txt b/maze/task1/maps/level8/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..638e95fcd812f0ddf7d774d6bf0acacdc145c654 --- /dev/null +++ b/maze/task1/maps/level8/table/25.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | _ | # | _ | _ | * | +| Row 2 | # | _ | # | # | @ | # | # | # | +| Row 3 | # | # | _ | # | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | # | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | # | _ | _ | +| Row 7 | # | # | # | # | # | # | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task1/maps/level8/table/26.txt b/maze/task1/maps/level8/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..115bee04dbf5240ebe4378bbc2efb7d7dfbaa9e4 --- /dev/null +++ b/maze/task1/maps/level8/table/26.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | # | _ | # | # | _ | +| Row 2 | # | _ | _ | # | _ | # | * | _ | +| Row 3 | _ | _ | _ | # | # | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | # | # | # | _ | # | _ | # | +| Row 7 | # | # | # | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/27.txt b/maze/task1/maps/level8/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..c934dde87ce25687f6b55e115953659fc725a9ef --- /dev/null +++ b/maze/task1/maps/level8/table/27.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | # | +| Row 2 | # | _ | # | @ | # | # | _ | # | +| Row 3 | _ | # | _ | _ | _ | # | # | _ | +| Row 4 | # | # | _ | # | _ | _ | _ | # | +| Row 5 | # | # | # | _ | # | # | _ | # | +| Row 6 | # | _ | # | _ | # | _ | _ | # | +| Row 7 | _ | _ | # | * | # | # | # | # | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level8/table/28.txt b/maze/task1/maps/level8/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..a35484534f9b65472f0fc26b41dda527c1bcd372 --- /dev/null +++ b/maze/task1/maps/level8/table/28.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | @ | # | # | # | # | _ | # | +| Row 2 | # | _ | _ | _ | # | _ | # | # | +| Row 3 | _ | # | _ | # | # | # | # | _ | +| Row 4 | _ | _ | # | _ | # | * | _ | _ | +| Row 5 | # | _ | _ | # | _ | _ | _ | # | +| Row 6 | # | _ | _ | # | # | _ | # | _ | +| Row 7 | # | _ | # | _ | # | # | # | _ | +| Row 8 | _ | _ | # | # | # | _ | _ | # | diff --git a/maze/task1/maps/level8/table/29.txt b/maze/task1/maps/level8/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fc4a247f1fbb6f1972b5d3b84f54a8de345b789 --- /dev/null +++ b/maze/task1/maps/level8/table/29.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | # | # | +| Row 2 | _ | # | _ | _ | # | # | # | _ | +| Row 3 | # | # | @ | # | # | # | _ | # | +| Row 4 | * | _ | # | _ | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | # | # | _ | _ | +| Row 6 | # | # | _ | _ | # | # | _ | _ | +| Row 7 | # | _ | # | _ | # | # | _ | # | +| Row 8 | _ | # | _ | # | # | _ | _ | # | diff --git a/maze/task1/maps/level8/table/3.txt b/maze/task1/maps/level8/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..300ade304d08b6e6efd7486b1bfde0c3068a5514 --- /dev/null +++ b/maze/task1/maps/level8/table/3.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | # | # | # | _ | _ | +| Row 2 | # | # | # | _ | # | # | _ | _ | +| Row 3 | _ | _ | _ | # | # | # | # | _ | +| Row 4 | _ | # | _ | _ | # | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | # | # | +| Row 6 | # | _ | _ | _ | * | # | _ | _ | +| Row 7 | _ | # | _ | _ | @ | _ | # | # | +| Row 8 | # | # | # | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level8/table/30.txt b/maze/task1/maps/level8/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddd159f2187f3fcf40f4e0a3e4d631269a350b82 --- /dev/null +++ b/maze/task1/maps/level8/table/30.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | # | # | +| Row 3 | _ | # | _ | _ | # | # | # | # | +| Row 4 | _ | _ | _ | # | _ | # | # | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | @ | # | # | # | * | +| Row 7 | _ | _ | _ | # | _ | # | # | # | +| Row 8 | # | _ | # | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/31.txt b/maze/task1/maps/level8/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..23689cde2ab23b46b60c28675cc69856f380eea3 --- /dev/null +++ b/maze/task1/maps/level8/table/31.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | # | # | # | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | # | _ | # | * | +| Row 4 | # | # | # | # | _ | # | _ | _ | +| Row 5 | # | # | _ | # | _ | # | # | _ | +| Row 6 | _ | # | # | _ | _ | @ | # | # | +| Row 7 | # | _ | # | _ | _ | _ | # | # | +| Row 8 | # | # | # | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level8/table/32.txt b/maze/task1/maps/level8/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ead5af1c91e8702e2fe463f63123e982c64e8d7 --- /dev/null +++ b/maze/task1/maps/level8/table/32.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | # | # | _ | # | # | +| Row 2 | _ | _ | # | # | _ | _ | # | _ | +| Row 3 | _ | # | _ | _ | # | * | _ | # | +| Row 4 | _ | _ | # | # | # | _ | # | # | +| Row 5 | _ | _ | # | _ | # | _ | # | _ | +| Row 6 | # | # | _ | # | # | # | _ | # | +| Row 7 | # | @ | # | _ | # | _ | _ | # | +| Row 8 | _ | # | _ | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level8/table/33.txt b/maze/task1/maps/level8/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..d52ca209e128f1e94cbeece3aea15a4c3252f2b1 --- /dev/null +++ b/maze/task1/maps/level8/table/33.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | # | _ | # | +| Row 2 | # | # | _ | # | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | # | # | +| Row 4 | # | _ | # | # | # | # | _ | _ | +| Row 5 | _ | # | # | * | # | @ | _ | _ | +| Row 6 | # | _ | # | # | # | _ | _ | _ | +| Row 7 | _ | # | # | # | # | _ | # | # | +| Row 8 | _ | _ | # | _ | _ | _ | # | _ | diff --git a/maze/task1/maps/level8/table/34.txt b/maze/task1/maps/level8/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..8de5cd8f9d15ee8e31ac06e8f1be6afd4199f164 --- /dev/null +++ b/maze/task1/maps/level8/table/34.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | # | _ | # | _ | # | +| Row 3 | _ | # | # | # | # | _ | _ | _ | +| Row 4 | _ | # | # | # | @ | _ | # | _ | +| Row 5 | _ | # | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | # | +| Row 7 | _ | # | _ | _ | # | # | * | # | +| Row 8 | # | # | _ | # | # | _ | _ | # | diff --git a/maze/task1/maps/level8/table/35.txt b/maze/task1/maps/level8/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d9fe7afad36b1429b1ab28008d596f4108d99c7 --- /dev/null +++ b/maze/task1/maps/level8/table/35.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | # | # | # | # | _ | _ | # | # | +| Row 3 | _ | _ | # | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | # | # | # | _ | +| Row 6 | # | @ | * | # | # | _ | _ | # | +| Row 7 | _ | _ | # | # | # | _ | # | # | +| Row 8 | # | _ | # | # | # | # | _ | _ | diff --git a/maze/task1/maps/level8/table/36.txt b/maze/task1/maps/level8/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..70d26592c3a34de28c7ad027bee584f4d16900af --- /dev/null +++ b/maze/task1/maps/level8/table/36.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | _ | # | _ | _ | # | # | +| Row 2 | _ | _ | _ | # | # | # | _ | # | +| Row 3 | # | _ | _ | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | _ | # | +| Row 5 | # | # | # | # | _ | # | # | _ | +| Row 6 | @ | # | # | # | # | _ | _ | _ | +| Row 7 | # | _ | _ | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/37.txt b/maze/task1/maps/level8/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..a408b21ff6d61c85ef66ca6277320bc0aef44a9e --- /dev/null +++ b/maze/task1/maps/level8/table/37.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | _ | # | @ | # | +| Row 2 | # | # | _ | _ | # | _ | # | _ | +| Row 3 | # | _ | # | # | _ | # | _ | # | +| Row 4 | _ | # | _ | # | # | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | # | _ | +| Row 6 | # | # | _ | _ | # | _ | # | _ | +| Row 7 | _ | _ | # | # | * | _ | _ | _ | +| Row 8 | _ | # | # | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level8/table/38.txt b/maze/task1/maps/level8/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..536f22a0c119a1a1d5bb3632b4d84e58c7254aed --- /dev/null +++ b/maze/task1/maps/level8/table/38.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | # | # | # | +| Row 2 | # | # | _ | # | _ | # | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | # | # | # | # | # | +| Row 5 | _ | _ | * | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | # | # | +| Row 7 | _ | _ | # | # | @ | _ | _ | # | +| Row 8 | _ | # | # | _ | _ | # | # | # | diff --git a/maze/task1/maps/level8/table/39.txt b/maze/task1/maps/level8/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..72b25d924be3471b288fc4bd2b04b17a51d620c1 --- /dev/null +++ b/maze/task1/maps/level8/table/39.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | # | # | # | # | _ | +| Row 2 | _ | # | _ | # | # | # | # | # | +| Row 3 | # | _ | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | * | _ | +| Row 6 | _ | _ | # | # | # | @ | # | # | +| Row 7 | _ | # | _ | # | # | # | _ | # | +| Row 8 | # | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level8/table/4.txt b/maze/task1/maps/level8/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d0819e6c1d1a4e16c7f3762b52b6cca3bd9ddb5 --- /dev/null +++ b/maze/task1/maps/level8/table/4.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | _ | # | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | # | _ | # | # | _ | +| Row 4 | # | # | # | # | # | _ | # | _ | +| Row 5 | # | _ | # | _ | # | # | _ | # | +| Row 6 | # | # | # | _ | @ | _ | _ | # | +| Row 7 | _ | # | # | # | # | # | _ | _ | +| Row 8 | _ | # | _ | # | # | _ | _ | _ | diff --git a/maze/task1/maps/level8/table/40.txt b/maze/task1/maps/level8/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a22055260c5df88d61d65380d629630445d7896 --- /dev/null +++ b/maze/task1/maps/level8/table/40.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | # | _ | # | _ | # | # | +| Row 3 | _ | _ | _ | _ | @ | # | # | # | +| Row 4 | _ | # | # | _ | # | _ | * | # | +| Row 5 | _ | # | # | # | _ | _ | # | # | +| Row 6 | _ | # | _ | # | _ | _ | # | # | +| Row 7 | _ | # | _ | # | # | # | _ | _ | +| Row 8 | # | _ | # | _ | # | _ | # | # | diff --git a/maze/task1/maps/level8/table/41.txt b/maze/task1/maps/level8/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf6cdab1cdb9518a8ef6c2bf4a58dce3ada75d88 --- /dev/null +++ b/maze/task1/maps/level8/table/41.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | # | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | * | _ | # | # | +| Row 4 | # | # | # | _ | # | # | # | _ | +| Row 5 | _ | # | _ | _ | # | _ | # | # | +| Row 6 | _ | _ | @ | # | _ | # | # | _ | +| Row 7 | # | # | # | _ | # | _ | # | _ | +| Row 8 | _ | # | # | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level8/table/42.txt b/maze/task1/maps/level8/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..a79d43644d575b45464d0803472ff04c360fd8cf --- /dev/null +++ b/maze/task1/maps/level8/table/42.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | # | # | # | +| Row 2 | # | _ | # | # | # | # | # | _ | +| Row 3 | # | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | * | # | _ | _ | _ | @ | +| Row 5 | # | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | # | # | _ | # | _ | # | _ | +| Row 7 | # | # | _ | # | # | # | # | # | +| Row 8 | _ | _ | _ | _ | _ | # | # | # | diff --git a/maze/task1/maps/level8/table/43.txt b/maze/task1/maps/level8/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..752c2828ec92526c7192bfa95c95f45df6e1ba4a --- /dev/null +++ b/maze/task1/maps/level8/table/43.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | # | # | _ | # | _ | # | _ | +| Row 3 | # | # | _ | # | # | # | _ | # | +| Row 4 | _ | # | # | _ | # | # | # | # | +| Row 5 | # | _ | _ | _ | # | _ | _ | # | +| Row 6 | # | _ | # | _ | _ | @ | _ | _ | +| Row 7 | # | # | * | # | _ | _ | _ | # | +| Row 8 | # | _ | _ | _ | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/44.txt b/maze/task1/maps/level8/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..37dd1178f6aa65cfb109643cb6cd7b881ac6d91a --- /dev/null +++ b/maze/task1/maps/level8/table/44.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | * | _ | _ | _ | _ | # | # | +| Row 3 | _ | # | @ | _ | # | _ | # | # | +| Row 4 | _ | _ | _ | # | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | _ | +| Row 6 | _ | # | # | # | # | # | # | # | +| Row 7 | _ | _ | # | # | # | # | _ | # | +| Row 8 | # | # | # | _ | # | # | _ | # | diff --git a/maze/task1/maps/level8/table/45.txt b/maze/task1/maps/level8/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..d35a5f188bd27f9c415598d4181e014382c02919 --- /dev/null +++ b/maze/task1/maps/level8/table/45.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | # | @ | +| Row 2 | # | # | # | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | * | # | _ | _ | +| Row 5 | # | # | # | _ | _ | # | # | # | +| Row 6 | _ | # | # | # | _ | _ | # | _ | +| Row 7 | # | _ | # | # | # | _ | # | _ | +| Row 8 | # | # | _ | _ | _ | # | # | # | diff --git a/maze/task1/maps/level8/table/46.txt b/maze/task1/maps/level8/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..895d2c575f5791eb8e1f0fd57d22ab92eb63cd4f --- /dev/null +++ b/maze/task1/maps/level8/table/46.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | @ | # | # | # | # | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | # | _ | +| Row 3 | # | _ | # | # | _ | _ | _ | # | +| Row 4 | # | # | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | * | # | _ | _ | # | +| Row 6 | # | # | # | _ | _ | _ | # | # | +| Row 7 | # | # | _ | _ | # | _ | _ | # | +| Row 8 | # | # | # | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level8/table/47.txt b/maze/task1/maps/level8/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..e778067acc29b599b9aa239896e6ce77c19b507b --- /dev/null +++ b/maze/task1/maps/level8/table/47.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | # | _ | @ | _ | +| Row 2 | # | _ | # | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | # | * | +| Row 4 | _ | _ | # | # | _ | _ | # | _ | +| Row 5 | # | # | # | # | # | # | # | # | +| Row 6 | _ | # | # | # | _ | # | _ | # | +| Row 7 | _ | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | # | _ | _ | # | # | _ | # | diff --git a/maze/task1/maps/level8/table/48.txt b/maze/task1/maps/level8/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5bf50058f3659d699932ed6f4c2a9fc5f905633 --- /dev/null +++ b/maze/task1/maps/level8/table/48.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | # | # | _ | # | @ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | # | _ | # | +| Row 4 | # | # | # | # | _ | # | _ | # | +| Row 5 | # | _ | _ | # | # | # | # | _ | +| Row 6 | _ | # | # | _ | # | _ | # | # | +| Row 7 | _ | _ | # | # | _ | # | # | _ | +| Row 8 | _ | # | # | # | * | _ | _ | _ | diff --git a/maze/task1/maps/level8/table/49.txt b/maze/task1/maps/level8/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4196bcf59007ebb9edd9158fe835a88d41f5d42 --- /dev/null +++ b/maze/task1/maps/level8/table/49.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | # | # | # | +| Row 2 | # | _ | # | # | _ | _ | _ | _ | +| Row 3 | # | # | * | _ | _ | _ | _ | # | +| Row 4 | # | # | _ | # | _ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | # | # | _ | +| Row 6 | _ | # | # | # | # | _ | # | # | +| Row 7 | # | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | # | @ | # | _ | # | _ | # | diff --git a/maze/task1/maps/level8/table/5.txt b/maze/task1/maps/level8/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc66144294f6cc3f87e58484b5c93d9f66efba0e --- /dev/null +++ b/maze/task1/maps/level8/table/5.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | # | _ | # | @ | +| Row 2 | # | # | # | _ | # | _ | # | # | +| Row 3 | _ | # | _ | _ | # | _ | # | # | +| Row 4 | _ | # | # | # | _ | _ | # | # | +| Row 5 | # | _ | _ | _ | # | # | # | # | +| Row 6 | _ | * | # | # | _ | _ | # | # | +| Row 7 | _ | _ | # | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level8/table/50.txt b/maze/task1/maps/level8/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff81343c7821d18ad527204d9f7ebcdeaeafa7bf --- /dev/null +++ b/maze/task1/maps/level8/table/50.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | @ | # | _ | _ | _ | +| Row 2 | # | # | _ | _ | # | # | _ | # | +| Row 3 | # | _ | _ | # | # | _ | _ | _ | +| Row 4 | # | # | # | _ | # | _ | # | _ | +| Row 5 | # | _ | # | # | # | _ | _ | # | +| Row 6 | _ | # | * | _ | # | _ | # | _ | +| Row 7 | # | # | # | _ | # | # | _ | _ | +| Row 8 | _ | _ | # | # | # | _ | _ | # | diff --git a/maze/task1/maps/level8/table/51.txt b/maze/task1/maps/level8/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d328998db0091c79c6b3d161fa8034b1628cedf --- /dev/null +++ b/maze/task1/maps/level8/table/51.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | _ | # | * | +| Row 2 | # | _ | # | # | # | _ | # | _ | +| Row 3 | # | _ | _ | # | _ | _ | # | # | +| Row 4 | # | _ | _ | _ | _ | # | _ | # | +| Row 5 | # | # | _ | # | # | _ | # | _ | +| Row 6 | # | # | _ | @ | _ | _ | # | # | +| Row 7 | _ | # | _ | _ | # | # | _ | _ | +| Row 8 | # | # | _ | # | _ | # | # | _ | diff --git a/maze/task1/maps/level8/table/52.txt b/maze/task1/maps/level8/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab99684caafafc2d55223f2a05597d69d61d0747 --- /dev/null +++ b/maze/task1/maps/level8/table/52.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | # | # | # | +| Row 2 | # | _ | _ | # | # | # | # | # | +| Row 3 | _ | _ | # | # | _ | # | # | # | +| Row 4 | # | _ | _ | # | # | # | # | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | # | +| Row 6 | _ | _ | * | # | _ | _ | _ | @ | +| Row 7 | _ | # | _ | # | _ | # | _ | # | +| Row 8 | _ | # | # | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level8/table/53.txt b/maze/task1/maps/level8/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f8ab5a8878b46ee58e693b505f8d8e220841de0 --- /dev/null +++ b/maze/task1/maps/level8/table/53.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | _ | # | # | +| Row 3 | _ | # | # | _ | # | # | # | # | +| Row 4 | _ | _ | * | # | _ | _ | @ | # | +| Row 5 | # | _ | # | _ | _ | # | # | # | +| Row 6 | _ | _ | _ | # | # | _ | _ | # | +| Row 7 | _ | # | # | # | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/54.txt b/maze/task1/maps/level8/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d1ca71cff59e886c4574e480fd847b46c1fb94f --- /dev/null +++ b/maze/task1/maps/level8/table/54.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | # | # | # | _ | # | # | # | +| Row 3 | _ | # | * | # | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | # | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | _ | _ | _ | # | # | # | # | +| Row 7 | _ | # | _ | # | # | # | _ | # | +| Row 8 | _ | _ | # | # | _ | # | # | # | diff --git a/maze/task1/maps/level8/table/55.txt b/maze/task1/maps/level8/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8c77cecfa4606a58ba757e38ab3e84ab92bced4 --- /dev/null +++ b/maze/task1/maps/level8/table/55.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | @ | _ | # | _ | _ | _ | +| Row 2 | # | _ | # | # | # | # | _ | _ | +| Row 3 | # | _ | # | # | _ | # | # | # | +| Row 4 | _ | _ | * | # | # | # | # | _ | +| Row 5 | # | _ | # | _ | # | # | _ | _ | +| Row 6 | # | # | # | # | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | # | _ | # | diff --git a/maze/task1/maps/level8/table/56.txt b/maze/task1/maps/level8/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..a06c126fb6a7726e8f2a9bfc518057f5c875c13d --- /dev/null +++ b/maze/task1/maps/level8/table/56.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | # | # | +| Row 2 | _ | # | _ | _ | _ | # | # | # | +| Row 3 | # | # | # | _ | # | # | # | # | +| Row 4 | # | _ | # | # | _ | # | # | _ | +| Row 5 | _ | _ | # | _ | # | @ | # | _ | +| Row 6 | # | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | * | _ | # | _ | +| Row 8 | # | _ | _ | # | _ | # | # | _ | diff --git a/maze/task1/maps/level8/table/57.txt b/maze/task1/maps/level8/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..c79696222a8acf98318adc5d53811aa82d004763 --- /dev/null +++ b/maze/task1/maps/level8/table/57.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | # | # | _ | # | +| Row 3 | _ | # | # | # | _ | # | _ | # | +| Row 4 | # | # | @ | # | # | # | _ | _ | +| Row 5 | * | _ | _ | # | _ | # | _ | _ | +| Row 6 | _ | # | # | # | # | _ | # | # | +| Row 7 | # | _ | # | _ | _ | # | # | # | +| Row 8 | _ | _ | _ | # | _ | # | _ | # | diff --git a/maze/task1/maps/level8/table/58.txt b/maze/task1/maps/level8/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..42191afe65a4a8662a00d08bafae499380e08775 --- /dev/null +++ b/maze/task1/maps/level8/table/58.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | _ | _ | # | # | +| Row 2 | _ | _ | # | _ | * | _ | _ | # | +| Row 3 | # | # | _ | _ | @ | _ | _ | # | +| Row 4 | _ | # | # | _ | # | # | _ | # | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | # | _ | # | _ | _ | # | +| Row 7 | # | _ | _ | _ | # | # | # | # | +| Row 8 | # | # | # | # | _ | _ | # | _ | diff --git a/maze/task1/maps/level8/table/59.txt b/maze/task1/maps/level8/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..71d8e5d947f3ff92351e9ed902e423d5cf4efeec --- /dev/null +++ b/maze/task1/maps/level8/table/59.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | # | # | # | # | # | _ | # | +| Row 4 | # | _ | * | _ | # | # | # | _ | +| Row 5 | _ | # | # | # | # | # | _ | # | +| Row 6 | _ | _ | # | _ | # | _ | @ | # | +| Row 7 | _ | _ | _ | _ | # | # | # | # | +| Row 8 | _ | _ | _ | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level8/table/6.txt b/maze/task1/maps/level8/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..09a0e7e763792c70f7fd86017f50173e81c0789d --- /dev/null +++ b/maze/task1/maps/level8/table/6.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | # | # | _ | _ | +| Row 3 | # | # | # | # | _ | # | _ | # | +| Row 4 | _ | _ | # | # | _ | # | _ | _ | +| Row 5 | # | # | # | # | * | _ | # | _ | +| Row 6 | # | _ | _ | # | # | # | _ | # | +| Row 7 | # | # | # | # | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | @ | # | # | # | diff --git a/maze/task1/maps/level8/table/60.txt b/maze/task1/maps/level8/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..85037970fb75261c26454d92ef59162e87d360e7 --- /dev/null +++ b/maze/task1/maps/level8/table/60.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | # | _ | # | +| Row 3 | _ | _ | # | # | # | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | # | # | # | # | _ | _ | _ | +| Row 6 | # | _ | # | * | # | _ | # | _ | +| Row 7 | _ | # | _ | # | # | _ | # | _ | +| Row 8 | _ | # | _ | # | _ | _ | @ | # | diff --git a/maze/task1/maps/level8/table/61.txt b/maze/task1/maps/level8/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..84e2f9d3b1d8649bd5c85dd37f26bf9e498606b3 --- /dev/null +++ b/maze/task1/maps/level8/table/61.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | # | _ | # | # | _ | +| Row 2 | _ | _ | # | # | _ | @ | _ | # | +| Row 3 | _ | # | # | # | _ | # | # | _ | +| Row 4 | _ | _ | # | # | # | # | _ | # | +| Row 5 | # | _ | # | * | # | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | # | # | _ | # | +| Row 8 | # | _ | _ | # | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/62.txt b/maze/task1/maps/level8/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..48ec62a19f13f2a3c66a0632a6bbdaa8e863257c --- /dev/null +++ b/maze/task1/maps/level8/table/62.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | _ | # | # | _ | +| Row 2 | # | # | @ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | # | _ | _ | _ | # | +| Row 6 | # | _ | # | # | # | _ | # | # | +| Row 7 | _ | * | # | # | # | _ | # | _ | +| Row 8 | _ | _ | # | # | # | # | # | # | diff --git a/maze/task1/maps/level8/table/63.txt b/maze/task1/maps/level8/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac8d4697167ee5286a44ac73966d71dcbb3185c4 --- /dev/null +++ b/maze/task1/maps/level8/table/63.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | # | +| Row 2 | # | # | # | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | _ | # | # | +| Row 5 | _ | _ | # | # | # | # | # | # | +| Row 6 | # | _ | # | # | _ | _ | # | # | +| Row 7 | _ | _ | @ | # | _ | # | # | _ | +| Row 8 | * | # | # | _ | # | _ | # | # | diff --git a/maze/task1/maps/level8/table/64.txt b/maze/task1/maps/level8/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c04552cae50ef8ff79de572ad535680a66e0d15 --- /dev/null +++ b/maze/task1/maps/level8/table/64.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | # | _ | _ | # | # | +| Row 3 | _ | # | _ | # | _ | _ | # | @ | +| Row 4 | # | # | # | # | # | # | * | _ | +| Row 5 | # | # | _ | # | _ | # | _ | # | +| Row 6 | _ | # | _ | _ | _ | # | # | # | +| Row 7 | _ | _ | # | # | _ | _ | _ | # | +| Row 8 | # | # | _ | # | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/65.txt b/maze/task1/maps/level8/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0f3bb24c1b457bc8ddb459ef36ab5e2ac2036c3 --- /dev/null +++ b/maze/task1/maps/level8/table/65.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | * | _ | _ | # | # | +| Row 2 | # | _ | _ | # | _ | # | # | _ | +| Row 3 | _ | _ | # | # | # | _ | _ | # | +| Row 4 | _ | # | # | # | _ | # | # | # | +| Row 5 | # | _ | # | _ | # | _ | _ | # | +| Row 6 | # | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | # | # | # | +| Row 8 | @ | # | _ | _ | # | _ | # | # | diff --git a/maze/task1/maps/level8/table/66.txt b/maze/task1/maps/level8/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2dc0f6b3ba255352197d77340dccf752fb296a1 --- /dev/null +++ b/maze/task1/maps/level8/table/66.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | # | _ | # | _ | # | +| Row 2 | # | _ | _ | # | # | # | # | # | +| Row 3 | _ | _ | # | # | _ | # | _ | # | +| Row 4 | _ | # | # | _ | # | _ | _ | _ | +| Row 5 | # | # | _ | @ | _ | _ | * | # | +| Row 6 | _ | _ | # | _ | # | _ | _ | # | +| Row 7 | _ | # | # | _ | # | _ | # | _ | +| Row 8 | _ | # | # | _ | # | _ | # | _ | diff --git a/maze/task1/maps/level8/table/67.txt b/maze/task1/maps/level8/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..90e11af5b5a914a1993f8bbdd92dd02390639761 --- /dev/null +++ b/maze/task1/maps/level8/table/67.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | _ | _ | # | _ | +| Row 2 | _ | _ | # | # | # | # | # | # | +| Row 3 | _ | # | _ | # | _ | _ | _ | _ | +| Row 4 | # | # | * | _ | # | _ | # | _ | +| Row 5 | # | _ | # | _ | # | # | # | _ | +| Row 6 | # | # | # | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | # | # | _ | _ | # | +| Row 8 | # | _ | _ | @ | _ | # | _ | # | diff --git a/maze/task1/maps/level8/table/68.txt b/maze/task1/maps/level8/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eb7af8a075532215c45b0c2fb41e482525daa16 --- /dev/null +++ b/maze/task1/maps/level8/table/68.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | # | _ | # | _ | # | +| Row 2 | # | # | _ | # | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | @ | _ | # | _ | +| Row 4 | # | _ | _ | _ | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | # | _ | # | # | +| Row 6 | _ | # | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | # | # | # | # | _ | +| Row 8 | # | # | # | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/69.txt b/maze/task1/maps/level8/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..9830282a7920230a8de102ac304001b084b5fec8 --- /dev/null +++ b/maze/task1/maps/level8/table/69.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | # | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | # | _ | # | _ | # | +| Row 5 | # | # | _ | # | # | # | # | # | +| Row 6 | # | _ | _ | _ | _ | # | * | _ | +| Row 7 | # | _ | # | # | # | # | @ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task1/maps/level8/table/7.txt b/maze/task1/maps/level8/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9f8395d50752f86be06306b96792d1e25251d0f --- /dev/null +++ b/maze/task1/maps/level8/table/7.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | _ | +| Row 2 | @ | # | # | _ | # | # | # | _ | +| Row 3 | _ | _ | # | # | _ | _ | # | _ | +| Row 4 | # | _ | # | _ | # | # | * | # | +| Row 5 | # | # | _ | # | # | _ | # | _ | +| Row 6 | # | # | # | # | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | # | _ | +| Row 8 | _ | # | _ | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level8/table/70.txt b/maze/task1/maps/level8/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..673b4c0b2f5f4072e3b2ea0b7ed3e50bf01d266e --- /dev/null +++ b/maze/task1/maps/level8/table/70.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | # | # | # | # | _ | +| Row 2 | # | _ | _ | # | # | _ | # | # | +| Row 3 | * | # | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | # | @ | _ | _ | _ | # | +| Row 6 | _ | # | # | _ | # | _ | # | # | +| Row 7 | _ | # | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | # | # | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/71.txt b/maze/task1/maps/level8/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..5613e5ac8d0652793af076dd7546e94225239055 --- /dev/null +++ b/maze/task1/maps/level8/table/71.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | # | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | # | # | _ | # | # | +| Row 4 | # | _ | _ | _ | # | # | _ | # | +| Row 5 | # | _ | _ | @ | # | _ | # | # | +| Row 6 | _ | _ | # | # | # | # | _ | _ | +| Row 7 | _ | # | # | # | _ | _ | * | # | +| Row 8 | _ | # | _ | # | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/72.txt b/maze/task1/maps/level8/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..4842c6daddb136dd1b9514d89b566f9eb5488ee3 --- /dev/null +++ b/maze/task1/maps/level8/table/72.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | # | +| Row 2 | * | # | _ | _ | _ | # | # | # | +| Row 3 | # | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | @ | # | # | # | # | +| Row 5 | _ | # | _ | _ | # | # | _ | # | +| Row 6 | # | _ | # | _ | # | # | # | # | +| Row 7 | _ | # | _ | _ | # | _ | _ | # | +| Row 8 | # | # | # | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level8/table/73.txt b/maze/task1/maps/level8/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..f46784bb0167d6dc7fafbd2a5471d298573deb35 --- /dev/null +++ b/maze/task1/maps/level8/table/73.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | # | # | _ | +| Row 3 | # | _ | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | # | # | _ | +| Row 5 | # | # | _ | # | # | # | # | # | +| Row 6 | _ | _ | _ | * | _ | # | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | # | +| Row 8 | # | @ | # | # | # | _ | _ | # | diff --git a/maze/task1/maps/level8/table/74.txt b/maze/task1/maps/level8/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..950493c5b00e58fd1f4669da770937c2510d2cf7 --- /dev/null +++ b/maze/task1/maps/level8/table/74.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | # | _ | _ | _ | _ | +| Row 2 | * | # | # | _ | # | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | # | # | +| Row 4 | # | _ | # | # | # | # | # | _ | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | @ | _ | _ | # | # | _ | +| Row 7 | # | _ | # | # | _ | # | # | # | +| Row 8 | # | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level8/table/75.txt b/maze/task1/maps/level8/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef0181881c63e550c72c97a829be6e35cc8bcbd3 --- /dev/null +++ b/maze/task1/maps/level8/table/75.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | # | _ | _ | _ | +| Row 2 | _ | * | _ | # | # | # | # | _ | +| Row 3 | # | _ | _ | _ | # | # | # | # | +| Row 4 | _ | _ | # | _ | _ | # | @ | # | +| Row 5 | _ | _ | # | # | # | # | _ | # | +| Row 6 | _ | # | # | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | # | +| Row 8 | # | _ | # | _ | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/76.txt b/maze/task1/maps/level8/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4d69199de5f2e236e5ebc9376b9234b3e1669f0 --- /dev/null +++ b/maze/task1/maps/level8/table/76.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | # | _ | _ | +| Row 2 | * | _ | # | _ | _ | _ | _ | # | +| Row 3 | # | @ | # | # | # | # | # | # | +| Row 4 | _ | # | # | _ | # | # | # | _ | +| Row 5 | # | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | # | # | _ | +| Row 7 | # | # | _ | # | _ | _ | # | # | +| Row 8 | _ | # | _ | # | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/77.txt b/maze/task1/maps/level8/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8967a65f480c6f8aa7ffff9153fd75b88bb0b508 --- /dev/null +++ b/maze/task1/maps/level8/table/77.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | # | # | _ | # | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | # | # | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | # | _ | +| Row 5 | # | # | # | # | # | # | _ | # | +| Row 6 | _ | _ | # | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | # | +| Row 8 | # | * | @ | _ | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/78.txt b/maze/task1/maps/level8/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..010d36db664c339d54433c167ece47c695e040a9 --- /dev/null +++ b/maze/task1/maps/level8/table/78.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | _ | # | # | # | +| Row 2 | # | _ | _ | # | _ | # | _ | _ | +| Row 3 | # | _ | # | * | _ | _ | _ | _ | +| Row 4 | _ | # | # | # | _ | # | _ | _ | +| Row 5 | _ | # | # | # | _ | @ | # | # | +| Row 6 | _ | _ | # | _ | # | # | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | _ | +| Row 8 | # | # | _ | # | # | # | _ | _ | diff --git a/maze/task1/maps/level8/table/79.txt b/maze/task1/maps/level8/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..61b9842381024f255c3c4a0b999e45245de90e78 --- /dev/null +++ b/maze/task1/maps/level8/table/79.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | # | _ | # | # | +| Row 2 | _ | # | _ | # | _ | _ | # | # | +| Row 3 | _ | _ | # | _ | # | _ | _ | # | +| Row 4 | # | # | @ | # | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | # | _ | # | # | +| Row 6 | _ | * | # | _ | _ | _ | # | # | +| Row 7 | # | _ | # | _ | _ | # | _ | _ | +| Row 8 | _ | _ | # | # | # | # | # | # | diff --git a/maze/task1/maps/level8/table/8.txt b/maze/task1/maps/level8/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..e399082bc3ae05f51ffd9a932c67bc12440b9e4c --- /dev/null +++ b/maze/task1/maps/level8/table/8.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | # | # | * | +| Row 3 | # | # | _ | _ | # | # | _ | # | +| Row 4 | # | _ | _ | _ | # | _ | _ | @ | +| Row 5 | # | # | # | # | # | _ | # | # | +| Row 6 | # | _ | # | # | _ | _ | # | _ | +| Row 7 | _ | # | # | _ | # | _ | _ | # | +| Row 8 | # | # | _ | # | _ | _ | _ | _ | diff --git a/maze/task1/maps/level8/table/80.txt b/maze/task1/maps/level8/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..bee655d078d6ccd0e73015fbb8c91e3940332200 --- /dev/null +++ b/maze/task1/maps/level8/table/80.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | # | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | # | +| Row 3 | # | # | _ | _ | _ | # | _ | # | +| Row 4 | # | _ | # | # | @ | # | # | _ | +| Row 5 | # | _ | * | _ | # | # | # | _ | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | # | _ | # | # | _ | # | +| Row 8 | _ | # | _ | # | # | # | _ | # | diff --git a/maze/task1/maps/level8/table/81.txt b/maze/task1/maps/level8/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcf16b9db32c65c3cdb83d5088e37ca94ea1a9eb --- /dev/null +++ b/maze/task1/maps/level8/table/81.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | # | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | # | # | +| Row 4 | # | _ | _ | # | _ | # | # | # | +| Row 5 | _ | # | _ | # | # | _ | # | # | +| Row 6 | _ | * | # | _ | # | # | # | # | +| Row 7 | # | _ | @ | _ | _ | # | # | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task1/maps/level8/table/82.txt b/maze/task1/maps/level8/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5411ec1fce1d8a2f276d21bc26d6c9b20cb3b451 --- /dev/null +++ b/maze/task1/maps/level8/table/82.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | _ | _ | @ | # | # | +| Row 2 | _ | _ | # | # | _ | _ | # | # | +| Row 3 | # | # | # | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | # | # | # | +| Row 5 | _ | # | _ | _ | # | _ | * | # | +| Row 6 | _ | _ | _ | _ | # | # | # | _ | +| Row 7 | # | _ | # | _ | # | # | _ | # | +| Row 8 | _ | _ | # | # | # | _ | # | # | diff --git a/maze/task1/maps/level8/table/83.txt b/maze/task1/maps/level8/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a02bd6eda8a00fedc1c0953945e40fa0f4ddd94 --- /dev/null +++ b/maze/task1/maps/level8/table/83.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | # | # | _ | _ | +| Row 2 | # | _ | # | # | _ | _ | # | # | +| Row 3 | # | # | # | _ | _ | # | _ | # | +| Row 4 | # | # | _ | _ | _ | # | * | _ | +| Row 5 | _ | _ | # | # | # | # | # | _ | +| Row 6 | # | # | _ | _ | # | _ | _ | # | +| Row 7 | # | _ | # | # | # | # | _ | # | +| Row 8 | _ | @ | _ | _ | _ | # | _ | _ | diff --git a/maze/task1/maps/level8/table/84.txt b/maze/task1/maps/level8/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..78423bf2952f5c76abb3e860d10ef309ae32ea3e --- /dev/null +++ b/maze/task1/maps/level8/table/84.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | _ | _ | _ | * | # | +| Row 2 | # | # | _ | _ | # | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | # | # | +| Row 4 | _ | # | _ | # | # | # | _ | # | +| Row 5 | _ | _ | _ | # | _ | # | # | # | +| Row 6 | # | _ | # | # | @ | # | _ | # | +| Row 7 | _ | # | # | _ | # | _ | _ | _ | +| Row 8 | # | # | # | _ | _ | _ | _ | # | diff --git a/maze/task1/maps/level8/table/85.txt b/maze/task1/maps/level8/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a8ce9ceda588ee5a01ca2b971c74614b214f3ea --- /dev/null +++ b/maze/task1/maps/level8/table/85.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | _ | _ | _ | # | # | +| Row 2 | # | # | _ | _ | # | _ | # | @ | +| Row 3 | # | _ | _ | # | _ | # | # | _ | +| Row 4 | _ | * | _ | # | _ | # | # | # | +| Row 5 | # | _ | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | # | _ | # | +| Row 7 | _ | _ | # | # | _ | # | _ | # | +| Row 8 | # | # | _ | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level8/table/86.txt b/maze/task1/maps/level8/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdaf66306b5cfc9b2fff6deb53811798b55aac37 --- /dev/null +++ b/maze/task1/maps/level8/table/86.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | _ | # | # | +| Row 4 | # | _ | # | # | # | # | _ | # | +| Row 5 | # | # | @ | _ | # | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | _ | # | # | _ | _ | # | +| Row 8 | # | # | # | # | _ | # | _ | # | diff --git a/maze/task1/maps/level8/table/87.txt b/maze/task1/maps/level8/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..59ee337b47a7d80f59889020912f408b1441b4c0 --- /dev/null +++ b/maze/task1/maps/level8/table/87.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | # | # | _ | # | +| Row 3 | _ | # | _ | _ | # | # | _ | # | +| Row 4 | # | _ | # | # | _ | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | * | # | # | +| Row 6 | _ | # | # | _ | _ | # | # | _ | +| Row 7 | # | # | # | _ | # | # | @ | # | +| Row 8 | _ | _ | _ | # | _ | _ | _ | # | diff --git a/maze/task1/maps/level8/table/88.txt b/maze/task1/maps/level8/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..308e60a16c9356e1a7b37c2302463a5420d26ccb --- /dev/null +++ b/maze/task1/maps/level8/table/88.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | # | # | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | _ | # | # | +| Row 3 | # | _ | # | * | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | @ | _ | # | +| Row 5 | _ | _ | # | # | # | # | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | # | # | # | # | _ | # | # | +| Row 8 | _ | # | _ | # | _ | _ | # | # | diff --git a/maze/task1/maps/level8/table/89.txt b/maze/task1/maps/level8/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..36484251c17764d2e9699b6ef286d2f1974a37ba --- /dev/null +++ b/maze/task1/maps/level8/table/89.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | # | * | # | _ | +| Row 3 | _ | # | # | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | _ | # | +| Row 6 | # | # | # | # | # | # | _ | # | +| Row 7 | # | # | _ | # | @ | # | _ | _ | +| Row 8 | # | _ | # | # | # | _ | # | # | diff --git a/maze/task1/maps/level8/table/9.txt b/maze/task1/maps/level8/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaf6850684e5984d8ead30d0478eb0c4da6d664b --- /dev/null +++ b/maze/task1/maps/level8/table/9.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | # | # | # | # | # | # | +| Row 3 | _ | _ | # | # | # | # | * | _ | +| Row 4 | # | # | # | _ | _ | # | # | _ | +| Row 5 | _ | @ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | # | # | _ | +| Row 7 | _ | # | _ | # | # | # | # | # | +| Row 8 | _ | # | # | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level8/table/90.txt b/maze/task1/maps/level8/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..31892f72f795ebf16a8666efe2eb6a7bbb91f3a6 --- /dev/null +++ b/maze/task1/maps/level8/table/90.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | @ | _ | # | # | # | _ | # | _ | +| Row 2 | # | # | _ | _ | # | # | # | # | +| Row 3 | _ | _ | # | # | _ | # | * | # | +| Row 4 | _ | # | # | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | # | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | # | # | _ | # | _ | +| Row 8 | _ | _ | # | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level8/table/91.txt b/maze/task1/maps/level8/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4d72d90ab863dca63e205291e2a0902596ef5bf --- /dev/null +++ b/maze/task1/maps/level8/table/91.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | _ | _ | # | # | # | +| Row 2 | _ | _ | # | _ | # | # | # | _ | +| Row 3 | _ | # | _ | # | _ | # | _ | # | +| Row 4 | # | _ | _ | # | # | _ | # | # | +| Row 5 | # | _ | _ | _ | # | _ | # | _ | +| Row 6 | # | # | _ | _ | # | _ | _ | # | +| Row 7 | _ | @ | _ | _ | _ | _ | # | * | +| Row 8 | _ | _ | _ | # | # | # | # | # | diff --git a/maze/task1/maps/level8/table/92.txt b/maze/task1/maps/level8/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..63427f48fd27580f0bf56a105ad10202485ae9dc --- /dev/null +++ b/maze/task1/maps/level8/table/92.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | # | # | # | # | +| Row 2 | # | _ | # | # | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | # | # | * | +| Row 6 | # | # | _ | # | # | _ | # | _ | +| Row 7 | _ | # | _ | _ | _ | @ | _ | # | +| Row 8 | _ | # | _ | # | # | # | # | _ | diff --git a/maze/task1/maps/level8/table/93.txt b/maze/task1/maps/level8/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc0a4f91b76baba6d105473cf42bcbacee10bd13 --- /dev/null +++ b/maze/task1/maps/level8/table/93.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | @ | # | _ | _ | +| Row 2 | # | # | # | # | _ | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | _ | # | +| Row 4 | # | # | # | # | _ | _ | # | # | +| Row 5 | _ | * | # | _ | # | _ | # | _ | +| Row 6 | # | _ | _ | # | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | # | _ | +| Row 8 | _ | _ | # | # | _ | # | _ | _ | diff --git a/maze/task1/maps/level8/table/94.txt b/maze/task1/maps/level8/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..89a525ad68fb44be1db54e7f7371f8c2be98c1f9 --- /dev/null +++ b/maze/task1/maps/level8/table/94.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | # | # | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | # | # | _ | +| Row 3 | # | _ | # | @ | # | _ | # | # | +| Row 4 | _ | # | # | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | # | # | _ | # | # | +| Row 6 | # | * | # | _ | # | # | # | _ | +| Row 7 | # | _ | # | _ | _ | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | # | _ | diff --git a/maze/task1/maps/level8/table/95.txt b/maze/task1/maps/level8/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..946743203d30f83118a390903c93b5fcbf97ba67 --- /dev/null +++ b/maze/task1/maps/level8/table/95.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | # | # | _ | +| Row 2 | # | _ | _ | # | # | # | * | _ | +| Row 3 | # | # | _ | # | # | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | @ | # | +| Row 5 | _ | _ | # | # | _ | _ | _ | # | +| Row 6 | _ | # | _ | # | _ | # | # | # | +| Row 7 | # | _ | # | # | _ | # | # | # | +| Row 8 | # | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task1/maps/level8/table/96.txt b/maze/task1/maps/level8/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a1e8a4a28e0d72d0565d96429b35808a84db96a --- /dev/null +++ b/maze/task1/maps/level8/table/96.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | # | _ | _ | # | # | +| Row 2 | _ | _ | # | # | # | _ | # | # | +| Row 3 | # | _ | _ | # | _ | # | _ | _ | +| Row 4 | # | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | # | _ | # | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | # | # | # | _ | +| Row 7 | _ | * | @ | _ | _ | # | # | _ | +| Row 8 | _ | _ | # | # | # | _ | # | # | diff --git a/maze/task1/maps/level8/table/97.txt b/maze/task1/maps/level8/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb0d78042437672aa98593455ed32d42836ca80d --- /dev/null +++ b/maze/task1/maps/level8/table/97.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | # | _ | # | _ | _ | +| Row 2 | # | _ | # | _ | _ | # | _ | # | +| Row 3 | # | _ | # | * | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | # | _ | +| Row 5 | # | @ | # | _ | # | # | _ | _ | +| Row 6 | # | # | _ | _ | # | # | _ | # | +| Row 7 | # | _ | # | _ | # | # | # | # | +| Row 8 | # | # | _ | # | _ | _ | _ | _ | diff --git a/maze/task1/maps/level8/table/98.txt b/maze/task1/maps/level8/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..9773249201b99bb46b4d8fed724c82a461b2fc5b --- /dev/null +++ b/maze/task1/maps/level8/table/98.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | # | # | # | +| Row 2 | _ | _ | # | # | _ | # | # | # | +| Row 3 | @ | _ | # | _ | _ | # | # | _ | +| Row 4 | # | # | _ | # | _ | _ | # | # | +| Row 5 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | # | _ | _ | +| Row 7 | _ | # | # | # | _ | # | # | # | +| Row 8 | # | # | # | _ | # | # | _ | _ | diff --git a/maze/task1/maps/level8/table/99.txt b/maze/task1/maps/level8/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..7aeb2f41484363d62d3d4428996700848aab48d9 --- /dev/null +++ b/maze/task1/maps/level8/table/99.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | # | # | _ | # | # | * | +| Row 2 | # | _ | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | # | _ | @ | # | # | # | _ | +| Row 5 | # | _ | _ | _ | # | _ | _ | # | +| Row 6 | # | # | # | # | _ | _ | _ | # | +| Row 7 | # | # | _ | _ | _ | _ | # | _ | +| Row 8 | # | # | # | # | _ | # | _ | # | diff --git a/maze/task1/prompt-text/prompt-text.txt b/maze/task1/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..66fb03220fcbfb32851756d0359082a5a51378a9 --- /dev/null +++ b/maze/task1/prompt-text/prompt-text.txt @@ -0,0 +1,23 @@ +In this task, you will analyze a maze to determine if there is a hole in a specific position. +The following figure illustrates the appearances of the player, holes, lands, and the goal within the maze. You will need to focus on the appearance of the hole. + + + +Here is an example to illustrate how to analyze and answer the question: + + + +Example question: Is there a hole in row 3, column 3? + +In this example: +- We check the position in row 3, column 3. +- According to the image, it is a land square. It does not contain a hole. +- Therefore, you will output " No". + +Your output should be: " No" or " Yes", depending on whether there is a hole at the specified position. + +Now you will analyze the following maze and answer the question: + + + + diff --git a/maze/task1/prompt-visual-images/system-figure-1.png b/maze/task1/prompt-visual-images/system-figure-1.png new file mode 100644 index 0000000000000000000000000000000000000000..3ea294f723f08b14abfe02349587a8bcfde5fe2d --- /dev/null +++ b/maze/task1/prompt-visual-images/system-figure-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7321fc3f75b4a763f4c2e5965a513c281bd8542cec31bb90b9f60eff63035b08 +size 159667 diff --git a/maze/task1/prompt-visual-images/system-figure-2.png b/maze/task1/prompt-visual-images/system-figure-2.png new file mode 100644 index 0000000000000000000000000000000000000000..b453ba1a67610367a9480fa7ab711530aaabd58a --- /dev/null +++ b/maze/task1/prompt-visual-images/system-figure-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc4ae6e6474849687801599ffa7b112ce7044ae74bbd612fa01c8619afff9c1 +size 7099 diff --git a/maze/task1/test.py b/maze/task1/test.py new file mode 100644 index 0000000000000000000000000000000000000000..db780fbb51953e7ab534c0ef2c56350fdcd6c7be --- /dev/null +++ b/maze/task1/test.py @@ -0,0 +1,165 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) + # torch.manual_seed(seed) + # torch.cuda.manual_seed(seed) + # torch.backends.cudnn.deterministic = True + # env.seed(seed) +seed_everything(1) + +def random_generate_questions(): + if os.path.isdir("questions-hole-pos-50"): + print("Questions are already generated") + return + os.makedirs("questions-hole-pos-50", exist_ok=False) + os.makedirs("answers-hole-pos-50", exist_ok=False) + for level in range(3,9): + os.makedirs("questions-hole-pos-50/level%d"%(level)) + os.makedirs("answers-hole-pos-50/level%d"%(level)) + for question_id in range(100): + # random ask a grid + row_num = random.sample(range(level), 1)[0] + col_num = random.sample(range(level), 1)[0] + # find the GT + with open("utils/maps-50-text/level%d/%d.txt"%(level, question_id), "r") as f: + contents = f.read() + rows = contents.split('\n') + grid_content = rows[row_num][col_num] + if grid_content == "H": + answer = "Y" + else: + answer = "N" + # write question and answer + question = "Is there a hole in row %d, column %d?"%(row_num+1, col_num+1) + with open("questions-hole-pos-50/level%d/%d.txt"%(level, question_id), "w") as f: + f.write(question) + with open("answers-hole-pos-50/level%d/%d.txt"%(level, question_id), "w") as f: + f.write(answer) + + + +levels = [3,4,5,6,7,8] +in_context_example_num = 0 # 0, 1, 2, 4, 8 + + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +EXAMPLE_DICT = { + 3: [], + 4: [], + 5: [], + 6: [], + 7: [], + 8: [], +} + +# Prepare examples +for level in levels: + for example_id in range(8): + img_input = PIL.Image.open("example/level%d/img/%d.png"%(level, example_id)) + with open("example/level%d/question/%d.txt"%(level, example_id), "r") as f: + question_input = f.read() + with open("example/level%d/answer/%d.txt"%(level, example_id), "r") as f: + answer_input = f.read() + this_example = (img_input, question_input, answer_input) + EXAMPLE_DICT[level].append(this_example) + +# import ipdb; ipdb.set_trace() +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + map_path = "maps/level%d/img/"%(level) + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + img_input = PIL.Image.open(map_path + "%d.png"%(curr_id)) + prompt_input_1 = ''' +In this task, you will analyze a maze to determine if there is a hole in a specific position. +The following figure illustrates the appearances of the player, holes, lands, and the goal within the maze. You will need to focus on the appearance of the hole. +''' + prompt_input_2 = ''' +Here is an example to illustrate how to analyze and answer the question: +''' + prompt_input_3 = ''' +Example question: Is there a hole in row 3, column 3? + +In this example: +- We check the position in row 3, column 3. +- According to the image, it is a land square. It does not contain a hole. +- Therefore, you will output " No". + +Your output should be: " No" or " Yes", depending on whether there is a hole at the specified position. +''' + question_examples = [] + answer_examples = [] + image_examples = [] + if in_context_example_num > 0: + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + image_examples.append(this_example[0]) + question_examples.append(this_example[1] + "\n") + answer_examples.append(this_example[2] + "\n\n") + prompt_input_4 = "\n\nNow you will analyze the following maze and answer the question: " + with open("maps/level%d/question/%d.txt"%(level, curr_id), "r") as f: + prompt_input_5 = f.read() + prompt_img_1 = PIL.Image.open('prompt-visual-images/system-figure-1.png') + prompt_img_2 = PIL.Image.open('prompt-visual-images/system-figure-2.png') + model_input_seq = [prompt_input_1, prompt_img_1, prompt_input_2, prompt_img_2, prompt_input_3] + if in_context_example_num > 0: + assert len(question_examples) == len(image_examples) + assert len(question_examples) == in_context_example_num + model_input_seq.append("## Example:\n") + for example_index in range(in_context_example_num): + model_input_seq.append(image_examples[example_index]) + model_input_seq.append(question_examples[example_index]) + model_input_seq.append(answer_examples[example_index]) + model_input_seq += [prompt_input_4, img_input, prompt_input_5] + + response = model.generate_content(model_input_seq) + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + # import ipdb; ipdb.set_trace() + # pass + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass + + + diff --git a/maze/task2/.DS_Store b/maze/task2/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..56898cafd0ced813f2a4fdd351fc4e4f877349d0 Binary files /dev/null and b/maze/task2/.DS_Store differ diff --git a/maze/task2/eval.py b/maze/task2/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..0e72bf7e592a597148424357ee9ed886e4fa1086 --- /dev/null +++ b/maze/task2/eval.py @@ -0,0 +1,110 @@ +# read a map, receive a solution, determine if the solution reaches the goal + +import gym +from gym.envs.toy_text.frozen_lake import generate_random_map +import random +import os +import numpy as np +# from PIL import Image + +count = 0 +full_correct = 0 +part_correct = 0 +invalid = 0 + +level = 8 + +check_map_dir = "../../maps/level%d_text/"%(level) +check_answer_dir = "output/output_img/" + +def find_symbol(map, symbol): + # return a list indicating the coordinates of the symbol + # e.g., [1, 2] = (row1, col2), all 0-index + results = [] + for i in range(len(map)): + for j in range(len(map)): + if map[i][j] == symbol: + results.append([i, j]) + return results + + + +# import ipdb; ipdb.set_trace() + +for test_id in range(100): + # print(test_id) + # map + with open(check_map_dir + '%d.txt'%(test_id), 'r') as f: + contents = f.read() + rows = contents.split('\n') + + # answer + player_pos = find_symbol(rows, 'S')[0] + goal_pos = find_symbol(rows, 'G')[0] + answer_set = set() + if player_pos[0] > goal_pos[0]: + answer_set.add('Below') + elif player_pos[0] < goal_pos[0]: + answer_set.add('Above') + if player_pos[1] > goal_pos[1]: + answer_set.add('Right') + elif player_pos[1] < goal_pos[1]: + answer_set.add('Left') + count += len(answer_set) + + + try: + # action + with open(check_answer_dir + 'level%d/%d.txt'%(level, test_id), 'r') as f: + contents = f.read() + answer_index = contents.find(' ') + if answer_index == -1: + answer_index = contents.find('\n') + # if answer_index == -1: + # answer_index = contents.find(' ') + # if answer_index == -1: + # answer_index = contents.find('\n') + # if answer_index == -1: + # answer_index = contents.find('## Output ') + # if answer_index == -1: + # answer_index = contents.find('## Output\n') + if answer_index == -1: + assert 0 + answer = contents[answer_index+9:] + answer = answer.split(',') + for answer_index in range(len(answer)): + answer[answer_index] = answer[answer_index].replace('"', '') + answer[answer_index] = answer[answer_index].replace("'", '') + answer[answer_index] = answer[answer_index].replace("\n", '') + answer[answer_index] = answer[answer_index].replace(".", '') + answer[answer_index] = answer[answer_index].replace("*", '') + answer[answer_index] = answer[answer_index].lstrip() + answer[answer_index] = answer[answer_index].rstrip() + + # temp = env.render() + # import ipdb; ipdb.set_trace() + + + # import ipdb; ipdb.set_trace() + ALL_CORR = True + for answer_char in answer_set: + if answer_char in answer: + part_correct += 1 + else: + ALL_CORR = False + # print(test_id) + if ALL_CORR: + full_correct += 1 + except: + # If not + # count += 1 + invalid += 1 + print(test_id) + # import ipdb; ipdb.set_trace() + pass + +print("Total tested: %d"%(count)) +print("Part correct: %d"%(part_correct)) +print("Each correct rate: %f"%(part_correct / count)) +print("Full correct: %d"%(full_correct)) +print("Invalid: %d"%(invalid)) diff --git a/maze/task2/example/level3/answer/0.txt b/maze/task2/example/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..22e3dfb08771112e096919d11729a9740f840cc7 --- /dev/null +++ b/maze/task2/example/level3/answer/0.txt @@ -0,0 +1,4 @@ + +The player is at row 1, and the goal is at row 2. Remember that row number is counted from top to bottom. Comparing player (row=1) with goal (row=2), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 1, and the goal is at column 2. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=2), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level3/answer/1.txt b/maze/task2/example/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..073577a990fc11a468701e9e1585004b4a475573 --- /dev/null +++ b/maze/task2/example/level3/answer/1.txt @@ -0,0 +1,4 @@ + +The player is at row 1, and the goal is at row 2. Remember that row number is counted from top to bottom. Comparing player (row=1) with goal (row=2), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 3, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=3) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Above \ No newline at end of file diff --git a/maze/task2/example/level3/answer/2.txt b/maze/task2/example/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..45bdc48cd17fb50bab767d4fc5b1caa0e05867e3 --- /dev/null +++ b/maze/task2/example/level3/answer/2.txt @@ -0,0 +1,4 @@ + +The player is at row 3, and the goal is at row 2. Remember that row number is counted from top to bottom. Comparing player (row=3) with goal (row=2), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 1, and the goal is at column 3. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=3), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Below \ No newline at end of file diff --git a/maze/task2/example/level3/answer/3.txt b/maze/task2/example/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9bc87bc39fa0079fe0f0b40a5e6e1ce72d04abe --- /dev/null +++ b/maze/task2/example/level3/answer/3.txt @@ -0,0 +1,4 @@ + +The player is at row 3, and the goal is at row 2. Remember that row number is counted from top to bottom. Comparing player (row=3) with goal (row=2), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 2, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=2) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level3/answer/4.txt b/maze/task2/example/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..566dc7099d8d4d268c13e5a8603e4792668a64a9 --- /dev/null +++ b/maze/task2/example/level3/answer/4.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 3. Remember that row number is counted from top to bottom. Comparing player (row=2) with goal (row=3), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 2, and the goal is at column 2. The player is neither to the left nor to the right of the goal. + Above \ No newline at end of file diff --git a/maze/task2/example/level3/answer/5.txt b/maze/task2/example/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..14f38439c1e075f3b3ffd2034ae93c1fa6b75081 --- /dev/null +++ b/maze/task2/example/level3/answer/5.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 3. Remember that row number is counted from top to bottom. Comparing player (row=2) with goal (row=3), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 1, and the goal is at column 2. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=2), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level3/answer/6.txt b/maze/task2/example/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2596c5daefe164664bad4007f2819e0f4e8dda97 --- /dev/null +++ b/maze/task2/example/level3/answer/6.txt @@ -0,0 +1,4 @@ + +The player is at row 3, and the goal is at row 1. Remember that row number is counted from top to bottom. Comparing player (row=3) with goal (row=1), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 2, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=2) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level3/answer/7.txt b/maze/task2/example/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..73931ca588d79bfc0b39cb8c9f1228826dedf606 --- /dev/null +++ b/maze/task2/example/level3/answer/7.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 1. Remember that row number is counted from top to bottom. Comparing player (row=2) with goal (row=1), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 3, and the goal is at column 2. Remember that column number is counted from left to right. Comparing player (column=3) with goal (column=2), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level3/img/0.png b/maze/task2/example/level3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e69efe3beee37e8258543ba5d82b419b0dc26146 --- /dev/null +++ b/maze/task2/example/level3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:256f750ccc57362cb386440528992167aebe85e471ca042ff982c49f1078c3c1 +size 4897 diff --git a/maze/task2/example/level3/img/1.png b/maze/task2/example/level3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2f9faefbc26fd3b2347b21792c71bc7da18fc37f --- /dev/null +++ b/maze/task2/example/level3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0575e17453c04eaed425af2cb9bb2fb2b979f78bd33bb42090ff5f74fb24cdb +size 4856 diff --git a/maze/task2/example/level3/img/2.png b/maze/task2/example/level3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a47bd83bc451ca9d08d45a1f596b8f06dc77ed15 --- /dev/null +++ b/maze/task2/example/level3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3dc7afeebf2ed0b1bc3f97acd5712e25cdd3e4246de6d13f41539527a347f9 +size 4014 diff --git a/maze/task2/example/level3/img/3.png b/maze/task2/example/level3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..397c3b91ddcfdb9c45d5d19fb0202bcbdfaf383c --- /dev/null +++ b/maze/task2/example/level3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea9edc8e57a64c37cc679d53b2f195d8837321d30569c37eff9a4e609d84203 +size 4071 diff --git a/maze/task2/example/level3/img/4.png b/maze/task2/example/level3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..853c1abd4fa416f0d9cc38e2871e362e09041b44 --- /dev/null +++ b/maze/task2/example/level3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f09a54a84f47f30af7af4e63bb26a2561f1629b754e93c806f47429ba8f61873 +size 5641 diff --git a/maze/task2/example/level3/img/5.png b/maze/task2/example/level3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5dcfd7b042745dd12f27b2589d097d8912438f43 --- /dev/null +++ b/maze/task2/example/level3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb8439978f0e4da1228c52f6650a66ea2a9855be76aab94ab82b102b81171f9 +size 4970 diff --git a/maze/task2/example/level3/img/6.png b/maze/task2/example/level3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5ba04a3f5f021e6340cd8ae24058e985c9edcaf2 --- /dev/null +++ b/maze/task2/example/level3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce02898472e0dae909101f23664d4e12526aeaadf4a27e07cc46d292617b0e96 +size 5725 diff --git a/maze/task2/example/level3/img/7.png b/maze/task2/example/level3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f98c5a830f3ee0a8136a2cd3a12977f3f3c926e8 --- /dev/null +++ b/maze/task2/example/level3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03cfc3d9196a7a02fb90d3da9f337acc01f90f746fdbcf2bc23cbf1f81c348d4 +size 4849 diff --git a/maze/task2/example/level3/pure_text/0.txt b/maze/task2/example/level3/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2de5e3fcd3fab227cf715852294436ec8026bbc --- /dev/null +++ b/maze/task2/example/level3/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level3/pure_text/1.txt b/maze/task2/example/level3/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7b3336651e28c79305c68bf01148ac0ecb9d59f --- /dev/null +++ b/maze/task2/example/level3/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 3, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level3/pure_text/2.txt b/maze/task2/example/level3/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e536d1a1e4520d9838a526b72452ec27c4a634f8 --- /dev/null +++ b/maze/task2/example/level3/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +There is no holes in this map; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/example/level3/pure_text/3.txt b/maze/task2/example/level3/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..652f610a2f740e261b855cb980cec65ad64fac68 --- /dev/null +++ b/maze/task2/example/level3/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level3/pure_text/4.txt b/maze/task2/example/level3/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..033b4c874cdca766b7fbf81d30c210a98597789c --- /dev/null +++ b/maze/task2/example/level3/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level3/pure_text/5.txt b/maze/task2/example/level3/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5437f43cf00a4010a1f8e1c1617ac90db67ae2c7 --- /dev/null +++ b/maze/task2/example/level3/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level3/pure_text/6.txt b/maze/task2/example/level3/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..036b8bc78fa40736a78993c4a110ffb56b2df96c --- /dev/null +++ b/maze/task2/example/level3/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level3/pure_text/7.txt b/maze/task2/example/level3/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..80451514cada60984558f7cd3e72eb5c653065d8 --- /dev/null +++ b/maze/task2/example/level3/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level3/table/0.txt b/maze/task2/example/level3/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..00c40508a9c4676b5dc70d5e42cb0fc2e847b845 --- /dev/null +++ b/maze/task2/example/level3/table/0.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | # | # | diff --git a/maze/task2/example/level3/table/1.txt b/maze/task2/example/level3/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b50c62de63786c5e91c19e9374ec40f1f2f6306 --- /dev/null +++ b/maze/task2/example/level3/table/1.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | * | _ | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task2/example/level3/table/2.txt b/maze/task2/example/level3/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bc97a40e4868bc66be895e24d72540ae1a3ddfe --- /dev/null +++ b/maze/task2/example/level3/table/2.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | * | +| Row 3 | @ | _ | _ | diff --git a/maze/task2/example/level3/table/3.txt b/maze/task2/example/level3/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9d18d846f6c2ad13e4e8b082d6bd571cc529024 --- /dev/null +++ b/maze/task2/example/level3/table/3.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task2/example/level3/table/4.txt b/maze/task2/example/level3/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..75bcdbc01c3ab7cedbed62bd92f90aeb57cb81d7 --- /dev/null +++ b/maze/task2/example/level3/table/4.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | # | @ | # | +| Row 3 | _ | * | _ | diff --git a/maze/task2/example/level3/table/5.txt b/maze/task2/example/level3/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..10b169e2c48db9e54e9ed479d7562e3d0441afd7 --- /dev/null +++ b/maze/task2/example/level3/table/5.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | * | _ | diff --git a/maze/task2/example/level3/table/6.txt b/maze/task2/example/level3/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..219b7ff5db07e151a9ab5df09f776afa00a4e62a --- /dev/null +++ b/maze/task2/example/level3/table/6.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | # | diff --git a/maze/task2/example/level3/table/7.txt b/maze/task2/example/level3/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cec6f68474f3e36467f21994c9719bb1ba0ed4b8 --- /dev/null +++ b/maze/task2/example/level3/table/7.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/example/level4/answer/0.txt b/maze/task2/example/level4/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..41944f58397d1d6aaaa4d73544d875fdca0403d0 --- /dev/null +++ b/maze/task2/example/level4/answer/0.txt @@ -0,0 +1,4 @@ + +The player is at row 4, and the goal is at row 1. Remember that row number is counted from top to bottom. Comparing player (row=4) with goal (row=1), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 1, and the goal is at column 2. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=2), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Below \ No newline at end of file diff --git a/maze/task2/example/level4/answer/1.txt b/maze/task2/example/level4/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..57d190e06452b349090b1e7f30baafb1e32c1d76 --- /dev/null +++ b/maze/task2/example/level4/answer/1.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 3. Remember that row number is counted from top to bottom. Comparing player (row=2) with goal (row=3), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 4, and the goal is at column 2. Remember that column number is counted from left to right. Comparing player (column=4) with goal (column=2), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Above \ No newline at end of file diff --git a/maze/task2/example/level4/answer/2.txt b/maze/task2/example/level4/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..76e2e10e03c62daefd857d86bd5f345b18bcb43d --- /dev/null +++ b/maze/task2/example/level4/answer/2.txt @@ -0,0 +1,4 @@ + +The player is at row 1, and the goal is at row 3. Remember that row number is counted from top to bottom. Comparing player (row=1) with goal (row=3), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 1, and the goal is at column 2. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=2), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level4/answer/3.txt b/maze/task2/example/level4/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..49b85171e51d05309a64430cdffad4bcc0e67ee2 --- /dev/null +++ b/maze/task2/example/level4/answer/3.txt @@ -0,0 +1,4 @@ + +The player is at row 3, and the goal is at row 2. Remember that row number is counted from top to bottom. Comparing player (row=3) with goal (row=2), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 1, and the goal is at column 1. The player is neither to the left nor to the right of the goal. + Below \ No newline at end of file diff --git a/maze/task2/example/level4/answer/4.txt b/maze/task2/example/level4/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..915dc3ebee14f0266c324b644305afbb8f45f080 --- /dev/null +++ b/maze/task2/example/level4/answer/4.txt @@ -0,0 +1,4 @@ + +The player is at row 1, and the goal is at row 4. Remember that row number is counted from top to bottom. Comparing player (row=1) with goal (row=4), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 3, and the goal is at column 3. The player is neither to the left nor to the right of the goal. + Above \ No newline at end of file diff --git a/maze/task2/example/level4/answer/5.txt b/maze/task2/example/level4/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59451359a020dcd848841df00a16b64eb030d29 --- /dev/null +++ b/maze/task2/example/level4/answer/5.txt @@ -0,0 +1,4 @@ + +The player is at row 3, and the goal is at row 1. Remember that row number is counted from top to bottom. Comparing player (row=3) with goal (row=1), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 3, and the goal is at column 4. Remember that column number is counted from left to right. Comparing player (column=3) with goal (column=4), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Below \ No newline at end of file diff --git a/maze/task2/example/level4/answer/6.txt b/maze/task2/example/level4/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee5baadc01ddc640c4f08e5f9f2989822a2ae055 --- /dev/null +++ b/maze/task2/example/level4/answer/6.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 3. Remember that row number is counted from top to bottom. Comparing player (row=2) with goal (row=3), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 1, and the goal is at column 4. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=4), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level4/answer/7.txt b/maze/task2/example/level4/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..805fe2add91eae754b16356ab123edf143d7979e --- /dev/null +++ b/maze/task2/example/level4/answer/7.txt @@ -0,0 +1,4 @@ + +The player is at row 4, and the goal is at row 3. Remember that row number is counted from top to bottom. Comparing player (row=4) with goal (row=3), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 1, and the goal is at column 3. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=3), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Below \ No newline at end of file diff --git a/maze/task2/example/level4/img/0.png b/maze/task2/example/level4/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c074c9dc702f7b92a9ec9ad521a6c586ca4f459e --- /dev/null +++ b/maze/task2/example/level4/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25592c71462fe5f55b364dd00da91b2cdee432b629ae3cba637b95456d07a592 +size 6232 diff --git a/maze/task2/example/level4/img/1.png b/maze/task2/example/level4/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed99e7af18fd0c7b08336597145aa0341828d56 --- /dev/null +++ b/maze/task2/example/level4/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c5bed43c76a123f06b50a38730d88692854d81fe67084cccbad61483edd40d +size 8657 diff --git a/maze/task2/example/level4/img/2.png b/maze/task2/example/level4/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d32da5ff0d58f43fd518b8cac5040ed426fb77 --- /dev/null +++ b/maze/task2/example/level4/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7ebf8c35c853e1b6dd29a8ebd398d700313b9adf7fa703399fe2c95e22cc0b +size 8847 diff --git a/maze/task2/example/level4/img/3.png b/maze/task2/example/level4/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dd920256d0699c093a4b6beec1f30a61a684d0a3 --- /dev/null +++ b/maze/task2/example/level4/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b30c02646632b0ee4220b4828db84b64ff9bab153cb38c57b597ef361a882c +size 7066 diff --git a/maze/task2/example/level4/img/4.png b/maze/task2/example/level4/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..89487cf5f04dd9f480026eb7388a9f5c5e2c5097 --- /dev/null +++ b/maze/task2/example/level4/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03bea8593fc946ee54381924b2c22d655db08105f455c4df62773b196efbb5e +size 7137 diff --git a/maze/task2/example/level4/img/5.png b/maze/task2/example/level4/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0c6c0cc6a6ec3382df2731ebc84e565d34e124 --- /dev/null +++ b/maze/task2/example/level4/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e546e87bdaa563f43144753cc637a543340a3d244989a37a3009461a972ea2 +size 7091 diff --git a/maze/task2/example/level4/img/6.png b/maze/task2/example/level4/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..487c89794e5b4262f4df94194d870899d3d61951 --- /dev/null +++ b/maze/task2/example/level4/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ef04692ebdd21df54384d2a7f0624805ef62e88445f846fddb518872e20c86 +size 7093 diff --git a/maze/task2/example/level4/img/7.png b/maze/task2/example/level4/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..37c20da02df2ff06dedd67e313ecc433c323b4c4 --- /dev/null +++ b/maze/task2/example/level4/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5800ae68bd7c990eda0472906080d5458ba211e069e329c2b8f5250aa4681c +size 6992 diff --git a/maze/task2/example/level4/pure_text/0.txt b/maze/task2/example/level4/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..483a1d4516511fca9b7764affa29c5ee41cde520 --- /dev/null +++ b/maze/task2/example/level4/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level4/pure_text/1.txt b/maze/task2/example/level4/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba7ef85b06e2229ff6148f70cc0da129daa60832 --- /dev/null +++ b/maze/task2/example/level4/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level4/pure_text/2.txt b/maze/task2/example/level4/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e069b4c82b87012c3163e2e796cc788f973997f --- /dev/null +++ b/maze/task2/example/level4/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level4/pure_text/3.txt b/maze/task2/example/level4/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a8196519358c7c0c9f459c415a2fca1dd878bc --- /dev/null +++ b/maze/task2/example/level4/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level4/pure_text/4.txt b/maze/task2/example/level4/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..877ac0fc1aaa46f2cc7b7e6af3e6c72f52fe770b --- /dev/null +++ b/maze/task2/example/level4/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/example/level4/pure_text/5.txt b/maze/task2/example/level4/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a7a2a3a3d3a1879a486eba4692b9c39835cb5e6 --- /dev/null +++ b/maze/task2/example/level4/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/example/level4/pure_text/6.txt b/maze/task2/example/level4/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9cd663d3cc66e9667e32ba33f461bbeb399b987 --- /dev/null +++ b/maze/task2/example/level4/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/example/level4/pure_text/7.txt b/maze/task2/example/level4/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..205bec47b55c081a13d0cc189b3fc819d78e9334 --- /dev/null +++ b/maze/task2/example/level4/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/example/level4/table/0.txt b/maze/task2/example/level4/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..815594278835ff16e844e4e7d79e7fd83889783e --- /dev/null +++ b/maze/task2/example/level4/table/0.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task2/example/level4/table/1.txt b/maze/task2/example/level4/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..38400a2e54f20e192e2df90786376abcbd40db0d --- /dev/null +++ b/maze/task2/example/level4/table/1.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | _ | _ | @ | +| Row 3 | # | * | # | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/example/level4/table/2.txt b/maze/task2/example/level4/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e7412d463dab9f3da9532e6ab75b2bd820952a2 --- /dev/null +++ b/maze/task2/example/level4/table/2.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | * | # | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task2/example/level4/table/3.txt b/maze/task2/example/level4/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..de9f64857c4f765bc122f867933421e3441771d7 --- /dev/null +++ b/maze/task2/example/level4/table/3.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task2/example/level4/table/4.txt b/maze/task2/example/level4/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..597fa54933b1340266037ea6765adb19a98cd07d --- /dev/null +++ b/maze/task2/example/level4/table/4.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | # | * | # | diff --git a/maze/task2/example/level4/table/5.txt b/maze/task2/example/level4/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2622837a53939c32d55fdb03b3bd2811e8d5164 --- /dev/null +++ b/maze/task2/example/level4/table/5.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/example/level4/table/6.txt b/maze/task2/example/level4/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a757c56d184c278014532e6b830ef98a884c3a --- /dev/null +++ b/maze/task2/example/level4/table/6.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/example/level4/table/7.txt b/maze/task2/example/level4/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0e9c85563ed1572231c5dd7076d123685f98882 --- /dev/null +++ b/maze/task2/example/level4/table/7.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | +| Row 3 | _ | # | * | # | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task2/example/level5/answer/0.txt b/maze/task2/example/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd9725c8d3f02baaf98018e00c87713f2c08bbfd --- /dev/null +++ b/maze/task2/example/level5/answer/0.txt @@ -0,0 +1,4 @@ + +The player is at row 5, and the goal is at row 4. Remember that row number is counted from top to bottom. Comparing player (row=5) with goal (row=4), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 1, and the goal is at column 3. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=3), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Below \ No newline at end of file diff --git a/maze/task2/example/level5/answer/1.txt b/maze/task2/example/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..189d5109f6576ba6f987a43236ee0749cc97fb76 --- /dev/null +++ b/maze/task2/example/level5/answer/1.txt @@ -0,0 +1,4 @@ + +The player is at row 1, and the goal is at row 4. Remember that row number is counted from top to bottom. Comparing player (row=1) with goal (row=4), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 3, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=3) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Above \ No newline at end of file diff --git a/maze/task2/example/level5/answer/2.txt b/maze/task2/example/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..6287d33f9697dc50db179880d3867bf5cdd1fc7c --- /dev/null +++ b/maze/task2/example/level5/answer/2.txt @@ -0,0 +1,4 @@ + +The player is at row 4, and the goal is at row 3. Remember that row number is counted from top to bottom. Comparing player (row=4) with goal (row=3), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 2, and the goal is at column 3. Remember that column number is counted from left to right. Comparing player (column=2) with goal (column=3), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Below \ No newline at end of file diff --git a/maze/task2/example/level5/answer/3.txt b/maze/task2/example/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b22d1c591f512b2a4e48fb7453666bc8d2db1a3e --- /dev/null +++ b/maze/task2/example/level5/answer/3.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 1. Remember that row number is counted from top to bottom. Comparing player (row=2) with goal (row=1), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 4, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=4) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level5/answer/4.txt b/maze/task2/example/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f32c22055e15d96e47ddfb4f653218151c997fea --- /dev/null +++ b/maze/task2/example/level5/answer/4.txt @@ -0,0 +1,4 @@ + +The player is at row 4, and the goal is at row 2. Remember that row number is counted from top to bottom. Comparing player (row=4) with goal (row=2), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 3, and the goal is at column 2. Remember that column number is counted from left to right. Comparing player (column=3) with goal (column=2), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level5/answer/5.txt b/maze/task2/example/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd440f4d80976da5871d9c3bed95f5602abaea2f --- /dev/null +++ b/maze/task2/example/level5/answer/5.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 2. The player is neither above nor below the goal. +The player is at column 1, and the goal is at column 5. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=5), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left \ No newline at end of file diff --git a/maze/task2/example/level5/answer/6.txt b/maze/task2/example/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d5f481f763a0fe778ea401d2cfde82cf8df7c40 --- /dev/null +++ b/maze/task2/example/level5/answer/6.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 3. Remember that row number is counted from top to bottom. Comparing player (row=2) with goal (row=3), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 2, and the goal is at column 5. Remember that column number is counted from left to right. Comparing player (column=2) with goal (column=5), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level5/answer/7.txt b/maze/task2/example/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..28b24548ffb02392150a90e563d3de7f79029b7f --- /dev/null +++ b/maze/task2/example/level5/answer/7.txt @@ -0,0 +1,4 @@ + +The player is at row 1, and the goal is at row 1. The player is neither above nor below the goal. +The player is at column 5, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=5) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right \ No newline at end of file diff --git a/maze/task2/example/level5/img/0.png b/maze/task2/example/level5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ed5e7badc06275eeaa5b41d085dc623c2af81a --- /dev/null +++ b/maze/task2/example/level5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fadd0fae179efcdce0a96bb58f646621aadeb39a3d18bea6d44630dba00955d3 +size 8682 diff --git a/maze/task2/example/level5/img/1.png b/maze/task2/example/level5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..82b3e6463a6aa8aab753e948240e30c19102cd2d --- /dev/null +++ b/maze/task2/example/level5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d22eab26f87cfb01be09c75c509164d96d7421278b0c50e38602c9fafb9687 +size 10290 diff --git a/maze/task2/example/level5/img/2.png b/maze/task2/example/level5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c3e9af1902cc943b4f94c2215bd33a94edafa0b8 --- /dev/null +++ b/maze/task2/example/level5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09753e5556f0aaf26f05dc726115603db47614a8f3989c87245b4c3a9cf8ccda +size 9649 diff --git a/maze/task2/example/level5/img/3.png b/maze/task2/example/level5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..08ebdff007b8a59d3eea8c457738d40f33d539d9 --- /dev/null +++ b/maze/task2/example/level5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a646049df05d461081e86964898ab02ba353f7f15016c84b1ecbe9eb463cf098 +size 9355 diff --git a/maze/task2/example/level5/img/4.png b/maze/task2/example/level5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1e12e5a7925369d062fc3673600d8ff8a57c468b --- /dev/null +++ b/maze/task2/example/level5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464864c5b635bf5fb3a5ff0415fd306b7e0b6a18fdcce1742c1f35d0dc074334 +size 10364 diff --git a/maze/task2/example/level5/img/5.png b/maze/task2/example/level5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9d16c27c4df5179272f61b3be543d93b14cbbe95 --- /dev/null +++ b/maze/task2/example/level5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fc7914a946fefa1f6e2fca2baa97a8512abb7d6b3a0d2af34b57cfcbab701d +size 11211 diff --git a/maze/task2/example/level5/img/6.png b/maze/task2/example/level5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d37d690b3f8d52f70d3eed5b4ce7fdbe20da97 --- /dev/null +++ b/maze/task2/example/level5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a8d438ccda3f10d587b1d1e1dfde868394fd5da1e752ee0a8c4445c6fcebe6 +size 10463 diff --git a/maze/task2/example/level5/img/7.png b/maze/task2/example/level5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f57983012206b090b958f693e4a337ad4ac9606f --- /dev/null +++ b/maze/task2/example/level5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac9741bb5db7166aac63fb953280b8c55a90d974989f0cd055e5fd708fc5908 +size 9504 diff --git a/maze/task2/example/level5/pure_text/0.txt b/maze/task2/example/level5/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb947fd1ac8dd5d6458ae540814c096d5bced44c --- /dev/null +++ b/maze/task2/example/level5/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/example/level5/pure_text/1.txt b/maze/task2/example/level5/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..de747d6f632d9d8cb77eed00e8b469ca6a86a6f2 --- /dev/null +++ b/maze/task2/example/level5/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 3; Row 3, Column 2; Row 3, Column 5; Row 4, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level5/pure_text/2.txt b/maze/task2/example/level5/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..05f14549840d31b2f526641a94905868159c13b8 --- /dev/null +++ b/maze/task2/example/level5/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 2, Column 2; Row 3, Column 2; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/example/level5/pure_text/3.txt b/maze/task2/example/level5/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2bac0cea78dc72d995c4f71c5a7cd2a581ff701 --- /dev/null +++ b/maze/task2/example/level5/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level5/pure_text/4.txt b/maze/task2/example/level5/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a0c342ab86cbe0dcef24f2f5a5428b288aa3693 --- /dev/null +++ b/maze/task2/example/level5/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level5/pure_text/5.txt b/maze/task2/example/level5/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dab24bd945d6633acc3fbe49590d13b45581c74 --- /dev/null +++ b/maze/task2/example/level5/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/example/level5/pure_text/6.txt b/maze/task2/example/level5/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..64965fda851d5ae0698b3fc7a2c4907a55671e49 --- /dev/null +++ b/maze/task2/example/level5/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 4, Column 1; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task2/example/level5/pure_text/7.txt b/maze/task2/example/level5/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a3aa36b6c11a6c8334cb9bb3ff8a2bc258ecb1c --- /dev/null +++ b/maze/task2/example/level5/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level5/table/0.txt b/maze/task2/example/level5/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..86b4bf90293fa3e2532d3d32fb2c3f82398e537f --- /dev/null +++ b/maze/task2/example/level5/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | * | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | diff --git a/maze/task2/example/level5/table/1.txt b/maze/task2/example/level5/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e004a61bb10d458b78bc97754f0ae009a3d3de9b --- /dev/null +++ b/maze/task2/example/level5/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | * | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/example/level5/table/2.txt b/maze/task2/example/level5/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce4ab17941fc9eca1bd9e698d7a90d755858bc03 --- /dev/null +++ b/maze/task2/example/level5/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | # | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task2/example/level5/table/3.txt b/maze/task2/example/level5/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..eec9edc674494a92fa2cc0557e2fb6c7f158b4b8 --- /dev/null +++ b/maze/task2/example/level5/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | _ | +| Row 2 | # | # | _ | @ | # | +| Row 3 | # | # | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/example/level5/table/4.txt b/maze/task2/example/level5/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..c82a394a4916e54c4505524f81c190358d0c5881 --- /dev/null +++ b/maze/task2/example/level5/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | # | # | @ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task2/example/level5/table/5.txt b/maze/task2/example/level5/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4762bf846d10ce1f59add226bf1712cdc7cdd9f7 --- /dev/null +++ b/maze/task2/example/level5/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task2/example/level5/table/6.txt b/maze/task2/example/level5/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..26069240440523c99c2ea4e490dbece14ab1cf82 --- /dev/null +++ b/maze/task2/example/level5/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | * | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task2/example/level5/table/7.txt b/maze/task2/example/level5/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bef2e37a8e20a6091f70c1f196035f8099dc4a1 --- /dev/null +++ b/maze/task2/example/level5/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | @ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task2/example/level6/answer/0.txt b/maze/task2/example/level6/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..50df2ad7e462cb68b081142473bbafb3f9a22552 --- /dev/null +++ b/maze/task2/example/level6/answer/0.txt @@ -0,0 +1,4 @@ + +The player is at row 4, and the goal is at row 4. The player is neither above nor below the goal. +The player is at column 2, and the goal is at column 6. Remember that column number is counted from left to right. Comparing player (column=2) with goal (column=6), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left \ No newline at end of file diff --git a/maze/task2/example/level6/answer/1.txt b/maze/task2/example/level6/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..551d82211a8792dadfaf9a1dec81186ae60b2c9d --- /dev/null +++ b/maze/task2/example/level6/answer/1.txt @@ -0,0 +1,4 @@ + +The player is at row 1, and the goal is at row 1. The player is neither above nor below the goal. +The player is at column 6, and the goal is at column 2. Remember that column number is counted from left to right. Comparing player (column=6) with goal (column=2), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right \ No newline at end of file diff --git a/maze/task2/example/level6/answer/2.txt b/maze/task2/example/level6/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfbd0aea06e965fa0f71f2e889255770067a4c67 --- /dev/null +++ b/maze/task2/example/level6/answer/2.txt @@ -0,0 +1,4 @@ + +The player is at row 3, and the goal is at row 6. Remember that row number is counted from top to bottom. Comparing player (row=3) with goal (row=6), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 3, and the goal is at column 6. Remember that column number is counted from left to right. Comparing player (column=3) with goal (column=6), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level6/answer/3.txt b/maze/task2/example/level6/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..dffb979e35c8114dc96852d5bf750e324a10c9d1 --- /dev/null +++ b/maze/task2/example/level6/answer/3.txt @@ -0,0 +1,4 @@ + +The player is at row 5, and the goal is at row 5. The player is neither above nor below the goal. +The player is at column 6, and the goal is at column 4. Remember that column number is counted from left to right. Comparing player (column=6) with goal (column=4), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right \ No newline at end of file diff --git a/maze/task2/example/level6/answer/4.txt b/maze/task2/example/level6/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a3ae5e819db99cfe1d10c8f318a709c14d9a85 --- /dev/null +++ b/maze/task2/example/level6/answer/4.txt @@ -0,0 +1,4 @@ + +The player is at row 6, and the goal is at row 1. Remember that row number is counted from top to bottom. Comparing player (row=6) with goal (row=1), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 1, and the goal is at column 1. The player is neither to the left nor to the right of the goal. + Below \ No newline at end of file diff --git a/maze/task2/example/level6/answer/5.txt b/maze/task2/example/level6/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9ac1c9687101c01697d964123513e1493a52315 --- /dev/null +++ b/maze/task2/example/level6/answer/5.txt @@ -0,0 +1,4 @@ + +The player is at row 6, and the goal is at row 1. Remember that row number is counted from top to bottom. Comparing player (row=6) with goal (row=1), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 5, and the goal is at column 4. Remember that column number is counted from left to right. Comparing player (column=5) with goal (column=4), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level6/answer/6.txt b/maze/task2/example/level6/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d80db8b69d22abc0eb35bb04397c094f08937a5 --- /dev/null +++ b/maze/task2/example/level6/answer/6.txt @@ -0,0 +1,4 @@ + +The player is at row 6, and the goal is at row 4. Remember that row number is counted from top to bottom. Comparing player (row=6) with goal (row=4), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 6, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=6) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level6/answer/7.txt b/maze/task2/example/level6/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..65fc3eb0612a8e5f6c5f87e0a15a8016e5cc73c5 --- /dev/null +++ b/maze/task2/example/level6/answer/7.txt @@ -0,0 +1,4 @@ + +The player is at row 6, and the goal is at row 4. Remember that row number is counted from top to bottom. Comparing player (row=6) with goal (row=4), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 5, and the goal is at column 3. Remember that column number is counted from left to right. Comparing player (column=5) with goal (column=3), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level6/img/0.png b/maze/task2/example/level6/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..232072305899cae72948427b7721c3e81282cfc1 --- /dev/null +++ b/maze/task2/example/level6/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4a1633af79971996f2de900aa888ab70b3f68917d0c68a1b0664bb71a5e2f6 +size 11248 diff --git a/maze/task2/example/level6/img/1.png b/maze/task2/example/level6/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..554f57e7af72b2d5c914d17f5987f5e820d88554 --- /dev/null +++ b/maze/task2/example/level6/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73acbaf052f72506244f75a232c9575cec593ecaa29c6803f80f699e87bfc73c +size 13137 diff --git a/maze/task2/example/level6/img/2.png b/maze/task2/example/level6/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a03450eac03433a22a55261ff1f70477daf999f7 --- /dev/null +++ b/maze/task2/example/level6/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1f87373934880cd4b047820200bf0484bdb55df3ccbd976638e68bb03cf9e2 +size 11281 diff --git a/maze/task2/example/level6/img/3.png b/maze/task2/example/level6/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..257bf7905575d38586568afce5bcc7712e1cf8e8 --- /dev/null +++ b/maze/task2/example/level6/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744006b6d8a85a99178974cad91f898c7e497cc5ce0f77c2faf49ed0ee3c8597 +size 12154 diff --git a/maze/task2/example/level6/img/4.png b/maze/task2/example/level6/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e66ed4f04c2f5d158a440ba376140b28a3955e3 --- /dev/null +++ b/maze/task2/example/level6/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305d0ceb3f99b0275209c4fc6ca0b6763ead0f9d6b24d1bfe2bcd68c6d2bcb1f +size 13989 diff --git a/maze/task2/example/level6/img/5.png b/maze/task2/example/level6/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..13d4dfdb513f5d10a82c5022907d1c2a8bade577 --- /dev/null +++ b/maze/task2/example/level6/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bab37e24e4b963309b273d5085cbdeafdbd008ce10b6c41f99d1a48edcded5b +size 13120 diff --git a/maze/task2/example/level6/img/6.png b/maze/task2/example/level6/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c9c14a2e46bb32a51da3b01db1a6f2d791489c --- /dev/null +++ b/maze/task2/example/level6/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2de05e5043907d5d7022c39541ac90d885d9149c64114d7d0622a57f48a695 +size 13023 diff --git a/maze/task2/example/level6/img/7.png b/maze/task2/example/level6/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..63802b59531589ab4d2b0a0c5c0b99d8cc2338b6 --- /dev/null +++ b/maze/task2/example/level6/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13028fc730b6933ab731745d9da5dc2233ffd63b68a6739764c8616d2c1b4ddc +size 11261 diff --git a/maze/task2/example/level6/pure_text/0.txt b/maze/task2/example/level6/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1c48925809c766c7145aa3ffec4fffd42779827 --- /dev/null +++ b/maze/task2/example/level6/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 6; Row 3, Column 1; Row 3, Column 2; Row 4, Column 5; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task2/example/level6/pure_text/1.txt b/maze/task2/example/level6/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2282aa71e08203e0e33d5215eafb7c586d851096 --- /dev/null +++ b/maze/task2/example/level6/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 3; Row 3, Column 3; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 6, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level6/pure_text/2.txt b/maze/task2/example/level6/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..63a9e7fdbbc917aa2e14a7ba4b58b443df521130 --- /dev/null +++ b/maze/task2/example/level6/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 6, Column 3; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/example/level6/pure_text/3.txt b/maze/task2/example/level6/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5baca045acd032c1281f61da4a00df69f71fd2d --- /dev/null +++ b/maze/task2/example/level6/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 6; Row 2, Column 1; Row 2, Column 6; Row 4, Column 4; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/example/level6/pure_text/4.txt b/maze/task2/example/level6/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a5d28177c88950fcd86223019a19482da1eee44 --- /dev/null +++ b/maze/task2/example/level6/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 6; Row 6, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level6/pure_text/5.txt b/maze/task2/example/level6/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e325c07e3ea8b01690573366991ef2de4978f233 --- /dev/null +++ b/maze/task2/example/level6/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 2, Column 6; Row 3, Column 3; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/example/level6/pure_text/6.txt b/maze/task2/example/level6/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..251545556f2caa509e330fca0041254bec693335 --- /dev/null +++ b/maze/task2/example/level6/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 3; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level6/pure_text/7.txt b/maze/task2/example/level6/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdacc7d34064f60bd4156707a81578ac19f9e0f0 --- /dev/null +++ b/maze/task2/example/level6/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 4, Column 2; Row 4, Column 4; Row 6, Column 1; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/example/level6/table/0.txt b/maze/task2/example/level6/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..6340868dbe4310e2ae51fcce01c23475dd6930ad --- /dev/null +++ b/maze/task2/example/level6/table/0.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/example/level6/table/1.txt b/maze/task2/example/level6/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b43969d54f5b920ac63e83d41e5c7ae8d59ef84d --- /dev/null +++ b/maze/task2/example/level6/table/1.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | # | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/example/level6/table/2.txt b/maze/task2/example/level6/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da74c6c2d5d8f20c7c046f94f866cecdf3386ca --- /dev/null +++ b/maze/task2/example/level6/table/2.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | diff --git a/maze/task2/example/level6/table/3.txt b/maze/task2/example/level6/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..6da5356dce77438746ad575a6275b14972b8c776 --- /dev/null +++ b/maze/task2/example/level6/table/3.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | * | _ | @ | +| Row 6 | _ | _ | # | _ | # | _ | diff --git a/maze/task2/example/level6/table/4.txt b/maze/task2/example/level6/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1d013eb166cbdce7e10a3c8a7abd84dcb439046 --- /dev/null +++ b/maze/task2/example/level6/table/4.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | +| Row 6 | @ | _ | _ | _ | # | _ | diff --git a/maze/task2/example/level6/table/5.txt b/maze/task2/example/level6/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2febc73f5797cd442af96e15957ae8ba51163b33 --- /dev/null +++ b/maze/task2/example/level6/table/5.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | * | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | @ | # | diff --git a/maze/task2/example/level6/table/6.txt b/maze/task2/example/level6/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbb899e0c6d69867f6d301ed44c95e6d3588803e --- /dev/null +++ b/maze/task2/example/level6/table/6.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | # | _ | _ | @ | diff --git a/maze/task2/example/level6/table/7.txt b/maze/task2/example/level6/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..28f47dba9968b21a748f614b85429189321dfff1 --- /dev/null +++ b/maze/task2/example/level6/table/7.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | * | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | @ | _ | diff --git a/maze/task2/example/level7/answer/0.txt b/maze/task2/example/level7/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f65a203dd905f3fc03b9250718e6c8dc6769c55 --- /dev/null +++ b/maze/task2/example/level7/answer/0.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 4. Remember that row number is counted from top to bottom. Comparing player (row=2) with goal (row=4), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 1, and the goal is at column 4. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=4), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level7/answer/1.txt b/maze/task2/example/level7/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d14b3f72c89162e2b931f9bbae414dddfe6e3b78 --- /dev/null +++ b/maze/task2/example/level7/answer/1.txt @@ -0,0 +1,4 @@ + +The player is at row 1, and the goal is at row 5. Remember that row number is counted from top to bottom. Comparing player (row=1) with goal (row=5), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 1, and the goal is at column 4. Remember that column number is counted from left to right. Comparing player (column=1) with goal (column=4), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level7/answer/2.txt b/maze/task2/example/level7/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f94b1b7b2e93ca23a69822d685218cba9ad52f5 --- /dev/null +++ b/maze/task2/example/level7/answer/2.txt @@ -0,0 +1,4 @@ + +The player is at row 3, and the goal is at row 3. The player is neither above nor below the goal. +The player is at column 6, and the goal is at column 2. Remember that column number is counted from left to right. Comparing player (column=6) with goal (column=2), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right \ No newline at end of file diff --git a/maze/task2/example/level7/answer/3.txt b/maze/task2/example/level7/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce402bdf61d0293315419b03a8bf702fb73c0c99 --- /dev/null +++ b/maze/task2/example/level7/answer/3.txt @@ -0,0 +1,4 @@ + +The player is at row 2, and the goal is at row 4. Remember that row number is counted from top to bottom. Comparing player (row=2) with goal (row=4), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 2, and the goal is at column 7. Remember that column number is counted from left to right. Comparing player (column=2) with goal (column=7), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level7/answer/4.txt b/maze/task2/example/level7/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f95fccfd3f51f535cd6398811ae046639305ad6d --- /dev/null +++ b/maze/task2/example/level7/answer/4.txt @@ -0,0 +1,4 @@ + +The player is at row 6, and the goal is at row 2. Remember that row number is counted from top to bottom. Comparing player (row=6) with goal (row=2), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 6, and the goal is at column 4. Remember that column number is counted from left to right. Comparing player (column=6) with goal (column=4), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level7/answer/5.txt b/maze/task2/example/level7/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..786fd3c6de12c2eb9f0b4f2c25cf0f19e42e549b --- /dev/null +++ b/maze/task2/example/level7/answer/5.txt @@ -0,0 +1,4 @@ + +The player is at row 1, and the goal is at row 4. Remember that row number is counted from top to bottom. Comparing player (row=1) with goal (row=4), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 4, and the goal is at column 5. Remember that column number is counted from left to right. Comparing player (column=4) with goal (column=5), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left,Above \ No newline at end of file diff --git a/maze/task2/example/level7/answer/6.txt b/maze/task2/example/level7/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec8acf1106dc5244605ec7bcdbe28c7c32533719 --- /dev/null +++ b/maze/task2/example/level7/answer/6.txt @@ -0,0 +1,4 @@ + +The player is at row 7, and the goal is at row 5. Remember that row number is counted from top to bottom. Comparing player (row=7) with goal (row=5), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 4, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=4) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Below \ No newline at end of file diff --git a/maze/task2/example/level7/answer/7.txt b/maze/task2/example/level7/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e301b7a8e512faec375ee100bcfc0c3334635ca --- /dev/null +++ b/maze/task2/example/level7/answer/7.txt @@ -0,0 +1,4 @@ + +The player is at row 3, and the goal is at row 5. Remember that row number is counted from top to bottom. Comparing player (row=3) with goal (row=5), player is counted first, meaning player is higher. Therefore, the player is above the goal. +The player is at column 7, and the goal is at column 3. Remember that column number is counted from left to right. Comparing player (column=7) with goal (column=3), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Right,Above \ No newline at end of file diff --git a/maze/task2/example/level7/img/0.png b/maze/task2/example/level7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ec1551bc3196875951ce735b1708a68b4510d1 --- /dev/null +++ b/maze/task2/example/level7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5014f95197d3d3ddf3afe8fc24c09535887996d3d7fd3f79e82f37463142386c +size 14112 diff --git a/maze/task2/example/level7/img/1.png b/maze/task2/example/level7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..acfdae826a45c55093b9926d81c97ccfd880ba03 --- /dev/null +++ b/maze/task2/example/level7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58fca51ffce43ad44ed50a44ebf2734c7833181a5f0024b64f246c49ed1dec0 +size 15711 diff --git a/maze/task2/example/level7/img/2.png b/maze/task2/example/level7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ac3120a0a61d7484cde99938f75e83082a227856 --- /dev/null +++ b/maze/task2/example/level7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f467c453083203e3ee6d34ee52a453b8113684c87288806198671fd66be28aab +size 15809 diff --git a/maze/task2/example/level7/img/3.png b/maze/task2/example/level7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a5f97c578c9765d72cf5f8f0dd25d0faebf43d2 --- /dev/null +++ b/maze/task2/example/level7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df03093c5def2a84fe1c2a460af82d6cbd3cd6b86110148806155f6731c00560 +size 15029 diff --git a/maze/task2/example/level7/img/4.png b/maze/task2/example/level7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bb620b2bc07802f2d6e34fdc5d8467cedc7f6b57 --- /dev/null +++ b/maze/task2/example/level7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:302afbde7ca6415b9524ccabdc42f208acce43a38c01db96b3576afd13be269a +size 14954 diff --git a/maze/task2/example/level7/img/5.png b/maze/task2/example/level7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ac69a1dddc59806acd1115f04ff7eb5684b2cde1 --- /dev/null +++ b/maze/task2/example/level7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64408ebc8a3e79693a7f09ae27fbd4c9cdffb80b8d4a9761fd9449975ac17a29 +size 14163 diff --git a/maze/task2/example/level7/img/6.png b/maze/task2/example/level7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9c2ab52c9f5ad45925658de8a8427382525ee32a --- /dev/null +++ b/maze/task2/example/level7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b081e9cb6d5c7eb6969ddd660a32ba6b08d0bf1b9468bf1664fee7358c5a6f1 +size 14807 diff --git a/maze/task2/example/level7/img/7.png b/maze/task2/example/level7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0785bcbda7c123b12ed87650ee67149c2ee12dac --- /dev/null +++ b/maze/task2/example/level7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b393373dbb991c34f9f42fbac316ce0f565fc4a0af85fbda9ac6df46935d888 +size 14982 diff --git a/maze/task2/example/level7/pure_text/0.txt b/maze/task2/example/level7/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ca7d7053dadf46cfc9253d30a3b3739fb4062b4 --- /dev/null +++ b/maze/task2/example/level7/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 4; Row 3, Column 3; Row 4, Column 5; Row 4, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 7; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/example/level7/pure_text/1.txt b/maze/task2/example/level7/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..de4e1e47d36273ebe740243c4fc1d89382b21d4c --- /dev/null +++ b/maze/task2/example/level7/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 6; Row 2, Column 1; Row 2, Column 5; Row 2, Column 7; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 5, Column 1; Row 6, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/example/level7/pure_text/2.txt b/maze/task2/example/level7/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b113da2d75476020c37cc5cc14ef1f37a181f3c2 --- /dev/null +++ b/maze/task2/example/level7/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 3, Column 3; Row 3, Column 7; Row 4, Column 5; Row 6, Column 5; Row 7, Column 6; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/example/level7/pure_text/3.txt b/maze/task2/example/level7/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f80d9ae968be1e0250a2b46c4e6381e7477f49a --- /dev/null +++ b/maze/task2/example/level7/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 4; Row 3, Column 5; Row 6, Column 1; Row 7, Column 4; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task2/example/level7/pure_text/4.txt b/maze/task2/example/level7/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e260314e3eaa5e096b15f83f979096fca2b8cbf --- /dev/null +++ b/maze/task2/example/level7/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 7; Row 3, Column 1; Row 6, Column 4; Row 7, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/example/level7/pure_text/5.txt b/maze/task2/example/level7/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..67bda68e058ca835ba5184e73eff88074627543b --- /dev/null +++ b/maze/task2/example/level7/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 5, Column 6; Row 6, Column 4; Row 7, Column 2; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task2/example/level7/pure_text/6.txt b/maze/task2/example/level7/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..89d188b250e08cadcde043af6533e7a0ccfbe3c5 --- /dev/null +++ b/maze/task2/example/level7/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 3; Row 3, Column 5; Row 3, Column 7; Row 4, Column 7; Row 7, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level7/pure_text/7.txt b/maze/task2/example/level7/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..94439346d7672f687be4d30843c1a576dac4b87d --- /dev/null +++ b/maze/task2/example/level7/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 7; +The hole(s) are at: Row 2, Column 1; Row 3, Column 1; Row 3, Column 5; Row 4, Column 1; Row 4, Column 6; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 7, Column 2; Row 7, Column 7; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/example/level7/table/0.txt b/maze/task2/example/level7/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..795d92c3e71c9d7a2748b6e21fdfb059bffd7c26 --- /dev/null +++ b/maze/task2/example/level7/table/0.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/example/level7/table/1.txt b/maze/task2/example/level7/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdfbadb593c8a8e562576bab173b79dfc170aa64 --- /dev/null +++ b/maze/task2/example/level7/table/1.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/example/level7/table/2.txt b/maze/task2/example/level7/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb663a61660980b9e452a9f0cd8f5e361e210f34 --- /dev/null +++ b/maze/task2/example/level7/table/2.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | @ | # | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/example/level7/table/3.txt b/maze/task2/example/level7/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb163b77a119159a99b8729aa3b8132de1fa6e77 --- /dev/null +++ b/maze/task2/example/level7/table/3.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | # | @ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/example/level7/table/4.txt b/maze/task2/example/level7/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9700b2a350f8bc2d2f6178ead66539e20ab97b2b --- /dev/null +++ b/maze/task2/example/level7/table/4.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | @ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task2/example/level7/table/5.txt b/maze/task2/example/level7/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..029112d4bbef5e2ffaffdbe8952deab1d2320df2 --- /dev/null +++ b/maze/task2/example/level7/table/5.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | @ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/example/level7/table/6.txt b/maze/task2/example/level7/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..209d74563460e9817e64f3e9667b6374e958a924 --- /dev/null +++ b/maze/task2/example/level7/table/6.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | @ | _ | # | _ | diff --git a/maze/task2/example/level7/table/7.txt b/maze/task2/example/level7/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d48b727c146d6851bf81f5ea043b6cb9478cdab --- /dev/null +++ b/maze/task2/example/level7/table/7.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | @ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | * | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task2/example/level8/answer/0.txt b/maze/task2/example/level8/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..33d82cd819a95c472bda376cafd362f0bca1769a --- /dev/null +++ b/maze/task2/example/level8/answer/0.txt @@ -0,0 +1,4 @@ + +The player is at row 3, and the goal is at row 2. Remember that row number is counted from top to bottom. Comparing player (row=3) with goal (row=2), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 6, and the goal is at column 6. The player is neither to the left nor to the right of the goal. + Below \ No newline at end of file diff --git a/maze/task2/example/level8/answer/1.txt b/maze/task2/example/level8/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f360306eb77e971966030a76adf51fa2ae4ad50f --- /dev/null +++ b/maze/task2/example/level8/answer/1.txt @@ -0,0 +1,4 @@ + +The player is at row 8, and the goal is at row 7. Remember that row number is counted from top to bottom. Comparing player (row=8) with goal (row=7), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 2, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=2) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Below,Right \ No newline at end of file diff --git a/maze/task2/example/level8/answer/2.txt b/maze/task2/example/level8/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..852e256723d2bde9944a53b5b10f958d1878bf0a --- /dev/null +++ b/maze/task2/example/level8/answer/2.txt @@ -0,0 +1,4 @@ + +The player is at row 5, and the goal is at row 3. Remember that row number is counted from top to bottom. Comparing player (row=5) with goal (row=3), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 3, and the goal is at column 8. Remember that column number is counted from left to right. Comparing player (column=3) with goal (column=8), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Below,Left \ No newline at end of file diff --git a/maze/task2/example/level8/answer/3.txt b/maze/task2/example/level8/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa2dbe1359370ce438eb92987f8dc47d40c295da --- /dev/null +++ b/maze/task2/example/level8/answer/3.txt @@ -0,0 +1,4 @@ + +The player is at row 5, and the goal is at row 1. Remember that row number is counted from top to bottom. Comparing player (row=5) with goal (row=1), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 4, and the goal is at column 8. Remember that column number is counted from left to right. Comparing player (column=4) with goal (column=8), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Below,Left \ No newline at end of file diff --git a/maze/task2/example/level8/answer/4.txt b/maze/task2/example/level8/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..631efe583f5ba22fdc8cb40934021455e833571d --- /dev/null +++ b/maze/task2/example/level8/answer/4.txt @@ -0,0 +1,4 @@ + +The player is at row 8, and the goal is at row 4. Remember that row number is counted from top to bottom. Comparing player (row=8) with goal (row=4), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 3, and the goal is at column 1. Remember that column number is counted from left to right. Comparing player (column=3) with goal (column=1), goal is counted first, meaning goal is to the left. Therefore, the player is to the right of the goal. + Below,Right \ No newline at end of file diff --git a/maze/task2/example/level8/answer/5.txt b/maze/task2/example/level8/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2da7a79b36a28c8d82636d07708b7783424bb8a5 --- /dev/null +++ b/maze/task2/example/level8/answer/5.txt @@ -0,0 +1,4 @@ + +The player is at row 6, and the goal is at row 5. Remember that row number is counted from top to bottom. Comparing player (row=6) with goal (row=5), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 8, and the goal is at column 8. The player is neither to the left nor to the right of the goal. + Below \ No newline at end of file diff --git a/maze/task2/example/level8/answer/6.txt b/maze/task2/example/level8/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..93bec2fc688aee598f49dac7d6cb521c68e76dd5 --- /dev/null +++ b/maze/task2/example/level8/answer/6.txt @@ -0,0 +1,4 @@ + +The player is at row 7, and the goal is at row 7. The player is neither above nor below the goal. +The player is at column 3, and the goal is at column 5. Remember that column number is counted from left to right. Comparing player (column=3) with goal (column=5), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Left \ No newline at end of file diff --git a/maze/task2/example/level8/answer/7.txt b/maze/task2/example/level8/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7326e032489224178b52bf002427f61d8f5ed285 --- /dev/null +++ b/maze/task2/example/level8/answer/7.txt @@ -0,0 +1,4 @@ + +The player is at row 6, and the goal is at row 5. Remember that row number is counted from top to bottom. Comparing player (row=6) with goal (row=5), goal is counted first, meaning goal is higher. Therefore, the player is below the goal. +The player is at column 2, and the goal is at column 6. Remember that column number is counted from left to right. Comparing player (column=2) with goal (column=6), player is counted first, meaning player is to the left. Therefore, the player is to the left of the goal. + Below,Left \ No newline at end of file diff --git a/maze/task2/example/level8/img/0.png b/maze/task2/example/level8/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..337ebfe0bf0385cb5552db4b44a7ff6875a2c1ed --- /dev/null +++ b/maze/task2/example/level8/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59fef933ba83a82905985d36241435f5acc0ca055bd5d9bcd55748c3c4ebf0e +size 15903 diff --git a/maze/task2/example/level8/img/1.png b/maze/task2/example/level8/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b821251a8a62b6456abd1dc562c7289f1cb80806 --- /dev/null +++ b/maze/task2/example/level8/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34e301b3323653d4418a6b501c9e2c7c0061ca4012e161a65fff949ac7d43777 +size 18828 diff --git a/maze/task2/example/level8/img/2.png b/maze/task2/example/level8/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4b6cfbe87a3363dd0ffc68859cce0999ceb73f15 --- /dev/null +++ b/maze/task2/example/level8/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f830e159b04105b6d4975a3618431a29cde2a7a61fcdb3871d7b47b5551bdd0b +size 17638 diff --git a/maze/task2/example/level8/img/3.png b/maze/task2/example/level8/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d19e1a9bc9810ccde9dbd5df358e2fe1eb91db8a --- /dev/null +++ b/maze/task2/example/level8/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4890877ad18be6539d4337e363caa5d557b6476520284f89ee6b4be7a2979dce +size 17009 diff --git a/maze/task2/example/level8/img/4.png b/maze/task2/example/level8/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8967ffd22cd05bcb20ced1a8a407a3ab80cf341b --- /dev/null +++ b/maze/task2/example/level8/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7bd4a0d2a019ead8cc553f161f145c3e65d080bedc0e4d5c9398ea1e85b3277 +size 17959 diff --git a/maze/task2/example/level8/img/5.png b/maze/task2/example/level8/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a8e00b9257dbac158a625faaa3adf15a3e3c1651 --- /dev/null +++ b/maze/task2/example/level8/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:413fb9be59b95adba36ef6a7e1bd2d1f791576c008fb4c280b3deaa8d49efe38 +size 19535 diff --git a/maze/task2/example/level8/img/6.png b/maze/task2/example/level8/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..183c914616316b65475bb60cc3bba6119b022100 --- /dev/null +++ b/maze/task2/example/level8/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563a23d525cb9ef5e1742a93572439398d755eb1e3d930a3ef211128de0c1a56 +size 17009 diff --git a/maze/task2/example/level8/img/7.png b/maze/task2/example/level8/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0b371075a311b61b6eef8ae530480d52a527e376 --- /dev/null +++ b/maze/task2/example/level8/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093ccfe263bd159c6d6b41adf2cfb95e3963e57cd5aa33be23067999e0860df1 +size 18721 diff --git a/maze/task2/example/level8/pure_text/0.txt b/maze/task2/example/level8/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3ad4fff864f3c39894ba788b69085d7d5d7e9aa --- /dev/null +++ b/maze/task2/example/level8/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 2, Column 2; Row 6, Column 2; Row 7, Column 1; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task2/example/level8/pure_text/1.txt b/maze/task2/example/level8/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0c10b032d52143bb208cd36c39a48985be180a7 --- /dev/null +++ b/maze/task2/example/level8/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 2; +The hole(s) are at: Row 2, Column 7; Row 2, Column 8; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; Row 7, Column 2; Row 7, Column 3; Row 8, Column 4; Row 8, Column 7; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level8/pure_text/2.txt b/maze/task2/example/level8/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b25309dcc1446d18a472e2cc11d1ae546affb340 --- /dev/null +++ b/maze/task2/example/level8/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 1, Column 8; Row 3, Column 5; Row 3, Column 7; Row 4, Column 3; Row 6, Column 2; Row 7, Column 1; Row 8, Column 1; +The goal is at: Row 3, Column 8. \ No newline at end of file diff --git a/maze/task2/example/level8/pure_text/3.txt b/maze/task2/example/level8/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0367e6d509a9993f45fd8eb64fed4de0051b6b5 --- /dev/null +++ b/maze/task2/example/level8/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 6; Row 3, Column 2; Row 3, Column 7; Row 5, Column 3; Row 5, Column 8; Row 7, Column 3; Row 7, Column 7; Row 8, Column 4; Row 8, Column 5; +The goal is at: Row 1, Column 8. \ No newline at end of file diff --git a/maze/task2/example/level8/pure_text/4.txt b/maze/task2/example/level8/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b282880b5cbbed4574ebe5aaacb57bb270defc0 --- /dev/null +++ b/maze/task2/example/level8/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 7; Row 4, Column 8; Row 5, Column 2; Row 5, Column 6; Row 7, Column 1; Row 7, Column 8; Row 8, Column 1; Row 8, Column 4; Row 8, Column 8; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/example/level8/pure_text/5.txt b/maze/task2/example/level8/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..93cbbaf3016e4c40eaff2b2c9a14ca6d6d07d0be --- /dev/null +++ b/maze/task2/example/level8/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 8; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 2, Column 8; Row 3, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 6, Column 6; Row 7, Column 2; Row 7, Column 8; Row 8, Column 2; +The goal is at: Row 5, Column 8. \ No newline at end of file diff --git a/maze/task2/example/level8/pure_text/6.txt b/maze/task2/example/level8/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4178df1b24bf826787286722e6c19e8a737f5cd5 --- /dev/null +++ b/maze/task2/example/level8/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 3, Column 8; Row 4, Column 2; Row 5, Column 4; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 8, Column 2; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task2/example/level8/pure_text/7.txt b/maze/task2/example/level8/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24b50363b00e78a155e8bb3fd676713848abb70c --- /dev/null +++ b/maze/task2/example/level8/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 7; Row 2, Column 4; Row 2, Column 6; Row 4, Column 2; Row 4, Column 4; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 3; Row 6, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 3; Row 8, Column 6; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task2/example/level8/table/0.txt b/maze/task2/example/level8/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..f095c0659fa16427718c745b4e3ced073e3a1909 --- /dev/null +++ b/maze/task2/example/level8/table/0.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | # | _ | # | _ | _ | diff --git a/maze/task2/example/level8/table/1.txt b/maze/task2/example/level8/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf0234bf9507ec4e1ac978899096688c575f60f6 --- /dev/null +++ b/maze/task2/example/level8/table/1.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | _ | # | _ | +| Row 5 | # | # | _ | # | _ | _ | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | * | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | @ | _ | # | _ | _ | # | _ | diff --git a/maze/task2/example/level8/table/2.txt b/maze/task2/example/level8/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba7b7b31aab638975205c51cedb3534c6025d497 --- /dev/null +++ b/maze/task2/example/level8/table/2.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | * | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/example/level8/table/3.txt b/maze/task2/example/level8/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcbbfda8ae74e19832709bdfe94baecdde385950 --- /dev/null +++ b/maze/task2/example/level8/table/3.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | # | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | @ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task2/example/level8/table/4.txt b/maze/task2/example/level8/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eb6e297fe246bab637d43e43af17b76a154bdb1 --- /dev/null +++ b/maze/task2/example/level8/table/4.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | * | # | # | _ | _ | _ | # | # | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | @ | # | _ | _ | _ | # | diff --git a/maze/task2/example/level8/table/5.txt b/maze/task2/example/level8/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a90f0746d20707e5c4f3b5fceeae0ced6ea5d9f --- /dev/null +++ b/maze/task2/example/level8/table/5.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | # | _ | @ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/example/level8/table/6.txt b/maze/task2/example/level8/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..df0ac14e51b65d057a3cc370f687087d8071cc0f --- /dev/null +++ b/maze/task2/example/level8/table/6.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | # | _ | _ | +| Row 7 | _ | _ | @ | _ | * | _ | _ | _ | +| Row 8 | _ | # | _ | _ | # | # | _ | _ | diff --git a/maze/task2/example/level8/table/7.txt b/maze/task2/example/level8/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7367f4253dd9b1672007a999866e56912cbca74 --- /dev/null +++ b/maze/task2/example/level8/table/7.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | * | # | _ | +| Row 6 | _ | @ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | # | # | # | +| Row 8 | _ | _ | # | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level3/img/0.png b/maze/task2/maps/level3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..063c0e8e9967f70150ea87a51adab03fb50acb2d --- /dev/null +++ b/maze/task2/maps/level3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0f1e890ed75bae24c07640e624c58f91cf992234035bfc01b465c438ae28ed +size 4124 diff --git a/maze/task2/maps/level3/img/1.png b/maze/task2/maps/level3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fd126c841b65ab90071ea84c6d9a3592d2a45d0c --- /dev/null +++ b/maze/task2/maps/level3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c91bc109bc40f61091e8f2e6146b8c066360b5078dd18abe3906b0a3c4fbfea +size 5693 diff --git a/maze/task2/maps/level3/img/10.png b/maze/task2/maps/level3/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c66721f00efd5c76729c309c8d796f631a57a559 --- /dev/null +++ b/maze/task2/maps/level3/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c3751bc59071e4c1bf7a53b632b6d69ea2f4bb3fddf6c47784d9e70aafb754 +size 4004 diff --git a/maze/task2/maps/level3/img/11.png b/maze/task2/maps/level3/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..635848320732b02561ee4daae8f81d5f27fcd627 --- /dev/null +++ b/maze/task2/maps/level3/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a325ae32abd3fa2fc040c6bf88ba2624a0e79eba731c562717045d50e48320 +size 4923 diff --git a/maze/task2/maps/level3/img/12.png b/maze/task2/maps/level3/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ce2fd3438c841b44d0be9b12ef36aaba3a24343b --- /dev/null +++ b/maze/task2/maps/level3/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6686033900aa8b3735fec232292115641fa102b1be8877f58d059870f2a2595 +size 4868 diff --git a/maze/task2/maps/level3/img/13.png b/maze/task2/maps/level3/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..7fbf2301d96c46d958ad4accb71e1161cfceea13 --- /dev/null +++ b/maze/task2/maps/level3/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33cfba107c51067193927c9c18270dc497af9ce8a38d31dec7ac5c95e3e50e76 +size 4040 diff --git a/maze/task2/maps/level3/img/14.png b/maze/task2/maps/level3/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e94e8b0d5da7563c37a3dce2076c88b569e3302e --- /dev/null +++ b/maze/task2/maps/level3/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3665ea90cf54422f3e01519c7ade688551aaa9a82498a9b488673fe5b0023f +size 5560 diff --git a/maze/task2/maps/level3/img/15.png b/maze/task2/maps/level3/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..7f21878c7b780333390c4dc80b1e13d1bff7becb --- /dev/null +++ b/maze/task2/maps/level3/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c38fd01e6f374c6747ae5be93d58d9462d31ce66b6f0d4f8a51ca8cb6ac67df +size 5692 diff --git a/maze/task2/maps/level3/img/16.png b/maze/task2/maps/level3/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..99c9c9b31794f1d27f9aefb52a1d82f0f0e57e53 --- /dev/null +++ b/maze/task2/maps/level3/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80ab087825fdc0a2f5729eb6644956049aefa8b7446b6a7585d48de1e9acd71 +size 4900 diff --git a/maze/task2/maps/level3/img/17.png b/maze/task2/maps/level3/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..918a069efcac167d35af9c385bd2ae2acea959ee --- /dev/null +++ b/maze/task2/maps/level3/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782bdb724f4910b45b0660e44dcc8e0129b34ebf223355b03810ee59d3565ec0 +size 4086 diff --git a/maze/task2/maps/level3/img/18.png b/maze/task2/maps/level3/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a2bc65da73c7f88973904c9607849e785ca1ea56 --- /dev/null +++ b/maze/task2/maps/level3/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf834a38900b3746c31a1c1e6f9c926e8a25d452303c50080d641cfdf35108d1 +size 4674 diff --git a/maze/task2/maps/level3/img/19.png b/maze/task2/maps/level3/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..688ba642774bd88371af3843902e9c1886841890 --- /dev/null +++ b/maze/task2/maps/level3/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64718d56c2c58b72a2dafce00767d2a9d2999035e344c94dad79e88050042b0f +size 5495 diff --git a/maze/task2/maps/level3/img/2.png b/maze/task2/maps/level3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5fa5008498f4f6038088ee093802d827f3071427 --- /dev/null +++ b/maze/task2/maps/level3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53380f4785c79549bc17f5553cd81680be3e293158e75785c7441b0f2d6be66d +size 5695 diff --git a/maze/task2/maps/level3/img/20.png b/maze/task2/maps/level3/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..bb3c19c522655f0c53c844524ea01a64a7b01cc7 --- /dev/null +++ b/maze/task2/maps/level3/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbb5c1a20970446544ea89aeb6c0fc5dbf378f69503748ac73bab0adf6abd21 +size 4920 diff --git a/maze/task2/maps/level3/img/21.png b/maze/task2/maps/level3/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..72662d16087b65d67264b568779ff459ccbb2e26 --- /dev/null +++ b/maze/task2/maps/level3/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:134e5088db8eea08165bb4f52dd7d6dd4d631bb53f48a5d8ab5b695432d3cdb3 +size 4059 diff --git a/maze/task2/maps/level3/img/22.png b/maze/task2/maps/level3/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..f58514fc3f291e9e028dcb345bf9ea2d67424b06 --- /dev/null +++ b/maze/task2/maps/level3/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e2321740b2ea4d18851a755e217f6f67932efaff2da788c0810e3378350a2a +size 4873 diff --git a/maze/task2/maps/level3/img/23.png b/maze/task2/maps/level3/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..fde8b294342c884757a01fb8b2cbf08ca90f9f5b --- /dev/null +++ b/maze/task2/maps/level3/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425ed14b808aa2a52951b65737d36fd4bc9f5466950513a11cf475b3304387aa +size 4003 diff --git a/maze/task2/maps/level3/img/24.png b/maze/task2/maps/level3/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..cef0cfe6105eeda57db801881872acd28f2a52b7 --- /dev/null +++ b/maze/task2/maps/level3/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33e00e86aa38b503e050f040c95b679a1182b87bfa04f05901c2916bd3b1fa4 +size 4130 diff --git a/maze/task2/maps/level3/img/25.png b/maze/task2/maps/level3/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..c82d25addbe5947c837d6411116188084dacc975 --- /dev/null +++ b/maze/task2/maps/level3/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41aab14513e714af3014032a2e503d351bc7453244a6d4da54ef417bbe4ec72 +size 5758 diff --git a/maze/task2/maps/level3/img/26.png b/maze/task2/maps/level3/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa3128d758d2bddd6f94504c5cca1864723566a --- /dev/null +++ b/maze/task2/maps/level3/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50525df05921182bb20b778f223228428e0e8f86a04d5c18319b4a2e3dab444d +size 5745 diff --git a/maze/task2/maps/level3/img/27.png b/maze/task2/maps/level3/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..08f8ff50052cfe5e0be453ea30ca8aa224f5b0d5 --- /dev/null +++ b/maze/task2/maps/level3/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4261299d3bae873044a3b1e98d8ff01f23bbc237ae86db1e668d74ecfa7b5261 +size 5566 diff --git a/maze/task2/maps/level3/img/28.png b/maze/task2/maps/level3/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d269e0112cc6748472aa833ed9afe76949ec59 --- /dev/null +++ b/maze/task2/maps/level3/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0dbcfcd8ae22e86581966e8a931259ce6cb982de45bab909f78dcba36b60c9 +size 4033 diff --git a/maze/task2/maps/level3/img/29.png b/maze/task2/maps/level3/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..0c7889dbecb5a723653d9bdd4bfe4d49c348b691 --- /dev/null +++ b/maze/task2/maps/level3/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a9026a303b58e478a3ee5984c64cf79136c2cf17968f08807bfcbeb867386a +size 4071 diff --git a/maze/task2/maps/level3/img/3.png b/maze/task2/maps/level3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..cd209eab4b29f433ff04bdad7d8fbbed25ca64b1 --- /dev/null +++ b/maze/task2/maps/level3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e209c42fd8abc4d6b37941cea573b0198f5ae129d4501ca1b361797fc4f1ba6 +size 4874 diff --git a/maze/task2/maps/level3/img/30.png b/maze/task2/maps/level3/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..2b54d2d8d3d9be1f68b6cd46267ccfc32816c579 --- /dev/null +++ b/maze/task2/maps/level3/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baad1139efc46d6b8a43848c0f4cc9a6f82cdf22e1f07c58c01fe652881a7d4f +size 4045 diff --git a/maze/task2/maps/level3/img/31.png b/maze/task2/maps/level3/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..e367571ade709b57954617b98d0cfab061e28bc8 --- /dev/null +++ b/maze/task2/maps/level3/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31a62e43411531f8ba03f4c4d1bd9534425cbc4e4bf03a8e8c03f9626f6d394 +size 4893 diff --git a/maze/task2/maps/level3/img/32.png b/maze/task2/maps/level3/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..6a7e613dc28e655a24cabc19153205547baa61cc --- /dev/null +++ b/maze/task2/maps/level3/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb062d2b2f252391b4bc6f426bd7f75a714ffd94313ec67b375051d7d25fe28 +size 4922 diff --git a/maze/task2/maps/level3/img/33.png b/maze/task2/maps/level3/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..2718765f94e3aa1772a833c6a287effab39a8a76 --- /dev/null +++ b/maze/task2/maps/level3/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e124edc9bca4e42c587d1052d714e287bbbe955066becaf9557237eac3a65b6 +size 4020 diff --git a/maze/task2/maps/level3/img/34.png b/maze/task2/maps/level3/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..c92343ef08eebfd7bee110c028e49b9d9b08a067 --- /dev/null +++ b/maze/task2/maps/level3/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4d3d2578d063accd2ea4268fb7758e1bb4ab996db814eb136d7bb7d531395b +size 5801 diff --git a/maze/task2/maps/level3/img/35.png b/maze/task2/maps/level3/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..c93b9b7cee94208e0bfbed7184096e3d26a7683a --- /dev/null +++ b/maze/task2/maps/level3/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea56255d80918431cd7333332500e9254bd45fd3fbb54244ac217fee064576a +size 4985 diff --git a/maze/task2/maps/level3/img/36.png b/maze/task2/maps/level3/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..d3127379ffe6093d6790b5786e5bcca7f789d279 --- /dev/null +++ b/maze/task2/maps/level3/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea607e87c32cccf8627b2ba4f6f79da710750431180371d699399abf168d05e +size 5731 diff --git a/maze/task2/maps/level3/img/37.png b/maze/task2/maps/level3/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..d431f7b2d30c6d0ce033af5c2661334f6d850d55 --- /dev/null +++ b/maze/task2/maps/level3/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e05138aa1f782b92d0bfbce2dcead18301cc7b6b7b3540cb60beab11d7b60d +size 5558 diff --git a/maze/task2/maps/level3/img/38.png b/maze/task2/maps/level3/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..ff01bfd86cde6740f9eba1cf8859f29d0427cfc7 --- /dev/null +++ b/maze/task2/maps/level3/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdbd33e5ef08b4d2db1b6cf81f8c5a7e2f2c0ccbf9a7c81d6f51150b8a5bc89 +size 4143 diff --git a/maze/task2/maps/level3/img/39.png b/maze/task2/maps/level3/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..2370856d267ef8e9b38d0c199c2cc6a0d6e7bcc3 --- /dev/null +++ b/maze/task2/maps/level3/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9447712751703ca87d50b1a4d426ef06e55701e190523c77d9ba5185d67d04c1 +size 4925 diff --git a/maze/task2/maps/level3/img/4.png b/maze/task2/maps/level3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..413a48cc1486e45790b05b81ca423f7a4886d729 --- /dev/null +++ b/maze/task2/maps/level3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9307c437ba8b444721ba9470304a6c4f8b93e8c8421fb6b74bcecc01cf450af3 +size 5628 diff --git a/maze/task2/maps/level3/img/40.png b/maze/task2/maps/level3/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..6a8af60df410256247b960f2e5c7e68e49a40ff9 --- /dev/null +++ b/maze/task2/maps/level3/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d926f55e3ce09de0d6efebd2d4ae1fc0bb26deb91f0cd6fc6c772bc33d0567fc +size 4892 diff --git a/maze/task2/maps/level3/img/41.png b/maze/task2/maps/level3/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..b5001c31af67effdc18df4584675787e0e935ee6 --- /dev/null +++ b/maze/task2/maps/level3/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c74ca8f6ef9cfa9dc8129a9b415b8ad0e47e265cea802a6b870b8095db94a17 +size 5730 diff --git a/maze/task2/maps/level3/img/42.png b/maze/task2/maps/level3/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6cb8b195306924178e7c0353951f6cfea87899 --- /dev/null +++ b/maze/task2/maps/level3/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49ac76e2548e9e53dd6f2c43e2db522b4e3768ddd1e9d9bbf0a7b28f6679d0c +size 4053 diff --git a/maze/task2/maps/level3/img/43.png b/maze/task2/maps/level3/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..f82d3b60aa3a3a95b11e2f1a0a18398239031105 --- /dev/null +++ b/maze/task2/maps/level3/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a9e485ba5e7709ddc0463ba24af143773a56f03a1f38ea0c93e532e67206af +size 4882 diff --git a/maze/task2/maps/level3/img/44.png b/maze/task2/maps/level3/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..8984438ddafc57134e041f288a148b6f5191851d --- /dev/null +++ b/maze/task2/maps/level3/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b1988a780f020ea25f791c3544162eb682029c86a4ed4381383d4a93683cbd +size 3983 diff --git a/maze/task2/maps/level3/img/45.png b/maze/task2/maps/level3/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..9ecab569c90121f056395aa80e5dfa7da3ac5ee0 --- /dev/null +++ b/maze/task2/maps/level3/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6338034a16c7855033607520245821a625eee7e44c3e82d5be45878da03b4e0b +size 4126 diff --git a/maze/task2/maps/level3/img/46.png b/maze/task2/maps/level3/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..a5c703861b17b80b3f6b5667244185af42a238b6 --- /dev/null +++ b/maze/task2/maps/level3/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811aaaf6bd7a113979db84f52612a8f4660981ffe642e4a246b5f9a860a6ecda +size 4094 diff --git a/maze/task2/maps/level3/img/47.png b/maze/task2/maps/level3/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..9eda3ebe1cca1bc593c96a1c487acd6c80a89962 --- /dev/null +++ b/maze/task2/maps/level3/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681401d6f1a5f821f8b695a2ef6b14d62554edf4c95c3d340c925f5d355c77e6 +size 5622 diff --git a/maze/task2/maps/level3/img/48.png b/maze/task2/maps/level3/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd1b92279721972aa47d357dc24b28bdbd05b6 --- /dev/null +++ b/maze/task2/maps/level3/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d28d1c54dee219bc0a7b1a0d238f1cda29e3d4965833f85afe4b5b22eafaee +size 4123 diff --git a/maze/task2/maps/level3/img/49.png b/maze/task2/maps/level3/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9ac5e9c136a636540536c9415a737ce23a7a5a --- /dev/null +++ b/maze/task2/maps/level3/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f68b666bd2103cff42d806bca13c8592233de8a7bc1d3583ca938b24ad43668 +size 4951 diff --git a/maze/task2/maps/level3/img/5.png b/maze/task2/maps/level3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6c2667f9c8c90b358c321d62b5028c3b21f6cde6 --- /dev/null +++ b/maze/task2/maps/level3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8520a4952f8d326200b8ad8729418b205685f077b88da1d52922090b5ca67ec6 +size 5674 diff --git a/maze/task2/maps/level3/img/50.png b/maze/task2/maps/level3/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..f816901bf0ef7f02ec3a23b6ac1327f8441a2b44 --- /dev/null +++ b/maze/task2/maps/level3/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f2c39db0f639d5edc536a3f537dc4df78ab911a892374779cd13d4acfd369d +size 5774 diff --git a/maze/task2/maps/level3/img/51.png b/maze/task2/maps/level3/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..0adacd1b4c5ef637bc3f92de76e156c0a19caa95 --- /dev/null +++ b/maze/task2/maps/level3/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5977fa4fdbdaf85379fb68a3c5d27f789ab75c2295d6cc78bed3dfda654c9ce +size 5715 diff --git a/maze/task2/maps/level3/img/52.png b/maze/task2/maps/level3/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..d16ea83487d44186ba15dd72bb8ef3e2cd6abc9a --- /dev/null +++ b/maze/task2/maps/level3/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca368b2d822b76ab6f6f8899abf6716cb892387e22e598b95b2c99ee49948e9 +size 4896 diff --git a/maze/task2/maps/level3/img/53.png b/maze/task2/maps/level3/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..5dcfd7b042745dd12f27b2589d097d8912438f43 --- /dev/null +++ b/maze/task2/maps/level3/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb8439978f0e4da1228c52f6650a66ea2a9855be76aab94ab82b102b81171f9 +size 4970 diff --git a/maze/task2/maps/level3/img/54.png b/maze/task2/maps/level3/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..eb85d8c93612eaa33a374d4fe1925e31268c3551 --- /dev/null +++ b/maze/task2/maps/level3/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57051a95f032d62973b9c3d1ac10410114defaaae6e39e9351ea8c5ce6d8ddb1 +size 4853 diff --git a/maze/task2/maps/level3/img/55.png b/maze/task2/maps/level3/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..693676865072fd3209615c0a94c85aa0f8ab737e --- /dev/null +++ b/maze/task2/maps/level3/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded0944bb43644b7bd5b2b7831e498b78e770792092cac5fe443dac90a7dc22f +size 5653 diff --git a/maze/task2/maps/level3/img/56.png b/maze/task2/maps/level3/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..9d04fcac5cf7ced2f3edd66206cafbc4eac8382d --- /dev/null +++ b/maze/task2/maps/level3/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02be244d5771f261949e3f57ce1d6148ec2ca0132470e66dc1d0de78876e858d +size 4923 diff --git a/maze/task2/maps/level3/img/57.png b/maze/task2/maps/level3/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..8a2635ca4c479209f8c35f47403516d90ce4ca86 --- /dev/null +++ b/maze/task2/maps/level3/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead0f8c04df6c5756cb6853252cef20cc486e5a8b9d089616dc2d4d2c0d097e7 +size 4948 diff --git a/maze/task2/maps/level3/img/58.png b/maze/task2/maps/level3/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..cabfbaf061b078e8e1f909d5d0f4807936281435 --- /dev/null +++ b/maze/task2/maps/level3/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e653476468ad4fb2e5323d849e905ad84dd7744ff37b1a81e5de81b4d7cf58d +size 4912 diff --git a/maze/task2/maps/level3/img/59.png b/maze/task2/maps/level3/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..0a5eb1a68dda681e43d0f4bf347dec441e0802bc --- /dev/null +++ b/maze/task2/maps/level3/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7c4fcd713c6fbd1761788c2a2ad08cc59526b5b27e83edd74e889de23b4f31 +size 5691 diff --git a/maze/task2/maps/level3/img/6.png b/maze/task2/maps/level3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..fcac28397404bf013dfc71909411a5959b0d57e9 --- /dev/null +++ b/maze/task2/maps/level3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf6bdc4edf9ed19406481b84ea3f49ec59135e3e5e19b6a607361044dbf820d +size 3980 diff --git a/maze/task2/maps/level3/img/60.png b/maze/task2/maps/level3/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6cb8b195306924178e7c0353951f6cfea87899 --- /dev/null +++ b/maze/task2/maps/level3/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49ac76e2548e9e53dd6f2c43e2db522b4e3768ddd1e9d9bbf0a7b28f6679d0c +size 4053 diff --git a/maze/task2/maps/level3/img/61.png b/maze/task2/maps/level3/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..480cceb486d81b57179438c8dd158306c35240f9 --- /dev/null +++ b/maze/task2/maps/level3/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70bf0eb3a67a63cad2eaa88a7715f2ebf7c72c4ffc7dbc996fabd43fc6091724 +size 5800 diff --git a/maze/task2/maps/level3/img/62.png b/maze/task2/maps/level3/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..72dbebb7b15c275626d5df1f51b988e6eeb5eb9d --- /dev/null +++ b/maze/task2/maps/level3/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e6b08a27bb8ce039416d76212788abc59c559cc215a3c631797073914b4512 +size 4887 diff --git a/maze/task2/maps/level3/img/63.png b/maze/task2/maps/level3/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..278a10fb88834d87f32750dc10f92e524da9e20c --- /dev/null +++ b/maze/task2/maps/level3/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e0dc9088844c0e155bcf1b5d4e3d6bd7592296576f78044266723a66e171bbc +size 5674 diff --git a/maze/task2/maps/level3/img/64.png b/maze/task2/maps/level3/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..11e659b5c65daa459e143d12ccb809c0dc4722a0 --- /dev/null +++ b/maze/task2/maps/level3/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbf7ffc2028a2360a5ea2f451d359b44cc60dddd405efa50084d07f587e11a0 +size 5763 diff --git a/maze/task2/maps/level3/img/65.png b/maze/task2/maps/level3/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..2487ee34ef4b841d865717a7b9ae5b18b12efb50 --- /dev/null +++ b/maze/task2/maps/level3/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c23bb39414e8e895217096cf42dd114fafae8fd6c7929170b54b850300f1d1a +size 4130 diff --git a/maze/task2/maps/level3/img/66.png b/maze/task2/maps/level3/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..f9bba95c526d6cc74bf68199522b3bb6792acd80 --- /dev/null +++ b/maze/task2/maps/level3/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba9607786c57d1d8341fdcc2117f8d7f9d8e0fd22c6c166c51d3ed6a1602f37 +size 4126 diff --git a/maze/task2/maps/level3/img/67.png b/maze/task2/maps/level3/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..53d00c6b2517641dee7aa60d2b33641e4c0308ac --- /dev/null +++ b/maze/task2/maps/level3/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1afb3836c194463edb56fcfca78a084116c6a23c0288000222e0f7b0ac5c985c +size 4074 diff --git a/maze/task2/maps/level3/img/68.png b/maze/task2/maps/level3/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..fc45758830492d8846b4045a73eb51670995a042 --- /dev/null +++ b/maze/task2/maps/level3/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9819bc0e062a0130eb1f0818f6f574dd01d67e303dd9f039527164096dba718d +size 5726 diff --git a/maze/task2/maps/level3/img/69.png b/maze/task2/maps/level3/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..888e0df1c5462e5cedfb57c829504a7674f74acb --- /dev/null +++ b/maze/task2/maps/level3/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a74c276dbab2cd90711434f9bb2a28a6525c1851490f39fc7c2473b93bbfcd0 +size 4060 diff --git a/maze/task2/maps/level3/img/7.png b/maze/task2/maps/level3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a9dd3542827c17195b56e4f9bf16a914b0f318ae --- /dev/null +++ b/maze/task2/maps/level3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b55666bc3104b1486190d01cf611263df68e6dabdd4afbbba14aba765c84d219 +size 4902 diff --git a/maze/task2/maps/level3/img/70.png b/maze/task2/maps/level3/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..a4ad840eadacf19b977c85336830ebe841f8b42f --- /dev/null +++ b/maze/task2/maps/level3/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76c605aad16c1e0dd17655d077c1bc7fd0bbb0d19f7eae342febdf18dc638b7 +size 4833 diff --git a/maze/task2/maps/level3/img/71.png b/maze/task2/maps/level3/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..a12f92de409e46210db9a5fa7061dad7a977cfcd --- /dev/null +++ b/maze/task2/maps/level3/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abce35c57d385b6a459bf6619e231f26751af00e245c19c985caba7adf465d84 +size 4023 diff --git a/maze/task2/maps/level3/img/72.png b/maze/task2/maps/level3/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..3bfab69a2f680e3091493dd5edf7449bd2a5f925 --- /dev/null +++ b/maze/task2/maps/level3/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5628c109828fb1549505038942a89ee6c57117ca16b7d6f536eae0c3321d5947 +size 4995 diff --git a/maze/task2/maps/level3/img/73.png b/maze/task2/maps/level3/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..5a03df9a4d3a8c3ccca3ce727024b5262b80d818 --- /dev/null +++ b/maze/task2/maps/level3/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c57fe842c1852d65badc1f220344b02a9dc06fe7195cb3dcf8c7f6f59f45be7 +size 4924 diff --git a/maze/task2/maps/level3/img/74.png b/maze/task2/maps/level3/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..f14fd2044549c3296d2f1c2c8150a8fa58d2d19e --- /dev/null +++ b/maze/task2/maps/level3/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40148654e48f5aee8e143589ee55cbfcb487d83395cc79eda66669027407c602 +size 5810 diff --git a/maze/task2/maps/level3/img/75.png b/maze/task2/maps/level3/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..a8fc4fcffc10ed6f409172650d5c2d5d4fa47ca4 --- /dev/null +++ b/maze/task2/maps/level3/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def7d401c5f6ef761af40ab854bd709f8c2c7eb8936b0693e6b0c6d2f48829df +size 4107 diff --git a/maze/task2/maps/level3/img/76.png b/maze/task2/maps/level3/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..aaf60a674e856ddc3cfac613b92056d01ca81e31 --- /dev/null +++ b/maze/task2/maps/level3/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516fe830ff758a80b60e8b9a07bf53eb5c6cff855da4d361f64eea15a992e536 +size 5716 diff --git a/maze/task2/maps/level3/img/77.png b/maze/task2/maps/level3/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..b18c21487e2c30ac8741d1b57fd3d315a38dc77b --- /dev/null +++ b/maze/task2/maps/level3/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb5672b2ffe235fd65da24c3653ad08113ca10314ce2eeef472143e2381e660 +size 4888 diff --git a/maze/task2/maps/level3/img/78.png b/maze/task2/maps/level3/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..3599ad56b5ef04cdc867d59a793cc0675c6227a4 --- /dev/null +++ b/maze/task2/maps/level3/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03392fdb052cd30dce2742e983f22ad9657acec029ac681fbc20b0e498068d0 +size 4957 diff --git a/maze/task2/maps/level3/img/79.png b/maze/task2/maps/level3/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..5d0c9e5ede6b847efe09c34dbea7d0c9f5953860 --- /dev/null +++ b/maze/task2/maps/level3/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb086eff44fd88c18b011c6ca5c9d00ee7fed823c6dd46e25728ae7f7d940c89 +size 4078 diff --git a/maze/task2/maps/level3/img/8.png b/maze/task2/maps/level3/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..96026f4cfe69dbc922cf8ea8d5581845f15df16b --- /dev/null +++ b/maze/task2/maps/level3/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffafc16718a14d05170b65864032edb79ca775e56f71d0bf61a50fd3dffe5eb +size 5651 diff --git a/maze/task2/maps/level3/img/80.png b/maze/task2/maps/level3/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..9ecab569c90121f056395aa80e5dfa7da3ac5ee0 --- /dev/null +++ b/maze/task2/maps/level3/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6338034a16c7855033607520245821a625eee7e44c3e82d5be45878da03b4e0b +size 4126 diff --git a/maze/task2/maps/level3/img/81.png b/maze/task2/maps/level3/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..0b380887e4f8492a031399a306cdee28cdab719c --- /dev/null +++ b/maze/task2/maps/level3/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c41dfa983208c6aff7ba919414d61065e1bbeadd49cb25b1caab6d0556e308e +size 5742 diff --git a/maze/task2/maps/level3/img/82.png b/maze/task2/maps/level3/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..cce2e442aca632fc2d596b3b7fda141410a1f4fa --- /dev/null +++ b/maze/task2/maps/level3/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877e4826a60801adce55db70a51d120deb363d7b13a31cbe43c054ffbd9f9d48 +size 5633 diff --git a/maze/task2/maps/level3/img/83.png b/maze/task2/maps/level3/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..30129754af0df48b1c5e707ac22fee3b4ccd44ff --- /dev/null +++ b/maze/task2/maps/level3/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f547a89937b81a9b368536cf51aa09419b2b48a8faf0b6ead90c34c69974d16c +size 4920 diff --git a/maze/task2/maps/level3/img/84.png b/maze/task2/maps/level3/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..2a168b55c29652a7137afe78abce31f1fa8f46f2 --- /dev/null +++ b/maze/task2/maps/level3/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26fa4394bb11626268d9eb51843b62add307cc12d74ed204ec124d4d9436abe8 +size 5590 diff --git a/maze/task2/maps/level3/img/85.png b/maze/task2/maps/level3/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..a9d059143a1f9ca609bb104ee3d7fba80d3d99b2 --- /dev/null +++ b/maze/task2/maps/level3/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef275e1974b897dea65426dcc4f2f30b5bb0c71bee438891b90b583ad7a4e972 +size 6461 diff --git a/maze/task2/maps/level3/img/86.png b/maze/task2/maps/level3/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..4668ad19ff66c0e1e315fafa1b117ef9f6826b75 --- /dev/null +++ b/maze/task2/maps/level3/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf95d4e674ad62c2ba2dc3513a5fda78439032b38973073902fb9bfad8f9ea1 +size 5626 diff --git a/maze/task2/maps/level3/img/87.png b/maze/task2/maps/level3/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..cf1f233247ba6760885619e4243d94b1c1faba07 --- /dev/null +++ b/maze/task2/maps/level3/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937e5bd2ff336962288d80da2b2bc04e81178bb8ebf0fdc94b352a190420435e +size 5617 diff --git a/maze/task2/maps/level3/img/88.png b/maze/task2/maps/level3/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..ff01bfd86cde6740f9eba1cf8859f29d0427cfc7 --- /dev/null +++ b/maze/task2/maps/level3/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdbd33e5ef08b4d2db1b6cf81f8c5a7e2f2c0ccbf9a7c81d6f51150b8a5bc89 +size 4143 diff --git a/maze/task2/maps/level3/img/89.png b/maze/task2/maps/level3/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..f70bd314f218cf188729ab2bef773a94ed80dd39 --- /dev/null +++ b/maze/task2/maps/level3/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8afca69f411eda1081eaa7ef733395571b789e3ff81a31994fa4483fcb4d0f +size 4918 diff --git a/maze/task2/maps/level3/img/9.png b/maze/task2/maps/level3/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..3d86180a58f12f0838cadfcf1da425c1c8c2dc28 --- /dev/null +++ b/maze/task2/maps/level3/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba007e83865e7f36243cb638d04c9bf6c90b384670d243d2d81eac50aaaa14d2 +size 4850 diff --git a/maze/task2/maps/level3/img/90.png b/maze/task2/maps/level3/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..137e805d019c6f96653723994c61d4301e116809 --- /dev/null +++ b/maze/task2/maps/level3/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9304c73e9c591f8aa39c70e60847b9ad9879d00db1853f3b0e15a0c7807c0ce +size 5628 diff --git a/maze/task2/maps/level3/img/91.png b/maze/task2/maps/level3/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..d93b5bdf1a4b07d2cb5abb37c7420c36a8ee16b2 --- /dev/null +++ b/maze/task2/maps/level3/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1495d793a8eb7257778b7b38a5e0a6f7bd0a9582a55d87517c83e29f37ed0d74 +size 4901 diff --git a/maze/task2/maps/level3/img/92.png b/maze/task2/maps/level3/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..2023e77e63982bb9bf5a8a7a4619c593c3fdb0c1 --- /dev/null +++ b/maze/task2/maps/level3/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062bea294f84953ecfd1f17f8a53ad30aeffc114e5e46762ecc3fd719a9b48c6 +size 4995 diff --git a/maze/task2/maps/level3/img/93.png b/maze/task2/maps/level3/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..21fdb46091b8b9f0328deeaded6ad3c193051cfa --- /dev/null +++ b/maze/task2/maps/level3/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71577afd119a46b24316afbf570424e8b1009add0e91fa465f2c129a345a5fd7 +size 4129 diff --git a/maze/task2/maps/level3/img/94.png b/maze/task2/maps/level3/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..d751b59cf6f66f3764a726bd9e922ffd31696d0a --- /dev/null +++ b/maze/task2/maps/level3/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb9513041227122305af8149d4229fd2ad3559cc09d8f3d1ab37b506c013d0d +size 4527 diff --git a/maze/task2/maps/level3/img/95.png b/maze/task2/maps/level3/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..eb5bf1557b5dcaa46e907aea7f7f7884bb6967a0 --- /dev/null +++ b/maze/task2/maps/level3/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3060d21f269b69cbc83ceb97b545950ccaba75fd22f1c5ab2e558d7b422e402b +size 5615 diff --git a/maze/task2/maps/level3/img/96.png b/maze/task2/maps/level3/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..f2fd9966f4e0525e1cf0b9f26b4bb23520091d96 --- /dev/null +++ b/maze/task2/maps/level3/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2089fd078a858df8efcc3ad14d0a0032a7b0b7721b37820da58d56bbc9584e83 +size 4976 diff --git a/maze/task2/maps/level3/img/97.png b/maze/task2/maps/level3/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..95de31518ee2b5b89a43cb84aaf6d07ed7fd8c4e --- /dev/null +++ b/maze/task2/maps/level3/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e149e09bfc370ce911c940809dac0bea096923551bb5302c996dbbe425d4577 +size 5675 diff --git a/maze/task2/maps/level3/img/98.png b/maze/task2/maps/level3/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d269e0112cc6748472aa833ed9afe76949ec59 --- /dev/null +++ b/maze/task2/maps/level3/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0dbcfcd8ae22e86581966e8a931259ce6cb982de45bab909f78dcba36b60c9 +size 4033 diff --git a/maze/task2/maps/level3/img/99.png b/maze/task2/maps/level3/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..7544ec6e81b509344b6ac3ffe9d8ba36b7965d67 --- /dev/null +++ b/maze/task2/maps/level3/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e611cd13bcb9e5c0c6a22535bc12d5dafe86195c1cb2d51f2d5dc157f5cba9aa +size 4820 diff --git a/maze/task2/maps/level3/pure_text/0.txt b/maze/task2/maps/level3/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a025ba3380240703b3732f07a1d46d1d0893116 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/1.txt b/maze/task2/maps/level3/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..183c6612fb4a925088d83b2bcae70a3cc1c22701 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/10.txt b/maze/task2/maps/level3/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4f9c7e2c0efd7511f4e9083699f34f9f5beff74 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/11.txt b/maze/task2/maps/level3/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..c46a9dc5c754c4ddfc37fb9a1ff3031f9984c67a --- /dev/null +++ b/maze/task2/maps/level3/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/12.txt b/maze/task2/maps/level3/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..77b76cfe95790660cd15ce0c95c0145d7da3370a --- /dev/null +++ b/maze/task2/maps/level3/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 3, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/13.txt b/maze/task2/maps/level3/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..b69c0fea6134b729d77c60a94cd7e26f8790f8e5 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/14.txt b/maze/task2/maps/level3/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..23d8a2bc05ad19397c2deecd266fdff883a67b29 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/15.txt b/maze/task2/maps/level3/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbd2f8a19aac88cec4c2363061f52c512f958acb --- /dev/null +++ b/maze/task2/maps/level3/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/16.txt b/maze/task2/maps/level3/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6c85cf9e693ffaa45d44bcfa45c1b8894a8e48b --- /dev/null +++ b/maze/task2/maps/level3/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/17.txt b/maze/task2/maps/level3/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..58c6bb9ba57e6f23d309a783b2c6e0344b27fbbb --- /dev/null +++ b/maze/task2/maps/level3/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/18.txt b/maze/task2/maps/level3/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d4874598904c58f48b7061d680e71d767bbc58c --- /dev/null +++ b/maze/task2/maps/level3/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/19.txt b/maze/task2/maps/level3/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc48cf1d1a0d7b17d579cd410c8039d3ca8469e6 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/2.txt b/maze/task2/maps/level3/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29e24a163beddc0ade57f319a8505b086fb393fe --- /dev/null +++ b/maze/task2/maps/level3/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/20.txt b/maze/task2/maps/level3/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac1a8c8cca413ba3facbe04fcb507bf42b00760d --- /dev/null +++ b/maze/task2/maps/level3/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/21.txt b/maze/task2/maps/level3/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..464c11ce1534e2bba49424d66515192830450e32 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/22.txt b/maze/task2/maps/level3/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..04d7c7deaf7acd1a9a0659833af1657f862dcf01 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/23.txt b/maze/task2/maps/level3/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..48c84c67ee586703658460f5260bb451b00627b3 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/24.txt b/maze/task2/maps/level3/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c424d325a7c181ab88f04d721a2fcd0f6c1e31f0 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/25.txt b/maze/task2/maps/level3/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..27040ee4a9a47131d3f3b120089d5f02a63c4b4a --- /dev/null +++ b/maze/task2/maps/level3/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/26.txt b/maze/task2/maps/level3/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebbf18df8a7a605158844a0a9d006ccff22c9d38 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/27.txt b/maze/task2/maps/level3/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4bb0b5ce3ed6f32821b975160ec2cbe03b29b54 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/28.txt b/maze/task2/maps/level3/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..8114af036a45f6594491a733ee1342e0f1f0cf9a --- /dev/null +++ b/maze/task2/maps/level3/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/29.txt b/maze/task2/maps/level3/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..260ffee3067f9cc5bf253fe595aa416a2dcb235d --- /dev/null +++ b/maze/task2/maps/level3/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/3.txt b/maze/task2/maps/level3/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d440d9e7409a16fd6eeebf49641b1728b27294d --- /dev/null +++ b/maze/task2/maps/level3/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/30.txt b/maze/task2/maps/level3/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca389034954f95d7c3b05faeba2fb1f36d2052e4 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/31.txt b/maze/task2/maps/level3/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..8501f7abca9840ebc657ed220cfb6734ce9b5d3c --- /dev/null +++ b/maze/task2/maps/level3/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/32.txt b/maze/task2/maps/level3/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9ca325d9b87fadb131ae791900c7ae24a91803 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/33.txt b/maze/task2/maps/level3/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c09f75d88d3dc293ea0a59aea9fffbc19eb2df4 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/34.txt b/maze/task2/maps/level3/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..297315a7c779a64b8ae4040d928628d4030d8bfe --- /dev/null +++ b/maze/task2/maps/level3/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/35.txt b/maze/task2/maps/level3/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6b2f7b6fd26b1c6162e9dc34a96afa210c3e333 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/36.txt b/maze/task2/maps/level3/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..64ccaecb7f8e66665ff37fb1f8459b53411835a0 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/37.txt b/maze/task2/maps/level3/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..52a98ee87bec7b07af598a37064d0f825bc2e6b9 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/38.txt b/maze/task2/maps/level3/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..93352c78de84ee82d46fefdfde19ba0324530d35 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/39.txt b/maze/task2/maps/level3/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..68524f06f2522136102bfbe1fc8464712af11f08 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/4.txt b/maze/task2/maps/level3/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ae2d0f87123c2177147ab56f98da5fc0ef7fe24 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 1; Row 3, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/40.txt b/maze/task2/maps/level3/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..32ddf8ba2a41c17cb6e1ac8adf7e8bec894de9d5 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/41.txt b/maze/task2/maps/level3/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..189f9a3940f3ab79eb41a340fd11fcb77c15a744 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/42.txt b/maze/task2/maps/level3/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..3be3a347f009b94a93c1d1bb2519e6426cf59ceb --- /dev/null +++ b/maze/task2/maps/level3/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/43.txt b/maze/task2/maps/level3/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..fca102e8bccbb38a05c397d178a28d9127c9ee02 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/44.txt b/maze/task2/maps/level3/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d74cb73c32ea66b19a3b164b1d581f2cb512569 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +There is no holes in this map; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/45.txt b/maze/task2/maps/level3/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..4951c76da0636d2872ffab2bf2002bf8bb9cc672 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/46.txt b/maze/task2/maps/level3/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..ece8de78f84903ae628085cae046dda73ccbcc9e --- /dev/null +++ b/maze/task2/maps/level3/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/47.txt b/maze/task2/maps/level3/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3e169b1c63b4fcd561a38d39dba4805cff0749b --- /dev/null +++ b/maze/task2/maps/level3/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/48.txt b/maze/task2/maps/level3/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc5f0b14daf6d7f901a8095c38621e18a7176ea6 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/49.txt b/maze/task2/maps/level3/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..056129595463418044bd1249da5ebe3412558045 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/5.txt b/maze/task2/maps/level3/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e6fe77d56f0b460d60b6b258bc903e635a2bf2 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/50.txt b/maze/task2/maps/level3/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..cac20a276d052783d25aa575b1516c56d63b296c --- /dev/null +++ b/maze/task2/maps/level3/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/51.txt b/maze/task2/maps/level3/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b81bc3a373489266c34043e648a2bbad297726e --- /dev/null +++ b/maze/task2/maps/level3/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/52.txt b/maze/task2/maps/level3/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..520d3c822c2959886d6550b6cfc577628378faee --- /dev/null +++ b/maze/task2/maps/level3/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/53.txt b/maze/task2/maps/level3/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..5437f43cf00a4010a1f8e1c1617ac90db67ae2c7 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/54.txt b/maze/task2/maps/level3/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e1abf6be5619be0ce9925cf5a63d66a2e6eb061 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/55.txt b/maze/task2/maps/level3/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..372ae6c3713c5a7062fa431c6021db128ae95bac --- /dev/null +++ b/maze/task2/maps/level3/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/56.txt b/maze/task2/maps/level3/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f1ab53110ab813d29c4c6caccfce9ee1fdc05d5 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/57.txt b/maze/task2/maps/level3/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..a199b8f2835e1ac932189ce13ccd771041ef5d9a --- /dev/null +++ b/maze/task2/maps/level3/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/58.txt b/maze/task2/maps/level3/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..80b384a4e4420e32cf9ab193736eac41c9575b76 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/59.txt b/maze/task2/maps/level3/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..db295481d06235b9bcfdd838182faaa2373d82a0 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/6.txt b/maze/task2/maps/level3/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a677bda986de052023f603f58f38c6ed521ef258 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +There is no holes in this map; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/60.txt b/maze/task2/maps/level3/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..3be3a347f009b94a93c1d1bb2519e6426cf59ceb --- /dev/null +++ b/maze/task2/maps/level3/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/61.txt b/maze/task2/maps/level3/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e18ef78521c43755c906aaf6c5c4e38a602aefe --- /dev/null +++ b/maze/task2/maps/level3/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/62.txt b/maze/task2/maps/level3/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..98d80d1c3f8336ed0b046381aa97fb2e51b2811e --- /dev/null +++ b/maze/task2/maps/level3/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/63.txt b/maze/task2/maps/level3/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa51486cb7a3d5a7da8f9c97f0199e1211403658 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 3, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/64.txt b/maze/task2/maps/level3/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..632aca77ef96f8359e50b5aa21ec612e0ee3beec --- /dev/null +++ b/maze/task2/maps/level3/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/65.txt b/maze/task2/maps/level3/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f0b05629530a6db1934837cec1706a384127d34 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/66.txt b/maze/task2/maps/level3/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..468c05e0596695346ef3a8e4be4b48c0186778b3 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/67.txt b/maze/task2/maps/level3/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..16b2bfd3294bd44a388fd0f3e33c5126e47176da --- /dev/null +++ b/maze/task2/maps/level3/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/68.txt b/maze/task2/maps/level3/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d07652a9341b988e1ebb880ca42e4832110b50f --- /dev/null +++ b/maze/task2/maps/level3/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 1; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/69.txt b/maze/task2/maps/level3/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..55b92a80b5ecc0c509ff31442c9fdf3d3cc90df6 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/7.txt b/maze/task2/maps/level3/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..e145ff9a4b9b44eb3a9756a925a3cc4fd2b5a8e3 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 3, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/70.txt b/maze/task2/maps/level3/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..436ff7ca68c1b495e58c16e537966d0b920e3470 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/71.txt b/maze/task2/maps/level3/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..c79bc662a4818d791137643c225d57ea794eb6c6 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/72.txt b/maze/task2/maps/level3/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b271dea506af5914b441d1eaf83ab5c17354d54 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/73.txt b/maze/task2/maps/level3/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..a97903a8594bdf679fea601a4254e65e84bf60f5 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/74.txt b/maze/task2/maps/level3/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..79f32c80ed8dce2dab121e6688653ccd63fb4597 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/75.txt b/maze/task2/maps/level3/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..208b307a95ba45b1890aeb8793f2959754669a14 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/76.txt b/maze/task2/maps/level3/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ba651181f2ba8140620ac09e52b76f50010fa2 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/77.txt b/maze/task2/maps/level3/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ec6586b19bf44063a89c055d45bc692706eac7d --- /dev/null +++ b/maze/task2/maps/level3/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/78.txt b/maze/task2/maps/level3/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..c08543935f16108a78c5c74044d37e903fe2753b --- /dev/null +++ b/maze/task2/maps/level3/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/79.txt b/maze/task2/maps/level3/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..82510a70e542218e0798a6eeaf6ba4cfa9ff96a6 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/8.txt b/maze/task2/maps/level3/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cb48ade4028933538cc80dad772ff5969857c46 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/80.txt b/maze/task2/maps/level3/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4951c76da0636d2872ffab2bf2002bf8bb9cc672 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/81.txt b/maze/task2/maps/level3/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..c96ebafc67aface289d6d3699b6f3174d38ed89c --- /dev/null +++ b/maze/task2/maps/level3/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/82.txt b/maze/task2/maps/level3/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..86e802baeaec4a2184227b2af82ee4ff624423a7 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/83.txt b/maze/task2/maps/level3/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..951ccc3ac983a359bd249a5fba0e010609add094 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/84.txt b/maze/task2/maps/level3/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..706ec8885cff1f5b89073712bc761199c98ffab9 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/85.txt b/maze/task2/maps/level3/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..0528ce26ff4a94d040111987868396e856de3549 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/86.txt b/maze/task2/maps/level3/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..31739ab8caa747c45ba0bc83297aeaa0ffe23615 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/87.txt b/maze/task2/maps/level3/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..384263d9cf48e3f3f0246ec282548db8d2c203de --- /dev/null +++ b/maze/task2/maps/level3/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/88.txt b/maze/task2/maps/level3/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..93352c78de84ee82d46fefdfde19ba0324530d35 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/89.txt b/maze/task2/maps/level3/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e04a556d546a73d2551ef73288ae0acee284d42 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/9.txt b/maze/task2/maps/level3/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..18c3b7e6ad6fbae9498a43c0dede1fbe24eff958 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/90.txt b/maze/task2/maps/level3/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..c12a4863752008a9c5d9fda70781df3f6db0cdb2 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/91.txt b/maze/task2/maps/level3/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..161130af5e7dde071125dd266e04ac3870103280 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/92.txt b/maze/task2/maps/level3/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad2bacfed1fe4c420485e86afd862f66e286f175 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/93.txt b/maze/task2/maps/level3/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad3dca19d97d526e6581404b16ef6a20e34fdfd8 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/94.txt b/maze/task2/maps/level3/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..c071477c3f2e84fe2029598c2ff3a741935d9f4d --- /dev/null +++ b/maze/task2/maps/level3/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/95.txt b/maze/task2/maps/level3/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7372a0ec45e0ac119aaafa069b7905798d766ad --- /dev/null +++ b/maze/task2/maps/level3/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/96.txt b/maze/task2/maps/level3/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b5b24b48ab68ee17745acc1c82babf14d9cd12 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/97.txt b/maze/task2/maps/level3/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..85edbfbb7daa18eae21c0cdbf5dc6c1071e48df7 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/98.txt b/maze/task2/maps/level3/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8114af036a45f6594491a733ee1342e0f1f0cf9a --- /dev/null +++ b/maze/task2/maps/level3/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/pure_text/99.txt b/maze/task2/maps/level3/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..5690ef23f1cc296a5a6938d62ef0a6638403a0a2 --- /dev/null +++ b/maze/task2/maps/level3/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level3/table/0.txt b/maze/task2/maps/level3/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb631ea570063754534ad4fd1c740c8a424bbd17 --- /dev/null +++ b/maze/task2/maps/level3/table/0.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task2/maps/level3/table/1.txt b/maze/task2/maps/level3/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bdd5680899b563ee45352f20779fcde6222a035 --- /dev/null +++ b/maze/task2/maps/level3/table/1.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | @ | _ | diff --git a/maze/task2/maps/level3/table/10.txt b/maze/task2/maps/level3/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fc6f540d1d6f60b4be61c35772d1fd7694e69f1 --- /dev/null +++ b/maze/task2/maps/level3/table/10.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/11.txt b/maze/task2/maps/level3/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3a809d4c3ee4b192ddc9c9a2384338745c8e95e --- /dev/null +++ b/maze/task2/maps/level3/table/11.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | _ | * | diff --git a/maze/task2/maps/level3/table/12.txt b/maze/task2/maps/level3/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e32ca9fc5ca64af1fe61d799807384d6749d0a4 --- /dev/null +++ b/maze/task2/maps/level3/table/12.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | # | diff --git a/maze/task2/maps/level3/table/13.txt b/maze/task2/maps/level3/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..97ffce93506c0a1431d6bba048005b8208fa90dd --- /dev/null +++ b/maze/task2/maps/level3/table/13.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task2/maps/level3/table/14.txt b/maze/task2/maps/level3/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a31e195344c47e06b24abaf70f3d9cecce6d48f --- /dev/null +++ b/maze/task2/maps/level3/table/14.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | @ | _ | +| Row 3 | # | * | # | diff --git a/maze/task2/maps/level3/table/15.txt b/maze/task2/maps/level3/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f253d8511566280fba79bb3b757db27e7ae5614 --- /dev/null +++ b/maze/task2/maps/level3/table/15.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | _ | _ | +| Row 3 | # | _ | * | diff --git a/maze/task2/maps/level3/table/16.txt b/maze/task2/maps/level3/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1d429a53d6c5a44392a4dbe1d936e60fa3eddee --- /dev/null +++ b/maze/task2/maps/level3/table/16.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | _ | +| Row 3 | # | _ | @ | diff --git a/maze/task2/maps/level3/table/17.txt b/maze/task2/maps/level3/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb5a6fb225ef1fb9e47504a576d2f912a66182ef --- /dev/null +++ b/maze/task2/maps/level3/table/17.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/18.txt b/maze/task2/maps/level3/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c6b7f631320d17e57e2368a2dcb8c8fb6972075 --- /dev/null +++ b/maze/task2/maps/level3/table/18.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/19.txt b/maze/task2/maps/level3/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..78f2017de3bfb8476394a86ea95ccf1b3890e931 --- /dev/null +++ b/maze/task2/maps/level3/table/19.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | * | # | +| Row 3 | # | _ | _ | diff --git a/maze/task2/maps/level3/table/2.txt b/maze/task2/maps/level3/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..90efb6d36172c3fee1e222b0a663536d22bc0d42 --- /dev/null +++ b/maze/task2/maps/level3/table/2.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | diff --git a/maze/task2/maps/level3/table/20.txt b/maze/task2/maps/level3/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ad397c8a21b96c3a1099291cfaf240b138c539b --- /dev/null +++ b/maze/task2/maps/level3/table/20.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/21.txt b/maze/task2/maps/level3/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5a04d3d2aa925a072cac9a40c43acab6acacf29 --- /dev/null +++ b/maze/task2/maps/level3/table/21.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task2/maps/level3/table/22.txt b/maze/task2/maps/level3/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..86ebfad16f11b64299bb0efc8d799e644bbf2e89 --- /dev/null +++ b/maze/task2/maps/level3/table/22.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task2/maps/level3/table/23.txt b/maze/task2/maps/level3/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..c304f41a47439e5fff0f20624d6bb026ace6e86d --- /dev/null +++ b/maze/task2/maps/level3/table/23.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task2/maps/level3/table/24.txt b/maze/task2/maps/level3/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..d01f76635add97f917757e68ee90a8f56af1afbc --- /dev/null +++ b/maze/task2/maps/level3/table/24.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/25.txt b/maze/task2/maps/level3/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..23c72bf08928458bbe33333c11d8d5d74e4311ea --- /dev/null +++ b/maze/task2/maps/level3/table/25.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | * | _ | diff --git a/maze/task2/maps/level3/table/26.txt b/maze/task2/maps/level3/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ca2ed6d4d96fb7cd9d7befd852c6087c7f988d1 --- /dev/null +++ b/maze/task2/maps/level3/table/26.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | # | _ | # | diff --git a/maze/task2/maps/level3/table/27.txt b/maze/task2/maps/level3/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f94196136477b7cfc4897d555128931db01560a --- /dev/null +++ b/maze/task2/maps/level3/table/27.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/28.txt b/maze/task2/maps/level3/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..deb8bb8d97434191fdad07e74b88ebc1b0eeeb49 --- /dev/null +++ b/maze/task2/maps/level3/table/28.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task2/maps/level3/table/29.txt b/maze/task2/maps/level3/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..d14f72c1cd6f30edd03846dad7b13ff0ec78de76 --- /dev/null +++ b/maze/task2/maps/level3/table/29.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task2/maps/level3/table/3.txt b/maze/task2/maps/level3/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b006871127e28651be4e5c53435a6a5ff797d5c0 --- /dev/null +++ b/maze/task2/maps/level3/table/3.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | # | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/30.txt b/maze/task2/maps/level3/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..c052ce69120c854b328a757009d1386989795aa0 --- /dev/null +++ b/maze/task2/maps/level3/table/30.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task2/maps/level3/table/31.txt b/maze/task2/maps/level3/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb381c41b455080b39384f6fd9ddf53fdac38ecb --- /dev/null +++ b/maze/task2/maps/level3/table/31.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/32.txt b/maze/task2/maps/level3/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea4ba8a70450a27b2d2ded0fe60c286d88068f93 --- /dev/null +++ b/maze/task2/maps/level3/table/32.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/33.txt b/maze/task2/maps/level3/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..632a479c1d40cfa1d0bccb5aee33e756853c896f --- /dev/null +++ b/maze/task2/maps/level3/table/33.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task2/maps/level3/table/34.txt b/maze/task2/maps/level3/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..455579f148b606e0447083c8df6cc79d9794ca36 --- /dev/null +++ b/maze/task2/maps/level3/table/34.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task2/maps/level3/table/35.txt b/maze/task2/maps/level3/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ae0112b581f54655cf3ef8ef09a7471b2e0e28c --- /dev/null +++ b/maze/task2/maps/level3/table/35.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task2/maps/level3/table/36.txt b/maze/task2/maps/level3/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..682b83c1ad841e95e04707f1222c51039f745637 --- /dev/null +++ b/maze/task2/maps/level3/table/36.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | _ | _ | * | +| Row 3 | @ | # | _ | diff --git a/maze/task2/maps/level3/table/37.txt b/maze/task2/maps/level3/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..b35801319f40e161c15223c97b4b6862451c7ef5 --- /dev/null +++ b/maze/task2/maps/level3/table/37.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | # | +| Row 3 | _ | _ | # | diff --git a/maze/task2/maps/level3/table/38.txt b/maze/task2/maps/level3/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f45f0c2eafacf2574e5efd7c836bea052eebe39 --- /dev/null +++ b/maze/task2/maps/level3/table/38.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/39.txt b/maze/task2/maps/level3/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce7e2be67282bf74de6a95fce8febd7d93af85e1 --- /dev/null +++ b/maze/task2/maps/level3/table/39.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | # | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task2/maps/level3/table/4.txt b/maze/task2/maps/level3/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3935ea367a0811698f7ea0e09731b53f43c27bd --- /dev/null +++ b/maze/task2/maps/level3/table/4.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | # | diff --git a/maze/task2/maps/level3/table/40.txt b/maze/task2/maps/level3/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..57a4d26aaec493ff0c14e11442df365a77d1b3a2 --- /dev/null +++ b/maze/task2/maps/level3/table/40.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task2/maps/level3/table/41.txt b/maze/task2/maps/level3/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe26ab2f6c97f0a08485b1d147683035760cef34 --- /dev/null +++ b/maze/task2/maps/level3/table/41.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | @ | _ | +| Row 2 | _ | _ | * | +| Row 3 | _ | # | _ | diff --git a/maze/task2/maps/level3/table/42.txt b/maze/task2/maps/level3/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaf2f2ee7da434e2ed1b6c6a1f632108d763ee4f --- /dev/null +++ b/maze/task2/maps/level3/table/42.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/43.txt b/maze/task2/maps/level3/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1c7f93ed2ea1a0561843c3068787b0ebdbb6ff3 --- /dev/null +++ b/maze/task2/maps/level3/table/43.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | # | # | diff --git a/maze/task2/maps/level3/table/44.txt b/maze/task2/maps/level3/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..68bdd418edb00eda5e761e867526ded679f14845 --- /dev/null +++ b/maze/task2/maps/level3/table/44.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task2/maps/level3/table/45.txt b/maze/task2/maps/level3/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f001e8fe5a6c30fb8a393bd054ff3cf59a605117 --- /dev/null +++ b/maze/task2/maps/level3/table/45.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/46.txt b/maze/task2/maps/level3/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..702ae14945e5d66febeaf6982e76bc824f60b212 --- /dev/null +++ b/maze/task2/maps/level3/table/46.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/47.txt b/maze/task2/maps/level3/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..b012d1565f46ac42e28fa1eb5c5e7f377611b336 --- /dev/null +++ b/maze/task2/maps/level3/table/47.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | @ | diff --git a/maze/task2/maps/level3/table/48.txt b/maze/task2/maps/level3/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..205399c238e05ea0eeaadeb3650c34611847e418 --- /dev/null +++ b/maze/task2/maps/level3/table/48.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task2/maps/level3/table/49.txt b/maze/task2/maps/level3/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b2337fbaf01e9cc547ad122673beb35c442d82c --- /dev/null +++ b/maze/task2/maps/level3/table/49.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | @ | +| Row 2 | * | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/5.txt b/maze/task2/maps/level3/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..897ff5aa868cd7fee4c400efd6f7f0843f986e4f --- /dev/null +++ b/maze/task2/maps/level3/table/5.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | @ | diff --git a/maze/task2/maps/level3/table/50.txt b/maze/task2/maps/level3/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..235bb790978f543f27d7b881ee5e983c733da144 --- /dev/null +++ b/maze/task2/maps/level3/table/50.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | * | @ | +| Row 3 | # | _ | _ | diff --git a/maze/task2/maps/level3/table/51.txt b/maze/task2/maps/level3/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..93d46095e04317e9fcaf827b0e320667d41a92d1 --- /dev/null +++ b/maze/task2/maps/level3/table/51.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | _ | * | _ | +| Row 3 | # | # | @ | diff --git a/maze/task2/maps/level3/table/52.txt b/maze/task2/maps/level3/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fd7af93141b3b1e057fb7af0aceef6061cee385 --- /dev/null +++ b/maze/task2/maps/level3/table/52.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/53.txt b/maze/task2/maps/level3/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..10b169e2c48db9e54e9ed479d7562e3d0441afd7 --- /dev/null +++ b/maze/task2/maps/level3/table/53.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | * | _ | diff --git a/maze/task2/maps/level3/table/54.txt b/maze/task2/maps/level3/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cb0f888ca5f40c3b119bcaa6e2f2e858755e15f --- /dev/null +++ b/maze/task2/maps/level3/table/54.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/55.txt b/maze/task2/maps/level3/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..30217ea299a0057979b8623c96688efabc234a5f --- /dev/null +++ b/maze/task2/maps/level3/table/55.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/56.txt b/maze/task2/maps/level3/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..da143b5d709ff31b434e5297887c08f8fd18eb04 --- /dev/null +++ b/maze/task2/maps/level3/table/56.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | @ | _ | diff --git a/maze/task2/maps/level3/table/57.txt b/maze/task2/maps/level3/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f5faaed0dd6b71f45ae86a16db0c3423ed8f8da --- /dev/null +++ b/maze/task2/maps/level3/table/57.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | @ | _ | diff --git a/maze/task2/maps/level3/table/58.txt b/maze/task2/maps/level3/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..13b223923c44f3e2447a989e2b37092f9f1f3116 --- /dev/null +++ b/maze/task2/maps/level3/table/58.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | _ | _ | diff --git a/maze/task2/maps/level3/table/59.txt b/maze/task2/maps/level3/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..14d73db67924426f09b5e39677e00c2c07706ca0 --- /dev/null +++ b/maze/task2/maps/level3/table/59.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | @ | _ | # | diff --git a/maze/task2/maps/level3/table/6.txt b/maze/task2/maps/level3/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..f22b5e42f497c6b06c717aaec53d2a7fe76ce69c --- /dev/null +++ b/maze/task2/maps/level3/table/6.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | @ | diff --git a/maze/task2/maps/level3/table/60.txt b/maze/task2/maps/level3/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaf2f2ee7da434e2ed1b6c6a1f632108d763ee4f --- /dev/null +++ b/maze/task2/maps/level3/table/60.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/61.txt b/maze/task2/maps/level3/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..46fb7e426b76a6c7d7cb8292aecd7c3d259df89b --- /dev/null +++ b/maze/task2/maps/level3/table/61.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | # | diff --git a/maze/task2/maps/level3/table/62.txt b/maze/task2/maps/level3/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..170a41ae66dfcaeb5a2c1a3d2587f7b05fa816dd --- /dev/null +++ b/maze/task2/maps/level3/table/62.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | # | _ | _ | diff --git a/maze/task2/maps/level3/table/63.txt b/maze/task2/maps/level3/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bdef372529c8fae8e96649c037102b376e5de38 --- /dev/null +++ b/maze/task2/maps/level3/table/63.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | diff --git a/maze/task2/maps/level3/table/64.txt b/maze/task2/maps/level3/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cd0cb9559dca47e9244ed4b2ec6c23e00fce206 --- /dev/null +++ b/maze/task2/maps/level3/table/64.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | * | # | _ | diff --git a/maze/task2/maps/level3/table/65.txt b/maze/task2/maps/level3/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..b00d3735a126c9b936d396c45171bb648f47a91f --- /dev/null +++ b/maze/task2/maps/level3/table/65.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task2/maps/level3/table/66.txt b/maze/task2/maps/level3/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..03e2277548eab10871d56d621ebe3b2a602e6502 --- /dev/null +++ b/maze/task2/maps/level3/table/66.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | diff --git a/maze/task2/maps/level3/table/67.txt b/maze/task2/maps/level3/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf60858eeffcb844e4420ff17ddd39ae4bea4db8 --- /dev/null +++ b/maze/task2/maps/level3/table/67.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | @ | diff --git a/maze/task2/maps/level3/table/68.txt b/maze/task2/maps/level3/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6c77efb8ff9ee2ea27c5306deeceadd40f75740 --- /dev/null +++ b/maze/task2/maps/level3/table/68.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | # | _ | @ | +| Row 3 | # | # | _ | diff --git a/maze/task2/maps/level3/table/69.txt b/maze/task2/maps/level3/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..c48351c985f7f9459925f2e340b4fa63f668f92e --- /dev/null +++ b/maze/task2/maps/level3/table/69.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/7.txt b/maze/task2/maps/level3/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..74724e2d1cb640ab666d0727f049deb786022d82 --- /dev/null +++ b/maze/task2/maps/level3/table/7.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | diff --git a/maze/task2/maps/level3/table/70.txt b/maze/task2/maps/level3/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..e73fddc757fe4c7dadac1e0d59a774c06935a65e --- /dev/null +++ b/maze/task2/maps/level3/table/70.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | * | # | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/71.txt b/maze/task2/maps/level3/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..410e0f143ded3114d741fb4300f63d2d00f5bcb9 --- /dev/null +++ b/maze/task2/maps/level3/table/71.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/72.txt b/maze/task2/maps/level3/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8ad3922b3ba10a510dde8291aa94de4c9d3311f --- /dev/null +++ b/maze/task2/maps/level3/table/72.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task2/maps/level3/table/73.txt b/maze/task2/maps/level3/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8fca34fa6b8d3632661d94ff889d652d80a7d42 --- /dev/null +++ b/maze/task2/maps/level3/table/73.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | # | _ | diff --git a/maze/task2/maps/level3/table/74.txt b/maze/task2/maps/level3/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6256479992c1b935b6682bc86bfc5bd6df11f4b --- /dev/null +++ b/maze/task2/maps/level3/table/74.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | diff --git a/maze/task2/maps/level3/table/75.txt b/maze/task2/maps/level3/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..59150279e09d111a8c3e0707da667ecf1101cbb8 --- /dev/null +++ b/maze/task2/maps/level3/table/75.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task2/maps/level3/table/76.txt b/maze/task2/maps/level3/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b868aa983f6d2b8e2b8a7df2b6759f9ca62857f --- /dev/null +++ b/maze/task2/maps/level3/table/76.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | # | diff --git a/maze/task2/maps/level3/table/77.txt b/maze/task2/maps/level3/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..327efe83999b7e5f9c964e1c791e8887377dffc3 --- /dev/null +++ b/maze/task2/maps/level3/table/77.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | * | +| Row 2 | # | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/78.txt b/maze/task2/maps/level3/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..435dae73dd2ad1e8842f73f6b0762fe3f204a6a6 --- /dev/null +++ b/maze/task2/maps/level3/table/78.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | # | +| Row 3 | @ | * | _ | diff --git a/maze/task2/maps/level3/table/79.txt b/maze/task2/maps/level3/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..60674e0df8b67d8916e74f54a23ba5e760b7f53a --- /dev/null +++ b/maze/task2/maps/level3/table/79.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task2/maps/level3/table/8.txt b/maze/task2/maps/level3/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cce5a6cd25bc41cd631be44601689aad134d5cb --- /dev/null +++ b/maze/task2/maps/level3/table/8.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | # | +| Row 3 | _ | * | # | diff --git a/maze/task2/maps/level3/table/80.txt b/maze/task2/maps/level3/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f001e8fe5a6c30fb8a393bd054ff3cf59a605117 --- /dev/null +++ b/maze/task2/maps/level3/table/80.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/81.txt b/maze/task2/maps/level3/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..49a9b79ba3026a6bd9912247aa77eccb4e00ae8d --- /dev/null +++ b/maze/task2/maps/level3/table/81.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | # | _ | diff --git a/maze/task2/maps/level3/table/82.txt b/maze/task2/maps/level3/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cf5d26d3c2b3772b2110870c8f2331f8d178806 --- /dev/null +++ b/maze/task2/maps/level3/table/82.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | # | * | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task2/maps/level3/table/83.txt b/maze/task2/maps/level3/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba85b5494e7fa377b752b53c58a09f4555988759 --- /dev/null +++ b/maze/task2/maps/level3/table/83.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task2/maps/level3/table/84.txt b/maze/task2/maps/level3/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..968ea70b1e054c89cb82e448e290e53d55bf4445 --- /dev/null +++ b/maze/task2/maps/level3/table/84.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | _ | diff --git a/maze/task2/maps/level3/table/85.txt b/maze/task2/maps/level3/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c79b932f7d5276e3a33a66786e3a9c53b2f77a2 --- /dev/null +++ b/maze/task2/maps/level3/table/85.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | * | +| Row 2 | _ | _ | # | +| Row 3 | @ | # | _ | diff --git a/maze/task2/maps/level3/table/86.txt b/maze/task2/maps/level3/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..98bf7b370b22c822951bbc3de3051c6cecdbfde8 --- /dev/null +++ b/maze/task2/maps/level3/table/86.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | @ | +| Row 2 | _ | _ | # | +| Row 3 | # | _ | _ | diff --git a/maze/task2/maps/level3/table/87.txt b/maze/task2/maps/level3/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f43647f0a0d643ae4bab71ecaff25c6f598be6ce --- /dev/null +++ b/maze/task2/maps/level3/table/87.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task2/maps/level3/table/88.txt b/maze/task2/maps/level3/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f45f0c2eafacf2574e5efd7c836bea052eebe39 --- /dev/null +++ b/maze/task2/maps/level3/table/88.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/89.txt b/maze/task2/maps/level3/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..52911d7925fde1713c740e398fc02a08c760de58 --- /dev/null +++ b/maze/task2/maps/level3/table/89.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | @ | _ | * | diff --git a/maze/task2/maps/level3/table/9.txt b/maze/task2/maps/level3/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ca0eed8b048014baa37faf0463ab535f5749046 --- /dev/null +++ b/maze/task2/maps/level3/table/9.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task2/maps/level3/table/90.txt b/maze/task2/maps/level3/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..119f55688bd499e2329c7bc1d4e93399253c821a --- /dev/null +++ b/maze/task2/maps/level3/table/90.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | # | _ | _ | +| Row 3 | _ | # | * | diff --git a/maze/task2/maps/level3/table/91.txt b/maze/task2/maps/level3/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..01294aa453e106c00673ea996538e8b861b30d1c --- /dev/null +++ b/maze/task2/maps/level3/table/91.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task2/maps/level3/table/92.txt b/maze/task2/maps/level3/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..38ac3278d4399ea5132b44178290c2af5774eb78 --- /dev/null +++ b/maze/task2/maps/level3/table/92.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | _ | * | _ | diff --git a/maze/task2/maps/level3/table/93.txt b/maze/task2/maps/level3/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..fffcc1cb871584e36b1299b360b8a60e2eff07a3 --- /dev/null +++ b/maze/task2/maps/level3/table/93.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task2/maps/level3/table/94.txt b/maze/task2/maps/level3/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..80a6cf186d65d75ba7be1e1dd6f121c16c04d7f2 --- /dev/null +++ b/maze/task2/maps/level3/table/94.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | diff --git a/maze/task2/maps/level3/table/95.txt b/maze/task2/maps/level3/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b71524528f9a3f4ec29bb5b199e4ea4d5252d7d --- /dev/null +++ b/maze/task2/maps/level3/table/95.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | * | @ | +| Row 3 | _ | # | _ | diff --git a/maze/task2/maps/level3/table/96.txt b/maze/task2/maps/level3/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..90f0213c14e79e370422dd3eda645c64587336a2 --- /dev/null +++ b/maze/task2/maps/level3/table/96.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task2/maps/level3/table/97.txt b/maze/task2/maps/level3/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..52c78993dcf78149df2fd26f79f68630e05dab39 --- /dev/null +++ b/maze/task2/maps/level3/table/97.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | # | _ | diff --git a/maze/task2/maps/level3/table/98.txt b/maze/task2/maps/level3/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..deb8bb8d97434191fdad07e74b88ebc1b0eeeb49 --- /dev/null +++ b/maze/task2/maps/level3/table/98.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task2/maps/level3/table/99.txt b/maze/task2/maps/level3/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..362c4e633f38cc8812b5c1ad2bb881a780389ddf --- /dev/null +++ b/maze/task2/maps/level3/table/99.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | @ | +| Row 3 | # | _ | _ | diff --git a/maze/task2/maps/level4/img/0.png b/maze/task2/maps/level4/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3db223649dc0c81cb1cae2f9e75f05d19afbe8e7 --- /dev/null +++ b/maze/task2/maps/level4/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51fc82ad2340501e17ba6b9f95968480b8834f0407ef76e87d37e47b0f5f0054 +size 7956 diff --git a/maze/task2/maps/level4/img/1.png b/maze/task2/maps/level4/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..51a8d9f11dec4fc38a317625f3d01888433a1a0c --- /dev/null +++ b/maze/task2/maps/level4/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae03338e81b2b35ffdcc4c05716dbbc0190a25c24cac5316f400f1a513ab845 +size 7818 diff --git a/maze/task2/maps/level4/img/10.png b/maze/task2/maps/level4/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..66b525dd81a04850f345272441dd8c68e6db0dd1 --- /dev/null +++ b/maze/task2/maps/level4/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8063d6c73a7d6d25de678fb0b54a843989ba3839923cb759ce136a66b2c0c1 +size 6990 diff --git a/maze/task2/maps/level4/img/11.png b/maze/task2/maps/level4/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6a7904e848d871aa38f06c379710d0b508117d6d --- /dev/null +++ b/maze/task2/maps/level4/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1c1b90e7d5588c401e39b617729c129ef65b10c7beba95b03871f341113acd +size 6969 diff --git a/maze/task2/maps/level4/img/12.png b/maze/task2/maps/level4/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..df386054eeebb588459e1045566377485efdd54a --- /dev/null +++ b/maze/task2/maps/level4/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2568a367eb1943beaccdfbb9e79a425d7d1e46d96f8c2f7e39704d5d31e5f814 +size 6153 diff --git a/maze/task2/maps/level4/img/13.png b/maze/task2/maps/level4/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..098e21d1aea20f23ab361c8abdbf95bfa464a9e6 --- /dev/null +++ b/maze/task2/maps/level4/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b4ab2233612625f3915bd9fb0ab79f8c75e0cb8a4c0210dd4ecd36a402827b +size 7966 diff --git a/maze/task2/maps/level4/img/14.png b/maze/task2/maps/level4/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..105e19f2b26eebc6579b96d099ffd2f2a90101e5 --- /dev/null +++ b/maze/task2/maps/level4/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f6e963ae8abb6058febefc149e6be82fe4be9121066e5d59fe2b6ea2671bf2 +size 6096 diff --git a/maze/task2/maps/level4/img/15.png b/maze/task2/maps/level4/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..a5b33bed091a9a50de883e698ca421e7933d8974 --- /dev/null +++ b/maze/task2/maps/level4/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30df5dddbc70095b4590efd47e23a21890cf9a79da700f5397288eb7d6de9ca6 +size 6232 diff --git a/maze/task2/maps/level4/img/16.png b/maze/task2/maps/level4/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..adb6d11b05b752c75c2fcf6b25734e9d37f5405c --- /dev/null +++ b/maze/task2/maps/level4/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c504d9213192a25f410aeec3940cf5eee4420437113428fd8153be5cfec489 +size 7089 diff --git a/maze/task2/maps/level4/img/17.png b/maze/task2/maps/level4/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..8e8987cbf819f87c84b2b16deae6e74a7ae0d107 --- /dev/null +++ b/maze/task2/maps/level4/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee6349b678df8c3c0e020d47e48556aeb4a56643596224f66a7414a06cfa9ff +size 5354 diff --git a/maze/task2/maps/level4/img/18.png b/maze/task2/maps/level4/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..5218b8ed891109595ef0eb05d2ac6bc16a30f468 --- /dev/null +++ b/maze/task2/maps/level4/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b3455e698c4ffd000e3d13eb34f0b00076ca6e014e8ace76fbf0e41470786b +size 7105 diff --git a/maze/task2/maps/level4/img/19.png b/maze/task2/maps/level4/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..95de8f0680331cf0e819161f4ff8bf97a12c729f --- /dev/null +++ b/maze/task2/maps/level4/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20cedd3cb21876ef022a559a9c3902713123abaf587b85973904a6c9fd5b779d +size 6119 diff --git a/maze/task2/maps/level4/img/2.png b/maze/task2/maps/level4/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5f9a5f83d9ec0e4f4f00602887604f032157e1d5 --- /dev/null +++ b/maze/task2/maps/level4/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f5113d13f73daa2711080b2d1077cf10cb5775dd9516a4d0c9be6c2b739c32 +size 5405 diff --git a/maze/task2/maps/level4/img/20.png b/maze/task2/maps/level4/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..69c8c5caa64b97a31fed79e29848a212a4c41273 --- /dev/null +++ b/maze/task2/maps/level4/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cdaa3afa67d30a4e39f9c18ae36de92dc4f32b40b8685771cb8dbb8361b34f0 +size 7033 diff --git a/maze/task2/maps/level4/img/21.png b/maze/task2/maps/level4/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..00a73ed1ee9a9d4ace7cbd5837045a994c27cd21 --- /dev/null +++ b/maze/task2/maps/level4/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a9a0dbbd6be6fe287bd47b9989572e64dc21aed318a2fd101654bd5fb528afc +size 7883 diff --git a/maze/task2/maps/level4/img/22.png b/maze/task2/maps/level4/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..c9879be05473f87c788feae46b2afbec69669e9e --- /dev/null +++ b/maze/task2/maps/level4/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794f33e454f924c8209fcb79b7b6af6721911b909df5780ecf0e8292c97397f8 +size 7855 diff --git a/maze/task2/maps/level4/img/23.png b/maze/task2/maps/level4/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..ca460cae973054bf627d01616a1ae78f470624ee --- /dev/null +++ b/maze/task2/maps/level4/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecbf2ce644d3259be94f44ae0e5bfbb11862273840382f37b434bf11cb32db04 +size 5307 diff --git a/maze/task2/maps/level4/img/24.png b/maze/task2/maps/level4/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..1c09dd33c92856ee14f80d05d251a482e9ef766a --- /dev/null +++ b/maze/task2/maps/level4/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924b2c4258ff2e01a4899c68a758b73e05091bf49b219e0fe3e8971d2cc741f7 +size 7158 diff --git a/maze/task2/maps/level4/img/25.png b/maze/task2/maps/level4/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..92938f3e349ad70e5cdd656f7dfb2b31ef4226af --- /dev/null +++ b/maze/task2/maps/level4/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2064dafd391f2a139fe8abadae370d20a72ffab3ad46a0613ecc65e0566e9d +size 6245 diff --git a/maze/task2/maps/level4/img/26.png b/maze/task2/maps/level4/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..2072c9f94d751974a7646ed1000b4fbd44431837 --- /dev/null +++ b/maze/task2/maps/level4/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9add3c30940f19023e6d975f7fd218ab1efab81dc6e32fb02fcd069b2057a42 +size 7878 diff --git a/maze/task2/maps/level4/img/27.png b/maze/task2/maps/level4/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..c2f0d51c27cf80be47beba4958f03eab58290f77 --- /dev/null +++ b/maze/task2/maps/level4/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeaab6ff3ff7750de94f8715873e971c36c7b62a51588087ec04b591076b4693 +size 7918 diff --git a/maze/task2/maps/level4/img/28.png b/maze/task2/maps/level4/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..9b48676618e2bca186b8e97a4713a62704efd5ec --- /dev/null +++ b/maze/task2/maps/level4/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a6b331a73a81641feaf27a3cb5723ccae997d15c76f07e4ce21289b21787af +size 7815 diff --git a/maze/task2/maps/level4/img/29.png b/maze/task2/maps/level4/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..ba470a09510a2ed64ffbb2d3b410b212f27a3886 --- /dev/null +++ b/maze/task2/maps/level4/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9d444a18c22195a73173822292450610ba73ff78c80b5700fb82ef574b9cc2 +size 7914 diff --git a/maze/task2/maps/level4/img/3.png b/maze/task2/maps/level4/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d956eff9d59cce4cc664d01598257592a11b1bf2 --- /dev/null +++ b/maze/task2/maps/level4/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7035f787974cb269f188cea4104b5fb0cd9fa01f912f4c6196aec827f3068243 +size 7063 diff --git a/maze/task2/maps/level4/img/30.png b/maze/task2/maps/level4/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..884116b04d2f05d8ef95cbb5b7f09b694142dd76 --- /dev/null +++ b/maze/task2/maps/level4/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74f70539ea8238c4e67de0f913b1c2cd0ace7a5d9032fcfe1e9d5a45580a311 +size 7171 diff --git a/maze/task2/maps/level4/img/31.png b/maze/task2/maps/level4/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..9f2c2a1ce1fc2bd2788f5a72d8c14151500b97da --- /dev/null +++ b/maze/task2/maps/level4/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67873129e29a5f1fa9bf3b8ded0421cadee980e4d52f97d6504c977c320d2567 +size 6120 diff --git a/maze/task2/maps/level4/img/32.png b/maze/task2/maps/level4/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..eaae6a6853b1d0d130ed8d7757db70230dacd6e1 --- /dev/null +++ b/maze/task2/maps/level4/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71507f98f85d96fd97c67461b05c6220a09b70ab58d94aef403b096885cfea3 +size 7086 diff --git a/maze/task2/maps/level4/img/33.png b/maze/task2/maps/level4/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..eeaf60d85d099bb649ecf65572f67bc27a84f970 --- /dev/null +++ b/maze/task2/maps/level4/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702932417c0ec6450c6318123fde685b831e37482356f61572c4849a69f4967c +size 8802 diff --git a/maze/task2/maps/level4/img/34.png b/maze/task2/maps/level4/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..1aec681188f2645adf341ab810823259e953ffb9 --- /dev/null +++ b/maze/task2/maps/level4/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ba527a41f4ccc8f84cae29753da402cf3ee3c894701c2eaa2f70832166a232 +size 6266 diff --git a/maze/task2/maps/level4/img/35.png b/maze/task2/maps/level4/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..85d9c6e7b62bc5fd56d9437fdf76a411662d6a30 --- /dev/null +++ b/maze/task2/maps/level4/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ec9d05369186a9983944a0296f8fe7338008b504b188fbe7eae56b0f57d8ff +size 6264 diff --git a/maze/task2/maps/level4/img/36.png b/maze/task2/maps/level4/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..699cb4fe69d364391b1cd113c9cb2f63abfb0899 --- /dev/null +++ b/maze/task2/maps/level4/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3cd9bc4b66055910e203a244a2717591076ae49957fadbd95970de5e766217 +size 7013 diff --git a/maze/task2/maps/level4/img/37.png b/maze/task2/maps/level4/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..7e19608cd72e42978fd17128a3aacd1b0b80119d --- /dev/null +++ b/maze/task2/maps/level4/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e936ebfa142c75c7e474dc4d28d49c644f0907d771b994e5f7c34dfb38e1948b +size 8032 diff --git a/maze/task2/maps/level4/img/38.png b/maze/task2/maps/level4/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..88c7c785b4037ee2bf30cb4dc47a56209b372aae --- /dev/null +++ b/maze/task2/maps/level4/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bcf0870e5fd83619b507bf2bcd5b4c180329462510e4b7f9f3317785a39c707 +size 7882 diff --git a/maze/task2/maps/level4/img/39.png b/maze/task2/maps/level4/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..eb61073aed16ad9189646585312185334d6cd15e --- /dev/null +++ b/maze/task2/maps/level4/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d568a4962786de0b931b6268c242ff7705820779ee97331bfb4968ee27c60b +size 6216 diff --git a/maze/task2/maps/level4/img/4.png b/maze/task2/maps/level4/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a80d74823e5ddc1490f695d371c360b56e1b2276 --- /dev/null +++ b/maze/task2/maps/level4/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:489a2674df1d28a5f60eead85a356cd37089719d9e4948e923c9c98c2f2caabb +size 7054 diff --git a/maze/task2/maps/level4/img/40.png b/maze/task2/maps/level4/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..5d4be8afcd8b7d440b8e41271ef7a6a6c3a9a5bd --- /dev/null +++ b/maze/task2/maps/level4/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79555f781703407c431f7fe0716d84fa3972f0e1c37b23ac39bf9e7df9049146 +size 8697 diff --git a/maze/task2/maps/level4/img/41.png b/maze/task2/maps/level4/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..aa3c41d43bef37eb166a61d83de32100a4f639b4 --- /dev/null +++ b/maze/task2/maps/level4/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f016ec8c91dcd516d2b3210e827731990ae0090e69f008df317d7b808411cb +size 7124 diff --git a/maze/task2/maps/level4/img/42.png b/maze/task2/maps/level4/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ce640fa2834cc616bdaf96148820a37b84080d --- /dev/null +++ b/maze/task2/maps/level4/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1694c5421cc87cf9116f6a679f50e4aa4c25283d39fd01f6bb3b005a620b8100 +size 7141 diff --git a/maze/task2/maps/level4/img/43.png b/maze/task2/maps/level4/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..ed2d30f18ca464acaf965bf68c3cefb1b5212427 --- /dev/null +++ b/maze/task2/maps/level4/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9fde7fcfa4ab1e86a9b0eeb53ffbce2aa3c271622725bb44e8409368a0ef6d +size 6224 diff --git a/maze/task2/maps/level4/img/44.png b/maze/task2/maps/level4/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..5e082eee341992605ca8e0459d8ebb0a00d93526 --- /dev/null +++ b/maze/task2/maps/level4/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0096faa2347833ecc7595a740f20a11927de827ffe68ff6988badcadea6fbaa6 +size 6200 diff --git a/maze/task2/maps/level4/img/45.png b/maze/task2/maps/level4/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..8b3dd47dabef331d37d0063cdaeb3168458cc807 --- /dev/null +++ b/maze/task2/maps/level4/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bde54fe5aafa194b3f13f27cf26d6c65747949d28aa5e11bda0ac814a6cc164 +size 7877 diff --git a/maze/task2/maps/level4/img/46.png b/maze/task2/maps/level4/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..63b6c81588d899f93cc13f409c2c752d67957882 --- /dev/null +++ b/maze/task2/maps/level4/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26772dbe6c39571f9ea8932c69412f0a3b553cea779a3aae2c216fb281d1979b +size 7830 diff --git a/maze/task2/maps/level4/img/47.png b/maze/task2/maps/level4/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..07ad072c0e2741595a3c5d7d74eb7fd1e211dbe0 --- /dev/null +++ b/maze/task2/maps/level4/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1752e345d14350d2649fb4dfd1b061199eb98687c3470c9c74f0f49f9488af +size 7137 diff --git a/maze/task2/maps/level4/img/48.png b/maze/task2/maps/level4/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..91af188559a398e36eaf65619060b9571d19a9f8 --- /dev/null +++ b/maze/task2/maps/level4/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c33595a7ee001899ea79eb5835b67d210f0583b6a8b7e6da681017f005767b +size 7074 diff --git a/maze/task2/maps/level4/img/49.png b/maze/task2/maps/level4/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..43070d52c51ae0e7f900e3dd6a19a84e77b05977 --- /dev/null +++ b/maze/task2/maps/level4/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6f53291beac0d1626a82052996fb499b047b685b16762143aca141c16249dc +size 6168 diff --git a/maze/task2/maps/level4/img/5.png b/maze/task2/maps/level4/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..52eecd6c60a563b0ed2b28b526c873c79d786066 --- /dev/null +++ b/maze/task2/maps/level4/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ceaaf02484650f2d93bcd00a4d9af2081222b3e116c58b64541402527ba72a3 +size 5256 diff --git a/maze/task2/maps/level4/img/50.png b/maze/task2/maps/level4/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..2961890c21c1556e16447b7e8df6c4a7a8b40a92 --- /dev/null +++ b/maze/task2/maps/level4/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5554bdbebc65354415b11e168e0cfc0d519e8d96e9aa85d737aba5b0b8e03e1e +size 7103 diff --git a/maze/task2/maps/level4/img/51.png b/maze/task2/maps/level4/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..0a394744fc09802f68ad9d32465dc810155aef0b --- /dev/null +++ b/maze/task2/maps/level4/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf44a2d566fa8c2a33dd8b6d98ccde9069522402294458c485a2fcf61485227 +size 7850 diff --git a/maze/task2/maps/level4/img/52.png b/maze/task2/maps/level4/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..e272abc3a761bb70ad29c30eea28c058066b11ea --- /dev/null +++ b/maze/task2/maps/level4/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e4775f3d3c0355376f73c1d27e4de703bfbe9ea08081286e95e8d569221574 +size 7072 diff --git a/maze/task2/maps/level4/img/53.png b/maze/task2/maps/level4/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..68b86cc32d18b5dae14c4a27759fd884d4601bfe --- /dev/null +++ b/maze/task2/maps/level4/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da21729150f507d185509d52de93d5df0f178878e84d88cd06bc7e7ddca2e387 +size 7925 diff --git a/maze/task2/maps/level4/img/54.png b/maze/task2/maps/level4/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..525612a3f79d5785e5455af603c6dad5a5459071 --- /dev/null +++ b/maze/task2/maps/level4/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf4b38dbc0993112b3fc93365088f0cba82c19bc9819372331461fff056fa83 +size 7908 diff --git a/maze/task2/maps/level4/img/55.png b/maze/task2/maps/level4/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..8b7a8b854711e5b8cda706f493d0f98f20366062 --- /dev/null +++ b/maze/task2/maps/level4/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d780bd82e0d6b63a87dbe0703d648301188d363397acf1a21ecc0f230a5666 +size 6234 diff --git a/maze/task2/maps/level4/img/56.png b/maze/task2/maps/level4/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..f3939ff053d1ebb577ca53a3d9e4a1ae42f5b885 --- /dev/null +++ b/maze/task2/maps/level4/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301f0b78f77891e0e7f5dc715b0bd2e6c455abd65d9b6826f74d6b75ec5b5156 +size 7904 diff --git a/maze/task2/maps/level4/img/57.png b/maze/task2/maps/level4/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..28bdd1b152dd8a64e93ecffa77b307475dab5b20 --- /dev/null +++ b/maze/task2/maps/level4/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31bb167697cbcdb26a628266f0a3af3d3d7305f5bd49ce0de5232ad921f70d8 +size 6185 diff --git a/maze/task2/maps/level4/img/58.png b/maze/task2/maps/level4/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..30078085aed24f8568e5ae642e5a7d69e804ef61 --- /dev/null +++ b/maze/task2/maps/level4/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db139df9b206278ea0ce62cd61118c6df31e39338c8fd1e7aaa2e79fcc732d54 +size 7051 diff --git a/maze/task2/maps/level4/img/59.png b/maze/task2/maps/level4/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..fafeb62eff0a57c9c448b104b1c67e16fabcb5f6 --- /dev/null +++ b/maze/task2/maps/level4/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b772e597250e3938857abda4a5a78d758164bf66bbe87e186818fcd89d44d1c +size 6996 diff --git a/maze/task2/maps/level4/img/6.png b/maze/task2/maps/level4/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..085d056ba0397f63fc07067afc6e8d6acc93292b --- /dev/null +++ b/maze/task2/maps/level4/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef394d7cecc4e10bdfa03be8b6bcea482087e1e5e43842fe5810423700b69243 +size 7177 diff --git a/maze/task2/maps/level4/img/60.png b/maze/task2/maps/level4/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..3289ea7f5f247d6aea0d1a26bfc998eab39e2bba --- /dev/null +++ b/maze/task2/maps/level4/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9711296ca42f494ccc829b97448d4fa21a20660a671f31856cdae4bda0adf21 +size 7890 diff --git a/maze/task2/maps/level4/img/61.png b/maze/task2/maps/level4/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..6249e6bc7c81dcc2ba9f0765255a30777bac3426 --- /dev/null +++ b/maze/task2/maps/level4/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e15237327e64f0626b186c37415de62a59576028e184b8574d30fda964daed4 +size 7084 diff --git a/maze/task2/maps/level4/img/62.png b/maze/task2/maps/level4/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..af2091a904f9fe975e1dc720dff7b0b5b45da7c6 --- /dev/null +++ b/maze/task2/maps/level4/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00669100468d5f6f21d0351838d7251f56a2a3267f465839137cc4ab4b08a68 +size 6154 diff --git a/maze/task2/maps/level4/img/63.png b/maze/task2/maps/level4/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..ad7e52c1bc7304dceab1bfdd9e1d4898aff3120c --- /dev/null +++ b/maze/task2/maps/level4/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f72fca561cdea1e4bdd5fa72f41360c4458cb3e438f09408cf05ff148296015 +size 7955 diff --git a/maze/task2/maps/level4/img/64.png b/maze/task2/maps/level4/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..5be65ef945ca5bc5ef84624b595f084609a1eaf9 --- /dev/null +++ b/maze/task2/maps/level4/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a68bc8af4fd23e161f8c6a3b54380e8bc25d582a72b04abebaa7c6e88b65187 +size 7046 diff --git a/maze/task2/maps/level4/img/65.png b/maze/task2/maps/level4/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..f46b5480dcb14481e97cb38a6200b0077fd7703a --- /dev/null +++ b/maze/task2/maps/level4/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0937c25c4e1e7a433e221967bb301d992ec235986f8d1741cf7674f75d55a9cb +size 6997 diff --git a/maze/task2/maps/level4/img/66.png b/maze/task2/maps/level4/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..33df968a638385cb39db14878c4732e524b8aa98 --- /dev/null +++ b/maze/task2/maps/level4/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36ee274f490b8de0dae8d8967626c8290c078700b458f499d03cc11c0e03b1a +size 6235 diff --git a/maze/task2/maps/level4/img/67.png b/maze/task2/maps/level4/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f7db68d54d86a8bf2781db0a3c5624c2a59a38 --- /dev/null +++ b/maze/task2/maps/level4/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ee6fa77d6d9e201c8d1fcc2525832d5c350eadca1903b4a8727bdc7d4ebb19 +size 7100 diff --git a/maze/task2/maps/level4/img/68.png b/maze/task2/maps/level4/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ebb6e68260da617403def1040264a268192263 --- /dev/null +++ b/maze/task2/maps/level4/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c80735f5ab9b2213b51c2f7473355752bd6513442493bcdbf54cbcfc15c62b +size 6245 diff --git a/maze/task2/maps/level4/img/69.png b/maze/task2/maps/level4/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..e8a33abdca815488ad52ca677e9855905b228d8a --- /dev/null +++ b/maze/task2/maps/level4/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ba0b524203af0cd9dde8a0b2cc870b4452da657d28a81274da1ab5ed7f3064 +size 6171 diff --git a/maze/task2/maps/level4/img/7.png b/maze/task2/maps/level4/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..03bc532ddaf9baf101dc835f4f154d42fb6f593a --- /dev/null +++ b/maze/task2/maps/level4/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ac67b8382e5a1107635c4a52d45905b0b641d9dd85c13805097dedf07764eb +size 7154 diff --git a/maze/task2/maps/level4/img/70.png b/maze/task2/maps/level4/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..fa697c4ae5207eb3a8ef4fd8989dd2f94ddc41a6 --- /dev/null +++ b/maze/task2/maps/level4/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee57460e876f32e958d3346dc2c9715c29f9cf1fb1a9283b72e03041bfb3bb0 +size 7901 diff --git a/maze/task2/maps/level4/img/71.png b/maze/task2/maps/level4/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..557274152eee39f7cb0d15490a9529ef0d107534 --- /dev/null +++ b/maze/task2/maps/level4/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd736c1f0c27a767b674958bb5fc566a78122f5e2a10ac8dfdca35a11a08888 +size 7061 diff --git a/maze/task2/maps/level4/img/72.png b/maze/task2/maps/level4/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..e867ec30fb85484cf3857309fcb849b3ed344b49 --- /dev/null +++ b/maze/task2/maps/level4/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3579657c419c14e51f762cda672610bf1367be453f5ba4aa8ab3290570c65d +size 7074 diff --git a/maze/task2/maps/level4/img/73.png b/maze/task2/maps/level4/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..858088bf9e6efbe21e146b40522f428e286f86c2 --- /dev/null +++ b/maze/task2/maps/level4/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a03b683ff3017e1d45a506117ce13ba244f19d045f285b619f5454a1fe57dbd +size 8046 diff --git a/maze/task2/maps/level4/img/74.png b/maze/task2/maps/level4/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..fc2c6039e6997af73226a61ace7bcc98c0d42ca4 --- /dev/null +++ b/maze/task2/maps/level4/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637197eb4c66def1d7e9acd1ee8473be1bf65b04d6c6a4d83ec77765d0f8ee1b +size 7085 diff --git a/maze/task2/maps/level4/img/75.png b/maze/task2/maps/level4/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..2eab3949905d9890a27b7339517158c225b58261 --- /dev/null +++ b/maze/task2/maps/level4/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c739d4f92cfe961b95790e0e8b2c257976357100570b45e9963efcc94fed48 +size 7826 diff --git a/maze/task2/maps/level4/img/76.png b/maze/task2/maps/level4/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..fe336271869777fcc1632f1ce6583d9ded1da968 --- /dev/null +++ b/maze/task2/maps/level4/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3480f4fa89ff3ffc6d6309b7c425e8ef9ba4c7dbd9888f74e39e4afc5dc86f2 +size 7109 diff --git a/maze/task2/maps/level4/img/77.png b/maze/task2/maps/level4/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..8345220a7297b9b10e4cd10015384e9e4e7824d6 --- /dev/null +++ b/maze/task2/maps/level4/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a90c7458cf5656b6389a9c341353edd91d24ff8e22fb94b2785927c1b33b592e +size 7943 diff --git a/maze/task2/maps/level4/img/78.png b/maze/task2/maps/level4/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..dcf2fb3aa37b739be7cc00baac563676d908679c --- /dev/null +++ b/maze/task2/maps/level4/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66f86f09e6d23bfc4b02acaaf560f1b9dc1528ea6f059595e617ca2f2d22151 +size 6995 diff --git a/maze/task2/maps/level4/img/79.png b/maze/task2/maps/level4/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..58271b78c4fe75dbf9b9ef97c442d0209b320351 --- /dev/null +++ b/maze/task2/maps/level4/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cbbf9c8d2b92aa6bb0f3edd0651016b6e44f1a0a35db12b0293b6da05444b01 +size 7908 diff --git a/maze/task2/maps/level4/img/8.png b/maze/task2/maps/level4/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..46303cf05cc403321c282e1fe6b2d641d2501f44 --- /dev/null +++ b/maze/task2/maps/level4/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e908fca3b9e9f7023fc518f80ab2930d72cecba3a046094a3c301a8e0c662b +size 6167 diff --git a/maze/task2/maps/level4/img/80.png b/maze/task2/maps/level4/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..35d80c753832c288f9ca67aa4724a3a5ed2ca00f --- /dev/null +++ b/maze/task2/maps/level4/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:776a87a5c43613659139e79a62c0b4897a9dd887469475f61a693c817f55a6a3 +size 7093 diff --git a/maze/task2/maps/level4/img/81.png b/maze/task2/maps/level4/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..c777982b23a3173d79a161799456b6efbb3cdc97 --- /dev/null +++ b/maze/task2/maps/level4/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a1fe73aed04c10616e9aa5127b691cc3e6b2abdd895d2586a0371645642c604 +size 7517 diff --git a/maze/task2/maps/level4/img/82.png b/maze/task2/maps/level4/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..cb2b64fe152f12b871bb01796a7df65a8264e1fb --- /dev/null +++ b/maze/task2/maps/level4/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f265123a7ae32ebfcc029ad219d8deb0cdf33580e81e57f67e67a77b0dd4e2 +size 6949 diff --git a/maze/task2/maps/level4/img/83.png b/maze/task2/maps/level4/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..cb8a623385f74180e1ee98ab1f39604053238f90 --- /dev/null +++ b/maze/task2/maps/level4/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83230533bba8610f7bee8ecfc9b842531617bd62bfaa77a54bbee0fcc01b5b3 +size 7905 diff --git a/maze/task2/maps/level4/img/84.png b/maze/task2/maps/level4/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..732d6016f48bc31b774f9c4396dc860e66eaac56 --- /dev/null +++ b/maze/task2/maps/level4/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e62cdccdead50989566bf6e4e9ad6ad0ac261310f4df2ab043c2ec47d902c36 +size 7007 diff --git a/maze/task2/maps/level4/img/85.png b/maze/task2/maps/level4/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..0d0e0c3caca1110565ecc21d414f3ea6f5e262fa --- /dev/null +++ b/maze/task2/maps/level4/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e49e1444fac0d8f248ef984bb37b30fed458edef58a27a035e792386588ea67 +size 6228 diff --git a/maze/task2/maps/level4/img/86.png b/maze/task2/maps/level4/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..2c249a93d04dfb1d58d83f216a4dd13292f281b7 --- /dev/null +++ b/maze/task2/maps/level4/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80875115e656cbf898a6b9583239ded4971e583836e7d7974aed8f4ea83b28c5 +size 7071 diff --git a/maze/task2/maps/level4/img/87.png b/maze/task2/maps/level4/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..c563796c86de1dfd7ba34ef233ef76932767f940 --- /dev/null +++ b/maze/task2/maps/level4/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2922008148c94eed51f35374dccd3c351c60cdd54d51acd318d28c4f050695 +size 6121 diff --git a/maze/task2/maps/level4/img/88.png b/maze/task2/maps/level4/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..801ec47d4e4382c936c72801f51c0b25e81b3123 --- /dev/null +++ b/maze/task2/maps/level4/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20bcc31fb4c7608c1359fdd84e6e0261134f5720fcc5bab0eecc447d348c80de +size 6120 diff --git a/maze/task2/maps/level4/img/89.png b/maze/task2/maps/level4/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..c1f9c8ea6b9c00974f316e4dbac35092fc4c176d --- /dev/null +++ b/maze/task2/maps/level4/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c62b3498569120ebf01ec2325e70efd2e9ab5b6cb57a587276cb08d78a63bc2b +size 8001 diff --git a/maze/task2/maps/level4/img/9.png b/maze/task2/maps/level4/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1732777d42c89716df4eec105381fec4836c0732 --- /dev/null +++ b/maze/task2/maps/level4/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b1ce79a655c5435983ef974dd67b534af3d92ad25f5aa845293de672fd4fbda +size 7153 diff --git a/maze/task2/maps/level4/img/90.png b/maze/task2/maps/level4/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a3789076fd2c84fc585833020ee4c50abfd02e --- /dev/null +++ b/maze/task2/maps/level4/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63e60a0454af90ae2b78b427950b825d9375b32e374e458e7212513e0d73024 +size 7854 diff --git a/maze/task2/maps/level4/img/91.png b/maze/task2/maps/level4/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..b41dbb9fa47708292566894518d5e12404addc7e --- /dev/null +++ b/maze/task2/maps/level4/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c321d09526d937604e39a37c64c8f65cbf81380bbc2e13d1c4dd0bf33c2e294 +size 6312 diff --git a/maze/task2/maps/level4/img/92.png b/maze/task2/maps/level4/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..766c2eac5efb37f047f64b5c0dd3cb2a3abca406 --- /dev/null +++ b/maze/task2/maps/level4/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855c9ad9d6211cf4463f44ba6308c3aca03ef8f95c39f02aeaa9507abeb6bc26 +size 6239 diff --git a/maze/task2/maps/level4/img/93.png b/maze/task2/maps/level4/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..6db394fd96fa34fc6db142fe710d5c093f882695 --- /dev/null +++ b/maze/task2/maps/level4/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ada7c727706782a8b0124795b11e87dd401ab78fa1ac24612e55d5b5d87afd1 +size 7022 diff --git a/maze/task2/maps/level4/img/94.png b/maze/task2/maps/level4/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..8e0ab2c5ad824ba3ea2be07555e89ff12770e02c --- /dev/null +++ b/maze/task2/maps/level4/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99013d978f3bdc9be792ecf0b23b9be8d5006ccf1eb3ee4382446e93c435176e +size 7061 diff --git a/maze/task2/maps/level4/img/95.png b/maze/task2/maps/level4/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..699cb4fe69d364391b1cd113c9cb2f63abfb0899 --- /dev/null +++ b/maze/task2/maps/level4/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3cd9bc4b66055910e203a244a2717591076ae49957fadbd95970de5e766217 +size 7013 diff --git a/maze/task2/maps/level4/img/96.png b/maze/task2/maps/level4/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..4b4e0c90621370d01cb26cd1fea59cfc9ebe1f43 --- /dev/null +++ b/maze/task2/maps/level4/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e9afce033cc38fa0cecc6ea1175ad761058cf03c4869132bab8e715cb422dc +size 7010 diff --git a/maze/task2/maps/level4/img/97.png b/maze/task2/maps/level4/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..8efa0ea2fa24198b952de764cb67c58e379ecf4c --- /dev/null +++ b/maze/task2/maps/level4/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01d30f0e1e107e7920ebfa69c1aed0091078de8c49b788edf0d91d88cd072f5 +size 6260 diff --git a/maze/task2/maps/level4/img/98.png b/maze/task2/maps/level4/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..2148357cb07371cf383d73d69df0452cd072fe85 --- /dev/null +++ b/maze/task2/maps/level4/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7db58e5e68ec2648d59c06b68f7775e3968741a3004c3097167778e519daae +size 7835 diff --git a/maze/task2/maps/level4/img/99.png b/maze/task2/maps/level4/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..78d37a053c0819394c610d3865c96641574f2d64 --- /dev/null +++ b/maze/task2/maps/level4/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49208e49b91b2f588b84de0d976984aebf86b1e912fa2965d8d7fefbe9baf744 +size 7015 diff --git a/maze/task2/maps/level4/pure_text/0.txt b/maze/task2/maps/level4/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..13f2c354461307767cb544e7b7930420db9ddd89 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; Row 3, Column 3; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/1.txt b/maze/task2/maps/level4/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6d6c65a0d47a9da8cc4f6a508ca08684587372a --- /dev/null +++ b/maze/task2/maps/level4/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/10.txt b/maze/task2/maps/level4/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d28902b576d61eb09650a5bc4e7279c8d8cd31a --- /dev/null +++ b/maze/task2/maps/level4/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/11.txt b/maze/task2/maps/level4/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba726695775b3c4be3904e6c953b30ede57c3b86 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/12.txt b/maze/task2/maps/level4/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b3961e6b85dd11f33a7f7f4fe44493a40efc0f3 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/13.txt b/maze/task2/maps/level4/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..745480dc5440f3f584864a1c92ff88517648ed17 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 4, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/14.txt b/maze/task2/maps/level4/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..86f34d273657760c2c79bd5a99861da0f68ba050 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 3, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/15.txt b/maze/task2/maps/level4/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..44802451cb8f5c1751788c5a24a39a7c580d586b --- /dev/null +++ b/maze/task2/maps/level4/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/16.txt b/maze/task2/maps/level4/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..86419ffd29ff7bc8d77cc3126b37f5fe582e094c --- /dev/null +++ b/maze/task2/maps/level4/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/17.txt b/maze/task2/maps/level4/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d975a2b555444544ffa3f37e6582536b91b64b5 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/18.txt b/maze/task2/maps/level4/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..7668bf7404a1ba5fcd52c63cbdf5cf3d8930a0c4 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/19.txt b/maze/task2/maps/level4/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6a296c4eebc35502bd13e2997d08b1cd0291a87 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/2.txt b/maze/task2/maps/level4/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..70cb392c0ee05ee44ca3f813d57852efcb5951dd --- /dev/null +++ b/maze/task2/maps/level4/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/20.txt b/maze/task2/maps/level4/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..e96deff2afdcc33d002ebe9d9e743934b0ee0bc4 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/21.txt b/maze/task2/maps/level4/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..6370ae943572fc59a39b73c28488cad7cf3f2dae --- /dev/null +++ b/maze/task2/maps/level4/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/22.txt b/maze/task2/maps/level4/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6b560fb8304416386ffa4ff179b920433ea7f83 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/23.txt b/maze/task2/maps/level4/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..4804ac3056ade9a6d0cc47c61bba5aa4edcd34a1 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +There is no holes in this map; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/24.txt b/maze/task2/maps/level4/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c538e7a2a617b942523a928caf380eb0580b513e --- /dev/null +++ b/maze/task2/maps/level4/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 1; Row 4, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/25.txt b/maze/task2/maps/level4/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9857348225d3fc9f5eaa59d5c3f3ce8a737cf6e --- /dev/null +++ b/maze/task2/maps/level4/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/26.txt b/maze/task2/maps/level4/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..6877071ac5403cf4f8e80bd43be9a33e6f88c6e3 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/27.txt b/maze/task2/maps/level4/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..06ae5045e0f5e197f547345ccf6d949faf4f9154 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 3, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/28.txt b/maze/task2/maps/level4/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad890f7019ec611a746dd9634c2897b7cb9a5ff4 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/29.txt b/maze/task2/maps/level4/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..37ba91e295e342037f212a5b08b2f5944e1b6890 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; Row 4, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/3.txt b/maze/task2/maps/level4/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fe97e68c13a0fcc8b1f409927a0c75670bbf04f --- /dev/null +++ b/maze/task2/maps/level4/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/30.txt b/maze/task2/maps/level4/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5221e3ec0637807b3cca51acf54cc52a5615a16 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 2; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/31.txt b/maze/task2/maps/level4/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..34b553b87ad17f12718d142a1edd010f7611a431 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/32.txt b/maze/task2/maps/level4/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..1aaf76ba58fca47014a4e00a49faa93c19ba1f4d --- /dev/null +++ b/maze/task2/maps/level4/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/33.txt b/maze/task2/maps/level4/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bac0c6c422ea10c8bd3cc2400d36ef905af120a --- /dev/null +++ b/maze/task2/maps/level4/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/34.txt b/maze/task2/maps/level4/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cfe50d4b8ecb29fe4d89dc40b97af5f49f67a2e --- /dev/null +++ b/maze/task2/maps/level4/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/35.txt b/maze/task2/maps/level4/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..342ec87b2945c731b9862c1597dd920a295eac7b --- /dev/null +++ b/maze/task2/maps/level4/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/36.txt b/maze/task2/maps/level4/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..91e40031729bf2da1b15140b4d8061e6e40bb205 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/37.txt b/maze/task2/maps/level4/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f73c25c19d718aa33fa5eef5ccf4627211b2b800 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/38.txt b/maze/task2/maps/level4/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..10823e4a83044f6e6dd9a1abbd6917a865fe162e --- /dev/null +++ b/maze/task2/maps/level4/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 4, Column 1; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/39.txt b/maze/task2/maps/level4/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6b8046b2be9a0acfe5fa8ac84150d220c5db71f --- /dev/null +++ b/maze/task2/maps/level4/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/4.txt b/maze/task2/maps/level4/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b8de229d5a84e81da043ac0e2a8d5e194842c54 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 2; Row 4, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/40.txt b/maze/task2/maps/level4/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..193cc6838c2926cb5c99bb0da927dc2ab1292567 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 3, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/41.txt b/maze/task2/maps/level4/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca32e9c80dfbd8d3bdbf35808bf7db9628d06d76 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/42.txt b/maze/task2/maps/level4/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d41f2e6a4c1d6f440fb9f7f15125bd84ef6bc5d --- /dev/null +++ b/maze/task2/maps/level4/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/43.txt b/maze/task2/maps/level4/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..2879a11b09ced41277f1bbae2aee177157d109cd --- /dev/null +++ b/maze/task2/maps/level4/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/44.txt b/maze/task2/maps/level4/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec9056f4ea92c8bb57b26e1a21f16a41e7b48a28 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/45.txt b/maze/task2/maps/level4/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..3354dd35afc5a5257cf0bbe4756e68a7f3a53d54 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/46.txt b/maze/task2/maps/level4/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..97252a720fec62af834eb7d3d1204cfcc5204f86 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 4, Column 1; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/47.txt b/maze/task2/maps/level4/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..a30d5a201a88ee3c2c8d3a350265089ee9d60062 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 4, Column 1; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/48.txt b/maze/task2/maps/level4/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1955fcb5b5899c2226305b2976d80654c11eaa2 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/49.txt b/maze/task2/maps/level4/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..a90d43fcc232a9c93b517a0a45fd7e65b595e099 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/5.txt b/maze/task2/maps/level4/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5698b084cf297c6f3c3978280c0becb05508c322 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/50.txt b/maze/task2/maps/level4/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbce8bef6f17d78d3468a1feb8484e3fdf8cf5a4 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/51.txt b/maze/task2/maps/level4/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbf2a56de3e6e64e9394e3f8e98084557ccb00a2 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/52.txt b/maze/task2/maps/level4/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..501600025abadd78514820dff964b24ccc7b1421 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/53.txt b/maze/task2/maps/level4/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..22cbea4228691aebd523124c121506f12418f9cd --- /dev/null +++ b/maze/task2/maps/level4/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 4, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/54.txt b/maze/task2/maps/level4/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..c52ab2f295719e93b40b9bddf5c6ec4abb27db9f --- /dev/null +++ b/maze/task2/maps/level4/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 2, Column 4; Row 4, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/55.txt b/maze/task2/maps/level4/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbd671dcc0ff0515cf94ac2edc5bdb41f919652d --- /dev/null +++ b/maze/task2/maps/level4/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/56.txt b/maze/task2/maps/level4/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..45d75801368b07b5f9d280d2b648a3cedab11e26 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/57.txt b/maze/task2/maps/level4/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..2046c0aee0e6de01805dfdc52f7407ed55a23702 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/58.txt b/maze/task2/maps/level4/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a367a83bf9ca71fe8462fd7d86fd6c96351cae6 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/59.txt b/maze/task2/maps/level4/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ef1228fb33f3bb4406a3d25c4265e55f98c2c8d --- /dev/null +++ b/maze/task2/maps/level4/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 4; Row 4, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/6.txt b/maze/task2/maps/level4/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cdd9f74837229ad5a8a54b20569a9dcbe3486b8 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 4, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/60.txt b/maze/task2/maps/level4/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2524bb5e3de2c89a4a71c3adc28d4b1f55facc21 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/61.txt b/maze/task2/maps/level4/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..04181f11c86c3b325145a5602de3ef4c69166d92 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/62.txt b/maze/task2/maps/level4/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..688b204c6034315442cb3c89439d522314e400bc --- /dev/null +++ b/maze/task2/maps/level4/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/63.txt b/maze/task2/maps/level4/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a8b8ded6388f590809cbf5277f1a24e2cbef3e1 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 3; Row 3, Column 2; Row 4, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/64.txt b/maze/task2/maps/level4/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8ead1258cda1f2e403b9a13046c5e1fa43fa8cb --- /dev/null +++ b/maze/task2/maps/level4/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/65.txt b/maze/task2/maps/level4/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e2d4f2020332135f74d40407636d3aeb65932a5 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/66.txt b/maze/task2/maps/level4/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b2e2de56e74d91e1fb42f96e2b46be30bb07150 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/67.txt b/maze/task2/maps/level4/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8cd6dbbdb09da63e25f7c9ab4d2d1db5739d522 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 3; Row 4, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/68.txt b/maze/task2/maps/level4/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..12c36d0cc25a152c6da079c3fe89ebefb56a9a39 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/69.txt b/maze/task2/maps/level4/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..449ee946c16c4c98a33ca50e340e979ea49a704a --- /dev/null +++ b/maze/task2/maps/level4/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/7.txt b/maze/task2/maps/level4/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..88bd2c9bd6522ed6cecf1b400b615293638b237d --- /dev/null +++ b/maze/task2/maps/level4/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/70.txt b/maze/task2/maps/level4/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..20a1b0786aad5a84b77fbb9338a79054b7650b78 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/71.txt b/maze/task2/maps/level4/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..01d3d90e9356bbb505c338e6b98c588ff436c2d3 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/72.txt b/maze/task2/maps/level4/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7513b4bc17762aa7b4ca617782514640f1afb2d --- /dev/null +++ b/maze/task2/maps/level4/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/73.txt b/maze/task2/maps/level4/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..136d4b6b1a03049b0d12e1924914f2a8560ce8e9 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 4, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/74.txt b/maze/task2/maps/level4/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ced5c60173d912a592192b51a1521a8d3ff69fe --- /dev/null +++ b/maze/task2/maps/level4/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 3, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/75.txt b/maze/task2/maps/level4/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..b240ed49ce4c91509376a3161eae58619f660e0c --- /dev/null +++ b/maze/task2/maps/level4/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/76.txt b/maze/task2/maps/level4/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..12b314e44d6ddfabeef390508678165ca99ce437 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/77.txt b/maze/task2/maps/level4/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..da693bdf1cb826a76301f09660313344bdfff4a1 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 4, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/78.txt b/maze/task2/maps/level4/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..a101c001c594178e4857535e3ef7a571929346f6 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/79.txt b/maze/task2/maps/level4/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca4b7d6c66098a0f8c8e0b6f5979579a619cbc65 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 4; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/8.txt b/maze/task2/maps/level4/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3ef6f0ef8dd17338e89b17817284515bb15094d --- /dev/null +++ b/maze/task2/maps/level4/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/80.txt b/maze/task2/maps/level4/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..73367f48be8565454c30349be3cda8af40efa2f3 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/81.txt b/maze/task2/maps/level4/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3ec7afac888596124f9a944149b799de76314f8 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/82.txt b/maze/task2/maps/level4/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b304211ef22bb8d861ae792e0252f8770bece3b --- /dev/null +++ b/maze/task2/maps/level4/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 4; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/83.txt b/maze/task2/maps/level4/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..d509b6fe98967e9924d0213c2219d2a4b6903b49 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 4, Column 1; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/84.txt b/maze/task2/maps/level4/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..0beb7c2877f5d4b5a2af7391f5b0f31bea77e885 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/85.txt b/maze/task2/maps/level4/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebafcd4c0e0c6f4898e22b51eb426970d445ab4e --- /dev/null +++ b/maze/task2/maps/level4/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/86.txt b/maze/task2/maps/level4/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3db5a41231450a71055ead8773ce4f06dc48089 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 3, Column 1; Row 4, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/87.txt b/maze/task2/maps/level4/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..532b03beeaa72d110a732fe34d4b038f4a52316b --- /dev/null +++ b/maze/task2/maps/level4/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 4, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/88.txt b/maze/task2/maps/level4/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..92b1f97d03ed2a855e75b4610b200661ce134099 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/89.txt b/maze/task2/maps/level4/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2986497a62246fd2241142ca47efeb53cd3c175d --- /dev/null +++ b/maze/task2/maps/level4/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/9.txt b/maze/task2/maps/level4/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a5e480e7063e78a6d1e39bef45a4a418717e71b --- /dev/null +++ b/maze/task2/maps/level4/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/90.txt b/maze/task2/maps/level4/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..a46831f34c9341a07d09b9afb2b7615c04d001df --- /dev/null +++ b/maze/task2/maps/level4/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/91.txt b/maze/task2/maps/level4/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..040c9a1294d5ef9345c78774bc98a4e25bb2dc0e --- /dev/null +++ b/maze/task2/maps/level4/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/92.txt b/maze/task2/maps/level4/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..df6f0d4236537adac11507af93f56f0753e505bc --- /dev/null +++ b/maze/task2/maps/level4/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/93.txt b/maze/task2/maps/level4/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa5571579aef555a5b1a862ff4a66f9ade8434ba --- /dev/null +++ b/maze/task2/maps/level4/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/94.txt b/maze/task2/maps/level4/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4d9e8ff0b9f0e48d05bac155560064bdffa28e4 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 4, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/95.txt b/maze/task2/maps/level4/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..91e40031729bf2da1b15140b4d8061e6e40bb205 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/96.txt b/maze/task2/maps/level4/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ca98e48fe489800eeef87038503eeae6ad9c2b7 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 4, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/97.txt b/maze/task2/maps/level4/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..798b04eb921727496070322efcfd51cce50a767a --- /dev/null +++ b/maze/task2/maps/level4/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/98.txt b/maze/task2/maps/level4/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8298aac979b788dce4e73b9af610fcfa87e9ed0 --- /dev/null +++ b/maze/task2/maps/level4/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level4/pure_text/99.txt b/maze/task2/maps/level4/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..3845a7c33d57ff468e367644b4970b8a5fb5a58d --- /dev/null +++ b/maze/task2/maps/level4/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level4/table/0.txt b/maze/task2/maps/level4/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..90a5cadce19dcc7f7b05bb6f584961dbe5242fd0 --- /dev/null +++ b/maze/task2/maps/level4/table/0.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | _ | * | # | _ | +| Row 4 | # | _ | _ | # | diff --git a/maze/task2/maps/level4/table/1.txt b/maze/task2/maps/level4/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..68f6c5d6da8bdc8fa8d597d5284f09e7111464b4 --- /dev/null +++ b/maze/task2/maps/level4/table/1.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | _ | @ | diff --git a/maze/task2/maps/level4/table/10.txt b/maze/task2/maps/level4/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..14cf9bddff5134fb07e7a33f83155f86d10d3bff --- /dev/null +++ b/maze/task2/maps/level4/table/10.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/11.txt b/maze/task2/maps/level4/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..df93810b679ed94b28926cbcf50da24ada42990a --- /dev/null +++ b/maze/task2/maps/level4/table/11.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | # | # | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/12.txt b/maze/task2/maps/level4/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..92c58549e0101f11fa02e4a1248ea4dcee7e537a --- /dev/null +++ b/maze/task2/maps/level4/table/12.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task2/maps/level4/table/13.txt b/maze/task2/maps/level4/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..57ce4feab065989c70d5eaa8634698fd130301b9 --- /dev/null +++ b/maze/task2/maps/level4/table/13.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | # | @ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/maps/level4/table/14.txt b/maze/task2/maps/level4/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ec5b4dd3ac70713220ef868f29ad4c52c7b0fc0 --- /dev/null +++ b/maze/task2/maps/level4/table/14.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | _ | @ | * | diff --git a/maze/task2/maps/level4/table/15.txt b/maze/task2/maps/level4/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..298f63c9b61c609451626c0fb5868da68c03d496 --- /dev/null +++ b/maze/task2/maps/level4/table/15.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/16.txt b/maze/task2/maps/level4/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecb3fda7d8a52b92fcc226edc8431f3f472d139b --- /dev/null +++ b/maze/task2/maps/level4/table/16.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | @ | _ | diff --git a/maze/task2/maps/level4/table/17.txt b/maze/task2/maps/level4/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fb597d6f17f6ae81ab55255f0a37556667b025b --- /dev/null +++ b/maze/task2/maps/level4/table/17.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/18.txt b/maze/task2/maps/level4/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..be2e89f5353d309e3cb0cb060e903484f72735f0 --- /dev/null +++ b/maze/task2/maps/level4/table/18.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task2/maps/level4/table/19.txt b/maze/task2/maps/level4/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd545b11e5104db1757785b60cc1ba7335d3c18e --- /dev/null +++ b/maze/task2/maps/level4/table/19.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | _ | @ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/2.txt b/maze/task2/maps/level4/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..34df1713f9e5b32757eb1e84fd27f5752e8f6bd6 --- /dev/null +++ b/maze/task2/maps/level4/table/2.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task2/maps/level4/table/20.txt b/maze/task2/maps/level4/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d3da660c388792987132c009956deaa6f25d56f --- /dev/null +++ b/maze/task2/maps/level4/table/20.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | @ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/21.txt b/maze/task2/maps/level4/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f7d05c3f85acd944d1b4696edb1737678bb7337 --- /dev/null +++ b/maze/task2/maps/level4/table/21.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | @ | # | diff --git a/maze/task2/maps/level4/table/22.txt b/maze/task2/maps/level4/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7b7a5e901f656d4e0c7bc6522c2f5601065b4fc --- /dev/null +++ b/maze/task2/maps/level4/table/22.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | _ | * | # | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task2/maps/level4/table/23.txt b/maze/task2/maps/level4/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..648fd65920d3b9595dd52e8a46ee9b3c0d5f9241 --- /dev/null +++ b/maze/task2/maps/level4/table/23.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | * | _ | @ | _ | diff --git a/maze/task2/maps/level4/table/24.txt b/maze/task2/maps/level4/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f215394ea205e2687a4f65fde79d6f65271059da --- /dev/null +++ b/maze/task2/maps/level4/table/24.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/maps/level4/table/25.txt b/maze/task2/maps/level4/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a72b20c192319883655489e8de4a8f15ec12f2c --- /dev/null +++ b/maze/task2/maps/level4/table/25.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/26.txt b/maze/task2/maps/level4/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..73888ca1cbd11718bb005690e0da715de2c173bb --- /dev/null +++ b/maze/task2/maps/level4/table/26.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | * | _ | _ | @ | diff --git a/maze/task2/maps/level4/table/27.txt b/maze/task2/maps/level4/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdcd0e2873fe6bc7c7d5fdfe78143c4f180133a6 --- /dev/null +++ b/maze/task2/maps/level4/table/27.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | # | _ | @ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task2/maps/level4/table/28.txt b/maze/task2/maps/level4/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0a3445907f6af916669c462c438877061b7c25a --- /dev/null +++ b/maze/task2/maps/level4/table/28.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | * | _ | _ | @ | diff --git a/maze/task2/maps/level4/table/29.txt b/maze/task2/maps/level4/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..8070e9deaac4605c5a2bb5310ea970b8e8f31cbf --- /dev/null +++ b/maze/task2/maps/level4/table/29.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | @ | diff --git a/maze/task2/maps/level4/table/3.txt b/maze/task2/maps/level4/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..678a5318966a455aadf086ddaad66a225cc5acb3 --- /dev/null +++ b/maze/task2/maps/level4/table/3.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | # | _ | * | diff --git a/maze/task2/maps/level4/table/30.txt b/maze/task2/maps/level4/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..96150e4a94bb33a2c73af1cabdf66e714ce74bc0 --- /dev/null +++ b/maze/task2/maps/level4/table/30.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | * | # | _ | _ | diff --git a/maze/task2/maps/level4/table/31.txt b/maze/task2/maps/level4/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..c20def316315058939fc1053d820356422d91d20 --- /dev/null +++ b/maze/task2/maps/level4/table/31.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/32.txt b/maze/task2/maps/level4/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..83a33b6ccc776ca42d30bd09a218e2ef2c5b1fda --- /dev/null +++ b/maze/task2/maps/level4/table/32.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task2/maps/level4/table/33.txt b/maze/task2/maps/level4/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b4e73b0c7e52d7ce5dcd927f2a5331f81f6e638 --- /dev/null +++ b/maze/task2/maps/level4/table/33.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | # | # | * | _ | diff --git a/maze/task2/maps/level4/table/34.txt b/maze/task2/maps/level4/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..8781791360e8655a63fd4e6e216ceb552a29fcd4 --- /dev/null +++ b/maze/task2/maps/level4/table/34.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | * | @ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/35.txt b/maze/task2/maps/level4/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed8e8ebf6cbcf63cbe453b091a2aa77446d8ed5 --- /dev/null +++ b/maze/task2/maps/level4/table/35.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/36.txt b/maze/task2/maps/level4/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..90e9261d723977daf1c0cd6e621fe0bc8d1dd498 --- /dev/null +++ b/maze/task2/maps/level4/table/36.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task2/maps/level4/table/37.txt b/maze/task2/maps/level4/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..1820824298bf8b82bd99527e1bf6694e07f8d84c --- /dev/null +++ b/maze/task2/maps/level4/table/37.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | @ | # | _ | _ | diff --git a/maze/task2/maps/level4/table/38.txt b/maze/task2/maps/level4/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c15be9e57c4ace65b6333b0c6d94ab2e4b56ae1 --- /dev/null +++ b/maze/task2/maps/level4/table/38.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/39.txt b/maze/task2/maps/level4/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba9f6a3ce1a642f7658b128dbea6c341aa643b86 --- /dev/null +++ b/maze/task2/maps/level4/table/39.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/4.txt b/maze/task2/maps/level4/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd4b5faee88642121cebeb282a3b13731545bf67 --- /dev/null +++ b/maze/task2/maps/level4/table/4.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task2/maps/level4/table/40.txt b/maze/task2/maps/level4/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..075c207ad31c15296897ac9c63f13b65120e25de --- /dev/null +++ b/maze/task2/maps/level4/table/40.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | # | diff --git a/maze/task2/maps/level4/table/41.txt b/maze/task2/maps/level4/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..db4f5fe090c53f3eb865bd9ead5aeeebf54b9193 --- /dev/null +++ b/maze/task2/maps/level4/table/41.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/maps/level4/table/42.txt b/maze/task2/maps/level4/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e8021ac15f47719d99e0bceb3664fb0cfb2d3a8 --- /dev/null +++ b/maze/task2/maps/level4/table/42.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task2/maps/level4/table/43.txt b/maze/task2/maps/level4/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f4b94e1fd1d77d7d5463589be696bf09e86d6fc --- /dev/null +++ b/maze/task2/maps/level4/table/43.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/44.txt b/maze/task2/maps/level4/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a768d9a1493e8be17477d4a999d1e19448d5cf --- /dev/null +++ b/maze/task2/maps/level4/table/44.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/45.txt b/maze/task2/maps/level4/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..24e727cea0b4b86a3902eef932936f553512b727 --- /dev/null +++ b/maze/task2/maps/level4/table/45.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | * | _ | # | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/maps/level4/table/46.txt b/maze/task2/maps/level4/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..44327f4417a30e50af6529623c5086c2dfed6602 --- /dev/null +++ b/maze/task2/maps/level4/table/46.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | # | * | _ | _ | diff --git a/maze/task2/maps/level4/table/47.txt b/maze/task2/maps/level4/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f9314b2b48efcef4eeba59d92ccfde96918a137 --- /dev/null +++ b/maze/task2/maps/level4/table/47.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/48.txt b/maze/task2/maps/level4/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..8307ab0ac83712a5be278c85348b7173d0068daa --- /dev/null +++ b/maze/task2/maps/level4/table/48.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | # | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/49.txt b/maze/task2/maps/level4/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b4f66bb91c4594e317e5b3900441ea0f819c4bb --- /dev/null +++ b/maze/task2/maps/level4/table/49.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | @ | diff --git a/maze/task2/maps/level4/table/5.txt b/maze/task2/maps/level4/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a08589aaebc8551acfcaf64a397b61a903c32d --- /dev/null +++ b/maze/task2/maps/level4/table/5.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/50.txt b/maze/task2/maps/level4/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..325225cdd0a2b290a83ff663d49b085d90a8c3b5 --- /dev/null +++ b/maze/task2/maps/level4/table/50.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/51.txt b/maze/task2/maps/level4/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..684a73d225ee999d68e4b150e809fef355a46283 --- /dev/null +++ b/maze/task2/maps/level4/table/51.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | +| Row 4 | # | _ | _ | * | diff --git a/maze/task2/maps/level4/table/52.txt b/maze/task2/maps/level4/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..71bcedd749cc86874ad8996339d07bc137de37b7 --- /dev/null +++ b/maze/task2/maps/level4/table/52.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | # | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/53.txt b/maze/task2/maps/level4/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9196b652dab2eb9db1b811de7f607309e773555 --- /dev/null +++ b/maze/task2/maps/level4/table/53.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/54.txt b/maze/task2/maps/level4/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6ae76ffd1a4948d14061389ffc8e318b683e2cc --- /dev/null +++ b/maze/task2/maps/level4/table/54.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | @ | _ | # | diff --git a/maze/task2/maps/level4/table/55.txt b/maze/task2/maps/level4/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fb5390e60a47d0812f31663e3766872fe030975 --- /dev/null +++ b/maze/task2/maps/level4/table/55.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task2/maps/level4/table/56.txt b/maze/task2/maps/level4/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6f9c9602dab2acd2417152a11f1513cc115452a --- /dev/null +++ b/maze/task2/maps/level4/table/56.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | # | _ | @ | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | * | _ | # | diff --git a/maze/task2/maps/level4/table/57.txt b/maze/task2/maps/level4/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..493b5123f23718ce5be76a025e1748b08cb0a812 --- /dev/null +++ b/maze/task2/maps/level4/table/57.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/58.txt b/maze/task2/maps/level4/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..0266f04babe0d9e39983e35b978209e5186e74a4 --- /dev/null +++ b/maze/task2/maps/level4/table/58.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | * | _ | +| Row 4 | _ | _ | @ | _ | diff --git a/maze/task2/maps/level4/table/59.txt b/maze/task2/maps/level4/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..11359b016b0947d8272ca01245383b9170bac9d8 --- /dev/null +++ b/maze/task2/maps/level4/table/59.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task2/maps/level4/table/6.txt b/maze/task2/maps/level4/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..20152ce49174e6c35e32b2be4fe84d1523c149b8 --- /dev/null +++ b/maze/task2/maps/level4/table/6.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | @ | # | _ | _ | diff --git a/maze/task2/maps/level4/table/60.txt b/maze/task2/maps/level4/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0d3be8ec5f859b7a2213272bedfbda927377f2d --- /dev/null +++ b/maze/task2/maps/level4/table/60.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | @ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | # | * | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/61.txt b/maze/task2/maps/level4/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a23400d4c58320ffb0d95968d3b8d88318ae79f --- /dev/null +++ b/maze/task2/maps/level4/table/61.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task2/maps/level4/table/62.txt b/maze/task2/maps/level4/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e4512fca62d8b560e4c99434c00fe587676a7ea --- /dev/null +++ b/maze/task2/maps/level4/table/62.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | # | _ | @ | diff --git a/maze/task2/maps/level4/table/63.txt b/maze/task2/maps/level4/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ec664769a5b8dc2f44f9defbbf921e9bd7e41c7 --- /dev/null +++ b/maze/task2/maps/level4/table/63.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task2/maps/level4/table/64.txt b/maze/task2/maps/level4/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..24ca22bd270042bc1e8047e8115d497038d889df --- /dev/null +++ b/maze/task2/maps/level4/table/64.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | diff --git a/maze/task2/maps/level4/table/65.txt b/maze/task2/maps/level4/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..84134a2c251bb1e582e6fe5664480080d8051490 --- /dev/null +++ b/maze/task2/maps/level4/table/65.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task2/maps/level4/table/66.txt b/maze/task2/maps/level4/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..7630be03945c1f85d0b146176b5ba1b7738ffa2f --- /dev/null +++ b/maze/task2/maps/level4/table/66.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/maps/level4/table/67.txt b/maze/task2/maps/level4/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..f950f9aa76dc8d27bd9604e73ed4d8c4eca1fcc0 --- /dev/null +++ b/maze/task2/maps/level4/table/67.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task2/maps/level4/table/68.txt b/maze/task2/maps/level4/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..54141fc9a94d4c397df49526cc3d8518613201cf --- /dev/null +++ b/maze/task2/maps/level4/table/68.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | @ | _ | +| Row 4 | _ | * | _ | _ | diff --git a/maze/task2/maps/level4/table/69.txt b/maze/task2/maps/level4/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..b631842c1321f3485f93ab3de8f608d1ff9fbd77 --- /dev/null +++ b/maze/task2/maps/level4/table/69.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | @ | _ | * | _ | diff --git a/maze/task2/maps/level4/table/7.txt b/maze/task2/maps/level4/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8aeb380157c8337f12f409c49516d4f96e7ff9b --- /dev/null +++ b/maze/task2/maps/level4/table/7.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/70.txt b/maze/task2/maps/level4/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c1cb34fdf92526f0bd93ec59f548f8945cce759 --- /dev/null +++ b/maze/task2/maps/level4/table/70.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task2/maps/level4/table/71.txt b/maze/task2/maps/level4/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..e45cbc464cb1d9b992fcfbc99315931e96d79dc2 --- /dev/null +++ b/maze/task2/maps/level4/table/71.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/maps/level4/table/72.txt b/maze/task2/maps/level4/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..668cba8666168ba4e7f4e227d2dcd24e0fab5f1d --- /dev/null +++ b/maze/task2/maps/level4/table/72.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | diff --git a/maze/task2/maps/level4/table/73.txt b/maze/task2/maps/level4/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..210f7f7d9966d7d5838821a728c7b7db7d419485 --- /dev/null +++ b/maze/task2/maps/level4/table/73.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task2/maps/level4/table/74.txt b/maze/task2/maps/level4/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..857d77bcdbfad35ce1b3b08691cd24999d5bf3b5 --- /dev/null +++ b/maze/task2/maps/level4/table/74.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/75.txt b/maze/task2/maps/level4/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..35d67279bf20c3bf0b8e79a4379b6c158f04edde --- /dev/null +++ b/maze/task2/maps/level4/table/75.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | * | @ | _ | # | +| Row 3 | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/76.txt b/maze/task2/maps/level4/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d8b94cd45698695ca35094f39d1c81b6416826f --- /dev/null +++ b/maze/task2/maps/level4/table/76.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/77.txt b/maze/task2/maps/level4/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c504a0d7aaf6f90580778433409ef7c3d3f006d --- /dev/null +++ b/maze/task2/maps/level4/table/77.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/78.txt b/maze/task2/maps/level4/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6d7dd8252ae1a7828dc5607c8f471111ef7a1da --- /dev/null +++ b/maze/task2/maps/level4/table/78.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | _ | _ | * | diff --git a/maze/task2/maps/level4/table/79.txt b/maze/task2/maps/level4/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1ef2f54de57b9cd967a708027761b03b0711915 --- /dev/null +++ b/maze/task2/maps/level4/table/79.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | # | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/8.txt b/maze/task2/maps/level4/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..45ab2c1396383bb85da63bbb84e9722aa8e7a56e --- /dev/null +++ b/maze/task2/maps/level4/table/8.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task2/maps/level4/table/80.txt b/maze/task2/maps/level4/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4b073f8823c196921ae6575b7be833e8bab68de --- /dev/null +++ b/maze/task2/maps/level4/table/80.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/maps/level4/table/81.txt b/maze/task2/maps/level4/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e9d6cb4e92c9d08b8add15a566572483dffd557 --- /dev/null +++ b/maze/task2/maps/level4/table/81.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | * | _ | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task2/maps/level4/table/82.txt b/maze/task2/maps/level4/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..37a9ac8d02691ddecb02d7c1da752aba599ab497 --- /dev/null +++ b/maze/task2/maps/level4/table/82.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | @ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/83.txt b/maze/task2/maps/level4/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..74b014e5327565b6deb5e5b3e66d1c725a2432c3 --- /dev/null +++ b/maze/task2/maps/level4/table/83.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | * | _ | _ | diff --git a/maze/task2/maps/level4/table/84.txt b/maze/task2/maps/level4/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbb422f8bdcd21a6886093b49c5a3c5d1dfb1d4d --- /dev/null +++ b/maze/task2/maps/level4/table/84.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | diff --git a/maze/task2/maps/level4/table/85.txt b/maze/task2/maps/level4/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..99c8034e4fc19fbd1faefebe61874d9d3b061e0b --- /dev/null +++ b/maze/task2/maps/level4/table/85.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task2/maps/level4/table/86.txt b/maze/task2/maps/level4/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1756f807e239063a408514cb21d810fb6f7437f --- /dev/null +++ b/maze/task2/maps/level4/table/86.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task2/maps/level4/table/87.txt b/maze/task2/maps/level4/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc81412bd24a7842be47952d8ffc03f6147ece01 --- /dev/null +++ b/maze/task2/maps/level4/table/87.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task2/maps/level4/table/88.txt b/maze/task2/maps/level4/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..49196758cd3ebf0dfe5e79d1a1d1216abfff9cdb --- /dev/null +++ b/maze/task2/maps/level4/table/88.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task2/maps/level4/table/89.txt b/maze/task2/maps/level4/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..b05cfc05e0aa71e52ee806e6aa3369c3e349ff80 --- /dev/null +++ b/maze/task2/maps/level4/table/89.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | * | @ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/maps/level4/table/9.txt b/maze/task2/maps/level4/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..977efa296c0756b494b4a8c123d7263ad7c13bf5 --- /dev/null +++ b/maze/task2/maps/level4/table/9.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | * | _ | _ | diff --git a/maze/task2/maps/level4/table/90.txt b/maze/task2/maps/level4/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..3eeaf77f13e2a454b4b611ecca6df5311c68122b --- /dev/null +++ b/maze/task2/maps/level4/table/90.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/91.txt b/maze/task2/maps/level4/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f485b63b526ff64f344d6ef1d8bf1882e3a67cd --- /dev/null +++ b/maze/task2/maps/level4/table/91.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level4/table/92.txt b/maze/task2/maps/level4/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..a476e444ebe170866509c07e8883af3c7ccc9395 --- /dev/null +++ b/maze/task2/maps/level4/table/92.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | diff --git a/maze/task2/maps/level4/table/93.txt b/maze/task2/maps/level4/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a667336638de6c5717ee65bc10ad6fe6095d835 --- /dev/null +++ b/maze/task2/maps/level4/table/93.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task2/maps/level4/table/94.txt b/maze/task2/maps/level4/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..4603bc79b87432d07449d3d1a3bdf7a9ab27b04b --- /dev/null +++ b/maze/task2/maps/level4/table/94.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task2/maps/level4/table/95.txt b/maze/task2/maps/level4/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..90e9261d723977daf1c0cd6e621fe0bc8d1dd498 --- /dev/null +++ b/maze/task2/maps/level4/table/95.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task2/maps/level4/table/96.txt b/maze/task2/maps/level4/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cd26c274a70edacf49609ce4f17fdf885f5ad0f --- /dev/null +++ b/maze/task2/maps/level4/table/96.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | # | # | +| Row 3 | @ | _ | _ | * | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task2/maps/level4/table/97.txt b/maze/task2/maps/level4/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..4780f09ce98294209a853a5b2ba6339014a9515e --- /dev/null +++ b/maze/task2/maps/level4/table/97.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task2/maps/level4/table/98.txt b/maze/task2/maps/level4/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..856fcd304f582f70c650c2df9f90ecf7a6674ab0 --- /dev/null +++ b/maze/task2/maps/level4/table/98.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | * | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | # | # | _ | diff --git a/maze/task2/maps/level4/table/99.txt b/maze/task2/maps/level4/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13ef011f00b304ac4f18b558e01b921889ce2e1 --- /dev/null +++ b/maze/task2/maps/level4/table/99.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | * | _ | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/img/0.png b/maze/task2/maps/level5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..53c675225cb4557b1697e4fa4871f0aa14c579b0 --- /dev/null +++ b/maze/task2/maps/level5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9cd3f0abed81e2b2317756e97906f959f6838129cb8e4d8cdbade95400af2d +size 8586 diff --git a/maze/task2/maps/level5/img/1.png b/maze/task2/maps/level5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f343446822ebf94b71b14c3eeb39c63926ce1b75 --- /dev/null +++ b/maze/task2/maps/level5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662a2be0231567d54a9bb941372aa13dba653e840e108fc5bd67999b9808970b +size 8576 diff --git a/maze/task2/maps/level5/img/10.png b/maze/task2/maps/level5/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..36afe96af778ab9f51ea10ad579e7cfc72bf656c --- /dev/null +++ b/maze/task2/maps/level5/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d8a4ef9af3d832ffef7907e5bd8f7ed70a602d733273507c5ff1d184503df1 +size 9540 diff --git a/maze/task2/maps/level5/img/11.png b/maze/task2/maps/level5/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a5ece63c58ccb637f8b8d6b3f8bc4c5e08a361a0 --- /dev/null +++ b/maze/task2/maps/level5/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded2d691e97803356fe059017e3a79a80dcfec9ab37b4101b44421c8e4745743 +size 9505 diff --git a/maze/task2/maps/level5/img/12.png b/maze/task2/maps/level5/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..961a186623ee0011ec0d5087f124ba6956dd303c --- /dev/null +++ b/maze/task2/maps/level5/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2c3ba8f3794820f29c4621ad30015477f75a684effd0f43c13791ef2b6e84e +size 8732 diff --git a/maze/task2/maps/level5/img/13.png b/maze/task2/maps/level5/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2e9bcd697c9f9df311a7bcc585551adc45b633 --- /dev/null +++ b/maze/task2/maps/level5/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63c693a4e866265c3ab6d440f9edda4aec2f9c6195167ab113d6907cc63582e +size 9460 diff --git a/maze/task2/maps/level5/img/14.png b/maze/task2/maps/level5/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a959b16b2d47a4ee7034609446712c1c93efda --- /dev/null +++ b/maze/task2/maps/level5/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4278d644fee0fcc945ffb661826fba43399479f20849324f828d860ce42896b7 +size 9498 diff --git a/maze/task2/maps/level5/img/15.png b/maze/task2/maps/level5/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb4459dadcd568c2617420f493cb6c647050001 --- /dev/null +++ b/maze/task2/maps/level5/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0f34aa1726792f861b04dc97b31cc2a646d248e5d44b4b360106c0bebf6fa0 +size 8569 diff --git a/maze/task2/maps/level5/img/16.png b/maze/task2/maps/level5/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7973c8fd0e44309ec3e86a3225421c70098fe0 --- /dev/null +++ b/maze/task2/maps/level5/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5583b83655c1009808d434d23387310c409754a8d3de67d91a947d9bcaa3c671 +size 10319 diff --git a/maze/task2/maps/level5/img/17.png b/maze/task2/maps/level5/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..89b88669e049ee2b40eb2964f6e3be9983d5841d --- /dev/null +++ b/maze/task2/maps/level5/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433a8057d4c23e0dd2814e9f57b18737e38ac85dad3d9122b606ff160b61592f +size 9481 diff --git a/maze/task2/maps/level5/img/18.png b/maze/task2/maps/level5/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0e4578441dc93dbe35e39e7258d5bb9f397e26b5 --- /dev/null +++ b/maze/task2/maps/level5/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b871b7baa3624a6d3c3f6723fcde0fbabe98e44ec14b697930c24110530d7e +size 9504 diff --git a/maze/task2/maps/level5/img/19.png b/maze/task2/maps/level5/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..1342eed8c66f157f6a0ee50a553bce9900d7b153 --- /dev/null +++ b/maze/task2/maps/level5/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f12b2c82dce79ca3024ad9ceeab1d87e148064972cf0f0d35cedef9f199494 +size 9487 diff --git a/maze/task2/maps/level5/img/2.png b/maze/task2/maps/level5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task2/maps/level5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task2/maps/level5/img/20.png b/maze/task2/maps/level5/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..008eb9d774f873f49d9f2aba16a957268416f06c --- /dev/null +++ b/maze/task2/maps/level5/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb6e15f6f74538fb484c9175e9f2ed53f31bb2657acdcfcd043ca68a8a31eb6 +size 10260 diff --git a/maze/task2/maps/level5/img/21.png b/maze/task2/maps/level5/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..3159880dfddac7dde77c48c798370b3351485091 --- /dev/null +++ b/maze/task2/maps/level5/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa1e9d8f938e37e6023c89eda68bf03b514f4c762b9012c78be14445f3c4b52 +size 8496 diff --git a/maze/task2/maps/level5/img/22.png b/maze/task2/maps/level5/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..b43ce1e2773dcc8f88926dbfcc55bd4e30c3300f --- /dev/null +++ b/maze/task2/maps/level5/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568fd2b874b4f84a2d182fba9255d2bd0ba319bf21ea04daf9dcc93bd6384ece +size 9431 diff --git a/maze/task2/maps/level5/img/23.png b/maze/task2/maps/level5/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..81c6a7ca79d5a70cbdc9167d691223476bc9976d --- /dev/null +++ b/maze/task2/maps/level5/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbde32d51a95bc040d27867403cf81a6029014ea37322974115bf4de681ba63 +size 9587 diff --git a/maze/task2/maps/level5/img/24.png b/maze/task2/maps/level5/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..9a6d1f5f4396d39be6b747b2245ca74e57dad2d8 --- /dev/null +++ b/maze/task2/maps/level5/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce73082473f6a8019fcddc4e20d0befd63af5607686e7d96fc44f9e76224fcf9 +size 10360 diff --git a/maze/task2/maps/level5/img/25.png b/maze/task2/maps/level5/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..dcaca11c66cd3002cc42b1541e908fc7c7d55487 --- /dev/null +++ b/maze/task2/maps/level5/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf361f95f35ac9a0112f7063281e8af77dcc95553bae500b712a502b170f5b4 +size 9481 diff --git a/maze/task2/maps/level5/img/26.png b/maze/task2/maps/level5/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..483b63e17cc629a34387f5c0d0ee653cac261b3c --- /dev/null +++ b/maze/task2/maps/level5/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b19855bb1cf3021cecae9924a96c9c3ae2d04c1122234b8f34d010d10ca9fd0 +size 10486 diff --git a/maze/task2/maps/level5/img/27.png b/maze/task2/maps/level5/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..f591e4148b776e15eb1b392b9eb5a3899d71f16e --- /dev/null +++ b/maze/task2/maps/level5/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a339a2e62e1162a190da229fa66e13f616e849539aeb08b845c35c77ce2d7a3 +size 10413 diff --git a/maze/task2/maps/level5/img/28.png b/maze/task2/maps/level5/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7b5e0d421fd9845fedd4e9bf62cf5a40560815 --- /dev/null +++ b/maze/task2/maps/level5/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6e842275c7a23fce24f6f4ebc6852f5922d6f914ed4c7c4f2c900d974ed33d +size 7724 diff --git a/maze/task2/maps/level5/img/29.png b/maze/task2/maps/level5/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0e29574aaa55dcc0d40cf007942f77d30535f6 --- /dev/null +++ b/maze/task2/maps/level5/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00443dd8966b4642e5e430ad4ab1b860149b51c0c4931b60ef48c6d24abf87bb +size 8645 diff --git a/maze/task2/maps/level5/img/3.png b/maze/task2/maps/level5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task2/maps/level5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task2/maps/level5/img/30.png b/maze/task2/maps/level5/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..d63738871f379090425d544bc204e402814b6b55 --- /dev/null +++ b/maze/task2/maps/level5/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34ae1efa396c60bd93b40f3a17ed10a570bf75920a432154f7c19649e8e0994 +size 10233 diff --git a/maze/task2/maps/level5/img/31.png b/maze/task2/maps/level5/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8414031f76b7066865976aa74936cac7b92311da --- /dev/null +++ b/maze/task2/maps/level5/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b760ca6eab9da1ac2bb044b831c20182c4ba148464e6dd749fb724c2317504 +size 10338 diff --git a/maze/task2/maps/level5/img/32.png b/maze/task2/maps/level5/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..8aa3a9101f18f5cef81a2a0ac8ea133631da8272 --- /dev/null +++ b/maze/task2/maps/level5/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6046bda5a18babfb779cd67eafbadc41ef75d339c1e22df72fee2aa6c93c3943 +size 8504 diff --git a/maze/task2/maps/level5/img/33.png b/maze/task2/maps/level5/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..0bebca99345c5d1894a4ae329be28466c2a50b28 --- /dev/null +++ b/maze/task2/maps/level5/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7b2f94ba36b04dd2dbb42233e555715f919536cc144672d8e308197195e785 +size 8604 diff --git a/maze/task2/maps/level5/img/34.png b/maze/task2/maps/level5/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..f7fc0d5b588e614bfcc670be9f68e8238d42f199 --- /dev/null +++ b/maze/task2/maps/level5/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01e7a56b654bd725b1a8d247af2b00194b0a4a8024d63d2b763b0b776533f5b +size 8457 diff --git a/maze/task2/maps/level5/img/35.png b/maze/task2/maps/level5/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..0dcccbdde8c06d23b2a3fd409778c087119d7b1a --- /dev/null +++ b/maze/task2/maps/level5/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c5cdbace6e9b727622cf498cd44c572f8538faf2fecb209501e3f1743ee079 +size 9374 diff --git a/maze/task2/maps/level5/img/36.png b/maze/task2/maps/level5/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..b9852152d7696761ee038bbc6195fe898f567da6 --- /dev/null +++ b/maze/task2/maps/level5/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369baca6210fe2e760c2799e065731a650553eb711755715981d52d264679359 +size 9546 diff --git a/maze/task2/maps/level5/img/37.png b/maze/task2/maps/level5/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..27f9ce99490c05a04894f62fda9c8566bff0f3e0 --- /dev/null +++ b/maze/task2/maps/level5/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92f6006c6fcb34ca5bab418ddb7f976cba1c9aded278d5312b49e0b981ae387 +size 11159 diff --git a/maze/task2/maps/level5/img/38.png b/maze/task2/maps/level5/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9a73f72074ae48f5589417c00b18f273052946 --- /dev/null +++ b/maze/task2/maps/level5/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9987cc6de5975fc76063e350faeeed07486c46bd4604be48931e5c2292d96aa5 +size 10355 diff --git a/maze/task2/maps/level5/img/39.png b/maze/task2/maps/level5/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..46cfb1f679d417e62c266708fb126a02cda0bf83 --- /dev/null +++ b/maze/task2/maps/level5/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7928e1bfe7fbd5034618bf5cc151ad3e5e01209de1122397a1aa9d40c2abb0ed +size 8570 diff --git a/maze/task2/maps/level5/img/4.png b/maze/task2/maps/level5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcf17753a14d717d70601f1726efa48591720d2 --- /dev/null +++ b/maze/task2/maps/level5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1527826071149f7d3fe78db8c909ec14d40d7ac2ff90cad4f018091251dbf8c2 +size 7791 diff --git a/maze/task2/maps/level5/img/40.png b/maze/task2/maps/level5/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..e53b06c208b53a7acfe48362b862e38efee5d416 --- /dev/null +++ b/maze/task2/maps/level5/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df628466c1be0248b28fa7a82355ba6f37c52eec7c290efebd33bac8780335b8 +size 7678 diff --git a/maze/task2/maps/level5/img/41.png b/maze/task2/maps/level5/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..a336550fb6b5ee724510355eddbf38e949e814f9 --- /dev/null +++ b/maze/task2/maps/level5/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0a2aa504f7ec3efbdc87c449cc23a3a36ae9d9c1553b35432c5e89bcf3dff0 +size 8743 diff --git a/maze/task2/maps/level5/img/42.png b/maze/task2/maps/level5/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..e856d73908a9cc7d534b877162988525569b9668 --- /dev/null +++ b/maze/task2/maps/level5/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f6d38b24d3f09c69970c5332c8892755512adb46838d5499665865c897f55e +size 9376 diff --git a/maze/task2/maps/level5/img/43.png b/maze/task2/maps/level5/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8240fd301b101fc3d6928b8b7837ee8f046508 --- /dev/null +++ b/maze/task2/maps/level5/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e450c5211b9cc344c3fdea9a4ac7b6f86afc861e99ce5e8e1bd73c05370aeb +size 8530 diff --git a/maze/task2/maps/level5/img/44.png b/maze/task2/maps/level5/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..fbc926d0e2b3d98e1dab0a8d75b1d5abba9eee37 --- /dev/null +++ b/maze/task2/maps/level5/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ffae263c999fdb644ac5676dff754b4eb3bba3437795940e40daa1af5bf67a +size 10484 diff --git a/maze/task2/maps/level5/img/45.png b/maze/task2/maps/level5/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..fa357d51bbdeb0678d4148305f56dab8c1d94eec --- /dev/null +++ b/maze/task2/maps/level5/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8848ac9b4fb5bb3bec41b2221a5a2a47ce69bca895b40fdde606a4b36f33fc93 +size 9491 diff --git a/maze/task2/maps/level5/img/46.png b/maze/task2/maps/level5/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d0bce4c0119ffeac19097f9f41a4c38d2a442d --- /dev/null +++ b/maze/task2/maps/level5/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4c2f0d9865a8360f4d1c974eca5d0c578296f5b4e8315cffa073c54468cde7 +size 10550 diff --git a/maze/task2/maps/level5/img/47.png b/maze/task2/maps/level5/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..61f9ef0def0f721f159208bb3aa769cefa7f4431 --- /dev/null +++ b/maze/task2/maps/level5/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bbd0e6a07a60df2a50c7f077a2675e34106d15e375efe469a077b768d6b48b +size 8667 diff --git a/maze/task2/maps/level5/img/48.png b/maze/task2/maps/level5/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..80605fc9f1d52293736c551d0c54f2054b6ae790 --- /dev/null +++ b/maze/task2/maps/level5/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af97fa09ff7c59716bd262d7ad3e0f24caf61d08f5f71494276bc04fee4141f +size 9549 diff --git a/maze/task2/maps/level5/img/49.png b/maze/task2/maps/level5/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..42ed24d9c562504ba63fa58f2a8307b0d7cc9847 --- /dev/null +++ b/maze/task2/maps/level5/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed72c064c5229fa5ce1bf62b52ec7b2aa3f7fb9ba203d81c7c33bafb9c74194 +size 10373 diff --git a/maze/task2/maps/level5/img/5.png b/maze/task2/maps/level5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task2/maps/level5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task2/maps/level5/img/50.png b/maze/task2/maps/level5/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..a10f7605b5adcd31425b5fc82f6391618c60dcce --- /dev/null +++ b/maze/task2/maps/level5/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1fa51fc530f52434841bf5f5804b0f0ffbb044d7e829d335d4060e8ffbcc8f +size 10311 diff --git a/maze/task2/maps/level5/img/51.png b/maze/task2/maps/level5/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5eb285b8ff06ddcfe7301346541ce202b37419 --- /dev/null +++ b/maze/task2/maps/level5/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92c2243e404e0ab629e4529ab56766a05dd34c0213c3e20c4910fb4fb86e831 +size 9542 diff --git a/maze/task2/maps/level5/img/52.png b/maze/task2/maps/level5/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..2f1ff31b784efbaada761fee34beb3a5518b636e --- /dev/null +++ b/maze/task2/maps/level5/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8924f69877bff72e4cdd85f86ee6f88a13184d0de32b91945669f90769b4cef +size 8583 diff --git a/maze/task2/maps/level5/img/53.png b/maze/task2/maps/level5/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..b56567b741d2a6849fdbd9a06f10a221f611854a --- /dev/null +++ b/maze/task2/maps/level5/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbbb363cbd4871bd667563335310c2a7b1e044d786a33fc9ac426ab13f9fa92 +size 10460 diff --git a/maze/task2/maps/level5/img/54.png b/maze/task2/maps/level5/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..f920ca86b117abb67013bb57a9499b0393639cea --- /dev/null +++ b/maze/task2/maps/level5/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c43e944b0140c1497f1775468827f0e4d1c41f027cd40778dc0c9189590062 +size 8588 diff --git a/maze/task2/maps/level5/img/55.png b/maze/task2/maps/level5/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..b7cd9585ed58ff2537515598c55964ef7bab9820 --- /dev/null +++ b/maze/task2/maps/level5/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53106fd75e879e3655e754942e5d3947460c00e26f52b713400f3daae45eee00 +size 9525 diff --git a/maze/task2/maps/level5/img/56.png b/maze/task2/maps/level5/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..b8c2ce52f791138a9286cf7a9cefa274ce2d0562 --- /dev/null +++ b/maze/task2/maps/level5/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b77ba0df8baf14b3ea95e0514b661b98f3af2d1f228834f4a15e148ba0a1485 +size 8755 diff --git a/maze/task2/maps/level5/img/57.png b/maze/task2/maps/level5/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..46b8af8ae47e2318fc24cf7e63adf89c23ad0768 --- /dev/null +++ b/maze/task2/maps/level5/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfb2f92be0c9aedd215a40e1879bb6cdeec5abfae96393b8899c2c7c126797f +size 11278 diff --git a/maze/task2/maps/level5/img/58.png b/maze/task2/maps/level5/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..007695ff6c8929f3c578f1e20f352034afc69d5b --- /dev/null +++ b/maze/task2/maps/level5/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4011594954c1117ae9981fa7ce16c41cb3266498795e8f487654a7f4ea47e61e +size 8568 diff --git a/maze/task2/maps/level5/img/59.png b/maze/task2/maps/level5/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..783bdee385c0a0eef8797024804679a2cb97629b --- /dev/null +++ b/maze/task2/maps/level5/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f597e4c46866313b7947e9cb1761cd53881ecbbe15d4fdf7fe3291755b0bcd +size 8756 diff --git a/maze/task2/maps/level5/img/6.png b/maze/task2/maps/level5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task2/maps/level5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task2/maps/level5/img/60.png b/maze/task2/maps/level5/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..af8ab86cf41c45007b7cfce49c76e3ff294aa2f6 --- /dev/null +++ b/maze/task2/maps/level5/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f19ceb0d0c316a16d11ddeb3238c5ef09285ab68f7796236aa0035a5676c68f +size 10322 diff --git a/maze/task2/maps/level5/img/61.png b/maze/task2/maps/level5/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..d5a479c65cb42324a8806e73a2651e20cf70f08e --- /dev/null +++ b/maze/task2/maps/level5/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b58ec3a71ab3abb8df325845f732ab77ce474560e2736f7d4f79e521d20fc72 +size 8627 diff --git a/maze/task2/maps/level5/img/62.png b/maze/task2/maps/level5/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..33cfe602364bc6dd682c246276cfb8f1404ef595 --- /dev/null +++ b/maze/task2/maps/level5/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0e338d527661874a9c46027013ed1381ad655fa2165f92ba6c74bdccc1b4c4 +size 10351 diff --git a/maze/task2/maps/level5/img/63.png b/maze/task2/maps/level5/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..111ca1697d10c3298b6ba2685b1ad306e11eae50 --- /dev/null +++ b/maze/task2/maps/level5/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5763ada5d264d472e810663294e2e7bf1566abf485f5c554cc8b0a771de43c14 +size 9561 diff --git a/maze/task2/maps/level5/img/64.png b/maze/task2/maps/level5/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..af27e78c65469a37d18cca56246e46dc40071558 --- /dev/null +++ b/maze/task2/maps/level5/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705afe8f6778c5550d77725cec8a0a4e3d06a7f07978c19ac149248442bc560f +size 7735 diff --git a/maze/task2/maps/level5/img/65.png b/maze/task2/maps/level5/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..83e96c3b8c34fbc0d1964c3a34509a80c34425bc --- /dev/null +++ b/maze/task2/maps/level5/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab691589396b93fea1f8c2e627d260083dc06c3e8200c008564e85bbe4b351d +size 8715 diff --git a/maze/task2/maps/level5/img/66.png b/maze/task2/maps/level5/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..d1198a3df020aaf0931a32171bb2eacf6c6c9e62 --- /dev/null +++ b/maze/task2/maps/level5/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b090c16cc1315c868aca80a3ea0a9d4a002bae7af3cc50909feeea2d43a8dcd2 +size 10450 diff --git a/maze/task2/maps/level5/img/67.png b/maze/task2/maps/level5/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..6d016ebafe107cbacb68734220b06aed64f37d4c --- /dev/null +++ b/maze/task2/maps/level5/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cc901ec785673687b26427ce086ebbd27f8cd2502dbb104379e8867c631760 +size 9459 diff --git a/maze/task2/maps/level5/img/68.png b/maze/task2/maps/level5/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..bcaaf350210436f4383e0333ed73e65bd52a678a --- /dev/null +++ b/maze/task2/maps/level5/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5846abc853064d63e0fb377fa2b23730d1015f367d01599936d4a3e1fba4f0c +size 8697 diff --git a/maze/task2/maps/level5/img/69.png b/maze/task2/maps/level5/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..111346baa5e8e81dce82def8b6539b70892a57e0 --- /dev/null +++ b/maze/task2/maps/level5/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bc1d785dce00bf0efdfb9cd6888c7b988193a61ffa0216b31059772952a15c +size 11228 diff --git a/maze/task2/maps/level5/img/7.png b/maze/task2/maps/level5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f814f3af4a4514eea937c4425d373246a0eddf97 --- /dev/null +++ b/maze/task2/maps/level5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7524981f599a7d73e4d8fbec30dfe5b20a4391ecea7e63082541a4fb06ee3bfb +size 9570 diff --git a/maze/task2/maps/level5/img/70.png b/maze/task2/maps/level5/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..d7d9522fdef478962bbf1ae56c58e2e914c5855f --- /dev/null +++ b/maze/task2/maps/level5/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f964ac4bbf903fffa406c1474e19146d3f9c106e21c071d0322559e28ff4fe +size 8780 diff --git a/maze/task2/maps/level5/img/71.png b/maze/task2/maps/level5/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..beb976f0cbfd54916fe8e0be18df2bc9108275af --- /dev/null +++ b/maze/task2/maps/level5/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ee8ab29dc3a229e6242ae737444cd175d7d8e3f5215e4d6bac98b7317a6fd4 +size 10314 diff --git a/maze/task2/maps/level5/img/72.png b/maze/task2/maps/level5/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..954b50dcb1eca96f53d4dd29a53a3b69f12b3e7b --- /dev/null +++ b/maze/task2/maps/level5/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc0ebd9f7920071a4425c9a4d6e5d5bfde4c946fb8104c11d176f85f3b84dbd +size 10323 diff --git a/maze/task2/maps/level5/img/73.png b/maze/task2/maps/level5/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..f88dfab626fa7c5fb363d58de200004b96209b1b --- /dev/null +++ b/maze/task2/maps/level5/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433e3ecd94a75856ad7720bf7b7a14c206ca551dfd7cdb6458168750957e6144 +size 9621 diff --git a/maze/task2/maps/level5/img/74.png b/maze/task2/maps/level5/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..070f3739720280a97743d79dad3e56dab5f41b86 --- /dev/null +++ b/maze/task2/maps/level5/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48bd3b546d81a289f3cfee56906d822df25e6ada5bf19ea59601ca8565d6d0db +size 9529 diff --git a/maze/task2/maps/level5/img/75.png b/maze/task2/maps/level5/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..93eed9dc47ad2ae321d732ef990201e356a084d8 --- /dev/null +++ b/maze/task2/maps/level5/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3d3acdebfc0ac58bd29a87edf66e3e274fd14dd7aa4e6feda5037bea7070d7 +size 9559 diff --git a/maze/task2/maps/level5/img/76.png b/maze/task2/maps/level5/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..1767ad68765f0ce53e8b51d4cc8579144cf41428 --- /dev/null +++ b/maze/task2/maps/level5/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b2a5d8df0428a24da48fa93626113f4278237054514f7bf057bdf9ef265e4e +size 9446 diff --git a/maze/task2/maps/level5/img/77.png b/maze/task2/maps/level5/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..17023bbbd055427830fcfd176021fb2fc5d6910d --- /dev/null +++ b/maze/task2/maps/level5/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c1604221f2c1545f8c8d8a1a0557dd0c7d8300bc470a02052c41ccda1c3887 +size 8661 diff --git a/maze/task2/maps/level5/img/78.png b/maze/task2/maps/level5/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..77943c92fcc18208b2c04866482640cf8d60878a --- /dev/null +++ b/maze/task2/maps/level5/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6dab09d288576c613b7637832a8ef62905a8fbcdebfc4643bb8769312aea235 +size 9527 diff --git a/maze/task2/maps/level5/img/79.png b/maze/task2/maps/level5/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..10f84b792cf0272b8e2935bdf5b34df73c511225 --- /dev/null +++ b/maze/task2/maps/level5/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1c923ccfc9c84e6a32ca615eb232d4ba7bac6ea9b58c24a03a3c659accd86e +size 9435 diff --git a/maze/task2/maps/level5/img/8.png b/maze/task2/maps/level5/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b783d4f36e2171422604495ee36e749644ce4e2b --- /dev/null +++ b/maze/task2/maps/level5/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dbba447ec1e1cdb77f547897ea2c4a87baf7985ca4f97405a7f153585f7d9e +size 9520 diff --git a/maze/task2/maps/level5/img/80.png b/maze/task2/maps/level5/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..1586f4aff7fb2594a03a008e4b4f574655a3cef1 --- /dev/null +++ b/maze/task2/maps/level5/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b80a95c16d5d71c6aff2ecb3fca0271b74df7b899d58f236c72bbc598797404 +size 9386 diff --git a/maze/task2/maps/level5/img/81.png b/maze/task2/maps/level5/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..f1d4252a1d6d7384fa2b4a0e506afe7b37ab6672 --- /dev/null +++ b/maze/task2/maps/level5/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f1e8872ed343b6369bcaf12caad0b7bbf6914638c1ac4a5bc323f87cb04b44 +size 8666 diff --git a/maze/task2/maps/level5/img/82.png b/maze/task2/maps/level5/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e4afd98ab856f1b49e892d1c8959d0c45076f933 --- /dev/null +++ b/maze/task2/maps/level5/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b516f64ea6950be4ac225452351a46ea1244d2dee61ccfe891940be0be952e8 +size 9621 diff --git a/maze/task2/maps/level5/img/83.png b/maze/task2/maps/level5/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..9d5bc5c4e701c95cdc7dbcbd5f3a9d36631c2276 --- /dev/null +++ b/maze/task2/maps/level5/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e265e8586c0760f4b178188d2644e25cef16b45d64c35e9c4a1143e085f38e62 +size 9464 diff --git a/maze/task2/maps/level5/img/84.png b/maze/task2/maps/level5/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..f196be40a6adeaa2df84f74f46b155e1e3c8f6e4 --- /dev/null +++ b/maze/task2/maps/level5/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bc1191781890d53c8eee48f62121340484b45002b11c8eb0ec0206e306442c +size 10376 diff --git a/maze/task2/maps/level5/img/85.png b/maze/task2/maps/level5/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..2b04b8b4e6430b30c5505609dc642700d988be70 --- /dev/null +++ b/maze/task2/maps/level5/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc9d00dc9b80f1693dc7134f8ed438926305e024a5dc26e8e03ad82b4608f0b +size 9491 diff --git a/maze/task2/maps/level5/img/86.png b/maze/task2/maps/level5/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..41261413e7dd3228eeff5e7010d87cd323d1dfc3 --- /dev/null +++ b/maze/task2/maps/level5/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47102eacb760f4fbee2412de1a93f98ad00be71ad00f000fc2988421bdb3436c +size 10333 diff --git a/maze/task2/maps/level5/img/87.png b/maze/task2/maps/level5/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..85bb6ac7f98a3ebfa60287c5d24b22b4e0ef6a9e --- /dev/null +++ b/maze/task2/maps/level5/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10d1716db1f68b07b9f88683877ce6310e9522d698240818680714d9943d79c +size 11010 diff --git a/maze/task2/maps/level5/img/88.png b/maze/task2/maps/level5/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..de081357b6c4a2b26b5851c19eb10854a145dd4f --- /dev/null +++ b/maze/task2/maps/level5/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90cf310b1bf6cfd8effd458bca4e303b2ed000d38681671e452629b3b2619af +size 11179 diff --git a/maze/task2/maps/level5/img/89.png b/maze/task2/maps/level5/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c25e41839c4eed11a446578ad5562be1ffc0a0 --- /dev/null +++ b/maze/task2/maps/level5/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cf54b54206896d7d5fe558e2eb4ffb8997eb1bfbf89093d978b6ec2fc56f97 +size 9489 diff --git a/maze/task2/maps/level5/img/9.png b/maze/task2/maps/level5/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..58fed855e22af0897daeb41c04cd87048322e11b --- /dev/null +++ b/maze/task2/maps/level5/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba907e17952d0a68214808d067646f0d97ef64b27d9e453a9c505779f03553eb +size 11128 diff --git a/maze/task2/maps/level5/img/90.png b/maze/task2/maps/level5/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..d868ba390ef63a27c67b8ed8fa1df03e4b3c9aa6 --- /dev/null +++ b/maze/task2/maps/level5/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4924a8d8f382432a85b02c5cd97c3a867f0cf59915631b2b46d1ecf305774ab2 +size 9461 diff --git a/maze/task2/maps/level5/img/91.png b/maze/task2/maps/level5/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..72df204957c2f6e150306936eec2127d8f38ee2c --- /dev/null +++ b/maze/task2/maps/level5/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745eb23af8b3d9225ac39f3ae773055f5213aa78e483e1d286c52b9d3adc86d8 +size 9526 diff --git a/maze/task2/maps/level5/img/92.png b/maze/task2/maps/level5/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..211572a9103c01b8b3ab01c0083299ed0390d504 --- /dev/null +++ b/maze/task2/maps/level5/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3577483fd88f2b6c9bbbcac8e051da3bdf139d40a2cb3d1df1dcbfa171e7f6f9 +size 10280 diff --git a/maze/task2/maps/level5/img/93.png b/maze/task2/maps/level5/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5c6e234b9f935f08a4fd68f91bbcf291b90426 --- /dev/null +++ b/maze/task2/maps/level5/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce939a10cc069cf6712137df96d9eeecde0871626566111d58e23e4eaf2cdf35 +size 10407 diff --git a/maze/task2/maps/level5/img/94.png b/maze/task2/maps/level5/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..e376cb24370d7c7e2d69c113477336d19e863962 --- /dev/null +++ b/maze/task2/maps/level5/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b9510d39d3c594aafd9059788bb0cd5ff3d4095f045475c747b326e2fa8f1c +size 10227 diff --git a/maze/task2/maps/level5/img/95.png b/maze/task2/maps/level5/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..0d320adfcb78f2f7a70c293086a3c9e4657e8b1e --- /dev/null +++ b/maze/task2/maps/level5/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9652b51223f250b2f0ea990f04184cecd53a9510a88e23e5d8ab92a02d6d4e +size 10401 diff --git a/maze/task2/maps/level5/img/96.png b/maze/task2/maps/level5/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb818078dd96672793c3fb3f1db50b70b9f5699 --- /dev/null +++ b/maze/task2/maps/level5/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcdeccb4c9d837d4d60f212aa9ee78eee0f1133c5bfa8b4a3706e257989a7be +size 10447 diff --git a/maze/task2/maps/level5/img/97.png b/maze/task2/maps/level5/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..748a948c5cd41ad576941a954a691c45002651bc --- /dev/null +++ b/maze/task2/maps/level5/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77adb79d8bbc1588ad59543ed98151771cd492efc2dc07e86af7ebb5873a4a67 +size 9374 diff --git a/maze/task2/maps/level5/img/98.png b/maze/task2/maps/level5/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..feee65d74a4a5cf343e4c5c33bcedfdfc5e67658 --- /dev/null +++ b/maze/task2/maps/level5/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:504b1e9147d5348e52f7be1ad068e22b6e405149356a86e1f82270d0bee89fad +size 9500 diff --git a/maze/task2/maps/level5/img/99.png b/maze/task2/maps/level5/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..d6bd9ecf67aa1f7de93eebdc0e48abc85bb467bf --- /dev/null +++ b/maze/task2/maps/level5/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570147872954af71e957d7629438d5014810bb6ec0cb216e45e41a69154b7259 +size 8604 diff --git a/maze/task2/maps/level5/pure_text/0.txt b/maze/task2/maps/level5/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d7462603221ecb6cb543a980d631f78a9a66620 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/1.txt b/maze/task2/maps/level5/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d0c98b9c25646ad5073a63739579f3fdeea190 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/10.txt b/maze/task2/maps/level5/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..c57e03a22c3727d041e5d13c3a7afa763801af6e --- /dev/null +++ b/maze/task2/maps/level5/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/11.txt b/maze/task2/maps/level5/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d38f712e462147cb1149f8dc999e1b956ee71d9 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/12.txt b/maze/task2/maps/level5/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..165f44b11e38b580c20c46d28807b3caac0a2614 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 3, Column 2; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/13.txt b/maze/task2/maps/level5/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e6490a182330fd53f62392c91932efb8819c603 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/14.txt b/maze/task2/maps/level5/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdb8c4e2d57e515054c0dc54a61f4da7632ec321 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/15.txt b/maze/task2/maps/level5/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..64391656b5d60ff9aacf2687c8668f0263563427 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 1; Row 4, Column 3; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/16.txt b/maze/task2/maps/level5/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f58b60f80c34719dd14d0ad5666e0adf08a940c --- /dev/null +++ b/maze/task2/maps/level5/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/17.txt b/maze/task2/maps/level5/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..320b7d538d04af75ace729ab9d8049172bdb542d --- /dev/null +++ b/maze/task2/maps/level5/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/18.txt b/maze/task2/maps/level5/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4044583674f69b2b3ed307200090daaf0456687 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/19.txt b/maze/task2/maps/level5/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdcdf82f73b3e07de44c8668dad4def529e2afc1 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/2.txt b/maze/task2/maps/level5/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task2/maps/level5/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/20.txt b/maze/task2/maps/level5/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..67b933bd40c003ad8d713ed3a6fde5badcd130d9 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 2, Column 5; Row 3, Column 4; Row 4, Column 2; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/21.txt b/maze/task2/maps/level5/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..a23c755b2724e4e5a25a0c791532b4c4cc6dbaa0 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 5; Row 4, Column 1; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/22.txt b/maze/task2/maps/level5/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9a7ef211e4b4447e7d912456a49b35a9b0e3e25 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/23.txt b/maze/task2/maps/level5/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..c844e64d7762dd91510ab6d183d8fd81d2ac0ca3 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 5; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/24.txt b/maze/task2/maps/level5/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9898a8063d3b37859ea38c0e0799213ef632e58 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/25.txt b/maze/task2/maps/level5/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c422fe457c20c1d9786346577788d5ff2ce46c86 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/26.txt b/maze/task2/maps/level5/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ad0b8b4a2ac1a5b336d4194a697b79c7b57cab0 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/27.txt b/maze/task2/maps/level5/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2f4a77c87ae7d4b2308b6c58f8c2a49b2a0d260 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/28.txt b/maze/task2/maps/level5/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d94e848dad0619efab11ead4fb9890a95b4b77b --- /dev/null +++ b/maze/task2/maps/level5/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/29.txt b/maze/task2/maps/level5/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7f39ce847670a9e2ad0f6e3ccc6d47497707d06 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/3.txt b/maze/task2/maps/level5/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..69e73a8c23f7d57f3e51e58b7901e281cad0f7a0 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/30.txt b/maze/task2/maps/level5/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..f10c6cda751fe7118f206e8ef17468879d4fd780 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/31.txt b/maze/task2/maps/level5/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..804679724f787c34257c826415e2bb5bb09564a8 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/32.txt b/maze/task2/maps/level5/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4745609ba1e3dfff5dcc066231c7bb36111ae09 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/33.txt b/maze/task2/maps/level5/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..317866fa271b7cb8f592a79d593290ee707c29a3 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/34.txt b/maze/task2/maps/level5/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2f3b44cf7cdef6d23f1360559ce7b23db7d25db --- /dev/null +++ b/maze/task2/maps/level5/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/35.txt b/maze/task2/maps/level5/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e6eced5f42ddf7dfa970c3b2128ad1d2616aae --- /dev/null +++ b/maze/task2/maps/level5/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/36.txt b/maze/task2/maps/level5/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bee6b6b1bda9de2f32004899c06a6c0d20fea26 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; Row 3, Column 5; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/37.txt b/maze/task2/maps/level5/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..14dc6ad1878c1cc148d50bcd8a95104df0c82b3f --- /dev/null +++ b/maze/task2/maps/level5/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 5, Column 1; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/38.txt b/maze/task2/maps/level5/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f6fcf47b297b9d5b81443069c545e261d47b37b --- /dev/null +++ b/maze/task2/maps/level5/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/39.txt b/maze/task2/maps/level5/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..4838ec81c241d9d2115c7a0f9a838c1ffff5d2c4 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/4.txt b/maze/task2/maps/level5/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59ffc168cdb8212ad7ec3dbc639e372f3d7db13 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/40.txt b/maze/task2/maps/level5/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eb3e1a7f5c58d3b44b2dc075448192c95a41241 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/41.txt b/maze/task2/maps/level5/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9d190660b178c6419b5664db263949f2701555d --- /dev/null +++ b/maze/task2/maps/level5/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 4, Column 2; Row 4, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/42.txt b/maze/task2/maps/level5/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..acc253d02810ca4cd1a5959f93f519d878d2c962 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/43.txt b/maze/task2/maps/level5/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3232cf536abf875c58ecd4fa47049dffac73b440 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 5, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/44.txt b/maze/task2/maps/level5/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a8eab148a61fbbfd049d44c82f15df72199ccf0 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/45.txt b/maze/task2/maps/level5/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5c31d25061fd8a02a164070c2357d0e2ffe2566 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 4, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/46.txt b/maze/task2/maps/level5/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fc422e917a57def3a084a0be255bca7bb31f1c --- /dev/null +++ b/maze/task2/maps/level5/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 4, Column 1; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/47.txt b/maze/task2/maps/level5/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ab5f0d78652c951e50db6ff3f8feda882bfd9b1 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/48.txt b/maze/task2/maps/level5/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..98cdad21349b02ae62bac9c4b22adf90b0d5fe7c --- /dev/null +++ b/maze/task2/maps/level5/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/49.txt b/maze/task2/maps/level5/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..f165941f4c6c7fdf6ff230b23228102eed6ef450 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/5.txt b/maze/task2/maps/level5/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5a7c360f4d2a91544cb3423491ca285c9a175d1 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/50.txt b/maze/task2/maps/level5/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..da945a81c0cd21dc3e2ea76f58177594e3ded594 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/51.txt b/maze/task2/maps/level5/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b7bd5193551578f98b26bb714f9e3fda3e664e5 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; Row 3, Column 4; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/52.txt b/maze/task2/maps/level5/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b5c152c8ad130f3ccb9f423a4372ea6e1379b92 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; Row 4, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/53.txt b/maze/task2/maps/level5/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2106621473d9a89917c751ac90e082b2a91e6846 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/54.txt b/maze/task2/maps/level5/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e529cb4a7371b0d490d5ee9b3cfba74b0fc6b6f4 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 4, Column 4; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/55.txt b/maze/task2/maps/level5/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..b88bdbb92a49502e281210e0ed15d870c91a593c --- /dev/null +++ b/maze/task2/maps/level5/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/56.txt b/maze/task2/maps/level5/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..005a320e369800742c636e0f83c13c2f7776aad7 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 3, Column 2; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/57.txt b/maze/task2/maps/level5/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..80c622ea71676723763fead953c21d3b9309419c --- /dev/null +++ b/maze/task2/maps/level5/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 3; Row 4, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/58.txt b/maze/task2/maps/level5/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..278735b446a9a0b55d5fede1aa3a48534aa209b7 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/59.txt b/maze/task2/maps/level5/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..7801b488546a8358bf28d18020c6f1b861a9a295 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/6.txt b/maze/task2/maps/level5/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..090e9c1d826401003433a544b5a036f1e691e749 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/60.txt b/maze/task2/maps/level5/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e2e9cc573a97f137abd386cc43b4e735bc3d1c1 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/61.txt b/maze/task2/maps/level5/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..b98dce1a9af589870e64ae9e1f3c5cd5c17956a7 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/62.txt b/maze/task2/maps/level5/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e9c53d4fba2738db99715000abfde4fcc4e9676 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/63.txt b/maze/task2/maps/level5/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..22b0f90b754b1ae7a27984ef6a430922302fe814 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/64.txt b/maze/task2/maps/level5/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8a49cd41197a2b270bf7d2a0f316f7c857a6524 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/65.txt b/maze/task2/maps/level5/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc235faae4ff5518dacdbf2e6e53a651f2aab293 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 5; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/66.txt b/maze/task2/maps/level5/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..e95bd73d1e25a720fae1d120db11ee2b23c528ad --- /dev/null +++ b/maze/task2/maps/level5/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/67.txt b/maze/task2/maps/level5/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..e827b288f0aaf5b38e997f08c12df9b60d3755f7 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/68.txt b/maze/task2/maps/level5/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f736b45d2605c716f2c985d1a323cfcd5238b578 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 1; Row 5, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/69.txt b/maze/task2/maps/level5/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..225be629504b93f3710f79845bb8c392b1091099 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 5; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/7.txt b/maze/task2/maps/level5/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cad32fd2f3808ab35f15942baa29e28b809de924 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/70.txt b/maze/task2/maps/level5/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a8a92c1901bd5de504b373d1e1f071c97cf29e --- /dev/null +++ b/maze/task2/maps/level5/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/71.txt b/maze/task2/maps/level5/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d33fb283d0f725b06dd43fc912f439278b32eec --- /dev/null +++ b/maze/task2/maps/level5/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/72.txt b/maze/task2/maps/level5/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab34a307bf8236e1a41343be0a6e0150f7fefe06 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 5, Column 3; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/73.txt b/maze/task2/maps/level5/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..8419ea69e12459f716ea561fe38ed7a356f59b00 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 4; Row 5, Column 2; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/74.txt b/maze/task2/maps/level5/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdd0e3f63783c8e17e4af42ee4e0f42e0618ba04 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 3; Row 5, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/75.txt b/maze/task2/maps/level5/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..915d740f384ea81f4cf4c86382217b7a0290c305 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/76.txt b/maze/task2/maps/level5/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..1376792490f0233abff71e1e1c0a10b657829cfc --- /dev/null +++ b/maze/task2/maps/level5/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 5; Row 4, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/77.txt b/maze/task2/maps/level5/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dc66fa1b6370c5725cb89c2135994a92f220f26 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/78.txt b/maze/task2/maps/level5/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..46283791e54968360d69a2a369960cc47ff820f7 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/79.txt b/maze/task2/maps/level5/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a3915e8eea24dc20f7b204d597fd142ca57e4b9 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 4; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/8.txt b/maze/task2/maps/level5/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..08edb362cb22dbded0ea93839caca4600a4eeb16 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/80.txt b/maze/task2/maps/level5/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c2601566807138655578c6d3f9da699a2da739e --- /dev/null +++ b/maze/task2/maps/level5/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/81.txt b/maze/task2/maps/level5/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..18460f3c07b772398052d732aec7a18306a362fc --- /dev/null +++ b/maze/task2/maps/level5/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/82.txt b/maze/task2/maps/level5/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c2e984f1c166764303dc2f5a2ee3055093ded15 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/83.txt b/maze/task2/maps/level5/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dcee8bea439882bbd328f814da887b2bb0d47c0 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/84.txt b/maze/task2/maps/level5/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f6c3cc66727f13d4b4524c30cff09d5ec25ae60 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 4; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/85.txt b/maze/task2/maps/level5/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee2506d3c62f246176ebeaa3418f1cda7988af0b --- /dev/null +++ b/maze/task2/maps/level5/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/86.txt b/maze/task2/maps/level5/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..1314a63ac079354e310dd359ecc90968cd8e493e --- /dev/null +++ b/maze/task2/maps/level5/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/87.txt b/maze/task2/maps/level5/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..13a128ba76c3d80887181bada72a4c529a13bcd8 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 4, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/88.txt b/maze/task2/maps/level5/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a970f264f48d75000b066267644c8f5770aeb88c --- /dev/null +++ b/maze/task2/maps/level5/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 5, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/89.txt b/maze/task2/maps/level5/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..94a0d4b048c75ea846ff6f887120a36cdeecdfe0 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 1; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/9.txt b/maze/task2/maps/level5/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..e331e360b9da15923123b2957ca0cea7c92c20cc --- /dev/null +++ b/maze/task2/maps/level5/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/90.txt b/maze/task2/maps/level5/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..1eb6bfa6cca9aac78987377258148ad12e1690cc --- /dev/null +++ b/maze/task2/maps/level5/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/91.txt b/maze/task2/maps/level5/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c7e29965b5d3594eccb510a034911fed84da20e --- /dev/null +++ b/maze/task2/maps/level5/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/92.txt b/maze/task2/maps/level5/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e7f518e3f935adfbec1a2fe82d9353b221c89e6 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/93.txt b/maze/task2/maps/level5/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..99e8587ad626e4e76a45776ec0df7dfc107a9994 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 4; Row 3, Column 3; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/94.txt b/maze/task2/maps/level5/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f9219bae6ebde73625e6c9c8fb730c237ef09e --- /dev/null +++ b/maze/task2/maps/level5/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/95.txt b/maze/task2/maps/level5/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..92aa4557aa2d22124ee2b3641570ea46108af8bc --- /dev/null +++ b/maze/task2/maps/level5/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 5; Row 4, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/96.txt b/maze/task2/maps/level5/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7baa1028626f4a71c738ab423ba2ef35afd5ced8 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 4, Column 2; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/97.txt b/maze/task2/maps/level5/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..076c01ee6bacfe079d95faf6bc75c95481857fd9 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/98.txt b/maze/task2/maps/level5/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d00ab2fa70a2f05e4fe70829bb3f0bf3bf5ed94 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level5/pure_text/99.txt b/maze/task2/maps/level5/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e83fcadcc53346222267fe68467d7f53b2e90601 --- /dev/null +++ b/maze/task2/maps/level5/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level5/table/0.txt b/maze/task2/maps/level5/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..71a2cd22e79422b7d477a4141c2e19b05c3bd1f5 --- /dev/null +++ b/maze/task2/maps/level5/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/1.txt b/maze/task2/maps/level5/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9644ba4395c19da791aa1dca093cacf7aa2e64e1 --- /dev/null +++ b/maze/task2/maps/level5/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task2/maps/level5/table/10.txt b/maze/task2/maps/level5/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0211bef6e0797f5185afb256ab03b4c8aaff905 --- /dev/null +++ b/maze/task2/maps/level5/table/10.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task2/maps/level5/table/11.txt b/maze/task2/maps/level5/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e9dea2fee4a93278764065cf1da3935f20307bb --- /dev/null +++ b/maze/task2/maps/level5/table/11.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | diff --git a/maze/task2/maps/level5/table/12.txt b/maze/task2/maps/level5/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..946812b87c7105aa6fbfdf6be1118cf04d91e848 --- /dev/null +++ b/maze/task2/maps/level5/table/12.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/13.txt b/maze/task2/maps/level5/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea2d1614a3e9f80e878f1bd25d564f7871c1b2bb --- /dev/null +++ b/maze/task2/maps/level5/table/13.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/14.txt b/maze/task2/maps/level5/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..74c766497f20046fdef1a548c283f61b3c2045b6 --- /dev/null +++ b/maze/task2/maps/level5/table/14.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/15.txt b/maze/task2/maps/level5/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2ecfcc4b5fe86a6ed7a4113791bbbd3ab0ed872 --- /dev/null +++ b/maze/task2/maps/level5/table/15.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task2/maps/level5/table/16.txt b/maze/task2/maps/level5/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdaadcc660885d8cc036c56eb3d8c6166734d251 --- /dev/null +++ b/maze/task2/maps/level5/table/16.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level5/table/17.txt b/maze/task2/maps/level5/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..51cfae6b5cab1c10e4372fc6b0381b6e816248d3 --- /dev/null +++ b/maze/task2/maps/level5/table/17.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level5/table/18.txt b/maze/task2/maps/level5/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..a988766c4a28498fcf3f8af21390c2e490902b19 --- /dev/null +++ b/maze/task2/maps/level5/table/18.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/19.txt b/maze/task2/maps/level5/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..dddc27c4db2023865999858bf4fdbe566b5266f7 --- /dev/null +++ b/maze/task2/maps/level5/table/19.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task2/maps/level5/table/2.txt b/maze/task2/maps/level5/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task2/maps/level5/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task2/maps/level5/table/20.txt b/maze/task2/maps/level5/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..60f96585de5bee9fac2aca2fcaa5747c6122c86d --- /dev/null +++ b/maze/task2/maps/level5/table/20.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | diff --git a/maze/task2/maps/level5/table/21.txt b/maze/task2/maps/level5/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bdb7f9d38c363607edebca795b8efda2fd58943 --- /dev/null +++ b/maze/task2/maps/level5/table/21.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task2/maps/level5/table/22.txt b/maze/task2/maps/level5/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5b15e5f4ef092a1f78e2eb5159296b39c695bfa --- /dev/null +++ b/maze/task2/maps/level5/table/22.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | diff --git a/maze/task2/maps/level5/table/23.txt b/maze/task2/maps/level5/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3291cd013d78e809d904f9dfab9660d6d51eb932 --- /dev/null +++ b/maze/task2/maps/level5/table/23.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task2/maps/level5/table/24.txt b/maze/task2/maps/level5/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bbb681c3461cff5d1235131dc0199e120a5cbb7 --- /dev/null +++ b/maze/task2/maps/level5/table/24.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level5/table/25.txt b/maze/task2/maps/level5/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2ecfa107864966d52a237d3a7578f7c4255db56 --- /dev/null +++ b/maze/task2/maps/level5/table/25.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level5/table/26.txt b/maze/task2/maps/level5/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7acf6c97551025a47e8207046e1bfd34ba5eaae9 --- /dev/null +++ b/maze/task2/maps/level5/table/26.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/27.txt b/maze/task2/maps/level5/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..78bbcfe6501df2fa4d5998e438299642be5337aa --- /dev/null +++ b/maze/task2/maps/level5/table/27.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | * | _ | diff --git a/maze/task2/maps/level5/table/28.txt b/maze/task2/maps/level5/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..60ac347fd4a84043ca0e33430e4979c51a670c85 --- /dev/null +++ b/maze/task2/maps/level5/table/28.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/29.txt b/maze/task2/maps/level5/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..7012bced8ae0b0e4469a432bc7ecd768576f1205 --- /dev/null +++ b/maze/task2/maps/level5/table/29.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/3.txt b/maze/task2/maps/level5/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9afb12ea5b879f7d3d1aee81db7632744fe5e1 --- /dev/null +++ b/maze/task2/maps/level5/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/30.txt b/maze/task2/maps/level5/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cb1ae58ba0ccd2d81caa01dd388fbacd7ef701b --- /dev/null +++ b/maze/task2/maps/level5/table/30.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | * | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task2/maps/level5/table/31.txt b/maze/task2/maps/level5/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..79fab8a93e45cc567a9c8e57d28bfdde645c5f7b --- /dev/null +++ b/maze/task2/maps/level5/table/31.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | diff --git a/maze/task2/maps/level5/table/32.txt b/maze/task2/maps/level5/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e596765f71f84682ad2c57d6303627b783f01b2 --- /dev/null +++ b/maze/task2/maps/level5/table/32.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/33.txt b/maze/task2/maps/level5/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..419c8042381b1781ac2fad374e1c39d0b7a7ad54 --- /dev/null +++ b/maze/task2/maps/level5/table/33.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task2/maps/level5/table/34.txt b/maze/task2/maps/level5/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb7b078d5ac223526d7cfcd8cf89070390f649ea --- /dev/null +++ b/maze/task2/maps/level5/table/34.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/35.txt b/maze/task2/maps/level5/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f18b432ca7b113f763e08ee6dc6532333bf5715 --- /dev/null +++ b/maze/task2/maps/level5/table/35.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/36.txt b/maze/task2/maps/level5/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..07f99a8a1d5fc503d84c1acd816d73e8d8b8169b --- /dev/null +++ b/maze/task2/maps/level5/table/36.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level5/table/37.txt b/maze/task2/maps/level5/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..adabe4db6cc43662fb78296b6404b89fd88c9140 --- /dev/null +++ b/maze/task2/maps/level5/table/37.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | diff --git a/maze/task2/maps/level5/table/38.txt b/maze/task2/maps/level5/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3846e4c3e55d0e44804705a43989b2e23cf8b0e0 --- /dev/null +++ b/maze/task2/maps/level5/table/38.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task2/maps/level5/table/39.txt b/maze/task2/maps/level5/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..b56378bb0df60965b7dfd00ff119179cb6064d8e --- /dev/null +++ b/maze/task2/maps/level5/table/39.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task2/maps/level5/table/4.txt b/maze/task2/maps/level5/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a319701482090faefd8ce684edd4b3d512e35984 --- /dev/null +++ b/maze/task2/maps/level5/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/40.txt b/maze/task2/maps/level5/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce8ccc4ddf33dbe61523be3e2bf67ee0cac8e4bc --- /dev/null +++ b/maze/task2/maps/level5/table/40.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/41.txt b/maze/task2/maps/level5/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..a69ba0fd6e108e65971aeec453ee42c21f1cc200 --- /dev/null +++ b/maze/task2/maps/level5/table/41.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/42.txt b/maze/task2/maps/level5/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fca2c0c17f61f58dcf6b6299e1ce5c42eb799ce --- /dev/null +++ b/maze/task2/maps/level5/table/42.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | # | * | _ | _ | diff --git a/maze/task2/maps/level5/table/43.txt b/maze/task2/maps/level5/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..bba5c75ca3accaaa374a79977ffb21046bb28e7b --- /dev/null +++ b/maze/task2/maps/level5/table/43.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/44.txt b/maze/task2/maps/level5/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..80de0959c036469c32805ef6549d2b1ed4c6bedb --- /dev/null +++ b/maze/task2/maps/level5/table/44.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | _ | @ | _ | # | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/45.txt b/maze/task2/maps/level5/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c18b3e25aecbca606d0717b194804c0ab956f3e --- /dev/null +++ b/maze/task2/maps/level5/table/45.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level5/table/46.txt b/maze/task2/maps/level5/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..52e9ac1f1c0a84951c51f3ae469355badac706b3 --- /dev/null +++ b/maze/task2/maps/level5/table/46.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | diff --git a/maze/task2/maps/level5/table/47.txt b/maze/task2/maps/level5/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..5af81234f05f77e8f6ca8fc2676ed5398e0570b4 --- /dev/null +++ b/maze/task2/maps/level5/table/47.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/48.txt b/maze/task2/maps/level5/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..e898994592d1711c0d96faca5000b9c57955a9b6 --- /dev/null +++ b/maze/task2/maps/level5/table/48.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | @ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | diff --git a/maze/task2/maps/level5/table/49.txt b/maze/task2/maps/level5/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..aba73571fcfc3bae5e9941c21772f6fa26131013 --- /dev/null +++ b/maze/task2/maps/level5/table/49.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level5/table/5.txt b/maze/task2/maps/level5/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da45b1e61a5685cb46325f1a7c0f88321df2ae --- /dev/null +++ b/maze/task2/maps/level5/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task2/maps/level5/table/50.txt b/maze/task2/maps/level5/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cd186e80b157cee5759440638299a74c844fc7a --- /dev/null +++ b/maze/task2/maps/level5/table/50.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | diff --git a/maze/task2/maps/level5/table/51.txt b/maze/task2/maps/level5/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a0815eef8fa94d279ec60f49d1f91ec6a6b1448 --- /dev/null +++ b/maze/task2/maps/level5/table/51.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/52.txt b/maze/task2/maps/level5/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3b0d4c5cf6ab4d90aac7f9d9c458533c32b4393 --- /dev/null +++ b/maze/task2/maps/level5/table/52.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/53.txt b/maze/task2/maps/level5/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d5ee7e95f64becee9861bbaa79d15ef29571b16 --- /dev/null +++ b/maze/task2/maps/level5/table/53.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | _ | _ | +| Row 2 | # | @ | # | _ | _ | +| Row 3 | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task2/maps/level5/table/54.txt b/maze/task2/maps/level5/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e81c6d453858ec23b49ec7bf6b3f642608e809c --- /dev/null +++ b/maze/task2/maps/level5/table/54.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | diff --git a/maze/task2/maps/level5/table/55.txt b/maze/task2/maps/level5/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2e6d7933b828afbb9bca303bc84e643f00ef395 --- /dev/null +++ b/maze/task2/maps/level5/table/55.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level5/table/56.txt b/maze/task2/maps/level5/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba5afdba587409ce6e45db7f6dda1d0b659c8ec1 --- /dev/null +++ b/maze/task2/maps/level5/table/56.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task2/maps/level5/table/57.txt b/maze/task2/maps/level5/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6647db1330aed2c4002abe3f7ae3882ef94c8e96 --- /dev/null +++ b/maze/task2/maps/level5/table/57.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task2/maps/level5/table/58.txt b/maze/task2/maps/level5/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4facf5f7b9bd004d8c1c5545d862b78a8ed747eb --- /dev/null +++ b/maze/task2/maps/level5/table/58.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/59.txt b/maze/task2/maps/level5/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..a944527c0bbc1386a4896c78deb1038293630f88 --- /dev/null +++ b/maze/task2/maps/level5/table/59.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task2/maps/level5/table/6.txt b/maze/task2/maps/level5/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2521dc5a2e4b78cd93244c384377b6d6b0823192 --- /dev/null +++ b/maze/task2/maps/level5/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/60.txt b/maze/task2/maps/level5/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..00def527d41c997c53038f0a9dd2efdbfda5a2cf --- /dev/null +++ b/maze/task2/maps/level5/table/60.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | _ | _ | +| Row 2 | # | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/61.txt b/maze/task2/maps/level5/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..25a949c147d27e07c25bfdb4a30d6ab10cb65b36 --- /dev/null +++ b/maze/task2/maps/level5/table/61.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/62.txt b/maze/task2/maps/level5/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..66052c016a4f346ecda19ab98dc7c648f20de650 --- /dev/null +++ b/maze/task2/maps/level5/table/62.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task2/maps/level5/table/63.txt b/maze/task2/maps/level5/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb2b3236ef80dd12bc6c5e05acb7fd8f742813b3 --- /dev/null +++ b/maze/task2/maps/level5/table/63.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | @ | _ | diff --git a/maze/task2/maps/level5/table/64.txt b/maze/task2/maps/level5/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f61479e7d8140061c4b760334409912a1e6f628 --- /dev/null +++ b/maze/task2/maps/level5/table/64.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/65.txt b/maze/task2/maps/level5/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1278d25010ff27a783403263a4a2c870393ae901 --- /dev/null +++ b/maze/task2/maps/level5/table/65.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task2/maps/level5/table/66.txt b/maze/task2/maps/level5/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5da0ff14dc3fb5998a4a229eedca0c5f6ed590e --- /dev/null +++ b/maze/task2/maps/level5/table/66.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | @ | * | # | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/67.txt b/maze/task2/maps/level5/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..34ce4a21faf5689ff7ea97ad691d943c83be3c2f --- /dev/null +++ b/maze/task2/maps/level5/table/67.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/68.txt b/maze/task2/maps/level5/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a40ccda9898fe8360fc6c0b63390b6fc383a81 --- /dev/null +++ b/maze/task2/maps/level5/table/68.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level5/table/69.txt b/maze/task2/maps/level5/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..82d0f84ca02b6dbadfadf946749eec578f795f01 --- /dev/null +++ b/maze/task2/maps/level5/table/69.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level5/table/7.txt b/maze/task2/maps/level5/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc02ca1df883fa37a50dfdd0cd46b7626d287d31 --- /dev/null +++ b/maze/task2/maps/level5/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task2/maps/level5/table/70.txt b/maze/task2/maps/level5/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4404e2781df99c6580eeb74e3cfdecd6a84dbe2 --- /dev/null +++ b/maze/task2/maps/level5/table/70.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/71.txt b/maze/task2/maps/level5/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..f629a7fc01107700c1b7bece7858243a5a0e356b --- /dev/null +++ b/maze/task2/maps/level5/table/71.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level5/table/72.txt b/maze/task2/maps/level5/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..68456a7ca7d73e7ea391a830b43239e28fc85082 --- /dev/null +++ b/maze/task2/maps/level5/table/72.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | diff --git a/maze/task2/maps/level5/table/73.txt b/maze/task2/maps/level5/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..db68a4d37d6554ce78cbe7ef6c34f4a5afa11b33 --- /dev/null +++ b/maze/task2/maps/level5/table/73.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/74.txt b/maze/task2/maps/level5/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..3faabd2620240c61d2bc74842cf5af9fa9be7eb6 --- /dev/null +++ b/maze/task2/maps/level5/table/74.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/75.txt b/maze/task2/maps/level5/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c5cd02d4849b9732bff70934bf3ea07e35f6b06 --- /dev/null +++ b/maze/task2/maps/level5/table/75.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | * | _ | _ | +| Row 3 | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task2/maps/level5/table/76.txt b/maze/task2/maps/level5/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a6b9654e17b3b50352be483d07a713827f110b --- /dev/null +++ b/maze/task2/maps/level5/table/76.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task2/maps/level5/table/77.txt b/maze/task2/maps/level5/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fb899cc097e94935ef92f986f60d0143565e241 --- /dev/null +++ b/maze/task2/maps/level5/table/77.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/78.txt b/maze/task2/maps/level5/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4a3d4a32feec93bd6ac7418221c3f0999354fbb --- /dev/null +++ b/maze/task2/maps/level5/table/78.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | diff --git a/maze/task2/maps/level5/table/79.txt b/maze/task2/maps/level5/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a64e850682e33895bc152ffe44465805ed1634 --- /dev/null +++ b/maze/task2/maps/level5/table/79.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level5/table/8.txt b/maze/task2/maps/level5/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..497f826729be29a0fd82e501b50af79afaa11b73 --- /dev/null +++ b/maze/task2/maps/level5/table/8.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/80.txt b/maze/task2/maps/level5/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c249a404d1d948c41a2c5939d3e26a428b1a75f --- /dev/null +++ b/maze/task2/maps/level5/table/80.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | * | @ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/81.txt b/maze/task2/maps/level5/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..47da920aba24b5ce2751d433d9e64b8e8b4c4306 --- /dev/null +++ b/maze/task2/maps/level5/table/81.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/82.txt b/maze/task2/maps/level5/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..88bda35ba160112dff20969fe1697ae01ee5ede6 --- /dev/null +++ b/maze/task2/maps/level5/table/82.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/83.txt b/maze/task2/maps/level5/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..1410fb2f335cbebbab12502b46ca21277dcbb2e0 --- /dev/null +++ b/maze/task2/maps/level5/table/83.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | # | diff --git a/maze/task2/maps/level5/table/84.txt b/maze/task2/maps/level5/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..45d952294d09a3f547fa4b6fc6187d865fc7f09a --- /dev/null +++ b/maze/task2/maps/level5/table/84.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | # | diff --git a/maze/task2/maps/level5/table/85.txt b/maze/task2/maps/level5/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..752644e6113eda553503ebaff8d3027fecbf8798 --- /dev/null +++ b/maze/task2/maps/level5/table/85.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/86.txt b/maze/task2/maps/level5/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..549158c64ed96431696106b86baad27932dbe374 --- /dev/null +++ b/maze/task2/maps/level5/table/86.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/87.txt b/maze/task2/maps/level5/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..17e8384b0a94fdc511f2fa0f1e25d28edf0c44f5 --- /dev/null +++ b/maze/task2/maps/level5/table/87.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | * | @ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level5/table/88.txt b/maze/task2/maps/level5/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d9706ff6bbf8e975d8e0896c4cde96fccd9d1ab --- /dev/null +++ b/maze/task2/maps/level5/table/88.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/89.txt b/maze/task2/maps/level5/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f9d067993b4e167b920e279ddd055052e84c911 --- /dev/null +++ b/maze/task2/maps/level5/table/89.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task2/maps/level5/table/9.txt b/maze/task2/maps/level5/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5ac58126560887cf9902b5a659a786e16e5de26 --- /dev/null +++ b/maze/task2/maps/level5/table/9.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task2/maps/level5/table/90.txt b/maze/task2/maps/level5/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..663ea411111cc2efcd9fa95e302388de6bb2d85e --- /dev/null +++ b/maze/task2/maps/level5/table/90.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/91.txt b/maze/task2/maps/level5/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1b2831af4f52d4ba82532f39a69fd443df65b12 --- /dev/null +++ b/maze/task2/maps/level5/table/91.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task2/maps/level5/table/92.txt b/maze/task2/maps/level5/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..f127bc7294e35835c52ce2713dfbd07d288abe4a --- /dev/null +++ b/maze/task2/maps/level5/table/92.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level5/table/93.txt b/maze/task2/maps/level5/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3a551f73f6ed945abc68ec321d51c622f8214d3 --- /dev/null +++ b/maze/task2/maps/level5/table/93.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task2/maps/level5/table/94.txt b/maze/task2/maps/level5/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd36699cc97c9e1261cc3c2beb6509ebfd0fc54f --- /dev/null +++ b/maze/task2/maps/level5/table/94.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | diff --git a/maze/task2/maps/level5/table/95.txt b/maze/task2/maps/level5/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cfddeed458210d22a1fdd41d27cfde9b2e2c62f --- /dev/null +++ b/maze/task2/maps/level5/table/95.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | diff --git a/maze/task2/maps/level5/table/96.txt b/maze/task2/maps/level5/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d3617d2351609c05cc950f557011977d2a0ea8 --- /dev/null +++ b/maze/task2/maps/level5/table/96.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | @ | _ | diff --git a/maze/task2/maps/level5/table/97.txt b/maze/task2/maps/level5/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..18326e3e099f68517b35e02e857b8a1073462cda --- /dev/null +++ b/maze/task2/maps/level5/table/97.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level5/table/98.txt b/maze/task2/maps/level5/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..31107581bdcc9fdb56ca838c91627ed423008483 --- /dev/null +++ b/maze/task2/maps/level5/table/98.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | * | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level5/table/99.txt b/maze/task2/maps/level5/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..33d7938b7066fd84a556f9f4f58d83b891a7e093 --- /dev/null +++ b/maze/task2/maps/level5/table/99.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/img/0.png b/maze/task2/maps/level6/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6ce6b0616b8a8822fd29a0b16ef557647dd1a278 --- /dev/null +++ b/maze/task2/maps/level6/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7cf5f68f30117e9be92cfd1cfd618e573b337d330ff07293e9214cf2163a39 +size 13142 diff --git a/maze/task2/maps/level6/img/1.png b/maze/task2/maps/level6/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cccb347239f041d67a44ea4212cb86f63c92505d --- /dev/null +++ b/maze/task2/maps/level6/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8af474044334f018253e83212b7f1722f431363771a93011f57ef59ab4433a0f +size 12833 diff --git a/maze/task2/maps/level6/img/10.png b/maze/task2/maps/level6/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ad317fc42fcfdc0b38aa39983dd132f2f2a8b0e9 --- /dev/null +++ b/maze/task2/maps/level6/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6c90f70489fb8d6691a2f1e0c076320e5bf58dbdaadd4513850309c3ed74e3 +size 11362 diff --git a/maze/task2/maps/level6/img/11.png b/maze/task2/maps/level6/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..787bb1470069d5fec582dca64f33e94261bd15cc --- /dev/null +++ b/maze/task2/maps/level6/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb20950e3eade98502495e3864e6e544e4f3dcd64ec012e7a87b85f18dffac9 +size 12084 diff --git a/maze/task2/maps/level6/img/12.png b/maze/task2/maps/level6/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..662f1b9750d8b1181c573c29d6fff8583bae577d --- /dev/null +++ b/maze/task2/maps/level6/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e24158bd3e44791c9dc08db302871293dd8017ff9ad60a170255301b7ac082f +size 13001 diff --git a/maze/task2/maps/level6/img/13.png b/maze/task2/maps/level6/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e8478d158cb0937c291a8bb1fc7bfda471deed --- /dev/null +++ b/maze/task2/maps/level6/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf75dd4c390ac34674c1d6853775fa03d7d79c9204fc15934bafa0db11eb8e45 +size 12069 diff --git a/maze/task2/maps/level6/img/14.png b/maze/task2/maps/level6/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4c611b3a4faa66ee1be03f5e222c44f8b214b7b0 --- /dev/null +++ b/maze/task2/maps/level6/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09764a311ab1a7d583c14683bef2d76dd04ead47d8061e7514484ce996732ab +size 13176 diff --git a/maze/task2/maps/level6/img/15.png b/maze/task2/maps/level6/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca2773dde9225b8b274878a4f2ef90e099b5946 --- /dev/null +++ b/maze/task2/maps/level6/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5386ac909638fcf3dabea3ef63c6f5a007553a99c49a78f4a0e009d7ad36c399 +size 11348 diff --git a/maze/task2/maps/level6/img/16.png b/maze/task2/maps/level6/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..51e4a102340046c70fdf5cdc8ecc771016ba2631 --- /dev/null +++ b/maze/task2/maps/level6/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:280f85497359355dd4421b18fc1bfd1b0b84e466c262fa01c3ef16f87b749b39 +size 13050 diff --git a/maze/task2/maps/level6/img/17.png b/maze/task2/maps/level6/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..54cd853d45678313764898260e6ab149a477713b --- /dev/null +++ b/maze/task2/maps/level6/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ebcdac8617a09127a1b3205d63b534ed9c3c20563b871387bfe117a6838294 +size 13023 diff --git a/maze/task2/maps/level6/img/18.png b/maze/task2/maps/level6/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..919d42f870c1cacb83662458d3a610d09afebda8 --- /dev/null +++ b/maze/task2/maps/level6/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20f7a9dc58fb94b2dc59c754a42101a3d73abedaa67c332320fba93abcfe78a +size 12380 diff --git a/maze/task2/maps/level6/img/19.png b/maze/task2/maps/level6/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..c010437230ac06eb797d3d1fd0b5700d98aa946c --- /dev/null +++ b/maze/task2/maps/level6/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f732126ef840e7d4ab4abf053af9340767f6b1e20187e116a1291bba4b2e2b3 +size 12290 diff --git a/maze/task2/maps/level6/img/2.png b/maze/task2/maps/level6/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..22c94c7e222fb0e8345902ac4c0d0a1adb278193 --- /dev/null +++ b/maze/task2/maps/level6/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3741ed4312e5c3563f26d483cd4d2effaba0bf0c924e4ad324a32882c7ac48 +size 12373 diff --git a/maze/task2/maps/level6/img/20.png b/maze/task2/maps/level6/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..e4526b9c90ad9c8e8e0ffe585bef84f13afc9073 --- /dev/null +++ b/maze/task2/maps/level6/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5e67bc3aee15111e4d358a59e76d94358c9092837cfc982f7d14a647d758e6 +size 13093 diff --git a/maze/task2/maps/level6/img/21.png b/maze/task2/maps/level6/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..9fe590ca3a0832eae7a5b3146e098b373ea36d24 --- /dev/null +++ b/maze/task2/maps/level6/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64090f5ba7eddbac010117de5dda1336f2a248b76820160020c45977e375d4bd +size 11247 diff --git a/maze/task2/maps/level6/img/22.png b/maze/task2/maps/level6/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..c24e11b6539bbb7384451582399d746cd1d2f914 --- /dev/null +++ b/maze/task2/maps/level6/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0cdc3e03c557b4fe82936dc9fee3af8b49269652013031060412c01e25ea5f +size 12858 diff --git a/maze/task2/maps/level6/img/23.png b/maze/task2/maps/level6/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..15679316a40a4d400ae233f61db4b18b5aea85c6 --- /dev/null +++ b/maze/task2/maps/level6/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46f3728bd3f61289a5dcec3c08dc80762fc8b77332741fcdb9d0d0021ab6ed9 +size 12237 diff --git a/maze/task2/maps/level6/img/24.png b/maze/task2/maps/level6/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..d513e02acadc743ba3dbfa085edcb0a737076a73 --- /dev/null +++ b/maze/task2/maps/level6/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686390842f6d81617e7058b401ed2f03b08459f1f5fd2ce33bca966c00ca9666 +size 12917 diff --git a/maze/task2/maps/level6/img/25.png b/maze/task2/maps/level6/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..c9ac4dfb7deb00b1a947f5ff83892ba54233bea2 --- /dev/null +++ b/maze/task2/maps/level6/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e3905f875a22250bb8ae5d794f54ae010773eb0569d1229e4e04b4bfc47e56 +size 13035 diff --git a/maze/task2/maps/level6/img/26.png b/maze/task2/maps/level6/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..2788ad465e8c206b92326d59f08ee66be3b1abc3 --- /dev/null +++ b/maze/task2/maps/level6/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a252201fc4ec045b14d21a7ee8248288a86537341af4ebfd2d3ceeaab4be8f64 +size 13146 diff --git a/maze/task2/maps/level6/img/27.png b/maze/task2/maps/level6/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..430c756a9840d04b2ab6be555b6d51105f78856d --- /dev/null +++ b/maze/task2/maps/level6/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2decf00a05901a9bb258b59f3ad709402e4efc861da52b8fe6aa0115e8a928 +size 11314 diff --git a/maze/task2/maps/level6/img/28.png b/maze/task2/maps/level6/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..8c0419257ca3ba81baa4a372472189e1f724bedc --- /dev/null +++ b/maze/task2/maps/level6/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45f53aa09bd68a307b970ceda1b409e9f841607f6102783aa19d92909fc1a51 +size 10504 diff --git a/maze/task2/maps/level6/img/29.png b/maze/task2/maps/level6/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..aecd246f3f44d010dc52edad877cb1794cc8381b --- /dev/null +++ b/maze/task2/maps/level6/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ef5c388df3de63f9af71ba14e1932519aa0dd8f03ad21114de58828139251c +size 11269 diff --git a/maze/task2/maps/level6/img/3.png b/maze/task2/maps/level6/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..655d9482b22ba184453ebfc4388606bde0ba2ada --- /dev/null +++ b/maze/task2/maps/level6/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e26501e633b3ac07abd93890cddc88173afbf30d7b94725610115ac198e8d7f +size 12417 diff --git a/maze/task2/maps/level6/img/30.png b/maze/task2/maps/level6/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..c6585f035bccdd8daf6418a13bb5582b117fdbf3 --- /dev/null +++ b/maze/task2/maps/level6/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0b908c0815fb8d44c0e14070dd6b35ee515f7153d382b4b8ac83787ee62010 +size 13976 diff --git a/maze/task2/maps/level6/img/31.png b/maze/task2/maps/level6/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8772c26d68c142572a3840486fdb366cdba9a00b --- /dev/null +++ b/maze/task2/maps/level6/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f24dfcb35c43781fa249ebe66b1254ddc5e4e2cafc0bebd02b03f371361bd7f1 +size 13106 diff --git a/maze/task2/maps/level6/img/32.png b/maze/task2/maps/level6/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ae7737f299906d74e9ecf1b50374b5f4b769db --- /dev/null +++ b/maze/task2/maps/level6/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14bbc674cb87f3ab7cc83227ea1e332d109f42b2f303e331362b8bfd3b7229d +size 13070 diff --git a/maze/task2/maps/level6/img/33.png b/maze/task2/maps/level6/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..d3e19eb7f921d20aacb796cd806bc93e60ad5718 --- /dev/null +++ b/maze/task2/maps/level6/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a9f056d0609827c07e4c22c220e233e8a1dfa174bfa7178344d811f0fd6e26 +size 13150 diff --git a/maze/task2/maps/level6/img/34.png b/maze/task2/maps/level6/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..21c282d2f3aa3113a08f2e8ca70559836889fb78 --- /dev/null +++ b/maze/task2/maps/level6/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cebe3a8a52a1a1ed89675545abd8eb2c8ab4ee35133ded2dd2c89ccaad8e11 +size 13065 diff --git a/maze/task2/maps/level6/img/35.png b/maze/task2/maps/level6/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..f1ccbbc4a1207dd013506b561696f0b9bc0b6842 --- /dev/null +++ b/maze/task2/maps/level6/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4eb63f3c3649624f170da52a1abd7b9b254d74077b8ebbbda022c059bd3a29f +size 12193 diff --git a/maze/task2/maps/level6/img/36.png b/maze/task2/maps/level6/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..a25240fdfa0b6c213e473b85e64935059da37d76 --- /dev/null +++ b/maze/task2/maps/level6/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953a15f194008b4b96cb0387c58d8d9a022388ea76d8a170d9664212675c541c +size 11440 diff --git a/maze/task2/maps/level6/img/37.png b/maze/task2/maps/level6/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..a03e968a14a970357eb8a7d77ebc10e2a3104b11 --- /dev/null +++ b/maze/task2/maps/level6/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ed6c6975e3367eb17d83cef67734d14dca6c100afe64005f6889a8c193a84c +size 13913 diff --git a/maze/task2/maps/level6/img/38.png b/maze/task2/maps/level6/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..1cf9db57394ff2fc1ba76f3996f98aeac3c83df1 --- /dev/null +++ b/maze/task2/maps/level6/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84060f1d8526be933005b8a016598526a0a2928b215dc9f2fe8bdd7d6deceb5 +size 12987 diff --git a/maze/task2/maps/level6/img/39.png b/maze/task2/maps/level6/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..9dec12f5390cad105ca6430fae7dc1d25595220f --- /dev/null +++ b/maze/task2/maps/level6/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ca1235566c28f8b70ff0d01de93e01f1cf1db8ca65ff2825c1da1b99cf09e4 +size 12185 diff --git a/maze/task2/maps/level6/img/4.png b/maze/task2/maps/level6/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..be5176ee40b195a18aea9d1cb302fefe535e9fa3 --- /dev/null +++ b/maze/task2/maps/level6/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ea46b5bfbe13ecd93a53def1fc3f28a1cd76cbbaa1a9e7e415e35e03504f27 +size 12205 diff --git a/maze/task2/maps/level6/img/40.png b/maze/task2/maps/level6/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..14fe6719a01c217dd9992d5268ac18af9bb3d7e0 --- /dev/null +++ b/maze/task2/maps/level6/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dc61c6a99d89a2085be687609dc968f92cbac4935d5cb2e99a60e04233bfe3 +size 12976 diff --git a/maze/task2/maps/level6/img/41.png b/maze/task2/maps/level6/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..76098cc733d601d1f5346674aad4b698ba150037 --- /dev/null +++ b/maze/task2/maps/level6/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5095109a55300ca1e009cecc4b3115f1fc8f3320a758de8688a94e30fc5012d3 +size 12774 diff --git a/maze/task2/maps/level6/img/42.png b/maze/task2/maps/level6/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..980323f734dae8d2aa2216286a2b13b9eb888514 --- /dev/null +++ b/maze/task2/maps/level6/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fe71241facbb224d23448c0b7c0a58a55b731f498d385b0fc8cc99509f90307 +size 13054 diff --git a/maze/task2/maps/level6/img/43.png b/maze/task2/maps/level6/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..61efcae60cd06d393679b3891cea5a42286ca400 --- /dev/null +++ b/maze/task2/maps/level6/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6c16cf0749c5994549b95064f7e97d3ecc5645838441468b44a4fdd7574c92 +size 12270 diff --git a/maze/task2/maps/level6/img/44.png b/maze/task2/maps/level6/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..72449924e5fdd4bed20220cd3d9a09161546be1f --- /dev/null +++ b/maze/task2/maps/level6/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213a2ef2d5eb04fab02403d1b359c9fcda5a6a4a5c339127cb31093d3ce9df4b +size 13885 diff --git a/maze/task2/maps/level6/img/45.png b/maze/task2/maps/level6/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..c287be7f39d76b030f514e968dd417391aff5a1d --- /dev/null +++ b/maze/task2/maps/level6/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9890730ee54865c50f157b45ccf589671d5f569c876ada77544d17e47d82198f +size 12406 diff --git a/maze/task2/maps/level6/img/46.png b/maze/task2/maps/level6/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..10b1b9b438784b4f2bb968626cd23e01189a8fe4 --- /dev/null +++ b/maze/task2/maps/level6/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbfd54d3a852270c7556aeed32a88ac911b9c2724292e95a2d1eafe633a8cd5 +size 12247 diff --git a/maze/task2/maps/level6/img/47.png b/maze/task2/maps/level6/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..39615090f31df6781b3d64eef36937e8ce3d9851 --- /dev/null +++ b/maze/task2/maps/level6/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2352a619a6e49a908e70feffaee37dbd700f6d5c55aad49b30eb5812e9307b +size 12916 diff --git a/maze/task2/maps/level6/img/48.png b/maze/task2/maps/level6/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..e8369e701cafcd2291abc6fcb1ff00a40ad663a4 --- /dev/null +++ b/maze/task2/maps/level6/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:117a20eaa9f6156b127385e3a858846b8c7c522dc64b169ef6b46a2a3f572c2a +size 11382 diff --git a/maze/task2/maps/level6/img/49.png b/maze/task2/maps/level6/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..b00741a6d71537ef50bfdf8d80ac02d6c4671229 --- /dev/null +++ b/maze/task2/maps/level6/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a8c34b88947218c12e76f8aed6d1fae7a485cbef76d5decc024acc2847e022 +size 10399 diff --git a/maze/task2/maps/level6/img/5.png b/maze/task2/maps/level6/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6cd31184401c8617eb9d30560adc402be0a5f7e2 --- /dev/null +++ b/maze/task2/maps/level6/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937700fbbacd6f1d41ab7b37439b776947c420c7767c3f825ce373549a84d16 +size 11311 diff --git a/maze/task2/maps/level6/img/50.png b/maze/task2/maps/level6/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..123fea792fde193abcfff5ee0d6d13230aef3dbc --- /dev/null +++ b/maze/task2/maps/level6/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974b7f5f15d665520352c384205c402e1d2f461d64739bd5d84411e50de1f6e0 +size 12198 diff --git a/maze/task2/maps/level6/img/51.png b/maze/task2/maps/level6/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..b4664700b36d0607890dcdbbaf24fdf050d4a932 --- /dev/null +++ b/maze/task2/maps/level6/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f074889e290c045792cfe25c99c3a052f3a853e609d742c17339ce033f29a52c +size 12827 diff --git a/maze/task2/maps/level6/img/52.png b/maze/task2/maps/level6/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..e5aeeefc2ab32ccfc5881a9193e0f36352d5cc25 --- /dev/null +++ b/maze/task2/maps/level6/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec6978f69d4329a99bf7042a5fcd870051b966ebf6d3c6b7ef4efcb3c2c287c +size 12283 diff --git a/maze/task2/maps/level6/img/53.png b/maze/task2/maps/level6/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..81929f9d924e4018788e84181e1e7a9ed1660f06 --- /dev/null +++ b/maze/task2/maps/level6/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c331d8749a853f94e30dd0062dc83a928dff1c83856ebdf7c2e72fa8abb8ccf8 +size 11361 diff --git a/maze/task2/maps/level6/img/54.png b/maze/task2/maps/level6/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..e877eba2d7c961f3fd4e4f57577d87e10cbba6f7 --- /dev/null +++ b/maze/task2/maps/level6/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de5d50dfcab66ecc3f9915b1cf8dbe09edd78d16fca8936b978c8fa9619543c +size 11376 diff --git a/maze/task2/maps/level6/img/55.png b/maze/task2/maps/level6/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..5a72ea42c60184c964f17a14609c1a90f9e4889f --- /dev/null +++ b/maze/task2/maps/level6/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e6cdfeedcef155e024771057027532052c3e7a414c71c14ed1dccac601b8a3 +size 13909 diff --git a/maze/task2/maps/level6/img/56.png b/maze/task2/maps/level6/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c389257aee1d00429763988374ef19fc73bbdc --- /dev/null +++ b/maze/task2/maps/level6/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3956557d740cc23a5f7b5d36878f542f24c91b1d66dde1934a320fbfcff484 +size 12994 diff --git a/maze/task2/maps/level6/img/57.png b/maze/task2/maps/level6/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..4db43b4192e0365216782dd75be627d54f1f7d10 --- /dev/null +++ b/maze/task2/maps/level6/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b9317e7ee29540e917e6939ff810a66488741f4a3989b83653a7347a18bfb26 +size 14051 diff --git a/maze/task2/maps/level6/img/58.png b/maze/task2/maps/level6/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..05086ad78b90557c989a9eb6ff7c162111b782e5 --- /dev/null +++ b/maze/task2/maps/level6/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22570d82bb019075215faf051442187c2564af5ef8b03cbc24e4815b8e9ecb18 +size 13183 diff --git a/maze/task2/maps/level6/img/59.png b/maze/task2/maps/level6/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..e3cfd6488489707eaa73cf85f7f1be22523acc60 --- /dev/null +++ b/maze/task2/maps/level6/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261b0ead6661aedd4dd8e9b26d3fb89b4bc06ca67d2b2928db970de9472770f6 +size 13158 diff --git a/maze/task2/maps/level6/img/6.png b/maze/task2/maps/level6/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..afded9d325779428d17341f09c15426f1cf2fb5c --- /dev/null +++ b/maze/task2/maps/level6/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc059cbd716c76abd945250926a5f026a611216bb33d54a4851336b400f963aa +size 13081 diff --git a/maze/task2/maps/level6/img/60.png b/maze/task2/maps/level6/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..35397cd1c4f90825a421de8e71fb8e9ff5b6480b --- /dev/null +++ b/maze/task2/maps/level6/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862474b989637fd0ab6630b0d6143aca7bbc4b0505aa7d6d17ad2dd73cb68c89 +size 12014 diff --git a/maze/task2/maps/level6/img/61.png b/maze/task2/maps/level6/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..d175e3c5646e8339d03e46e70c9f6e20b2917053 --- /dev/null +++ b/maze/task2/maps/level6/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672a6bd59622e7b0b3a85c63eb00c0e4a2ef39be6b713fae301f837a1af90da1 +size 12279 diff --git a/maze/task2/maps/level6/img/62.png b/maze/task2/maps/level6/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc972e540a9fd469925c2dd5c317decf49f201e --- /dev/null +++ b/maze/task2/maps/level6/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04819a2fc2cd71e18acafc216666e69d93e33ef1b4620ad9ce41c1c5c387f147 +size 11384 diff --git a/maze/task2/maps/level6/img/63.png b/maze/task2/maps/level6/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..ea10d477561bca71e0c426cafeb3dab2c7d894a3 --- /dev/null +++ b/maze/task2/maps/level6/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d246f0cf79995e63f846dbe23a9dce738207b89c0ccdf0be6e9d783123e88b +size 10322 diff --git a/maze/task2/maps/level6/img/64.png b/maze/task2/maps/level6/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..b0213d8533dc960079494a65739f0816ccbd4992 --- /dev/null +++ b/maze/task2/maps/level6/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a0ddf6d9100018d95a6eed35376303e99a45214ea02a6b2dfc078b8990ce9b +size 12177 diff --git a/maze/task2/maps/level6/img/65.png b/maze/task2/maps/level6/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..eb26d6f3dd79ae3fe123f862cd45aa515c52e40c --- /dev/null +++ b/maze/task2/maps/level6/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694caad80889c0c79b942ebe5da49edd156b7862bd515820df89240287340f09 +size 12214 diff --git a/maze/task2/maps/level6/img/66.png b/maze/task2/maps/level6/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..67c8ec24e358c001eab843025c34597d54ec5c97 --- /dev/null +++ b/maze/task2/maps/level6/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92107639167e93ca7e755f460644b060bee0ba16c77e622f46edd0497d266412 +size 13109 diff --git a/maze/task2/maps/level6/img/67.png b/maze/task2/maps/level6/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..537eaec52ffb35a1ac5ee41a34489a11e23ade0b --- /dev/null +++ b/maze/task2/maps/level6/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1d0ecf74803e9569a63c3eca79e2e0e5c07a7b9ddb6e8bbf9565d5363f0dae +size 10392 diff --git a/maze/task2/maps/level6/img/68.png b/maze/task2/maps/level6/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..af5190560802e8e0ee1de9d4946315e5a0b046a6 --- /dev/null +++ b/maze/task2/maps/level6/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63af23106c483415c0c6a0b4e127203b1fcbfd37a6aadec75d18787becc8b26e +size 12132 diff --git a/maze/task2/maps/level6/img/69.png b/maze/task2/maps/level6/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..11c7470ef37301fa4eea158bbbe3d7475bd35e39 --- /dev/null +++ b/maze/task2/maps/level6/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a55c55bb2ab6a35257fc2de219fdd0be0160726f41dc26e9ad6f81a09f3d197 +size 13980 diff --git a/maze/task2/maps/level6/img/7.png b/maze/task2/maps/level6/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0b26670e339545fce94a2af911eba819d87fb251 --- /dev/null +++ b/maze/task2/maps/level6/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e60267d289132707be7230e080456e666f1d9c2f1d44e63226ced010fedc44 +size 13100 diff --git a/maze/task2/maps/level6/img/70.png b/maze/task2/maps/level6/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..271cf5e58659a5cf226845359d294c0880e92f1b --- /dev/null +++ b/maze/task2/maps/level6/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3739e6b1900887efe09d0b23c532eb8055e3604bb6e4c15324a2d15bf6f14c98 +size 13885 diff --git a/maze/task2/maps/level6/img/71.png b/maze/task2/maps/level6/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..298e7732e2eeb3a20a9af2dcd8f4f255a80feeb7 --- /dev/null +++ b/maze/task2/maps/level6/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7a8ac90867b7d5a1a62fe6d6966d4bfe2b82a72b237f95ac63eea3c6e48508 +size 12148 diff --git a/maze/task2/maps/level6/img/72.png b/maze/task2/maps/level6/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..26111e6fa3559822748144aa849cea2b9dd38118 --- /dev/null +++ b/maze/task2/maps/level6/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8822ac3b141e7598bc53f9c5edd6e59b0727165bc865fc5d446037e172adf7 +size 12119 diff --git a/maze/task2/maps/level6/img/73.png b/maze/task2/maps/level6/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..28cb70b71eb02d4bde7a607c5f238d25a93c9444 --- /dev/null +++ b/maze/task2/maps/level6/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89427ec919d3e1b2de42b4aed648421753c6f793a4f6c03103fce67c500d06a +size 13120 diff --git a/maze/task2/maps/level6/img/74.png b/maze/task2/maps/level6/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2300a6531c5349ae0517a0d96a13e9e07b7703 --- /dev/null +++ b/maze/task2/maps/level6/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6250e03c7ae4fc7b20c56e7ce8f0eebfa031d2ed5b210b552808453316507dff +size 12248 diff --git a/maze/task2/maps/level6/img/75.png b/maze/task2/maps/level6/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..2846ef786ca790cbe163647bc5bd77b3079e7b66 --- /dev/null +++ b/maze/task2/maps/level6/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea066004a27706e8bada0555624f371aed3061ae52eb7fe642b9fd8c86a3841 +size 12139 diff --git a/maze/task2/maps/level6/img/76.png b/maze/task2/maps/level6/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..40d3726d4d7a7ae3cd5d27d4985a75891bb9a300 --- /dev/null +++ b/maze/task2/maps/level6/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984debb25c6da9b5c892afc4264f58238370df8ecea8138c3f5b21a975b61f16 +size 12171 diff --git a/maze/task2/maps/level6/img/77.png b/maze/task2/maps/level6/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..2d311472d6b9ed03b14ea133eb7cd7c3918df152 --- /dev/null +++ b/maze/task2/maps/level6/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e85c78619b3787ad0efd744c8b274e6328cd3e63f966d8283f788071915d5fe +size 14060 diff --git a/maze/task2/maps/level6/img/78.png b/maze/task2/maps/level6/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..99f0e104c248433040862ba173e066eee05d6467 --- /dev/null +++ b/maze/task2/maps/level6/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f62da16b91d3167e7f7b8c304fb5a10b4d553038280ffdb37f611157eb8cf6 +size 11392 diff --git a/maze/task2/maps/level6/img/79.png b/maze/task2/maps/level6/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..f6e73fa282c52b3184d0050274b58ff48c9474df --- /dev/null +++ b/maze/task2/maps/level6/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91778daccf1106d86246eeb52937444e9f09f28f44adffcd05f434d5687d5da6 +size 12981 diff --git a/maze/task2/maps/level6/img/8.png b/maze/task2/maps/level6/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..659918a14120f6ba882f0f96d696a6a85fee7c2c --- /dev/null +++ b/maze/task2/maps/level6/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52966406a78c8aae4b999eb8cd3b063804d2d45f94dcb6386e83005667c03b83 +size 12113 diff --git a/maze/task2/maps/level6/img/80.png b/maze/task2/maps/level6/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..e616221167ccbf855bd5b7d70c1d1d5ed767901c --- /dev/null +++ b/maze/task2/maps/level6/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc7e9dc4e68e12344c1bcd6435d9ab9a8c8a017ced43a666e5a80c98badebdb +size 10400 diff --git a/maze/task2/maps/level6/img/81.png b/maze/task2/maps/level6/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..921857e773dfe2780ff34e681e89a3aa72c7b70d --- /dev/null +++ b/maze/task2/maps/level6/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725d7ff6ff02569f0d466ffc31f946731e9f21fd5eb2cd0dbff2670283301d5a +size 12965 diff --git a/maze/task2/maps/level6/img/82.png b/maze/task2/maps/level6/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e147b0f7dbfc7c6e7b35774ad33301f150598ab4 --- /dev/null +++ b/maze/task2/maps/level6/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c8ca31b6660af9232cc15001a7a011b38ea15987ea17180724ae7b36caa4a4 +size 12977 diff --git a/maze/task2/maps/level6/img/83.png b/maze/task2/maps/level6/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..a69c76cdcf9c6b6b69f9447c657fe4b8bcc85ba2 --- /dev/null +++ b/maze/task2/maps/level6/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1a835286aa28e382972ceb96134ca488bc7eb1bf02f2c7b1f9be48e1f2a673 +size 10474 diff --git a/maze/task2/maps/level6/img/84.png b/maze/task2/maps/level6/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..b73a7b59508c51d0aa76e1f6adaa421bb16c4670 --- /dev/null +++ b/maze/task2/maps/level6/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31aa1166d1f30cc5a29e6667d3c13d10ad49f13d50959070a133fb0cc88d45f +size 11337 diff --git a/maze/task2/maps/level6/img/85.png b/maze/task2/maps/level6/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..72c996b248dc13bad78642de91fb81aa45d11b0e --- /dev/null +++ b/maze/task2/maps/level6/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498144531c8481ecfe300db91a9d5153869d5f0ee6d3dba96a76155ccd5e0463 +size 11283 diff --git a/maze/task2/maps/level6/img/86.png b/maze/task2/maps/level6/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..1fc334dca86f543b5f3abf29ebe7a1c0b6d42d01 --- /dev/null +++ b/maze/task2/maps/level6/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0280431ac6986b4cb5cca20422646cdde2992f47694a91e2515aa1a66d9940db +size 12163 diff --git a/maze/task2/maps/level6/img/87.png b/maze/task2/maps/level6/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..f21902434e86abff435732cfccd37c78cf2de4ec --- /dev/null +++ b/maze/task2/maps/level6/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce4d77108c52df183bc2c7ad723d83048465f91d15518527f3b0fd7ee27fc4a +size 12141 diff --git a/maze/task2/maps/level6/img/88.png b/maze/task2/maps/level6/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..f61ce46130882ed7f0e69802804df0358041f45b --- /dev/null +++ b/maze/task2/maps/level6/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef9c0f931634a2d7408f0ffcd4b4f0d62c563f8321609dbc5726f5e3ae7d4f8 +size 11268 diff --git a/maze/task2/maps/level6/img/89.png b/maze/task2/maps/level6/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..cf3c11b2256e41ba8283395a2f1d6c744d816e6f --- /dev/null +++ b/maze/task2/maps/level6/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ba948575eded0b80864733466863f62d748779b161967176da1edc8f7bd27b +size 13762 diff --git a/maze/task2/maps/level6/img/9.png b/maze/task2/maps/level6/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ac79a4f95aa84e60a0354200384d4ae2451be3e7 --- /dev/null +++ b/maze/task2/maps/level6/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbe91419d58d9af569c6dd6eedd709900e099c1b3ba21a7c4b8dc1549e30cc2 +size 11406 diff --git a/maze/task2/maps/level6/img/90.png b/maze/task2/maps/level6/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..66e80cce1c48cd7cb7ebe1435dfb6fb935b9f4ee --- /dev/null +++ b/maze/task2/maps/level6/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0409adde66a90fc0186857f4ce073c3b4c7ec48e2de5c7d1696f43ff46283785 +size 12004 diff --git a/maze/task2/maps/level6/img/91.png b/maze/task2/maps/level6/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..1458609391b78f226462ffa4634b8273bfad2b1d --- /dev/null +++ b/maze/task2/maps/level6/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658301b72b2e1ba14e9c05208214ba03e7517658369591307ed4755c18da9e9a +size 12229 diff --git a/maze/task2/maps/level6/img/92.png b/maze/task2/maps/level6/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..e4a1857459c1f6aa915d42a85040a21ced25b27b --- /dev/null +++ b/maze/task2/maps/level6/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92aa78868af3d620bb439519afce387ada3c705f51833d8e792b627f2f85f3c +size 12299 diff --git a/maze/task2/maps/level6/img/93.png b/maze/task2/maps/level6/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..013a5d40f4e496ab5dbc40a79facc8a4847ab2ec --- /dev/null +++ b/maze/task2/maps/level6/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a28315cbd0a823af26ae8d4587b853d8437a750a2702478c3b8e5afbae5dad +size 11369 diff --git a/maze/task2/maps/level6/img/94.png b/maze/task2/maps/level6/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..50316b6e0bb97fdf61d5931db6bed0a8d4ce7202 --- /dev/null +++ b/maze/task2/maps/level6/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cedcced00ce0458ccf06e426665d241cab17c072eeaf0c158c3595bc91b0d3e +size 11308 diff --git a/maze/task2/maps/level6/img/95.png b/maze/task2/maps/level6/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..b0bc4affef736422485cfb9cc196fdf6e01e1e62 --- /dev/null +++ b/maze/task2/maps/level6/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f633a7fc20594863dc8990baad5b9a697919a3df17f1133bb5aaab14b9e2ee89 +size 12090 diff --git a/maze/task2/maps/level6/img/96.png b/maze/task2/maps/level6/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..b42a2ff21f09ab7d1250e2058531ace802ed60ef --- /dev/null +++ b/maze/task2/maps/level6/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ded45183d7ff9280556eeefb0c760c25140bf3c026d84bfaa7a1770aa577ec0 +size 10429 diff --git a/maze/task2/maps/level6/img/97.png b/maze/task2/maps/level6/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..26094ad83fc593a3137c2743282c49c2c98d6140 --- /dev/null +++ b/maze/task2/maps/level6/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2962b4d0e16131adc7764c758456b440a6663d63476e8575e2a46f0f2205f5 +size 13125 diff --git a/maze/task2/maps/level6/img/98.png b/maze/task2/maps/level6/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..ebae2fb5e574fe2d9487564f31ef0056b088e72c --- /dev/null +++ b/maze/task2/maps/level6/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36f8d632c2d825f000cf2df9619b57357ce929457796128b4d14bd7c89bf323 +size 11348 diff --git a/maze/task2/maps/level6/img/99.png b/maze/task2/maps/level6/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..b963884b391ed08c69205dd889958401a1fb3bd1 --- /dev/null +++ b/maze/task2/maps/level6/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942a638cb9ac97faf4c11fa290b8560c42c1a18466bb3eac74e68caf4f8bfd71 +size 13277 diff --git a/maze/task2/maps/level6/pure_text/0.txt b/maze/task2/maps/level6/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d328f8762b6562fb5193d436ef15d8a0d029ca0 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 4; Row 6, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/1.txt b/maze/task2/maps/level6/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..92caf5f1c0980e69e97046b12c133fb84c572bf1 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 5; Row 3, Column 1; Row 4, Column 1; Row 5, Column 5; Row 6, Column 1; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/10.txt b/maze/task2/maps/level6/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..9be1ad14306e433a57cf64a02ce4b47d9a65e9bc --- /dev/null +++ b/maze/task2/maps/level6/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 3, Column 6; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/11.txt b/maze/task2/maps/level6/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4c0f79e450d1a17e673d0cb7ebf1ec5673c27dd --- /dev/null +++ b/maze/task2/maps/level6/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; Row 4, Column 5; Row 5, Column 4; Row 5, Column 6; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/12.txt b/maze/task2/maps/level6/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..e76c6b48d4366e0c814e723a188b05b535d2110a --- /dev/null +++ b/maze/task2/maps/level6/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 3, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 6, Column 1; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/13.txt b/maze/task2/maps/level6/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..520b3fd9204f4e25512ce5376fbc9a798adb4f15 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 6; Row 3, Column 1; Row 3, Column 5; Row 4, Column 6; Row 6, Column 5; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/14.txt b/maze/task2/maps/level6/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..e171bd4d2b9145a35639ccbe8493ca1ba024c746 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 4, Column 2; Row 4, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/15.txt b/maze/task2/maps/level6/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ca95f5280359eb7d79dc93522a468a12782b847 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/16.txt b/maze/task2/maps/level6/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..db4e8f97e71d88a7cdfbcd877c9e0a804e601407 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/17.txt b/maze/task2/maps/level6/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d36386a0109417a589afa4c22a321e763585156 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 3, Column 4; Row 4, Column 3; Row 6, Column 1; Row 6, Column 2; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/18.txt b/maze/task2/maps/level6/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..45699de8424b1e64290b476dc523df545dbacd1f --- /dev/null +++ b/maze/task2/maps/level6/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 5, Column 5; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/19.txt b/maze/task2/maps/level6/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a2baccf96674538961ad0ae5c06cac7ba013643 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/2.txt b/maze/task2/maps/level6/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9981fb337a25cb182222cdfd8da7e9ee8d047220 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 5; Row 4, Column 3; Row 6, Column 3; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/20.txt b/maze/task2/maps/level6/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..079f50992fbc794abb91690ab0dbdd0c66ed797b --- /dev/null +++ b/maze/task2/maps/level6/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 3, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 5; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/21.txt b/maze/task2/maps/level6/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..678d84d1461066b990eee59b80a002dcf7383034 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/22.txt b/maze/task2/maps/level6/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae2b86ba3ec6fcd184368947d684ae5ccfcf5041 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 6; Row 2, Column 5; Row 3, Column 1; Row 4, Column 4; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/23.txt b/maze/task2/maps/level6/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b68a6f5ca4b5d56463c82390e2debd299921e6d --- /dev/null +++ b/maze/task2/maps/level6/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 4, Column 4; Row 6, Column 1; Row 6, Column 5; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/24.txt b/maze/task2/maps/level6/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c144168010c4c3a0acf9289f4ce8a1b2034e231c --- /dev/null +++ b/maze/task2/maps/level6/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 5; Row 6, Column 1; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/25.txt b/maze/task2/maps/level6/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dd7253fb871c519b61dad5d3ff45165fe098b61 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 5, Column 3; Row 6, Column 6; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/26.txt b/maze/task2/maps/level6/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..229b88eca9b69fe4df1f7a54e2959c87b805fd8d --- /dev/null +++ b/maze/task2/maps/level6/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 6, Column 5; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/27.txt b/maze/task2/maps/level6/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..5402fd29554b2c61079fa27d2c1098e40d2a405e --- /dev/null +++ b/maze/task2/maps/level6/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 6, Column 4; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/28.txt b/maze/task2/maps/level6/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..b119ba1a64b947a60d0b77472fcb96d4e30b3da9 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 2, Column 3; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/29.txt b/maze/task2/maps/level6/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..06cd19671e888523ff16eca44f1e3f3ea872d54b --- /dev/null +++ b/maze/task2/maps/level6/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 5; Row 3, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/3.txt b/maze/task2/maps/level6/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..08e25bef9c66070623d36d3de9e9789d6d097587 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 6, Column 4; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/30.txt b/maze/task2/maps/level6/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d7f2ff8a16a126116ec3feb63001f2a5bd2a833 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/31.txt b/maze/task2/maps/level6/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..78924848ae854fe272285e7d58c03786304ca816 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 5; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 6; Row 6, Column 3; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/32.txt b/maze/task2/maps/level6/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..76504dab5cb81b07436ffb2f3e12476099c00cd4 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 6; Row 3, Column 4; Row 4, Column 4; Row 6, Column 3; Row 6, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/33.txt b/maze/task2/maps/level6/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..25cc9582c92280749f062ddb66223154da64047b --- /dev/null +++ b/maze/task2/maps/level6/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/34.txt b/maze/task2/maps/level6/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..25e5a18e52a1815a3f17c0170cb7a917f7f9475d --- /dev/null +++ b/maze/task2/maps/level6/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 4; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/35.txt b/maze/task2/maps/level6/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a71b45ab5a72e5b4043227396d408e13600e71d --- /dev/null +++ b/maze/task2/maps/level6/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 4, Column 2; Row 4, Column 6; Row 5, Column 1; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/36.txt b/maze/task2/maps/level6/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..09e224cd5a53d7cb6c9fc01f41dc9f69b9209558 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; Row 4, Column 3; Row 4, Column 6; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/37.txt b/maze/task2/maps/level6/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..94c928ed511973eeb6715b4b5a1c93e9e439e277 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 5; Row 5, Column 1; Row 6, Column 1; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/38.txt b/maze/task2/maps/level6/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7d0b8d78b27a88a48483639bf3569bd637edea4 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 3; Row 4, Column 2; Row 5, Column 6; Row 6, Column 1; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/39.txt b/maze/task2/maps/level6/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca8b8a3bf39e4fcd7c8da3667dccc60b26305a4e --- /dev/null +++ b/maze/task2/maps/level6/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 3, Column 2; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/4.txt b/maze/task2/maps/level6/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d42d5d58687d12b6422fb525013761882d688f8 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/40.txt b/maze/task2/maps/level6/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..249cd3f4f33f9e6d6686231678c4fc038bd42030 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 5; Row 4, Column 6; Row 5, Column 3; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/41.txt b/maze/task2/maps/level6/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..efacc0a5d4a2b503cd99267f8f269b75a86337f4 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 4, Column 1; Row 5, Column 6; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/42.txt b/maze/task2/maps/level6/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d0032d877fa82fbac503f5f7fe1ab60c4d6baeb --- /dev/null +++ b/maze/task2/maps/level6/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 6; Row 2, Column 2; Row 2, Column 6; Row 3, Column 3; Row 3, Column 6; Row 5, Column 4; Row 6, Column 1; Row 6, Column 4; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/43.txt b/maze/task2/maps/level6/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..19dbc367bc0a00aa4ff5e88b9f47b9bbaa3e80fe --- /dev/null +++ b/maze/task2/maps/level6/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/44.txt b/maze/task2/maps/level6/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..4df13263a964fb14507e650142a742bb9b51c911 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 5, Column 5; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/45.txt b/maze/task2/maps/level6/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1e38a53b8063a175ccdd3affd9e6f2fd42e5859 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 4; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 5, Column 6; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/46.txt b/maze/task2/maps/level6/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0aa857d634ea638f5605e5d07ce346ca7cab8fe --- /dev/null +++ b/maze/task2/maps/level6/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 3, Column 4; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/47.txt b/maze/task2/maps/level6/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b8536f8bb5243953e0e1a1524c68408993ec76b --- /dev/null +++ b/maze/task2/maps/level6/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 5; Row 3, Column 6; Row 4, Column 4; Row 5, Column 5; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/48.txt b/maze/task2/maps/level6/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac88f6a4765b659e8073a7ee9498e9371df90cb6 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 5, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/49.txt b/maze/task2/maps/level6/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..1433d457671dca23dba02bbcd74ca91bf3ec34ca --- /dev/null +++ b/maze/task2/maps/level6/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 4; Row 6, Column 5; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/5.txt b/maze/task2/maps/level6/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c8d5c45400fdf5666b648fa8deaa48a4ae4e970 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 5; Row 3, Column 4; Row 6, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/50.txt b/maze/task2/maps/level6/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..46ca2a02f8768575ab98e3b8c80a03cc6647f19b --- /dev/null +++ b/maze/task2/maps/level6/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 3, Column 1; Row 5, Column 6; Row 6, Column 1; Row 6, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/51.txt b/maze/task2/maps/level6/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..83ccebec3244da489e5d89a64bc95e87f42cd1ce --- /dev/null +++ b/maze/task2/maps/level6/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 3, Column 5; Row 4, Column 3; Row 5, Column 1; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/52.txt b/maze/task2/maps/level6/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7aa63de8df3f6f035e24de2a196d703a2a4d408 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 3, Column 3; Row 3, Column 6; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; Row 6, Column 1; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/53.txt b/maze/task2/maps/level6/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..e48a190749efc58d3baac79cc74556fa51bbd014 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 3, Column 4; Row 4, Column 4; Row 4, Column 6; Row 6, Column 1; Row 6, Column 4; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/54.txt b/maze/task2/maps/level6/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b53ed4d281dc4aed59f0291ef05e774faa04b96 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 5; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/55.txt b/maze/task2/maps/level6/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cf33de10c0d33db462ad907d24368428ac360d9 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 5, Column 6; Row 6, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/56.txt b/maze/task2/maps/level6/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..d72786fca32b0c743daef396961e27beb7596383 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 4, Column 2; Row 5, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/57.txt b/maze/task2/maps/level6/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..17fc928e4bf70634f2fcf18f30f1ce723c03fd8f --- /dev/null +++ b/maze/task2/maps/level6/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 3, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 6; Row 6, Column 3; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/58.txt b/maze/task2/maps/level6/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..d01ec65423e4c9ec9277caa1f309ee25268aa8ce --- /dev/null +++ b/maze/task2/maps/level6/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 5; Row 3, Column 6; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/59.txt b/maze/task2/maps/level6/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd89e6b912a7da48e9e171fcac63f9c38e7fe35d --- /dev/null +++ b/maze/task2/maps/level6/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 4; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/6.txt b/maze/task2/maps/level6/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..20bfa1b02eef44fe91bbf239bcf6190980d2937c --- /dev/null +++ b/maze/task2/maps/level6/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 1; Row 3, Column 5; Row 4, Column 3; Row 6, Column 5; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/60.txt b/maze/task2/maps/level6/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..85abc8a293137f3299c3f7c5751afb73b0b0cc1f --- /dev/null +++ b/maze/task2/maps/level6/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 4, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/61.txt b/maze/task2/maps/level6/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0c183c147cd19eff92fbbfb8f98ac83b1ff8fa8 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 4; Row 3, Column 6; Row 6, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/62.txt b/maze/task2/maps/level6/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff6b5ede539113e186a4bd631d3ef018562d9aa0 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 2, Column 2; Row 3, Column 4; Row 3, Column 5; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/63.txt b/maze/task2/maps/level6/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1cae75e7bffe3d4ff008a93d34a537ccd7054e8 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 5, Column 5; Row 6, Column 5; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/64.txt b/maze/task2/maps/level6/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8f439c8753660d8ceef56f25fdbb4a2f423f575 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 5; Row 3, Column 2; Row 3, Column 6; Row 5, Column 5; Row 5, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/65.txt b/maze/task2/maps/level6/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef582826234ab40b227f5d614560a4efee9e2b69 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 4, Column 2; Row 4, Column 3; Row 5, Column 4; Row 5, Column 6; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/66.txt b/maze/task2/maps/level6/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d56b06165562efb47dba58396acf2608b11e614d --- /dev/null +++ b/maze/task2/maps/level6/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 3, Column 2; Row 4, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/67.txt b/maze/task2/maps/level6/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..aed7aeae76bf40c1f509abdd8dbc4e4e599f9606 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 3, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/68.txt b/maze/task2/maps/level6/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..70da938c9f7da2014496492f69826b4b66577da6 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 6, Column 1; Row 6, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/69.txt b/maze/task2/maps/level6/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e36696c22d12b66d2a814d3e4bbd568b06349f8 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 3; Row 3, Column 1; Row 3, Column 6; Row 4, Column 6; Row 5, Column 2; Row 6, Column 1; Row 6, Column 6; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/7.txt b/maze/task2/maps/level6/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cc7388729e0beba8ffefbfbbfac8ce1a172de2d --- /dev/null +++ b/maze/task2/maps/level6/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 4; Row 5, Column 4; Row 6, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/70.txt b/maze/task2/maps/level6/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f447775de64a76bc2b5beff46ffdb562bf641028 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 3; Row 3, Column 1; Row 4, Column 3; Row 4, Column 4; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/71.txt b/maze/task2/maps/level6/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..09298b6dc943eecaae3f12dbea2ebfe5720de76e --- /dev/null +++ b/maze/task2/maps/level6/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 6; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 5; Row 6, Column 4; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/72.txt b/maze/task2/maps/level6/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..6536957f00582ce85babfd9d8c01b7dc0c717de8 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 2, Column 6; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/73.txt b/maze/task2/maps/level6/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..71889979c44142c8307ce646ee5e49f1f7c00e08 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 3, Column 1; Row 3, Column 6; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/74.txt b/maze/task2/maps/level6/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e155d8089edf7194a4c4f7c7baadbf3aac39d29 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 4, Column 3; Row 5, Column 5; Row 6, Column 2; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/75.txt b/maze/task2/maps/level6/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..6efdf85b0dc8610428fbfb8240c9a0591254a756 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 5; Row 4, Column 4; Row 5, Column 1; Row 5, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/76.txt b/maze/task2/maps/level6/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5873811c27d013ecad6ffcab63542f82f36676f --- /dev/null +++ b/maze/task2/maps/level6/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 4, Column 1; Row 4, Column 6; Row 5, Column 4; Row 6, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/77.txt b/maze/task2/maps/level6/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..d218dc329049d3e9dcc4c7fe1686055707d7c5c1 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 6; Row 3, Column 2; Row 3, Column 5; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 6, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/78.txt b/maze/task2/maps/level6/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..7281c5ff6ea1916e4595f107df4def89c2e56911 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/79.txt b/maze/task2/maps/level6/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bb394a42bb386c942c3876da93b03afecd2ffa6 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 4; Row 2, Column 6; Row 3, Column 5; Row 4, Column 2; Row 5, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/8.txt b/maze/task2/maps/level6/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c3c7b09242468ff54d7512b9f45e42a7e9078c9 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 6; Row 3, Column 1; Row 4, Column 2; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/80.txt b/maze/task2/maps/level6/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..0975c3d2ecc779e4ff34cb4e8b80b1fe3a8a56fe --- /dev/null +++ b/maze/task2/maps/level6/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 3, Column 3; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/81.txt b/maze/task2/maps/level6/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d3cdf03b071f770e3edaa78f19421ea795891b --- /dev/null +++ b/maze/task2/maps/level6/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 6; Row 4, Column 3; Row 5, Column 5; Row 5, Column 6; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/82.txt b/maze/task2/maps/level6/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..8aa16c3edac65c6439b141ca26cd2717ea8fd6dc --- /dev/null +++ b/maze/task2/maps/level6/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 3, Column 6; Row 4, Column 2; Row 4, Column 6; Row 5, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/83.txt b/maze/task2/maps/level6/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfd3ac56b6d34d2e02f90672e6b261c78c578f91 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 6, Column 6; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/84.txt b/maze/task2/maps/level6/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f663a85588f23d93b5e8c112fddf134eb43768c --- /dev/null +++ b/maze/task2/maps/level6/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 5; Row 5, Column 4; Row 6, Column 5; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/85.txt b/maze/task2/maps/level6/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c35c53a9bc24b87312ec331e0480cc56d1e21ee --- /dev/null +++ b/maze/task2/maps/level6/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/86.txt b/maze/task2/maps/level6/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a1dc22f56b7f6814fdf6979d0206d19602f503a --- /dev/null +++ b/maze/task2/maps/level6/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 3, Column 5; Row 4, Column 6; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/87.txt b/maze/task2/maps/level6/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..26f8cc94e75f0b2160f8c5838f8b796e3cfc889e --- /dev/null +++ b/maze/task2/maps/level6/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 1; Row 4, Column 1; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/88.txt b/maze/task2/maps/level6/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..b14a5d9ba29f19c14deab51a670a2019f17fd49e --- /dev/null +++ b/maze/task2/maps/level6/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 6, Column 1; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/89.txt b/maze/task2/maps/level6/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1c73477a93d36aed034359cc0fb5f12825d083b --- /dev/null +++ b/maze/task2/maps/level6/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 6; Row 3, Column 3; Row 3, Column 6; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 6, Column 6; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/9.txt b/maze/task2/maps/level6/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5287f1b54d4b5f953bae1f65dedb2a5a4a36bd7 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 5; Row 4, Column 2; Row 4, Column 6; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/90.txt b/maze/task2/maps/level6/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bb2e1b1d4860a1bffd8ea895e288b169d36c461 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 6; Row 4, Column 2; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/91.txt b/maze/task2/maps/level6/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..1382f30ddc369b96b43741932af885953d4b13b8 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 5, Column 1; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/92.txt b/maze/task2/maps/level6/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb84c35cd82c106f424ee840375c2f2099f81794 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/93.txt b/maze/task2/maps/level6/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaa2f816517dc513ecfccb52e5053dce029ad49b --- /dev/null +++ b/maze/task2/maps/level6/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 6, Column 5; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/94.txt b/maze/task2/maps/level6/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..44d3edb6d60e1b88e20f31ef88f75d300fbbcff3 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 4, Column 2; Row 4, Column 3; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/95.txt b/maze/task2/maps/level6/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..42be22a0e796ce9990b1361e08be0b58bd8685ae --- /dev/null +++ b/maze/task2/maps/level6/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 6, Column 1; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/96.txt b/maze/task2/maps/level6/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5328947118913334151acdd424c549c6b9f7339 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/97.txt b/maze/task2/maps/level6/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9f13b26d11a3599bffee5d2cc8b8ed9d030dcf0 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 2; Row 3, Column 4; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/98.txt b/maze/task2/maps/level6/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..be72bd221f31059a526db8dede7ea8cd9396956d --- /dev/null +++ b/maze/task2/maps/level6/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 2, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level6/pure_text/99.txt b/maze/task2/maps/level6/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2dae7244bbe6d5d3437c05bb0ca1ed194413132 --- /dev/null +++ b/maze/task2/maps/level6/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; Row 4, Column 5; Row 5, Column 3; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level6/table/0.txt b/maze/task2/maps/level6/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..960c482f2c9ad0f44cf2136103c939c27ddea88b --- /dev/null +++ b/maze/task2/maps/level6/table/0.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | _ | # | +| Row 5 | _ | _ | _ | # | _ | @ | +| Row 6 | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level6/table/1.txt b/maze/task2/maps/level6/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..25c246dfc73d96d258f856a3134ff95d21dd02ea --- /dev/null +++ b/maze/task2/maps/level6/table/1.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | # | @ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/10.txt b/maze/task2/maps/level6/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..a81df86bd094ccf49e64492e729705e9fa160fe3 --- /dev/null +++ b/maze/task2/maps/level6/table/10.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/11.txt b/maze/task2/maps/level6/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b18219410e727c0439a08106b4d636303ecf3f7 --- /dev/null +++ b/maze/task2/maps/level6/table/11.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/12.txt b/maze/task2/maps/level6/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6494e9c5f745e3e5fdf00d0332e1dadb5340085 --- /dev/null +++ b/maze/task2/maps/level6/table/12.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | diff --git a/maze/task2/maps/level6/table/13.txt b/maze/task2/maps/level6/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e86d2ddad95a776547d2b517c69362a95fea835 --- /dev/null +++ b/maze/task2/maps/level6/table/13.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | * | # | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/14.txt b/maze/task2/maps/level6/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6e0b65114076591210e92a26d2e71b5d5ab54a1 --- /dev/null +++ b/maze/task2/maps/level6/table/14.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | * | +| Row 4 | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | @ | # | _ | diff --git a/maze/task2/maps/level6/table/15.txt b/maze/task2/maps/level6/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..a502da1c51872160ab411648b1597cbbe2596a7a --- /dev/null +++ b/maze/task2/maps/level6/table/15.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | # | +| Row 3 | # | _ | # | _ | _ | _ | +| Row 4 | * | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/16.txt b/maze/task2/maps/level6/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a7eddd3927e0f2fe251c03d1b32325e1929a62 --- /dev/null +++ b/maze/task2/maps/level6/table/16.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | diff --git a/maze/task2/maps/level6/table/17.txt b/maze/task2/maps/level6/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a3b96613c988fb871174dd5cb4fe3f0cd3eae4e --- /dev/null +++ b/maze/task2/maps/level6/table/17.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | * | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/18.txt b/maze/task2/maps/level6/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1138fa754696bab6a937b58e13f26fbd267d627 --- /dev/null +++ b/maze/task2/maps/level6/table/18.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | @ | _ | _ | # | _ | +| Row 6 | _ | * | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/19.txt b/maze/task2/maps/level6/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8607cf939e263bfb3a9d585bf78052e8749da45 --- /dev/null +++ b/maze/task2/maps/level6/table/19.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | _ | @ | # | _ | +| Row 6 | _ | _ | _ | * | _ | _ | diff --git a/maze/task2/maps/level6/table/2.txt b/maze/task2/maps/level6/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff32128ccf61b6d1bbba95caaea858ce4bcb2809 --- /dev/null +++ b/maze/task2/maps/level6/table/2.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/20.txt b/maze/task2/maps/level6/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..311027cbc4c48b45a04c2d0b38fdf7ab1cce196e --- /dev/null +++ b/maze/task2/maps/level6/table/20.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | * | +| Row 2 | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/21.txt b/maze/task2/maps/level6/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e835051f75b4bed8e61cc3c1893829a06bc6860 --- /dev/null +++ b/maze/task2/maps/level6/table/21.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/22.txt b/maze/task2/maps/level6/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a15ee7807ef0f73d69d145fb44672e0b3a0da2 --- /dev/null +++ b/maze/task2/maps/level6/table/22.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/23.txt b/maze/task2/maps/level6/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..294290baca515a33dd491a46011c2c2049755f1a --- /dev/null +++ b/maze/task2/maps/level6/table/23.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | * | diff --git a/maze/task2/maps/level6/table/24.txt b/maze/task2/maps/level6/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7cc7f23ae9c2ec7688bbd18af93ed84c0d8ef12 --- /dev/null +++ b/maze/task2/maps/level6/table/24.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | # | @ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | * | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/25.txt b/maze/task2/maps/level6/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..db36d83340ad5771f0cd9c09a683080729b2a3a9 --- /dev/null +++ b/maze/task2/maps/level6/table/25.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | _ | @ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level6/table/26.txt b/maze/task2/maps/level6/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fee275cd0efa2e3f07172f2e542650beed9cfa0 --- /dev/null +++ b/maze/task2/maps/level6/table/26.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/27.txt b/maze/task2/maps/level6/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..35716f9d92cd3c9197cc0827e371a13fa69c586c --- /dev/null +++ b/maze/task2/maps/level6/table/27.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level6/table/28.txt b/maze/task2/maps/level6/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..e90a3b62659cd4fcc63a3a642485282ca0981e2d --- /dev/null +++ b/maze/task2/maps/level6/table/28.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | @ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/29.txt b/maze/task2/maps/level6/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..238dec86c740e8f693171b4b512a63277c0f319f --- /dev/null +++ b/maze/task2/maps/level6/table/29.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/3.txt b/maze/task2/maps/level6/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..26a9644b45a8ed6339406cc33c68a44cae4fd7f5 --- /dev/null +++ b/maze/task2/maps/level6/table/3.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | @ | _ | # | _ | +| Row 6 | # | * | _ | # | _ | _ | diff --git a/maze/task2/maps/level6/table/30.txt b/maze/task2/maps/level6/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ac89ba722f2a22f6fc68efd50a58e08ac6c88d3 --- /dev/null +++ b/maze/task2/maps/level6/table/30.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | * | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | # | _ | +| Row 5 | # | # | _ | _ | # | _ | +| Row 6 | # | # | # | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/31.txt b/maze/task2/maps/level6/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecf638e5303831b08b2bfe24efd60e231c5904c0 --- /dev/null +++ b/maze/task2/maps/level6/table/31.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | # | +| Row 5 | _ | # | _ | _ | * | # | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/32.txt b/maze/task2/maps/level6/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5101655bde95ac83688ab163248134b699ac779 --- /dev/null +++ b/maze/task2/maps/level6/table/32.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | diff --git a/maze/task2/maps/level6/table/33.txt b/maze/task2/maps/level6/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..71191a46b4f86c9df2a42ab23c14d2c598b46a0e --- /dev/null +++ b/maze/task2/maps/level6/table/33.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | @ | _ | +| Row 5 | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | # | _ | # | _ | diff --git a/maze/task2/maps/level6/table/34.txt b/maze/task2/maps/level6/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5df99188109ce620fc514dbf47e1bcf21b7ad0f --- /dev/null +++ b/maze/task2/maps/level6/table/34.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | # | _ | +| Row 5 | _ | _ | _ | # | @ | # | +| Row 6 | _ | _ | * | _ | _ | # | diff --git a/maze/task2/maps/level6/table/35.txt b/maze/task2/maps/level6/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab9946954b6d2a4e01dbc4338287825e8ce4b5a6 --- /dev/null +++ b/maze/task2/maps/level6/table/35.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | @ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/36.txt b/maze/task2/maps/level6/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..10610129946d47b40220f6ef8a22700923fffec4 --- /dev/null +++ b/maze/task2/maps/level6/table/36.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | # | +| Row 5 | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/37.txt b/maze/task2/maps/level6/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..c49e562672625a72a29dd20439900bb074b90d08 --- /dev/null +++ b/maze/task2/maps/level6/table/37.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | @ | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | * | _ | diff --git a/maze/task2/maps/level6/table/38.txt b/maze/task2/maps/level6/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2bf37033a101beac7532b2ef7f71ed4eef64869 --- /dev/null +++ b/maze/task2/maps/level6/table/38.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | # | +| Row 6 | # | _ | _ | * | _ | _ | diff --git a/maze/task2/maps/level6/table/39.txt b/maze/task2/maps/level6/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..605b7b1decde1c1cc2bf63bddd6df2ab063b4578 --- /dev/null +++ b/maze/task2/maps/level6/table/39.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | * | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/4.txt b/maze/task2/maps/level6/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..13dc241eff205e44771a1e0d3a881fd46995e1b9 --- /dev/null +++ b/maze/task2/maps/level6/table/4.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/40.txt b/maze/task2/maps/level6/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f78412ec1009b796056aa32fa27ed55e23255d13 --- /dev/null +++ b/maze/task2/maps/level6/table/40.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/41.txt b/maze/task2/maps/level6/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..c816a3c61dfb898cbfa9e04190858be9bb085107 --- /dev/null +++ b/maze/task2/maps/level6/table/41.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | # | # | diff --git a/maze/task2/maps/level6/table/42.txt b/maze/task2/maps/level6/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..5899abdb6fd34cb81b40fba41789bebbb422c3b7 --- /dev/null +++ b/maze/task2/maps/level6/table/42.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | +| Row 6 | # | _ | _ | # | @ | _ | diff --git a/maze/task2/maps/level6/table/43.txt b/maze/task2/maps/level6/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..08716071a80d47f73e24be32e6f1a3a2cf9e777e --- /dev/null +++ b/maze/task2/maps/level6/table/43.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/44.txt b/maze/task2/maps/level6/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..35d3288bdb07ba03292c37bf0ef7bd1826aa4c0c --- /dev/null +++ b/maze/task2/maps/level6/table/44.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | * | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | # | _ | diff --git a/maze/task2/maps/level6/table/45.txt b/maze/task2/maps/level6/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e057df07816982b4f422c65a48fcf7c5690b --- /dev/null +++ b/maze/task2/maps/level6/table/45.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/46.txt b/maze/task2/maps/level6/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..36c09b16c90c28b8d56fe252dbfffddea3f13077 --- /dev/null +++ b/maze/task2/maps/level6/table/46.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | # | _ | _ | * | # | diff --git a/maze/task2/maps/level6/table/47.txt b/maze/task2/maps/level6/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..152a1bce5ef642b99b07cbbb5ba7a276d3109c97 --- /dev/null +++ b/maze/task2/maps/level6/table/47.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | diff --git a/maze/task2/maps/level6/table/48.txt b/maze/task2/maps/level6/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..af326df2842f9ab04a6b4d6c8e716bc8eba6b2dd --- /dev/null +++ b/maze/task2/maps/level6/table/48.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | * | _ | _ | +| Row 5 | _ | _ | _ | # | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/49.txt b/maze/task2/maps/level6/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..85d0cf01c5e1ceb08d1d8860d0abe2c7c79fd218 --- /dev/null +++ b/maze/task2/maps/level6/table/49.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/5.txt b/maze/task2/maps/level6/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f353d1e196611558b19ce127316b466113d4eb7 --- /dev/null +++ b/maze/task2/maps/level6/table/5.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | @ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/50.txt b/maze/task2/maps/level6/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..043831343d556c3ad4034a80724bcf5fdcccf975 --- /dev/null +++ b/maze/task2/maps/level6/table/50.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | @ | _ | # | +| Row 6 | # | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level6/table/51.txt b/maze/task2/maps/level6/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..b71bd362d0475d822c052fdefd14f1717e452235 --- /dev/null +++ b/maze/task2/maps/level6/table/51.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | @ | * | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/52.txt b/maze/task2/maps/level6/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..34032731383169cb4f1ce286f14fbfda9a5c1b56 --- /dev/null +++ b/maze/task2/maps/level6/table/52.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/53.txt b/maze/task2/maps/level6/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..65154d3f01ed2474d858c54ad55cbb26a4a45aa0 --- /dev/null +++ b/maze/task2/maps/level6/table/53.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | _ | _ | # | * | _ | diff --git a/maze/task2/maps/level6/table/54.txt b/maze/task2/maps/level6/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c16e833ca29dd2ef28d540e47410f5c889df4c9 --- /dev/null +++ b/maze/task2/maps/level6/table/54.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/55.txt b/maze/task2/maps/level6/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9fb3fea777d1ecaed1d3041be8b3c5622b03dd4 --- /dev/null +++ b/maze/task2/maps/level6/table/55.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | * | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/56.txt b/maze/task2/maps/level6/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..6015b0e81293b8243f455f6aa8facc39d338aca0 --- /dev/null +++ b/maze/task2/maps/level6/table/56.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | # | +| Row 3 | # | _ | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | # | diff --git a/maze/task2/maps/level6/table/57.txt b/maze/task2/maps/level6/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6bb7e2b197fd9bcdc24abdf007d06a90d018e75 --- /dev/null +++ b/maze/task2/maps/level6/table/57.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | +| Row 6 | * | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/58.txt b/maze/task2/maps/level6/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f74dc2b187e3f854c7dda74926dccc9b62dd305 --- /dev/null +++ b/maze/task2/maps/level6/table/58.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | # | * | @ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/59.txt b/maze/task2/maps/level6/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..3558ddaf432a40401c18b738f63a95fc60bc9e45 --- /dev/null +++ b/maze/task2/maps/level6/table/59.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | @ | # | * | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | +| Row 5 | _ | # | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/6.txt b/maze/task2/maps/level6/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa5a8c0ddc5b170801a1f8b290c6b13daee47f26 --- /dev/null +++ b/maze/task2/maps/level6/table/6.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | # | @ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/60.txt b/maze/task2/maps/level6/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b09694f53727f71f506c2d399ff08ccd53469e4c --- /dev/null +++ b/maze/task2/maps/level6/table/60.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level6/table/61.txt b/maze/task2/maps/level6/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ffa7198c452ab865e4067ef0514883cf5d2e97c --- /dev/null +++ b/maze/task2/maps/level6/table/61.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/62.txt b/maze/task2/maps/level6/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..76b292670edd04a92628d71db845f496a0b67a80 --- /dev/null +++ b/maze/task2/maps/level6/table/62.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | _ | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/63.txt b/maze/task2/maps/level6/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..54d2bc231293c0f8f7641ec5953d4c404de422a7 --- /dev/null +++ b/maze/task2/maps/level6/table/63.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | * | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/64.txt b/maze/task2/maps/level6/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..06a1c06af1ceb30b880d2b81222d1a7ce2e8da34 --- /dev/null +++ b/maze/task2/maps/level6/table/64.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/65.txt b/maze/task2/maps/level6/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..323debee2adc90bb8b8c4e81611e39a881233591 --- /dev/null +++ b/maze/task2/maps/level6/table/65.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/66.txt b/maze/task2/maps/level6/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed6da14d3ad89d94badd41c90255dd505c63d917 --- /dev/null +++ b/maze/task2/maps/level6/table/66.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | _ | +| Row 6 | _ | _ | # | # | @ | # | diff --git a/maze/task2/maps/level6/table/67.txt b/maze/task2/maps/level6/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddc027add7d3e60d0646770343dc70d429193204 --- /dev/null +++ b/maze/task2/maps/level6/table/67.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/68.txt b/maze/task2/maps/level6/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e9b418c9e2418b8b145e3bee79acfa77bd468e9 --- /dev/null +++ b/maze/task2/maps/level6/table/68.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | # | _ | +| Row 3 | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/69.txt b/maze/task2/maps/level6/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae9ff2643262f030f115698f60b97dde148bf6a8 --- /dev/null +++ b/maze/task2/maps/level6/table/69.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | # | * | _ | _ | _ | # | diff --git a/maze/task2/maps/level6/table/7.txt b/maze/task2/maps/level6/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee92d3eaa120b36fa804a920e4302e3a514777cb --- /dev/null +++ b/maze/task2/maps/level6/table/7.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/70.txt b/maze/task2/maps/level6/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddc0505ff485d6a1cdd9f5e7d86efd7380a88823 --- /dev/null +++ b/maze/task2/maps/level6/table/70.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | _ | _ | +| Row 2 | * | _ | # | _ | _ | @ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/71.txt b/maze/task2/maps/level6/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..31af6fd6eae3e8dfabc840c5d010459f843846c5 --- /dev/null +++ b/maze/task2/maps/level6/table/71.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level6/table/72.txt b/maze/task2/maps/level6/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..012893c9479fdf20f7cebfae0fa71eb722d7d56a --- /dev/null +++ b/maze/task2/maps/level6/table/72.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/73.txt b/maze/task2/maps/level6/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b8efb216d77463b61dde20f634cbd13cab5ee7c --- /dev/null +++ b/maze/task2/maps/level6/table/73.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | _ | * | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | @ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/74.txt b/maze/task2/maps/level6/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..c341a2b823fe3d8f408366c6334d8d23fba90b47 --- /dev/null +++ b/maze/task2/maps/level6/table/74.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | * | _ | _ | diff --git a/maze/task2/maps/level6/table/75.txt b/maze/task2/maps/level6/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..194d8d6801060b3ecfe610efdd3b936c8cc7b4cd --- /dev/null +++ b/maze/task2/maps/level6/table/75.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | # | _ | @ | +| Row 6 | _ | _ | * | _ | # | # | diff --git a/maze/task2/maps/level6/table/76.txt b/maze/task2/maps/level6/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2b80e6f762e706f3db51ecae1bda32f515112b0 --- /dev/null +++ b/maze/task2/maps/level6/table/76.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | * | _ | +| Row 6 | _ | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/77.txt b/maze/task2/maps/level6/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f983396a784d11b94325d5c1804f31b46747305 --- /dev/null +++ b/maze/task2/maps/level6/table/77.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | # | +| Row 3 | _ | # | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/78.txt b/maze/task2/maps/level6/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..43342b9de0c0a6e3a31ce9cca9ee68fb2ffe0b74 --- /dev/null +++ b/maze/task2/maps/level6/table/78.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/79.txt b/maze/task2/maps/level6/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ad5d0e3dd02e48a49cadc89af24d01ffed76f68 --- /dev/null +++ b/maze/task2/maps/level6/table/79.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | _ | * | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | @ | diff --git a/maze/task2/maps/level6/table/8.txt b/maze/task2/maps/level6/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..835ce8230784a60f0ac208a2881407aff09d6902 --- /dev/null +++ b/maze/task2/maps/level6/table/8.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | diff --git a/maze/task2/maps/level6/table/80.txt b/maze/task2/maps/level6/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c527e603499c4e9cced2e0e147a687d6e0934f9 --- /dev/null +++ b/maze/task2/maps/level6/table/80.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/81.txt b/maze/task2/maps/level6/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e7516984c3fb251d8cc8372c95c4af53513a0ae --- /dev/null +++ b/maze/task2/maps/level6/table/81.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | * | _ | _ | diff --git a/maze/task2/maps/level6/table/82.txt b/maze/task2/maps/level6/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..83793a2974de9204443c8008a17af0bd75d75938 --- /dev/null +++ b/maze/task2/maps/level6/table/82.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | @ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level6/table/83.txt b/maze/task2/maps/level6/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b5e7208730f8dcea2bc34e8f6b3e4f4d238b2c6 --- /dev/null +++ b/maze/task2/maps/level6/table/83.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level6/table/84.txt b/maze/task2/maps/level6/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0355607203a8e4a5a26f2e5ddabf78e46daf7e6 --- /dev/null +++ b/maze/task2/maps/level6/table/84.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/85.txt b/maze/task2/maps/level6/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..115be45597820a47eb1701b9bcfc273828e2645b --- /dev/null +++ b/maze/task2/maps/level6/table/85.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | diff --git a/maze/task2/maps/level6/table/86.txt b/maze/task2/maps/level6/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..f34c55d242deb70adeacce2d5d72db681169d2f9 --- /dev/null +++ b/maze/task2/maps/level6/table/86.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task2/maps/level6/table/87.txt b/maze/task2/maps/level6/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..a595fdfe158a2c32569efbe371458f3e7cf5427c --- /dev/null +++ b/maze/task2/maps/level6/table/87.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | diff --git a/maze/task2/maps/level6/table/88.txt b/maze/task2/maps/level6/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fbf6c451b8207dd864b7af7c8fbc08dd45cb4c5 --- /dev/null +++ b/maze/task2/maps/level6/table/88.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | _ | @ | _ | _ | _ | _ | +| Row 4 | # | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | diff --git a/maze/task2/maps/level6/table/89.txt b/maze/task2/maps/level6/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4f4512d072260d170908b91d44159f2928ec82d --- /dev/null +++ b/maze/task2/maps/level6/table/89.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | * | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | @ | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level6/table/9.txt b/maze/task2/maps/level6/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee84591ddaad5cca640ec788d0f50ee645d9d2e2 --- /dev/null +++ b/maze/task2/maps/level6/table/9.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | diff --git a/maze/task2/maps/level6/table/90.txt b/maze/task2/maps/level6/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ea10d96e1652b91beff879364c380d2c2066675 --- /dev/null +++ b/maze/task2/maps/level6/table/90.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/91.txt b/maze/task2/maps/level6/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..21ac23e165252e80c23aa37d5b0ba44bf1f16027 --- /dev/null +++ b/maze/task2/maps/level6/table/91.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | # | _ | # | # | diff --git a/maze/task2/maps/level6/table/92.txt b/maze/task2/maps/level6/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8e3013e3b71b5aab9a9c978b85f2704c0def793 --- /dev/null +++ b/maze/task2/maps/level6/table/92.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | # | # | # | diff --git a/maze/task2/maps/level6/table/93.txt b/maze/task2/maps/level6/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..9602f42aa3d791f5b531cd9c7beafe0b69d71a6f --- /dev/null +++ b/maze/task2/maps/level6/table/93.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | * | # | @ | diff --git a/maze/task2/maps/level6/table/94.txt b/maze/task2/maps/level6/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..e00d89b76258b016416296b36a34ccef45fdb2ed --- /dev/null +++ b/maze/task2/maps/level6/table/94.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | * | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/95.txt b/maze/task2/maps/level6/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccc89fee749e3122c815784a67f48b129dda818a --- /dev/null +++ b/maze/task2/maps/level6/table/95.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/96.txt b/maze/task2/maps/level6/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5cb9ca4f493c057185c886b2b194802d2af09a7 --- /dev/null +++ b/maze/task2/maps/level6/table/96.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/97.txt b/maze/task2/maps/level6/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..94d4e5c72bfcaa43e0c034ae314503e5aae0b1d1 --- /dev/null +++ b/maze/task2/maps/level6/table/97.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | * | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | diff --git a/maze/task2/maps/level6/table/98.txt b/maze/task2/maps/level6/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..095a1505f25029f46b5ae4d548a43cedd5580083 --- /dev/null +++ b/maze/task2/maps/level6/table/98.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | * | # | # | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level6/table/99.txt b/maze/task2/maps/level6/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..52b7bb179f2aa8d9ce8cffd79ff2afce81cecb87 --- /dev/null +++ b/maze/task2/maps/level6/table/99.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | @ | +| Row 4 | _ | # | _ | _ | # | _ | +| Row 5 | _ | _ | # | _ | _ | # | +| Row 6 | _ | * | _ | _ | _ | # | diff --git a/maze/task2/maps/level7/img/0.png b/maze/task2/maps/level7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7cdf5342c15b189c80ef2c63518cad4d410a0932 --- /dev/null +++ b/maze/task2/maps/level7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a98ae61b479f23858c3793337e2c6e0d825a199f0461cdac32f3daedc147153 +size 15793 diff --git a/maze/task2/maps/level7/img/1.png b/maze/task2/maps/level7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bd028b6761b6ca5a42d1c150a4e23d31369979b8 --- /dev/null +++ b/maze/task2/maps/level7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3914995c27e4c03d136598689379cffc1abc4a189c231ded00955979207faf27 +size 14995 diff --git a/maze/task2/maps/level7/img/10.png b/maze/task2/maps/level7/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6d57315db888d53ce58d81d8b27f335178c0edb1 --- /dev/null +++ b/maze/task2/maps/level7/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf972cf71e39a1d99eb17745da9aa5db1187904ea4fd08eb4c98c32bee49593e +size 16764 diff --git a/maze/task2/maps/level7/img/11.png b/maze/task2/maps/level7/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..68ccbe646836988938cb756b958bf55c25f3a1a6 --- /dev/null +++ b/maze/task2/maps/level7/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0c1488e28d342d1f888c7343ddccdd7da1b64bd010d20895de91d03988dc09 +size 14882 diff --git a/maze/task2/maps/level7/img/12.png b/maze/task2/maps/level7/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..74c13c2cf55263c29daf1b92e341416b429d6940 --- /dev/null +++ b/maze/task2/maps/level7/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331eaa7cec6acd5f43a93a68da3fafc83023ce592ea209407f839deabe9d9f16 +size 14804 diff --git a/maze/task2/maps/level7/img/13.png b/maze/task2/maps/level7/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6f5cce943f26d567cd51a54591d3891ca745a011 --- /dev/null +++ b/maze/task2/maps/level7/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64921c615a99fe341fbb03762df5be9684d1632bc4bff78463e4126942e5c54c +size 15852 diff --git a/maze/task2/maps/level7/img/14.png b/maze/task2/maps/level7/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4ef033e0270d347745f7ee968ab0bceaa244826f --- /dev/null +++ b/maze/task2/maps/level7/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcba9849b0ede0164c06f01ceb1134eb64bcc11fa4c89dbc6c1c1bc210ff4091 +size 15962 diff --git a/maze/task2/maps/level7/img/15.png b/maze/task2/maps/level7/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..65533cfd78862f538d3ab80db7e5479bb6985ea1 --- /dev/null +++ b/maze/task2/maps/level7/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c34396f886480fafbb7f4c11375a57fa85fb659f89ebbe7d2185e7e289509d4 +size 14800 diff --git a/maze/task2/maps/level7/img/16.png b/maze/task2/maps/level7/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8264456ae565c30375756c3ff28cc54e052a9ff5 --- /dev/null +++ b/maze/task2/maps/level7/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5124fefde6b773fc04417540e89b20b9911d0ba4a3602976c60a2d6363d99a5 +size 16670 diff --git a/maze/task2/maps/level7/img/17.png b/maze/task2/maps/level7/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..cc6728273c350d8c49a5feab46137fcc5d545170 --- /dev/null +++ b/maze/task2/maps/level7/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eae43e86f2986de6b1d555d97cc02610e9543a8a87577999571ed2220c70770 +size 16692 diff --git a/maze/task2/maps/level7/img/18.png b/maze/task2/maps/level7/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..bfc3d7c2223ce85a574adfb98f4112d5e3972b62 --- /dev/null +++ b/maze/task2/maps/level7/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edcb72a67c5ac5a72efe7fffcb7d679ba612676b402ad4ef6a86bd9ca218e46f +size 15912 diff --git a/maze/task2/maps/level7/img/19.png b/maze/task2/maps/level7/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..743416a03f152eb9a385da8b48f3e186979bff30 --- /dev/null +++ b/maze/task2/maps/level7/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b62af239c380ece96461143b0ae2ffdcf3be6f68e552b62948c0dab56a2a738 +size 15824 diff --git a/maze/task2/maps/level7/img/2.png b/maze/task2/maps/level7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..af01bd2f791ef0592cec539da878903a3cced753 --- /dev/null +++ b/maze/task2/maps/level7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcaaacf017ca50eb72e7d578531c891472bbed301837c84e57a159e3ad490bcc +size 14862 diff --git a/maze/task2/maps/level7/img/20.png b/maze/task2/maps/level7/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..52aca6464d734a9c730fa756bd8144ec02b49190 --- /dev/null +++ b/maze/task2/maps/level7/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd37b36a1d555672bcce2a857ea09af9fa3aecf898faa0099e4bc669fd4db737 +size 15795 diff --git a/maze/task2/maps/level7/img/21.png b/maze/task2/maps/level7/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..c7ca689ed6729b3c3a5db6e42538132ddf222b9c --- /dev/null +++ b/maze/task2/maps/level7/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d59be7497bd16fa558b70d29f9feca86a86464f9ade67d340a75914b9f268c +size 14128 diff --git a/maze/task2/maps/level7/img/22.png b/maze/task2/maps/level7/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..561670b52965d45d9bfcce9e777e6a42b43ba89d --- /dev/null +++ b/maze/task2/maps/level7/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159e4f1a1052931e5c4e23085c6ea09cef4392b5ffa8bb7e7633aed5bacf858d +size 15878 diff --git a/maze/task2/maps/level7/img/23.png b/maze/task2/maps/level7/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..0aa1bcddf4506754c3bcf49fec81c39331cabfa6 --- /dev/null +++ b/maze/task2/maps/level7/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4462015daf34f13fd67688c97d1ab3903b61cfe1344fa1e9473d75b41f3298bf +size 16959 diff --git a/maze/task2/maps/level7/img/24.png b/maze/task2/maps/level7/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..3ed76607325da8c29ef4acb77fe9b6dd4e6262ab --- /dev/null +++ b/maze/task2/maps/level7/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad959945a6bb18216518cbdfe776cf952a62a586f0fdb2aae7effae4bbcef49 +size 16114 diff --git a/maze/task2/maps/level7/img/25.png b/maze/task2/maps/level7/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..6c77bf3a368ae39c03a7c03aa96fdfc2ea9dea28 --- /dev/null +++ b/maze/task2/maps/level7/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00e8ca7e5b2e83c9e3399e78678054fd01103f094139b21ce0adada72e9c5c2 +size 14954 diff --git a/maze/task2/maps/level7/img/26.png b/maze/task2/maps/level7/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..c2e65c38f4d03f3d7ffcfe4d678533b4fc8907c9 --- /dev/null +++ b/maze/task2/maps/level7/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1bb13ebc40413ddfb8f53a20a3379c61068039f96836534d163acd84f33ef3 +size 16668 diff --git a/maze/task2/maps/level7/img/27.png b/maze/task2/maps/level7/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..6478cb1c9f932283f11c83b3c6f20e6a766f60f0 --- /dev/null +++ b/maze/task2/maps/level7/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998f82bd5396ac2810a7c7873c1f1c554d4182aa39b9df554b503719557352f2 +size 13979 diff --git a/maze/task2/maps/level7/img/28.png b/maze/task2/maps/level7/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..997c7d2b1c48b16403a477404da07daf217a0f92 --- /dev/null +++ b/maze/task2/maps/level7/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b797d240f19afcf5ff72ac0ccda8c2f58754c3ac7d0f8c1818d1dbab735376 +size 15811 diff --git a/maze/task2/maps/level7/img/29.png b/maze/task2/maps/level7/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..2428299c6d8edd439eca2ab18a45160adb0f8527 --- /dev/null +++ b/maze/task2/maps/level7/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bebe2bd09d99f5a573145e6e7a8d7bd554a22ae448bf39b36d0cd5ba622d4ba +size 16646 diff --git a/maze/task2/maps/level7/img/3.png b/maze/task2/maps/level7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b050868b341763d86cd18a546ed0fa8d55040442 --- /dev/null +++ b/maze/task2/maps/level7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df04dee2563233e9d8ea0f3792511efd22e5d9fea5ea9c4b1feb7de86ae96f6 +size 13038 diff --git a/maze/task2/maps/level7/img/30.png b/maze/task2/maps/level7/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..f637198b4a43407345f80325022db5ccceb263a4 --- /dev/null +++ b/maze/task2/maps/level7/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f6abc08c1246442db82a4a35ef4bd296b3bd5091d6de6676b658229074387c +size 15860 diff --git a/maze/task2/maps/level7/img/31.png b/maze/task2/maps/level7/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..fce5e6e8aba58ab673a725d7168e9b6b3f42dbb7 --- /dev/null +++ b/maze/task2/maps/level7/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1906aeb9fe790f2b6fbfc26985f0ea0eb02360403e4604e7bab5eb31abff81c7 +size 15801 diff --git a/maze/task2/maps/level7/img/32.png b/maze/task2/maps/level7/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..33674651409565eccd2da547c81428dd5a1664f7 --- /dev/null +++ b/maze/task2/maps/level7/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6423daeb6dbad16aa4321898179158ec34ea05106f380682455a14dfcc8d1d +size 15767 diff --git a/maze/task2/maps/level7/img/33.png b/maze/task2/maps/level7/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..74ce891738f33dac9543afd9c292fd319f4beeb9 --- /dev/null +++ b/maze/task2/maps/level7/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73bb40e9d7fec87ff4a5e7a443ecb6c391ed3451427ff59d75bdf5cc333ecdfb +size 16041 diff --git a/maze/task2/maps/level7/img/34.png b/maze/task2/maps/level7/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..52aa7b27e803c9729118c1e10547316307f81f68 --- /dev/null +++ b/maze/task2/maps/level7/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09c96681a45579cb12b8895329518cb45a9854d675d583a0dc93722d9ae533ae +size 14994 diff --git a/maze/task2/maps/level7/img/35.png b/maze/task2/maps/level7/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..124190a7d1aca1230ef15d8b890a076c58e3fe4d --- /dev/null +++ b/maze/task2/maps/level7/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72b195d41a8c00f8e09f04672364201510257890f8562ddf4667600c16f469e +size 14799 diff --git a/maze/task2/maps/level7/img/36.png b/maze/task2/maps/level7/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..e7362cf6843b196b6a1c93c70d5d18b7c78cf936 --- /dev/null +++ b/maze/task2/maps/level7/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d9fa87cd6f1da2dda7b056eab559886da115595349e68f9747c9ff735ec34f +size 15888 diff --git a/maze/task2/maps/level7/img/37.png b/maze/task2/maps/level7/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..bae032cbc08c17b543a484e68592c69eace51a71 --- /dev/null +++ b/maze/task2/maps/level7/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcc8a5eac503d2473ba7f2a4d69a399bd029daacc37acd22273360a8b8a034d +size 14006 diff --git a/maze/task2/maps/level7/img/38.png b/maze/task2/maps/level7/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..147cc6c293244edf5b62e8dd5ff1d38589de142f --- /dev/null +++ b/maze/task2/maps/level7/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f89e131c82e27da5c1638c8970f3f25fd22a3e043ee979f9b25a4b5c69b669d0 +size 14075 diff --git a/maze/task2/maps/level7/img/39.png b/maze/task2/maps/level7/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..51f23233f3ff43e371cd0d5b1eb68ec1f2fbb254 --- /dev/null +++ b/maze/task2/maps/level7/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923c3545caf3696b459dc6dd1c43012b23c3e6b0cb8b275c033ab9273ea7c316 +size 15769 diff --git a/maze/task2/maps/level7/img/4.png b/maze/task2/maps/level7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..71acd2b7540d1f2c6fee59eadd129b285c7479ce --- /dev/null +++ b/maze/task2/maps/level7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab6813dccdff319a1cdf0594189825178fee74a594199bb2e8ec1e92664b69a +size 14795 diff --git a/maze/task2/maps/level7/img/40.png b/maze/task2/maps/level7/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..5e83bef146824cb7ce0283ef271b0779bfd43fa7 --- /dev/null +++ b/maze/task2/maps/level7/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:077f2853e316ba58383dfc3ed79233e84f6df5d31ca133ba36cedda6a3ae4c83 +size 15892 diff --git a/maze/task2/maps/level7/img/41.png b/maze/task2/maps/level7/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..95f17b8f36f4b036496ba150d02a25e869a969d9 --- /dev/null +++ b/maze/task2/maps/level7/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14af66922c5498e2d3dbf68b7ff019e7c315ac0b68f4bbd92a9ed27898318eae +size 15836 diff --git a/maze/task2/maps/level7/img/42.png b/maze/task2/maps/level7/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..4d297adbcfcdc8ee36662c8259d06f4b9a4e6eb5 --- /dev/null +++ b/maze/task2/maps/level7/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3153a009d9e391f951b1146a6465f9cb0c79cc322ec91bfd3fd4ce1bd3a2ef8 +size 15054 diff --git a/maze/task2/maps/level7/img/43.png b/maze/task2/maps/level7/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..db8bf51b9001c983a5f41bf41b63ecb8d4075b42 --- /dev/null +++ b/maze/task2/maps/level7/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13a90f232e601dcbde4c9e57f5fb283d900c8e32da93299b0d423bb6b4f9112 +size 14820 diff --git a/maze/task2/maps/level7/img/44.png b/maze/task2/maps/level7/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..f72e34f97f17bf9a026bfcb97be1cddda1eb60ff --- /dev/null +++ b/maze/task2/maps/level7/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93bc38a7f4330e790900bbc713ff022bf14ff7c1a29e2ab7c5486a5fdf6b0535 +size 15818 diff --git a/maze/task2/maps/level7/img/45.png b/maze/task2/maps/level7/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..ed0be9dfa21a48ec93852136c02a915621ce2ecb --- /dev/null +++ b/maze/task2/maps/level7/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f93e7095016bd15b14221f7227e26ed853e041b947fca11ee3b68531ea7d7b +size 14881 diff --git a/maze/task2/maps/level7/img/46.png b/maze/task2/maps/level7/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..8102fa1f2b0aa54c91c1eb18b881b064c7b1f652 --- /dev/null +++ b/maze/task2/maps/level7/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd93e095fae10e3ad415675d008b4055fab97c9bf8f29c8e9f87d48455a9a85d +size 14017 diff --git a/maze/task2/maps/level7/img/47.png b/maze/task2/maps/level7/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..5531ce9e1af6d5a1bb16df26f51d9e31c474d8bb --- /dev/null +++ b/maze/task2/maps/level7/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afdffef70b02a5495ab922ae8b9fad639897fcecf0320a85690b64ac87953ee9 +size 14879 diff --git a/maze/task2/maps/level7/img/48.png b/maze/task2/maps/level7/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..0e1da4730a1436c7415e86f61d447a3504fd8bdc --- /dev/null +++ b/maze/task2/maps/level7/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85da61d77646a02b5835e3bf32ccdf680b441b798c1701c9478769e0da45e941 +size 14007 diff --git a/maze/task2/maps/level7/img/49.png b/maze/task2/maps/level7/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..4bbc09f2b973e875430faa26b58cd0f03bc50c46 --- /dev/null +++ b/maze/task2/maps/level7/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37e8f12d419049879dd2382acc952e5b845027c115acf5ab901711b1c855d8c +size 16497 diff --git a/maze/task2/maps/level7/img/5.png b/maze/task2/maps/level7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b331dd9df5de4d6ccce64d4f00762b59cd3ae2dc --- /dev/null +++ b/maze/task2/maps/level7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b831f9b39190b681c966c3bc25343c5ba999f8f2b185050487f0be2f4095df +size 16642 diff --git a/maze/task2/maps/level7/img/50.png b/maze/task2/maps/level7/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..0847348c498629f70c05b5be3960ec5fbf483254 --- /dev/null +++ b/maze/task2/maps/level7/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446874c4227ea35c3644bc1b92006625ba37c2023491d344fccd3bcd9ffb07b1 +size 16567 diff --git a/maze/task2/maps/level7/img/51.png b/maze/task2/maps/level7/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..af90f267729e59db583275f0bdbd20e5c2c39e7c --- /dev/null +++ b/maze/task2/maps/level7/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc1180afa8380ec3d96aac33c5806136f06382da43022928cc84d82e9c1efe03 +size 15665 diff --git a/maze/task2/maps/level7/img/52.png b/maze/task2/maps/level7/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..5117d601b75cd4aec722f1330e0f4a2c74e587ee --- /dev/null +++ b/maze/task2/maps/level7/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d17ea7fb21c1adeb931181e7fef775de5a356fa6f997d75e8e8cdf574fb2035 +size 14835 diff --git a/maze/task2/maps/level7/img/53.png b/maze/task2/maps/level7/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..50a9aeff923e08f16722a11437d1345a24bf9923 --- /dev/null +++ b/maze/task2/maps/level7/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a553bc8f58e9d47e156c5af62de3c1157d139c9a129377649fdcc727e6f1ee42 +size 15607 diff --git a/maze/task2/maps/level7/img/54.png b/maze/task2/maps/level7/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..f89a4a2fa21269393a071d7992704f9963661207 --- /dev/null +++ b/maze/task2/maps/level7/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4e88137cdcf4ed252acdeb7f4716a3c5bed1d0bdcfbe2a7d39ae0a59634325 +size 14878 diff --git a/maze/task2/maps/level7/img/55.png b/maze/task2/maps/level7/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..658ee13fc295fbb12628a59b3f531e9eb9da0290 --- /dev/null +++ b/maze/task2/maps/level7/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af18ef58f60f597b0bfe74453933a6a1a2c6fed3b05f27f86f0e256f16bc7534 +size 16111 diff --git a/maze/task2/maps/level7/img/56.png b/maze/task2/maps/level7/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..119764aa9bd636d96cc2612171e6ce1be9e49c0b --- /dev/null +++ b/maze/task2/maps/level7/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8405b447d19a0047ade8f332ccc6934a5d84447f127d1e2f2959510bf768f87f +size 13330 diff --git a/maze/task2/maps/level7/img/57.png b/maze/task2/maps/level7/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..90921c75aad18bfab52e8eaccbef8d8083e4a301 --- /dev/null +++ b/maze/task2/maps/level7/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abea35c20b22f72f827bcf070ea3bfdd0fbb96fe7f20d4b03975afda0e4bb4c1 +size 14833 diff --git a/maze/task2/maps/level7/img/58.png b/maze/task2/maps/level7/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9458ac0dbc9d9288f19cb116b31bf81e7bbd1a --- /dev/null +++ b/maze/task2/maps/level7/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59fd9e758e450bc04c781911ef23df50cd7542f439eb6be9a1498974d00f601d +size 15078 diff --git a/maze/task2/maps/level7/img/59.png b/maze/task2/maps/level7/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..113da7c6c9e7c598e6500af5826d3a450dee7561 --- /dev/null +++ b/maze/task2/maps/level7/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73775a6d70306fb2eebd1bbd6b08619e410e1f66786a1f7c7536c793d3eb6211 +size 14064 diff --git a/maze/task2/maps/level7/img/6.png b/maze/task2/maps/level7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1c5d934b637f81d62172c216edf8ece2ced92514 --- /dev/null +++ b/maze/task2/maps/level7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581a48d5f089561cabd01d786fd5934a03f7bb7e98faa1aefacd7d0285a55016 +size 15913 diff --git a/maze/task2/maps/level7/img/60.png b/maze/task2/maps/level7/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..487176131466b03a73dcee77230e4e3db9d4a184 --- /dev/null +++ b/maze/task2/maps/level7/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f48d134435261a0e15f2298798a65c377829075af27852ac4e19772b803ed4 +size 15797 diff --git a/maze/task2/maps/level7/img/61.png b/maze/task2/maps/level7/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..485a7a2a8cd9106df8599b794d7ebbfe4cf29fcb --- /dev/null +++ b/maze/task2/maps/level7/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4933fced12c237fa1c288aeee782af69258623b8a41578f23484befb8aef0e1 +size 16161 diff --git a/maze/task2/maps/level7/img/62.png b/maze/task2/maps/level7/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..d56aa180aa3c52bec2b388c1887d9ade19ddaf88 --- /dev/null +++ b/maze/task2/maps/level7/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbae10840cf23b07f94d06e0d6a086668472d806eeb3971e32ca5107725f463a +size 15795 diff --git a/maze/task2/maps/level7/img/63.png b/maze/task2/maps/level7/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..9800a6c611bd072b10d9815d65adb89ff83279f1 --- /dev/null +++ b/maze/task2/maps/level7/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f63df2f488f9706c0dc24f7a51fec5eee30367001f5a3a30ffbd02bd9a52bdf +size 15802 diff --git a/maze/task2/maps/level7/img/64.png b/maze/task2/maps/level7/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..12bc19d9e8c0c094f07bd47476454f1d044236fa --- /dev/null +++ b/maze/task2/maps/level7/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2567510c3d4c108781b349ae12afbfe03b1aac3edea199f53a22572de29f1f94 +size 14983 diff --git a/maze/task2/maps/level7/img/65.png b/maze/task2/maps/level7/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..adf3f97b0fbe862b9e8d698c9619f00f0405e78c --- /dev/null +++ b/maze/task2/maps/level7/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf54c812c8544c73f8a2df942d6cd9b4c6ec8a38ff1bb417741cf5a274fa788 +size 15792 diff --git a/maze/task2/maps/level7/img/66.png b/maze/task2/maps/level7/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..bf6f995fd13a46c272d40dec29c6446507a42cdc --- /dev/null +++ b/maze/task2/maps/level7/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64062d937b30142a39054b68f9d9926e816c86ff692c05fce7150136e9e18436 +size 14076 diff --git a/maze/task2/maps/level7/img/67.png b/maze/task2/maps/level7/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..2afb93335f7b7d14051d150f133d7c206c3d7a18 --- /dev/null +++ b/maze/task2/maps/level7/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b46b75b472d57405383637df7291287fee6afd78b9f679c5377e910cfc55409 +size 15675 diff --git a/maze/task2/maps/level7/img/68.png b/maze/task2/maps/level7/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..bbd61b6ca6487cfb3ff7ae535367967ad13cfe3d --- /dev/null +++ b/maze/task2/maps/level7/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc996a4e9b6b0e5ce5add3c83a3a275907de3130cda6d7f2e542887615201a71 +size 16551 diff --git a/maze/task2/maps/level7/img/69.png b/maze/task2/maps/level7/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..6360e189028b836aa6a754d4be2846cd7a1970da --- /dev/null +++ b/maze/task2/maps/level7/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf5ed0daa4bfe8dc3d5c5c919823d3d9f7ffcb33136ccdc21106f330c9671d54 +size 16814 diff --git a/maze/task2/maps/level7/img/7.png b/maze/task2/maps/level7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..42ac4349eeb6b210452a75629775086d668e5361 --- /dev/null +++ b/maze/task2/maps/level7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254054584ef2b28a85430ca80f0da169f10b7890ffa93205ec4321b338602af0 +size 13923 diff --git a/maze/task2/maps/level7/img/70.png b/maze/task2/maps/level7/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..c175c269fa0d8b476cf744c8166024fe66160efe --- /dev/null +++ b/maze/task2/maps/level7/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d942b99599f218ae7d9d3c8477fd25683d859cd8c0578ee7d2c6ac990570d630 +size 16646 diff --git a/maze/task2/maps/level7/img/71.png b/maze/task2/maps/level7/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..172977fbd548790ba8abe307f78d1ac36a874c31 --- /dev/null +++ b/maze/task2/maps/level7/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3a8a4c04ccff8d028370a2601f3e93c7966451596c9e320389aa83a3cd4692 +size 14049 diff --git a/maze/task2/maps/level7/img/72.png b/maze/task2/maps/level7/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..77193faf902a69c7537fdfe6882a62ffa75d2ed7 --- /dev/null +++ b/maze/task2/maps/level7/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2de716b19f84981f47d77dce1147fa268087b5f3415e5dcfcbc164569268ea +size 15827 diff --git a/maze/task2/maps/level7/img/73.png b/maze/task2/maps/level7/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..110301b6357ee63a07f8806ff2748287e437ab9f --- /dev/null +++ b/maze/task2/maps/level7/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2311954139350513ba8c5a1a45eba0dbc85a0dc740320e815dffc9bfd5470251 +size 13918 diff --git a/maze/task2/maps/level7/img/74.png b/maze/task2/maps/level7/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..4f436a4f03b8b77d28e145f1022cdec521634adb --- /dev/null +++ b/maze/task2/maps/level7/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ec4c72c4ff0451341b61809fda692869d318c2a081d1dfd03b2d825776941a +size 15768 diff --git a/maze/task2/maps/level7/img/75.png b/maze/task2/maps/level7/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..429f2c4632829c310dbddf40b6a4e43e3697bba0 --- /dev/null +++ b/maze/task2/maps/level7/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c2587d3e2cae9caad3fcc85ae3be400baee340d6915ff1725b69fa7329132e +size 15980 diff --git a/maze/task2/maps/level7/img/76.png b/maze/task2/maps/level7/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..9d118f8e97c0c294667ec510a866f06cc958a922 --- /dev/null +++ b/maze/task2/maps/level7/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bf019a877ec1d84b2bd2770720089ff983eef5d7ff1a35d6d36cd99ba016ab +size 15746 diff --git a/maze/task2/maps/level7/img/77.png b/maze/task2/maps/level7/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..2b38e3ff8160efe714d0da501ea6734a8112cb66 --- /dev/null +++ b/maze/task2/maps/level7/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21206556b34996392c28fe6c8ff95ccbbb28e2ed206c502cd3df5d8ebaf7e26b +size 14808 diff --git a/maze/task2/maps/level7/img/78.png b/maze/task2/maps/level7/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..fd84788ec293a6533826490679a5df2355aed247 --- /dev/null +++ b/maze/task2/maps/level7/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7d34306c5370407d87327e78587d927e1aaff13c3cd4aabaf9d0069ec5b4dc +size 15899 diff --git a/maze/task2/maps/level7/img/79.png b/maze/task2/maps/level7/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d395314e29a89b78930dcc14ed8013e115975e --- /dev/null +++ b/maze/task2/maps/level7/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb151784f499f44908a79ccb6b1cbcee2570fc1dcf9ec78ed85c4b4a417689c +size 16602 diff --git a/maze/task2/maps/level7/img/8.png b/maze/task2/maps/level7/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..808984f0e0ea66e8807354cc23ce4d2d8464e4d3 --- /dev/null +++ b/maze/task2/maps/level7/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:507c56c9b671f27e4e4345764f1816e71a802b2c46c1c1a578ae1702f0364768 +size 13078 diff --git a/maze/task2/maps/level7/img/80.png b/maze/task2/maps/level7/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..b0a0d51b0ef037cdc73ab067a5de98ce5c6a7e38 --- /dev/null +++ b/maze/task2/maps/level7/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e08e9c346c9e504e152f62e9879e90ca69238fae008d3b839cd92b5f8e3eb5 +size 15980 diff --git a/maze/task2/maps/level7/img/81.png b/maze/task2/maps/level7/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..73da5230a7f11a8b3f28341123d62507689881e7 --- /dev/null +++ b/maze/task2/maps/level7/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231e4a1cf15e1872890a23392001702e77ef8c030e62a90f438aa84ce9d6f404 +size 14827 diff --git a/maze/task2/maps/level7/img/82.png b/maze/task2/maps/level7/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..66343c575952eb61bdaa9d59c9c8f27f5b1178f4 --- /dev/null +++ b/maze/task2/maps/level7/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b701d593c649a9397e41c7e05472f1445711a3abd6c77cf2fd09329940fb120c +size 14918 diff --git a/maze/task2/maps/level7/img/83.png b/maze/task2/maps/level7/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..b17f24dd13421498c3f45d90f5fb987afb6c7c28 --- /dev/null +++ b/maze/task2/maps/level7/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6226129f1cd3313a55b5da6d9e06d44e7f25f417a17e446048b08623998f72a6 +size 15048 diff --git a/maze/task2/maps/level7/img/84.png b/maze/task2/maps/level7/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..b984a001e9ae5bba483624e4d0df525093f88ac5 --- /dev/null +++ b/maze/task2/maps/level7/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b3176ea4cc7f4eb2d077b629e87dc0f055f7cde1ccae09eef8c68dc2619f41 +size 16705 diff --git a/maze/task2/maps/level7/img/85.png b/maze/task2/maps/level7/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..db392dcf49ce165b9bbbed8948b878287dde84bf --- /dev/null +++ b/maze/task2/maps/level7/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c1b6afd8ca996884e340e203a81036bae7712b4335361107a23c638b447d66 +size 14942 diff --git a/maze/task2/maps/level7/img/86.png b/maze/task2/maps/level7/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..dd0cd3e30ea27fb77a3fd1057fee5772122dc87f --- /dev/null +++ b/maze/task2/maps/level7/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555f86a212be77d2e24262cfaf87d24796188ba2c39a896278a9ec813e139b58 +size 14061 diff --git a/maze/task2/maps/level7/img/87.png b/maze/task2/maps/level7/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..3abf0ddf14fab3e72038a3f62d3e1508e54d679f --- /dev/null +++ b/maze/task2/maps/level7/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e16ec1d7bc8109489f9d10178469c1d871e0dd22aa5c3fa183d5a28c7af514 +size 14794 diff --git a/maze/task2/maps/level7/img/88.png b/maze/task2/maps/level7/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..0406319714e8128e4e1a9072fb6bdcae003f782a --- /dev/null +++ b/maze/task2/maps/level7/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8563d101ad7479a58484d118a27a3971e324c63775eb48425dcbbfe5e34a9df8 +size 15949 diff --git a/maze/task2/maps/level7/img/89.png b/maze/task2/maps/level7/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..fa615d763d9bac0f0f3038a0f11a7ab3a4b9db40 --- /dev/null +++ b/maze/task2/maps/level7/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d385dec059b7bf573e1ae8b61766422c0fa567535e0c52f48830559fd3b0ecf +size 16690 diff --git a/maze/task2/maps/level7/img/9.png b/maze/task2/maps/level7/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ae3bd5028862401b8c120de342c1906c7b9b77e7 --- /dev/null +++ b/maze/task2/maps/level7/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d2ef6fe8c4763f0d22ae59defdb3e11e83d7f7f1db520cd596a21082101445 +size 15609 diff --git a/maze/task2/maps/level7/img/90.png b/maze/task2/maps/level7/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..922abe61a9f48135adbe70497d3b3ceb648f1e41 --- /dev/null +++ b/maze/task2/maps/level7/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1380456c0121541d007ba16c9ec728ee25d9017fb16ae2d798d9788e34016977 +size 14241 diff --git a/maze/task2/maps/level7/img/91.png b/maze/task2/maps/level7/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..0d4eedeb68504d142cb10abf436351aeb370cb42 --- /dev/null +++ b/maze/task2/maps/level7/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94e8454330a83abb54d04d75229a22c2d508115c6f1717bff209ac80c008278f +size 13939 diff --git a/maze/task2/maps/level7/img/92.png b/maze/task2/maps/level7/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..74ae0031ce00d1af5be1207558c04458b8d55035 --- /dev/null +++ b/maze/task2/maps/level7/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e874d6c43e710ea427e6d830ce5d2f791cff6a40e2d27f00bb87c49efcd1d267 +size 14899 diff --git a/maze/task2/maps/level7/img/93.png b/maze/task2/maps/level7/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9c3692f7721791f7e6567df9cf529f08ba11e7 --- /dev/null +++ b/maze/task2/maps/level7/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3550b127318fab4c292621a43b11254673e62a64999ccc784ae2d99ae17236fe +size 15021 diff --git a/maze/task2/maps/level7/img/94.png b/maze/task2/maps/level7/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..55cbed290cee8b559f47e1306c20a986ac2ca13e --- /dev/null +++ b/maze/task2/maps/level7/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5434e8f0212cbd4b269795ebda07d079021babb51beb4a1d0c96582821b2fee1 +size 15951 diff --git a/maze/task2/maps/level7/img/95.png b/maze/task2/maps/level7/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..aed9c8d3ae83017ad054d67bbe397c71a614dda9 --- /dev/null +++ b/maze/task2/maps/level7/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1347eb2cae5d30b7f3c33bf9a1764727435541a62b54752b4d2f3a34eb32db50 +size 14115 diff --git a/maze/task2/maps/level7/img/96.png b/maze/task2/maps/level7/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..9138fe79460a986295a8c62abbdad1e108c54519 --- /dev/null +++ b/maze/task2/maps/level7/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b54713877784d5f1ceaf8a59ae0069a5f087ec12a9d2a4823d08f96792d57d +size 15823 diff --git a/maze/task2/maps/level7/img/97.png b/maze/task2/maps/level7/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..ba416518206e11aa57e90638f1802715fda69e0c --- /dev/null +++ b/maze/task2/maps/level7/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dade278ab3ed9c864059003cea55950cfd22ac2a5f7af7e15b98b8170c4fba2 +size 13020 diff --git a/maze/task2/maps/level7/img/98.png b/maze/task2/maps/level7/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..ebc2c3e810fff8aacf7c3461a2ed78582e3e15bc --- /dev/null +++ b/maze/task2/maps/level7/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3f3033bef618e0c00007972a39c8bad106543044abdd1bc6cdf810590b0589 +size 15827 diff --git a/maze/task2/maps/level7/img/99.png b/maze/task2/maps/level7/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..c0e452ffe758e4ae2e77965c4cded140b4a61a99 --- /dev/null +++ b/maze/task2/maps/level7/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e7889dd8297f3ecb31e1bb9a9cfba43771b2ffe6469896b5e6ffa2d0ff55ec +size 15933 diff --git a/maze/task2/maps/level7/pure_text/0.txt b/maze/task2/maps/level7/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..13c3b10eb79e184b8c5d126e911f4ec398203351 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 3, Column 5; Row 4, Column 5; Row 6, Column 1; Row 6, Column 6; Row 7, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/1.txt b/maze/task2/maps/level7/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..31b5b35ebb713b8c42aa38262d1c608d0c704a39 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 7; +The hole(s) are at: Row 3, Column 2; Row 4, Column 5; Row 5, Column 3; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 7, Column 4; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/10.txt b/maze/task2/maps/level7/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..f529bc6f8936101ddaccec30d4502ca43f39cd56 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 5; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 6, Column 6; Row 7, Column 1; Row 7, Column 6; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/11.txt b/maze/task2/maps/level7/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cf8a33752d7571bd96bc6f1d89d8666f3c24233 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 7; Row 2, Column 2; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 6, Column 3; Row 6, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/12.txt b/maze/task2/maps/level7/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..4947b42a4009b1e23a309b6c1993f9be5a083a53 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 4, Column 5; Row 4, Column 7; Row 5, Column 5; Row 5, Column 6; Row 7, Column 1; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/13.txt b/maze/task2/maps/level7/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..305e0272410469a436daf371ef21399e48207fd7 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 3; Row 3, Column 2; Row 3, Column 6; Row 5, Column 5; Row 5, Column 7; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/14.txt b/maze/task2/maps/level7/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..afd80ba0e979ff7aa1b2378619eaba184f5d0ae1 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; Row 3, Column 1; Row 3, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; Row 7, Column 6; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/15.txt b/maze/task2/maps/level7/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..edebb4158ebdd056f3382ff80ba14dbe392ac5c7 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 5; Row 3, Column 2; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 6, Column 6; Row 6, Column 7; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/16.txt b/maze/task2/maps/level7/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cf446391f87e48965729a6f6c96fe1c2d20999f --- /dev/null +++ b/maze/task2/maps/level7/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 3; Row 6, Column 2; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/17.txt b/maze/task2/maps/level7/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..6536d9ea4cc6c296b5715dcffe0c004a69027a58 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 3, Column 6; Row 4, Column 2; Row 4, Column 7; Row 5, Column 1; Row 6, Column 3; Row 7, Column 5; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/18.txt b/maze/task2/maps/level7/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..492ba4f7ec915988a956645fedd1f471a4f605f3 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 5; Row 3, Column 5; Row 4, Column 2; Row 4, Column 6; Row 5, Column 2; Row 5, Column 5; Row 6, Column 6; Row 7, Column 5; +The goal is at: Row 7, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/19.txt b/maze/task2/maps/level7/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7c1f5c518da72901f81e93d6cc1cb393af0da42 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 6, Column 1; Row 6, Column 7; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/2.txt b/maze/task2/maps/level7/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..a46d4119e4460ef5a6ff90b13a544a0990ace2a3 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 6; Row 5, Column 7; Row 6, Column 7; Row 7, Column 5; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/20.txt b/maze/task2/maps/level7/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b78bebd57d294a323e9c4402e1c7057a5f8cc1e4 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 3, Column 4; Row 4, Column 1; Row 4, Column 7; Row 5, Column 7; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/21.txt b/maze/task2/maps/level7/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fedb678f393390c3244db927ef65893bee3e316 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 6; Row 4, Column 7; Row 5, Column 4; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/22.txt b/maze/task2/maps/level7/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd5c757eca93b95649a05162f13196f9e5559d17 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 7; Row 2, Column 4; Row 3, Column 4; Row 5, Column 5; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 7, Column 3; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/23.txt b/maze/task2/maps/level7/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..50ae8e8ce018db3c044ff541a2cd5a3dbab8ccdc --- /dev/null +++ b/maze/task2/maps/level7/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 2; Row 2, Column 6; Row 3, Column 4; Row 3, Column 7; Row 4, Column 3; Row 5, Column 1; Row 5, Column 6; Row 6, Column 1; Row 6, Column 5; Row 7, Column 4; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/24.txt b/maze/task2/maps/level7/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..1caf39ccf8e32216eaf10bc6ce34cd296d70730a --- /dev/null +++ b/maze/task2/maps/level7/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 6; Row 2, Column 1; Row 2, Column 6; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 5, Column 2; Row 7, Column 1; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/25.txt b/maze/task2/maps/level7/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b9b0eac87c784752de3808e09daefe2b52e5670 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 6; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 4; Row 4, Column 7; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/26.txt b/maze/task2/maps/level7/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a9fbe827781f4fb549d9bf9df916ba93b4a7198 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; Row 6, Column 2; Row 7, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/27.txt b/maze/task2/maps/level7/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..330ba2f4e4cffb169150413a171b396b05534e78 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 6; Row 2, Column 3; Row 2, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/28.txt b/maze/task2/maps/level7/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..360806760d6a357a8eda36d994a9b47605ddf583 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 7, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/29.txt b/maze/task2/maps/level7/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..5932ae0f778f3611adbaf8a0e9624737f81b5053 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 7; Row 3, Column 6; Row 4, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 4; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/3.txt b/maze/task2/maps/level7/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a27a96e93208aa60fe94f01a175d90b508acd634 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 2, Column 1; Row 2, Column 7; Row 3, Column 4; Row 3, Column 7; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/30.txt b/maze/task2/maps/level7/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..299f4130428cd43ff16dea4c5e8a3a870d1f6d42 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 7; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/31.txt b/maze/task2/maps/level7/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6bbeda094015754df9cdef344328f55215edc97 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 5, Column 6; Row 6, Column 3; Row 7, Column 3; Row 7, Column 4; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/32.txt b/maze/task2/maps/level7/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8bfd9ffce5140660437d0e3cd70bb14b1d46b8c --- /dev/null +++ b/maze/task2/maps/level7/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 3, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 6, Column 6; Row 7, Column 5; +The goal is at: Row 7, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/33.txt b/maze/task2/maps/level7/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a02d76530d2c5a0099460e0b140cc45b407a8da --- /dev/null +++ b/maze/task2/maps/level7/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 3, Column 2; Row 3, Column 6; Row 4, Column 4; Row 4, Column 5; Row 6, Column 2; Row 6, Column 5; Row 7, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/34.txt b/maze/task2/maps/level7/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb8666c0e816aaef468099781dd2213ad9c33ccf --- /dev/null +++ b/maze/task2/maps/level7/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 1, Column 4; Row 3, Column 7; Row 4, Column 5; Row 6, Column 1; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/35.txt b/maze/task2/maps/level7/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..4361f81e0690fb713bcbc0c6177a25d0c1c0fe00 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/36.txt b/maze/task2/maps/level7/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5d90dadcebf64858abe3bf7a825155ce35d7269 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 7; Row 2, Column 3; Row 2, Column 5; Row 4, Column 1; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/37.txt b/maze/task2/maps/level7/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f04305acf718de029649d585a8784dc33706de6e --- /dev/null +++ b/maze/task2/maps/level7/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 4, Column 5; Row 6, Column 3; Row 6, Column 7; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/38.txt b/maze/task2/maps/level7/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bd099b5880498ae75f38145f8fc7432dd4e3a53 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 3, Column 2; Row 3, Column 4; Row 4, Column 6; Row 6, Column 3; Row 6, Column 6; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/39.txt b/maze/task2/maps/level7/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..428198be14cab091cdf263157ae831404e5bd1ea --- /dev/null +++ b/maze/task2/maps/level7/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 7; Row 3, Column 2; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 6, Column 5; Row 7, Column 4; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/4.txt b/maze/task2/maps/level7/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f60e1df809221db0f6c9a2155b3fd0457c20be9d --- /dev/null +++ b/maze/task2/maps/level7/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 1; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/40.txt b/maze/task2/maps/level7/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3f6be419901334a20afe173192edae315f44b98 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 3; Row 2, Column 6; Row 3, Column 4; Row 4, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 7, Column 6; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/41.txt b/maze/task2/maps/level7/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfcc9c64f446331d80affbd05631fd41599ea440 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 3, Column 4; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 5, Column 5; Row 5, Column 7; Row 6, Column 5; Row 7, Column 1; Row 7, Column 4; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/42.txt b/maze/task2/maps/level7/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3b9d1d168c468f04d4e27424b60ab76f0523944 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 4; Row 6, Column 2; Row 6, Column 6; Row 6, Column 7; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/43.txt b/maze/task2/maps/level7/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a5e8939b110a1699fad8eb5684fc833a215618a --- /dev/null +++ b/maze/task2/maps/level7/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 5; Row 5, Column 5; Row 6, Column 5; Row 7, Column 7; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/44.txt b/maze/task2/maps/level7/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..bda4008597cfea0da73e0c5c68a107705165420c --- /dev/null +++ b/maze/task2/maps/level7/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 7; Row 5, Column 2; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/45.txt b/maze/task2/maps/level7/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..8526604616f6795b501ac8efade24824a2c14ead --- /dev/null +++ b/maze/task2/maps/level7/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 4, Column 4; Row 6, Column 2; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/46.txt b/maze/task2/maps/level7/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..75e6fe23d0cf7d78102ee697d39dcd4578b413d9 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 2; Row 3, Column 7; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/47.txt b/maze/task2/maps/level7/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..e42b109cd65a8cbfa3d07321011ecdddcc84f18a --- /dev/null +++ b/maze/task2/maps/level7/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 6, Column 5; Row 6, Column 7; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/48.txt b/maze/task2/maps/level7/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc2d79cc2ba984a3dfec2b4c8ddb12beac61a492 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 4, Column 3; Row 6, Column 5; Row 7, Column 6; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/49.txt b/maze/task2/maps/level7/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..26c8da1591ea42ebe8e689e9f95174077546a704 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 6; Row 1, Column 7; Row 2, Column 6; Row 3, Column 6; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 5, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 5; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/5.txt b/maze/task2/maps/level7/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1792bf92b2289e096b47661dd8dfa497f5eacc0 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 7; Row 2, Column 3; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 5; Row 4, Column 6; Row 5, Column 5; Row 6, Column 7; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/50.txt b/maze/task2/maps/level7/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..22c1f77bcbad8e08f0f28ce9addd4f86c389e726 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 6; Row 3, Column 1; Row 4, Column 7; Row 5, Column 5; Row 6, Column 2; Row 7, Column 5; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/51.txt b/maze/task2/maps/level7/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ec99c2e60a0f8e15cbc92e8861b62fd7bb7e15c --- /dev/null +++ b/maze/task2/maps/level7/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 6; Row 4, Column 5; Row 6, Column 6; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/52.txt b/maze/task2/maps/level7/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..034e1e85f455bebeef1983edb242b497463d1656 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 6; Row 3, Column 6; Row 4, Column 4; Row 5, Column 1; Row 6, Column 7; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/53.txt b/maze/task2/maps/level7/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad09e5153cdf1310b1ad7bfbe00f6633c789d232 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 7; Row 3, Column 7; Row 4, Column 1; Row 5, Column 6; Row 5, Column 7; Row 7, Column 3; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/54.txt b/maze/task2/maps/level7/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..264fea4a3ab231915c7616a02d0de5fbf3bfb942 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 4, Column 1; Row 5, Column 6; Row 7, Column 7; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/55.txt b/maze/task2/maps/level7/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..12929fbd8d21bf6915cbd488b0c2b9bcc8929882 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 1, Column 7; Row 2, Column 5; Row 3, Column 3; Row 3, Column 6; Row 5, Column 4; Row 5, Column 7; Row 6, Column 6; Row 7, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/56.txt b/maze/task2/maps/level7/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc1bb6d4ec2266795c004c542efde8bdd96be8b0 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 2, Column 3; Row 2, Column 4; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/57.txt b/maze/task2/maps/level7/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d1fb0bcf7c850c5c30b12e681af01c48d3f4924 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 3, Column 2; Row 4, Column 2; Row 4, Column 6; Row 4, Column 7; Row 6, Column 3; Row 7, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/58.txt b/maze/task2/maps/level7/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..d34c906ba93bf2d1b59958412b31c95c9b4b600b --- /dev/null +++ b/maze/task2/maps/level7/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 5; Row 3, Column 7; Row 4, Column 5; Row 4, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 7, Column 3; Row 7, Column 4; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/59.txt b/maze/task2/maps/level7/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..d23652079cda47ea51eb14f2643a58ce18214f72 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 4; Row 4, Column 4; Row 4, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/6.txt b/maze/task2/maps/level7/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4af5cc0f61799c63596c351cfd8ef1af61ebb48f --- /dev/null +++ b/maze/task2/maps/level7/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 2, Column 7; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; Row 5, Column 7; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 7, Column 1; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/60.txt b/maze/task2/maps/level7/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e17cc08f6803a36c7446744ee02eec6875d6aee --- /dev/null +++ b/maze/task2/maps/level7/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 2, Column 7; Row 3, Column 4; Row 3, Column 7; Row 4, Column 3; Row 4, Column 5; Row 5, Column 5; Row 7, Column 3; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/61.txt b/maze/task2/maps/level7/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..55bb0f348f83693a44bc9a0a847d9abe9cc3307b --- /dev/null +++ b/maze/task2/maps/level7/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 5; Row 2, Column 6; Row 4, Column 4; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/62.txt b/maze/task2/maps/level7/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f6b7d99eea0c3fa33e21b67eaa5f4f7867c7ad0 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 6, Column 6; Row 7, Column 2; Row 7, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/63.txt b/maze/task2/maps/level7/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5b0a3637aaba3a08dcca5f427b870bc023f56da --- /dev/null +++ b/maze/task2/maps/level7/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 4, Column 2; Row 5, Column 6; Row 6, Column 5; Row 6, Column 6; Row 7, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/64.txt b/maze/task2/maps/level7/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..61b67ca3dfdbcb55c4366c974c73c3339332626f --- /dev/null +++ b/maze/task2/maps/level7/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 3, Column 2; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 7; Row 6, Column 3; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/65.txt b/maze/task2/maps/level7/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..19d4c636a1983c32bcb89ee9670bd2b80d59ad59 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 1, Column 6; Row 2, Column 3; Row 3, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 7; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/66.txt b/maze/task2/maps/level7/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..40800909f74bbcd76e33685e4d37999cf36804c8 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 4; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/67.txt b/maze/task2/maps/level7/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb5cddfd9008830b974b1b2a98ebc7ec88a487a5 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 3, Column 3; Row 5, Column 1; Row 6, Column 5; Row 7, Column 1; Row 7, Column 2; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/68.txt b/maze/task2/maps/level7/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c0ac41e07f21a1f0a9e3624ff7303aeebe9e4ee --- /dev/null +++ b/maze/task2/maps/level7/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 7; Row 2, Column 3; Row 2, Column 5; Row 3, Column 4; Row 4, Column 7; Row 5, Column 6; Row 6, Column 5; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/69.txt b/maze/task2/maps/level7/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..18b7147e2200c04763a53766572f193e04533683 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 7; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 5, Column 4; Row 5, Column 7; Row 6, Column 2; Row 7, Column 1; Row 7, Column 7; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/7.txt b/maze/task2/maps/level7/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..91d6c3acb8cf907323d6dd0cec07e74ec3193a8c --- /dev/null +++ b/maze/task2/maps/level7/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 3, Column 1; Row 3, Column 6; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 6, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/70.txt b/maze/task2/maps/level7/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..28c8542b01531755fa3ee7c7c2addd0418e4357d --- /dev/null +++ b/maze/task2/maps/level7/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 7; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 5, Column 5; Row 6, Column 1; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/71.txt b/maze/task2/maps/level7/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9d7beae3ebe6edeb3c80615a929289c69f7e907 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 5, Column 3; Row 5, Column 4; Row 7, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/72.txt b/maze/task2/maps/level7/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..00bbe9e7c0be697f97ec5732a5d4418ad7a977b7 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 6; Row 2, Column 7; Row 3, Column 7; Row 5, Column 1; Row 5, Column 2; Row 6, Column 3; Row 6, Column 6; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/73.txt b/maze/task2/maps/level7/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..28026d31b41132fc17437c57e432e085abd78cf3 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 2, Column 3; Row 3, Column 7; Row 6, Column 1; Row 7, Column 2; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/74.txt b/maze/task2/maps/level7/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2687546b40e3e48ce44d0e97f9a941dc5fae807b --- /dev/null +++ b/maze/task2/maps/level7/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 5; Row 5, Column 6; Row 7, Column 6; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/75.txt b/maze/task2/maps/level7/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca5616b0b9d181376dff0fc17109e7e28378f983 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/76.txt b/maze/task2/maps/level7/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce890f500778522671d9398cb881851353e07f58 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 3; Row 3, Column 2; Row 4, Column 3; Row 5, Column 3; Row 5, Column 5; Row 7, Column 7; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/77.txt b/maze/task2/maps/level7/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e165aa7887f6651da998127ec629c632e1dbc12 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 7; Row 6, Column 1; Row 7, Column 6; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/78.txt b/maze/task2/maps/level7/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..287132d06fb0525bcd6ee5ff08d957f17b8f6b94 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 7; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 4; Row 6, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/79.txt b/maze/task2/maps/level7/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..efad8ef0c29c714e6ca2ec867ac530fbb45e5a94 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 7; Row 2, Column 2; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 7, Column 7; +The goal is at: Row 7, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/8.txt b/maze/task2/maps/level7/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd8c5287e745af3709d661ebddd7ca1947b7a566 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 2, Column 1; Row 3, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/80.txt b/maze/task2/maps/level7/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2630f73c67e2e0cc720821334e9e00724781cbfe --- /dev/null +++ b/maze/task2/maps/level7/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 7; Row 3, Column 1; Row 4, Column 4; Row 4, Column 7; Row 6, Column 4; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/81.txt b/maze/task2/maps/level7/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1e074aa3053fa111f1d6b26005b581f3b3a9554 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 1; Row 3, Column 4; Row 4, Column 4; Row 6, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/82.txt b/maze/task2/maps/level7/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9d0dc653cbd653e7b10de10d4f15e77eaecb640 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 2, Column 7; Row 5, Column 2; Row 5, Column 4; Row 6, Column 4; Row 7, Column 1; Row 7, Column 2; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/83.txt b/maze/task2/maps/level7/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..687e04cf7d899c04973f512a5e833d5a766a87b9 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 7; Row 3, Column 3; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 5, Column 3; Row 6, Column 6; Row 6, Column 7; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/84.txt b/maze/task2/maps/level7/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5ee05291067392289ae8e55c5c1f136da0d0505 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 2; Row 5, Column 2; Row 6, Column 7; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/85.txt b/maze/task2/maps/level7/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea3a2cfec0debcda945cc2085e775629c321fa69 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/86.txt b/maze/task2/maps/level7/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..317ed0759c1f9dc7d089f56e3ea2ebd7823aa837 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 6; Row 6, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/87.txt b/maze/task2/maps/level7/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc6c44c876b9e9128c32c29af8f858163730a03c --- /dev/null +++ b/maze/task2/maps/level7/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 5, Column 5; Row 7, Column 7; +The goal is at: Row 7, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/88.txt b/maze/task2/maps/level7/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..d422340d9d15f9703a5999d902ab2fca0405e188 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 5, Column 3; Row 5, Column 6; Row 6, Column 4; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/89.txt b/maze/task2/maps/level7/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca6656fb6dbee19b7e3d2985cc4265c6dab222f7 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 6; Row 4, Column 5; Row 4, Column 7; Row 5, Column 6; Row 6, Column 2; Row 6, Column 7; Row 7, Column 6; +The goal is at: Row 7, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/9.txt b/maze/task2/maps/level7/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a379617bf066e3ebdc22c4f6dfd0a288439ec1a7 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 7; +The hole(s) are at: Row 2, Column 7; Row 3, Column 2; Row 4, Column 5; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 7, Column 5; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/90.txt b/maze/task2/maps/level7/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..113e53d214d45a8a86a6b1f5084f49489816562d --- /dev/null +++ b/maze/task2/maps/level7/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 5; Row 4, Column 3; Row 4, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/91.txt b/maze/task2/maps/level7/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8cc96c756cc2b8ce9b84c138c8b924b2ae5a839 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 2, Column 1; Row 4, Column 5; Row 4, Column 6; Row 5, Column 6; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/92.txt b/maze/task2/maps/level7/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..e77ff94fac55a8755ae947fc1cf8f080cfcdc229 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 7; Row 2, Column 4; Row 4, Column 6; Row 6, Column 1; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/93.txt b/maze/task2/maps/level7/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f210caca9510ae3eaf51c874561606fb32f6589 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 4; Row 2, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 6, Column 2; Row 6, Column 5; Row 6, Column 7; Row 7, Column 2; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/94.txt b/maze/task2/maps/level7/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..81d5cffb64d0bb995e3335049befbd37e708989b --- /dev/null +++ b/maze/task2/maps/level7/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 5; Row 2, Column 6; Row 3, Column 6; Row 4, Column 2; Row 4, Column 7; Row 5, Column 1; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/95.txt b/maze/task2/maps/level7/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..02e86bddaaf8bf1d8c36bb70d121cac4639d3380 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 2, Column 7; Row 3, Column 3; Row 3, Column 4; Row 6, Column 3; Row 6, Column 4; Row 7, Column 5; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/96.txt b/maze/task2/maps/level7/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..e89de3f1eb8fe9a36e56d401a5bef0cbbaf66400 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 7; Row 2, Column 3; Row 3, Column 3; Row 4, Column 5; Row 4, Column 6; Row 6, Column 1; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/97.txt b/maze/task2/maps/level7/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..7403818d038a668bec8eee0e5207317f9a3e8c02 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 3, Column 3; Row 6, Column 7; Row 7, Column 2; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/98.txt b/maze/task2/maps/level7/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..0852b9f68953bd9400f6d0717d823cc320613876 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 2, Column 7; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; Row 4, Column 7; Row 5, Column 7; Row 7, Column 6; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level7/pure_text/99.txt b/maze/task2/maps/level7/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..b938d6a5d57b9cd570e1f1e662aead635322ead9 --- /dev/null +++ b/maze/task2/maps/level7/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 7, Column 4; Row 7, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level7/table/0.txt b/maze/task2/maps/level7/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..22b217819d65008ba3cf06d9f5f9ee9718e1722e --- /dev/null +++ b/maze/task2/maps/level7/table/0.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | * | @ | # | _ | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/1.txt b/maze/task2/maps/level7/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc5b0dc6d679451568e60e741d7dd4db09feed02 --- /dev/null +++ b/maze/task2/maps/level7/table/1.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/10.txt b/maze/task2/maps/level7/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..05b533a40dbb738595a6800815df2772ed228eb7 --- /dev/null +++ b/maze/task2/maps/level7/table/10.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | * | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/11.txt b/maze/task2/maps/level7/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..06287f7bf103839bb26b4fb93fba317f6f63d680 --- /dev/null +++ b/maze/task2/maps/level7/table/11.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | # | +| Row 7 | _ | @ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/12.txt b/maze/task2/maps/level7/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..188ab3ee804fae165cf2f9d974d78783c9cf0baf --- /dev/null +++ b/maze/task2/maps/level7/table/12.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | # | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/13.txt b/maze/task2/maps/level7/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..a94da6daf9e41ff10506d92ec3ad5e0f1362aaa4 --- /dev/null +++ b/maze/task2/maps/level7/table/13.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | # | _ | +| Row 4 | @ | _ | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | # | +| Row 7 | # | _ | # | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/14.txt b/maze/task2/maps/level7/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..7819f254671c9bd293f5f5da8e0cabd7023ca9b7 --- /dev/null +++ b/maze/task2/maps/level7/table/14.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/15.txt b/maze/task2/maps/level7/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c9d89852fedf9f492d4526863d7d1db7918c947 --- /dev/null +++ b/maze/task2/maps/level7/table/15.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | * | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/16.txt b/maze/task2/maps/level7/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e8f121cf70769beea2550631edd930b44ce6b2e --- /dev/null +++ b/maze/task2/maps/level7/table/16.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | # | _ | # | diff --git a/maze/task2/maps/level7/table/17.txt b/maze/task2/maps/level7/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8a9c7849cfbe1662f7798e3f314ce9a630d80f4 --- /dev/null +++ b/maze/task2/maps/level7/table/17.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | * | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/18.txt b/maze/task2/maps/level7/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..91a8ec81935138b3ccb0b066bc54b502b826f084 --- /dev/null +++ b/maze/task2/maps/level7/table/18.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | # | _ | +| Row 5 | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | # | * | _ | diff --git a/maze/task2/maps/level7/table/19.txt b/maze/task2/maps/level7/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d4d3610df51c3fc03e8ca3277e0379f4ea9386c --- /dev/null +++ b/maze/task2/maps/level7/table/19.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | * | _ | _ | @ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/2.txt b/maze/task2/maps/level7/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e37a55531f21a80ba34283e5559c0fdb0167b630 --- /dev/null +++ b/maze/task2/maps/level7/table/2.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | # | +| Row 6 | * | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/20.txt b/maze/task2/maps/level7/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..c108fcf2a7b300a91ad143b4bc9025c9a0095951 --- /dev/null +++ b/maze/task2/maps/level7/table/20.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | _ | # | +| Row 3 | * | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task2/maps/level7/table/21.txt b/maze/task2/maps/level7/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d5e2f0d21103dd937fc447ae7034895e521a3b6 --- /dev/null +++ b/maze/task2/maps/level7/table/21.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | @ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/22.txt b/maze/task2/maps/level7/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..5246e9480508f95ee80abdb11d35dc36c9c0b2bd --- /dev/null +++ b/maze/task2/maps/level7/table/22.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | _ | +| Row 6 | _ | # | _ | # | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | @ | _ | diff --git a/maze/task2/maps/level7/table/23.txt b/maze/task2/maps/level7/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..042fb0eebb408ef822daafd205eb5207f253bad5 --- /dev/null +++ b/maze/task2/maps/level7/table/23.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | +| Row 5 | # | @ | * | _ | _ | # | _ | +| Row 6 | # | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/24.txt b/maze/task2/maps/level7/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..a788da85e3dad326105332652bc3cb4ee30edc96 --- /dev/null +++ b/maze/task2/maps/level7/table/24.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | @ | _ | # | _ | _ | _ | +| Row 4 | # | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | * | diff --git a/maze/task2/maps/level7/table/25.txt b/maze/task2/maps/level7/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdc30f5f5ec98b9dc18e90a5feff474a9d962b54 --- /dev/null +++ b/maze/task2/maps/level7/table/25.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | diff --git a/maze/task2/maps/level7/table/26.txt b/maze/task2/maps/level7/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d97aff79c16b6a7f6b857e9e5748c04be7bb8de --- /dev/null +++ b/maze/task2/maps/level7/table/26.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/27.txt b/maze/task2/maps/level7/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..4656e0e8b4cbd0b145fe65dc6561c88ba17b1a97 --- /dev/null +++ b/maze/task2/maps/level7/table/27.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/28.txt b/maze/task2/maps/level7/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6acce1a24a84bc9b1908b8465a3b35508789e1a --- /dev/null +++ b/maze/task2/maps/level7/table/28.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | # | _ | _ | +| Row 6 | # | _ | _ | @ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/29.txt b/maze/task2/maps/level7/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..b52ed9ef0818d3c6f20ccd2b997f7bad5f45bd2c --- /dev/null +++ b/maze/task2/maps/level7/table/29.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | # | _ | _ | * | +| Row 7 | # | # | _ | # | _ | # | _ | diff --git a/maze/task2/maps/level7/table/3.txt b/maze/task2/maps/level7/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..950a0e3589046b7e1ada691f0111460c1c15a2dd --- /dev/null +++ b/maze/task2/maps/level7/table/3.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | diff --git a/maze/task2/maps/level7/table/30.txt b/maze/task2/maps/level7/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..8229069b2e0428df75789dc389bf4deb46fa75b5 --- /dev/null +++ b/maze/task2/maps/level7/table/30.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | # | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | # | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/31.txt b/maze/task2/maps/level7/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..75fdabb2127df2682f712fc4a5fa25ab9ff22464 --- /dev/null +++ b/maze/task2/maps/level7/table/31.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/32.txt b/maze/task2/maps/level7/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..681afc22cdd0fb492d3ce093875af1066b7c2f07 --- /dev/null +++ b/maze/task2/maps/level7/table/32.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | * | _ | _ | # | @ | _ | diff --git a/maze/task2/maps/level7/table/33.txt b/maze/task2/maps/level7/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba6d214e6a55182fe45b87ad7ca16ace112e6682 --- /dev/null +++ b/maze/task2/maps/level7/table/33.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | * | # | _ | +| Row 3 | @ | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/34.txt b/maze/task2/maps/level7/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..77fc2191312e8360dddbbd615f5f6e2e02547fb0 --- /dev/null +++ b/maze/task2/maps/level7/table/34.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task2/maps/level7/table/35.txt b/maze/task2/maps/level7/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4ea7186cb45904c4d19bfcf27afda2f11d717eb --- /dev/null +++ b/maze/task2/maps/level7/table/35.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | diff --git a/maze/task2/maps/level7/table/36.txt b/maze/task2/maps/level7/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..42d2f26b2fdd2ab0695f8cac32e933b82686d19a --- /dev/null +++ b/maze/task2/maps/level7/table/36.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | * | @ | # | _ | +| Row 6 | # | _ | # | _ | _ | _ | # | +| Row 7 | # | # | # | _ | # | # | _ | diff --git a/maze/task2/maps/level7/table/37.txt b/maze/task2/maps/level7/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..64f2d137f810d6ef424301eaaf3e54eab7652ba5 --- /dev/null +++ b/maze/task2/maps/level7/table/37.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | * | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/38.txt b/maze/task2/maps/level7/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..c554aff0186f344746ebcb741446237f9a8ee0eb --- /dev/null +++ b/maze/task2/maps/level7/table/38.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | _ | @ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/39.txt b/maze/task2/maps/level7/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..c137abfdd27c494f925d82ae6aee26ac4519429e --- /dev/null +++ b/maze/task2/maps/level7/table/39.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | * | _ | +| Row 4 | _ | @ | _ | _ | # | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/4.txt b/maze/task2/maps/level7/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..81d05543469f1530f43fc75ac808e717f7391516 --- /dev/null +++ b/maze/task2/maps/level7/table/4.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | @ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/40.txt b/maze/task2/maps/level7/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..a361e3bc92befc88b812804a5a47288c4ae175d9 --- /dev/null +++ b/maze/task2/maps/level7/table/40.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | @ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/41.txt b/maze/task2/maps/level7/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..be3da79b861f8431a4eb25517e8e40523d152103 --- /dev/null +++ b/maze/task2/maps/level7/table/41.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | diff --git a/maze/task2/maps/level7/table/42.txt b/maze/task2/maps/level7/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ab743f7f5482c9d484a18c1438563b3608c2328 --- /dev/null +++ b/maze/task2/maps/level7/table/42.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task2/maps/level7/table/43.txt b/maze/task2/maps/level7/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bfc994533b269ea088a634462e5d2ca4162b94f --- /dev/null +++ b/maze/task2/maps/level7/table/43.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level7/table/44.txt b/maze/task2/maps/level7/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..848bb7c7a6ddea2796a5c45fe0f615fc3aeb4d81 --- /dev/null +++ b/maze/task2/maps/level7/table/44.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | # | _ | _ | # | # | # | diff --git a/maze/task2/maps/level7/table/45.txt b/maze/task2/maps/level7/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ac647dc20f9f765bdd85580f8077973b6764019 --- /dev/null +++ b/maze/task2/maps/level7/table/45.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | * | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/46.txt b/maze/task2/maps/level7/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..5109322b1c270ec47ef8fb1b1583b1ba57004f70 --- /dev/null +++ b/maze/task2/maps/level7/table/46.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | * | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/47.txt b/maze/task2/maps/level7/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cc80ec604f99dd491d90ca3cee863e451d9441b --- /dev/null +++ b/maze/task2/maps/level7/table/47.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | * | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/48.txt b/maze/task2/maps/level7/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..35323e7cddcf89fede98e764546e3971637814db --- /dev/null +++ b/maze/task2/maps/level7/table/48.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | * | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | @ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/49.txt b/maze/task2/maps/level7/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..201f302469459288c505dd81ae182dd6b1eb2379 --- /dev/null +++ b/maze/task2/maps/level7/table/49.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | # | # | _ | _ | # | _ | * | diff --git a/maze/task2/maps/level7/table/5.txt b/maze/task2/maps/level7/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0daa500ee25b435afbe33cc276c39cd6f165d8b --- /dev/null +++ b/maze/task2/maps/level7/table/5.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | _ | # | # | +| Row 3 | * | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | # | _ | # | _ | diff --git a/maze/task2/maps/level7/table/50.txt b/maze/task2/maps/level7/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..215efdb2bd04065d83e49403fcff2a30e5c05020 --- /dev/null +++ b/maze/task2/maps/level7/table/50.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | * | +| Row 6 | _ | # | _ | _ | _ | _ | @ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/51.txt b/maze/task2/maps/level7/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0f4bc1af45eca5fb97e323f60743b43219bec4b --- /dev/null +++ b/maze/task2/maps/level7/table/51.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | # | _ | _ | * | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | diff --git a/maze/task2/maps/level7/table/52.txt b/maze/task2/maps/level7/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3f0aed06233ff091f5998f8d2a7b3ab66d28eea --- /dev/null +++ b/maze/task2/maps/level7/table/52.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | * | _ | # | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/53.txt b/maze/task2/maps/level7/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7f0c9b32e0cb11fe4f101cb11b787ce4577ac1c --- /dev/null +++ b/maze/task2/maps/level7/table/53.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | # | * | @ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/54.txt b/maze/task2/maps/level7/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..675d6c1680196fcc820a18d3413fa8ff5f5d0680 --- /dev/null +++ b/maze/task2/maps/level7/table/54.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level7/table/55.txt b/maze/task2/maps/level7/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..04b2eb7671739fe5d10f29d4e0fc0a28d0f76f7f --- /dev/null +++ b/maze/task2/maps/level7/table/55.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | @ | # | _ | _ | # | _ | +| Row 4 | _ | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/56.txt b/maze/task2/maps/level7/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..304c39704490818bc71212ac23edfa1fc3c71ed5 --- /dev/null +++ b/maze/task2/maps/level7/table/56.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | # | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/57.txt b/maze/task2/maps/level7/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbbc6f474db104b78575238a017904c3ff7d7ea2 --- /dev/null +++ b/maze/task2/maps/level7/table/57.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | @ | _ | # | diff --git a/maze/task2/maps/level7/table/58.txt b/maze/task2/maps/level7/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ea7548409d537c7be89b6606c6e882e984336d6 --- /dev/null +++ b/maze/task2/maps/level7/table/58.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/59.txt b/maze/task2/maps/level7/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c5f33691f2b09d30068649628bb34853ce9fc46 --- /dev/null +++ b/maze/task2/maps/level7/table/59.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level7/table/6.txt b/maze/task2/maps/level7/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc3365a106159c5ab337b0e08bb611ca8f11e7f1 --- /dev/null +++ b/maze/task2/maps/level7/table/6.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | @ | # | +| Row 6 | # | _ | # | # | # | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/60.txt b/maze/task2/maps/level7/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..04c532a56812a84fc903b259579005b27c96da04 --- /dev/null +++ b/maze/task2/maps/level7/table/60.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | @ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | * | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/61.txt b/maze/task2/maps/level7/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..345472fb7d24b00864fc979953f1b6bf580fc497 --- /dev/null +++ b/maze/task2/maps/level7/table/61.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | # | # | _ | # | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | diff --git a/maze/task2/maps/level7/table/62.txt b/maze/task2/maps/level7/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..e50dd05d2b33c8a07386396ce489b5a7c5601480 --- /dev/null +++ b/maze/task2/maps/level7/table/62.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/63.txt b/maze/task2/maps/level7/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..57805c11756ed1afea03faa81c9cfc2ae499d7f4 --- /dev/null +++ b/maze/task2/maps/level7/table/63.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/64.txt b/maze/task2/maps/level7/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..d23dab5b7b782d7c79def885d897121266d2adc2 --- /dev/null +++ b/maze/task2/maps/level7/table/64.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/65.txt b/maze/task2/maps/level7/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..acd3ca976012209ed63a800a8e0873dafa08bd0d --- /dev/null +++ b/maze/task2/maps/level7/table/65.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | * | +| Row 6 | # | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | # | _ | # | diff --git a/maze/task2/maps/level7/table/66.txt b/maze/task2/maps/level7/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e888b52914e7357a185c39dcda47e44454cfbb6 --- /dev/null +++ b/maze/task2/maps/level7/table/66.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/67.txt b/maze/task2/maps/level7/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8d510ba8cae75502c4e2b0d288b8568db12e36a --- /dev/null +++ b/maze/task2/maps/level7/table/67.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | # | # | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | @ | _ | * | _ | _ | diff --git a/maze/task2/maps/level7/table/68.txt b/maze/task2/maps/level7/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3179de5b6e5fc75bfccea1e89d92b37fa6778b3 --- /dev/null +++ b/maze/task2/maps/level7/table/68.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | diff --git a/maze/task2/maps/level7/table/69.txt b/maze/task2/maps/level7/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..a284c41472204c1104d233f2494be515f5a2d446 --- /dev/null +++ b/maze/task2/maps/level7/table/69.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | diff --git a/maze/task2/maps/level7/table/7.txt b/maze/task2/maps/level7/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..9acc8b218ca81bf7dc7c1ff352fd08f85415b51e --- /dev/null +++ b/maze/task2/maps/level7/table/7.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/70.txt b/maze/task2/maps/level7/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..31278101a0df6a6d112fa424adfb4b3d2f785ba6 --- /dev/null +++ b/maze/task2/maps/level7/table/70.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | @ | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | * | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | # | _ | diff --git a/maze/task2/maps/level7/table/71.txt b/maze/task2/maps/level7/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e96cdee70e4bfa866329f1abdc67c50d4998f95 --- /dev/null +++ b/maze/task2/maps/level7/table/71.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | # | # | # | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/72.txt b/maze/task2/maps/level7/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f7a2c245ab84ab4365ad10bd6f7b14093c4c5ad --- /dev/null +++ b/maze/task2/maps/level7/table/72.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | # | +| Row 2 | _ | # | * | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/73.txt b/maze/task2/maps/level7/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fb1ba3bc1afedd108324a07d9e222edcba4bb0c --- /dev/null +++ b/maze/task2/maps/level7/table/73.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | @ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/74.txt b/maze/task2/maps/level7/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ca4ea02cea9b1b456e0b590944e677fff36cac4 --- /dev/null +++ b/maze/task2/maps/level7/table/74.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | * | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/75.txt b/maze/task2/maps/level7/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..be65620632e0e123d44a853a2bc06f3986cc2fc1 --- /dev/null +++ b/maze/task2/maps/level7/table/75.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | # | _ | * | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/76.txt b/maze/task2/maps/level7/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bc3eb953426c16cf2a158f9e1370a2755b4454c --- /dev/null +++ b/maze/task2/maps/level7/table/76.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level7/table/77.txt b/maze/task2/maps/level7/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a0af7ec1d326bc531b096f9ec67ba763d36004b --- /dev/null +++ b/maze/task2/maps/level7/table/77.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | @ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/78.txt b/maze/task2/maps/level7/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..802c235482d11e3a294137b5572b7457afb37dc0 --- /dev/null +++ b/maze/task2/maps/level7/table/78.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | diff --git a/maze/task2/maps/level7/table/79.txt b/maze/task2/maps/level7/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..0908235e744ae7b01d7af5a67bb5a990359fbaaa --- /dev/null +++ b/maze/task2/maps/level7/table/79.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | @ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | # | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | * | # | diff --git a/maze/task2/maps/level7/table/8.txt b/maze/task2/maps/level7/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..418cca7b3cc9bc755efe2aa71de12c3b4c0ca419 --- /dev/null +++ b/maze/task2/maps/level7/table/8.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/80.txt b/maze/task2/maps/level7/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ad8d8edbc981bd5e4b8368e468678ce4b3701eb --- /dev/null +++ b/maze/task2/maps/level7/table/80.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | @ | _ | +| Row 2 | # | # | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | # | _ | # | _ | # | _ | diff --git a/maze/task2/maps/level7/table/81.txt b/maze/task2/maps/level7/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..041b65fcb94cfb3729465bdcd3696bb36837a191 --- /dev/null +++ b/maze/task2/maps/level7/table/81.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | @ | _ | +| Row 2 | # | * | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/82.txt b/maze/task2/maps/level7/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..999c74f84157b5dbdda514c568cadb7771876b03 --- /dev/null +++ b/maze/task2/maps/level7/table/82.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | @ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | * | _ | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/83.txt b/maze/task2/maps/level7/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d80664b3d25aed7a2460bd0fd0b3a00a128b08d --- /dev/null +++ b/maze/task2/maps/level7/table/83.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | * | _ | _ | diff --git a/maze/task2/maps/level7/table/84.txt b/maze/task2/maps/level7/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..022c45c4a081f59a09b0fadbd4fe25528458814f --- /dev/null +++ b/maze/task2/maps/level7/table/84.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | # | +| Row 7 | _ | _ | # | _ | * | # | _ | diff --git a/maze/task2/maps/level7/table/85.txt b/maze/task2/maps/level7/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..d02d2483e820514892583848712f461270c362c6 --- /dev/null +++ b/maze/task2/maps/level7/table/85.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/86.txt b/maze/task2/maps/level7/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1446ff55975c21c5a7976341d97dc291e870bd5 --- /dev/null +++ b/maze/task2/maps/level7/table/86.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | * | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | @ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/87.txt b/maze/task2/maps/level7/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc55198d236d5e7906419c87fe185268754f1369 --- /dev/null +++ b/maze/task2/maps/level7/table/87.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | * | # | diff --git a/maze/task2/maps/level7/table/88.txt b/maze/task2/maps/level7/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..246e0b2564775fcf5a22acd6d5ec2fda01e0e512 --- /dev/null +++ b/maze/task2/maps/level7/table/88.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | # | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | @ | _ | # | _ | _ | _ | +| Row 7 | # | _ | # | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/89.txt b/maze/task2/maps/level7/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..29f722c5d0bdfec18c55086b3377a3270930b585 --- /dev/null +++ b/maze/task2/maps/level7/table/89.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/9.txt b/maze/task2/maps/level7/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf23184c1726beef9b0b30a5e533d7778d82997f --- /dev/null +++ b/maze/task2/maps/level7/table/9.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | * | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/90.txt b/maze/task2/maps/level7/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..3325dad6341f9bfb76350982ae1901b3499f4eaf --- /dev/null +++ b/maze/task2/maps/level7/table/90.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | * | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/91.txt b/maze/task2/maps/level7/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..42d1959e88749ed3116192838fcd51a99721280c --- /dev/null +++ b/maze/task2/maps/level7/table/91.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | * | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/92.txt b/maze/task2/maps/level7/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..91c48af64bbe856379a695c63317515ad42f8ad3 --- /dev/null +++ b/maze/task2/maps/level7/table/92.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | # | # | +| Row 7 | # | _ | _ | * | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/93.txt b/maze/task2/maps/level7/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..686bc753e62296f95954a1793d9da125787ceac1 --- /dev/null +++ b/maze/task2/maps/level7/table/93.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | @ | _ | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | # | +| Row 7 | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/94.txt b/maze/task2/maps/level7/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cc808de540d9cd5db7e5f3fda7f37a05b9c692c --- /dev/null +++ b/maze/task2/maps/level7/table/94.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | * | # | # | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level7/table/95.txt b/maze/task2/maps/level7/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ceaa7f37fc4e17d2b9a1e68c6d19b2e639d9749 --- /dev/null +++ b/maze/task2/maps/level7/table/95.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level7/table/96.txt b/maze/task2/maps/level7/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..f56ba8f2a29a02b0d02c49b23b4a940315508e07 --- /dev/null +++ b/maze/task2/maps/level7/table/96.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | * | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | diff --git a/maze/task2/maps/level7/table/97.txt b/maze/task2/maps/level7/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..073d791d3e99609b898a8f07a1d83bc1dee6d46f --- /dev/null +++ b/maze/task2/maps/level7/table/97.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | * | # | +| Row 7 | _ | # | _ | _ | _ | # | # | diff --git a/maze/task2/maps/level7/table/98.txt b/maze/task2/maps/level7/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..68ffccbac4f5e250399e5c3ac8ef43c65ec744ab --- /dev/null +++ b/maze/task2/maps/level7/table/98.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | # | # | +| Row 2 | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | # | +| Row 5 | @ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | * | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level7/table/99.txt b/maze/task2/maps/level7/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9e78ea8e1db17486a619e41fb4f85436d6ce56e --- /dev/null +++ b/maze/task2/maps/level7/table/99.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | @ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task2/maps/level8/img/0.png b/maze/task2/maps/level8/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dc2d5e2065e439b3760908bfc2a852ee1601b2f7 --- /dev/null +++ b/maze/task2/maps/level8/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681ad7c23411bf1faf946ae85062aeeb559f5e44c2cba5651fa427f972f6b7e2 +size 17927 diff --git a/maze/task2/maps/level8/img/1.png b/maze/task2/maps/level8/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3698572e5d937e9db755cf6d13d6b8a8b957e752 --- /dev/null +++ b/maze/task2/maps/level8/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e73184153f9d023e2b27f7fba691e6a7ce71023e6bf3d4d06bcb4c1ae84a379 +size 18565 diff --git a/maze/task2/maps/level8/img/10.png b/maze/task2/maps/level8/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1f99a1b5a76d9cde5e6970cba6e033bc19897f18 --- /dev/null +++ b/maze/task2/maps/level8/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58e4918bfc6d0ef3003610ca0662944f3a4649670819022636b69d8ff1e2060 +size 17915 diff --git a/maze/task2/maps/level8/img/11.png b/maze/task2/maps/level8/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..40ab5afe04bb7e9cf54bc58575a36df3d9b5db83 --- /dev/null +++ b/maze/task2/maps/level8/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83e5a8aadbad90c777e3d2c28adb7946f29fa96c3b7b870d13e6336e8e5276a +size 19637 diff --git a/maze/task2/maps/level8/img/12.png b/maze/task2/maps/level8/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ca4eb3be0217febaf91bc083400385806782c651 --- /dev/null +++ b/maze/task2/maps/level8/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad1b9ba61e87839708343a95f60ff62ce676a610a5e81781a85821de3094394 +size 16778 diff --git a/maze/task2/maps/level8/img/13.png b/maze/task2/maps/level8/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..901f58d80e826858bbca79870f3775481b342af3 --- /dev/null +++ b/maze/task2/maps/level8/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c23c4fa8f44abc4556cf126bb76c74e63b03988abfee34eeb540d4a0393d2b +size 16810 diff --git a/maze/task2/maps/level8/img/14.png b/maze/task2/maps/level8/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3d21aab929a24742358501dd0cb99dd28db14188 --- /dev/null +++ b/maze/task2/maps/level8/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945db2b9eb5e9ec748b4f37b82f4c5f0ed64ac11e054ef15a5367846ec07eea5 +size 18691 diff --git a/maze/task2/maps/level8/img/15.png b/maze/task2/maps/level8/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f43aa69f08f078e32fccf9a94453b95aa2c27c04 --- /dev/null +++ b/maze/task2/maps/level8/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c411324e332dd42522e47fac499336ce24dddc16c6cf77c2fa72fcc41f5959e7 +size 18790 diff --git a/maze/task2/maps/level8/img/16.png b/maze/task2/maps/level8/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1c1214bda3bbb412552350122618839fadbd2435 --- /dev/null +++ b/maze/task2/maps/level8/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2f778f2bb7b4f4f7cc22db2478166ca291e4bc5e81e53a0db10b5566e0b770 +size 19627 diff --git a/maze/task2/maps/level8/img/17.png b/maze/task2/maps/level8/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..794dfe26d673d53df2fc2099a383eeb58737f144 --- /dev/null +++ b/maze/task2/maps/level8/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abcf5c12d0e22df1e147e5a056d41dec6eae00554363987eb9a8443648fe9ae +size 18648 diff --git a/maze/task2/maps/level8/img/18.png b/maze/task2/maps/level8/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..6448ad2cde372bc21f11a52319fc4065d00859a8 --- /dev/null +++ b/maze/task2/maps/level8/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13d037323b28288839585127c19da42b5afa95e7a802ec77ff322527c3c6bc9 +size 15891 diff --git a/maze/task2/maps/level8/img/19.png b/maze/task2/maps/level8/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac0b81d475b82cadd25ce6de90e5173ced03cd1 --- /dev/null +++ b/maze/task2/maps/level8/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701ada7573ca467b9f3f6e0f6f1a0dd4520e2200d891322a15a0ee652212a09c +size 19571 diff --git a/maze/task2/maps/level8/img/2.png b/maze/task2/maps/level8/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..20805a40616e5457f2329fcf6814f8397be8427f --- /dev/null +++ b/maze/task2/maps/level8/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d8fa1babc8c3be56bf04f9be34d436a52a3632525ec20d203b560ca9e04c79 +size 18803 diff --git a/maze/task2/maps/level8/img/20.png b/maze/task2/maps/level8/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..96f22bf9d89107f036ba7364c9266b8afc08d9bf --- /dev/null +++ b/maze/task2/maps/level8/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7bd8e24bd7adfdf1bef6fe6ebec840a3210d29edb5bbb1155d3600b9129968 +size 18865 diff --git a/maze/task2/maps/level8/img/21.png b/maze/task2/maps/level8/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..4ec6879f3569a880a795cb1a16f9b5b1384398e3 --- /dev/null +++ b/maze/task2/maps/level8/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c46235f04304dfd29b4c3b6b8067ca84b698b2214de0ec14db3802ae616ab2 +size 17785 diff --git a/maze/task2/maps/level8/img/22.png b/maze/task2/maps/level8/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..a00a86d056b3f97b608203bdccf5f613d1e89b27 --- /dev/null +++ b/maze/task2/maps/level8/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7c37eae6aa7f038bf33fec62b080d2d43745d94c213d7bb6c55db481ffcf25 +size 17780 diff --git a/maze/task2/maps/level8/img/23.png b/maze/task2/maps/level8/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..2da9db6cfac0886876ef8a2d61ce7975c6959a7b --- /dev/null +++ b/maze/task2/maps/level8/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8c88e2a0916ccee47af66c152e58abde796d0e59f4d922be099ad74dd01a78 +size 18629 diff --git a/maze/task2/maps/level8/img/24.png b/maze/task2/maps/level8/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..a1785c9d654de6f5f23152cd6d2e20e9bf79e469 --- /dev/null +++ b/maze/task2/maps/level8/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b2de19905cc0cd1cad05c7ab030708800c1b0aa499808cc8c4ec4dca8b52017 +size 18569 diff --git a/maze/task2/maps/level8/img/25.png b/maze/task2/maps/level8/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..68ae7a4c77dba24a63e1ebe73497ab01b52f6887 --- /dev/null +++ b/maze/task2/maps/level8/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385258333b63bb8e2340f04544c2f50414b4fd6e5a6d8225c25245cfc020cf64 +size 17941 diff --git a/maze/task2/maps/level8/img/26.png b/maze/task2/maps/level8/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..234c5e060b35cc0d7142dcbdb90e4412e3f31810 --- /dev/null +++ b/maze/task2/maps/level8/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80668308ff3957c26ee47a4c61026e264b727709a1eff5d286b41de00912b98a +size 17879 diff --git a/maze/task2/maps/level8/img/27.png b/maze/task2/maps/level8/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..3210a9a4ddfaf5b04a35c6724a3b206c85e30fd8 --- /dev/null +++ b/maze/task2/maps/level8/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8b76e7138f7799a32936e3ae45f7aca759a33406115f8cc1ccb777b8350346 +size 16779 diff --git a/maze/task2/maps/level8/img/28.png b/maze/task2/maps/level8/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..b4391e1cc90ec9cba1975273c5b10161c003212c --- /dev/null +++ b/maze/task2/maps/level8/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3419c21d5174da791eefa034788dae23fb2b9abe699f6cc92a7dc7a9af06fe9b +size 17845 diff --git a/maze/task2/maps/level8/img/29.png b/maze/task2/maps/level8/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..22614abf3fb78ef0ddb9c101edc2e4cfc5d7433f --- /dev/null +++ b/maze/task2/maps/level8/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81a67896e732e18ccbe69e95e99bb65f6bb59323fc9bb46c8e83eb510247ae3 +size 19550 diff --git a/maze/task2/maps/level8/img/3.png b/maze/task2/maps/level8/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..03902673ba5d2ed99f2adf299fa11c1443a38909 --- /dev/null +++ b/maze/task2/maps/level8/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a314eac76e015edf11575e143578dd5ed85a7c6bc8cd73d52f4336de9a0118a +size 18023 diff --git a/maze/task2/maps/level8/img/30.png b/maze/task2/maps/level8/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..efbf9942ad9e2b9d315bd8be6661ba94d6d07670 --- /dev/null +++ b/maze/task2/maps/level8/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3354c04191d98deba38d65efb0ecc5ead29f665d6fb4f8b202817d08d28a6bfa +size 19691 diff --git a/maze/task2/maps/level8/img/31.png b/maze/task2/maps/level8/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..68ef23656d48a941305a8e26e21d08df7ce57465 --- /dev/null +++ b/maze/task2/maps/level8/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b019eb7cfbcb62925a5dd98c2e41f7c11c09ec1761ce257f83813449e9a35a +size 19540 diff --git a/maze/task2/maps/level8/img/32.png b/maze/task2/maps/level8/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..dd115f00253a3d0bab6ee4460e14aefcfce133fa --- /dev/null +++ b/maze/task2/maps/level8/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b8b82978fdf515826fffd5f72c9565bebd2b8bce4e968cf80a6b4b6cf55950 +size 16792 diff --git a/maze/task2/maps/level8/img/33.png b/maze/task2/maps/level8/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..dea54f07654247e6835b05a3ebe49d3ee043992b --- /dev/null +++ b/maze/task2/maps/level8/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46bb34ec60a621a58e7d5417cea97f3940b34128a6ea49b43786ffe489439e8f +size 17899 diff --git a/maze/task2/maps/level8/img/34.png b/maze/task2/maps/level8/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..6e8f1dac026a45ab43063c8e879d7f508ffe99c0 --- /dev/null +++ b/maze/task2/maps/level8/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99061181f7eacff632aaa4b2a3faba566009f678b91c1b241a27ba6c3cf3c80f +size 16859 diff --git a/maze/task2/maps/level8/img/35.png b/maze/task2/maps/level8/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..00d0955fd8325877646a34ba6d7190c3a6721e50 --- /dev/null +++ b/maze/task2/maps/level8/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb68bc29bbf88bcf8eca7e8d80e8f7e81e2de792b5f1a5358ed3304eb12a2bce +size 19627 diff --git a/maze/task2/maps/level8/img/36.png b/maze/task2/maps/level8/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..8c020337b9d33ea012d11fd77d3a0ec7522a7918 --- /dev/null +++ b/maze/task2/maps/level8/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8332ce2e33363147510e600582b4adf5b16bf278a3d08ec64cda2553ccbde3de +size 17894 diff --git a/maze/task2/maps/level8/img/37.png b/maze/task2/maps/level8/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..65d2178b10a0d3eb5516bc657f8574bf488bc0bc --- /dev/null +++ b/maze/task2/maps/level8/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b054b6ccc6f726373ecb401312ace549d85ab275c949461f969800eae41803 +size 18664 diff --git a/maze/task2/maps/level8/img/38.png b/maze/task2/maps/level8/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..9d9dd74966c078a40aa321ba2aa769d03d5da6cb --- /dev/null +++ b/maze/task2/maps/level8/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c865c3a2e8afb455322e965c4879b1caf573deae644a1fe7481674a5e77def +size 17753 diff --git a/maze/task2/maps/level8/img/39.png b/maze/task2/maps/level8/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c3bc9349f2fbd5e89bec6969e1208b18f43e90 --- /dev/null +++ b/maze/task2/maps/level8/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6d6d7cadb8d4c36e63d22a9753de2f6778a4c54224d9c84ce8467d530890e7 +size 16905 diff --git a/maze/task2/maps/level8/img/4.png b/maze/task2/maps/level8/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..84dc57fa7131fefa912d865cc59c5dd8bc55c5a5 --- /dev/null +++ b/maze/task2/maps/level8/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e84a678942465fcb643477658c9ee06d624f00ae99830a7e70937d19944d03e +size 18791 diff --git a/maze/task2/maps/level8/img/40.png b/maze/task2/maps/level8/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..1550c2298eb3431b0e4e575e23152d764ee48b22 --- /dev/null +++ b/maze/task2/maps/level8/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ee042957a624567b9d70665e62536fb8155b51b76e769e66adc2ac43c8596e1 +size 18636 diff --git a/maze/task2/maps/level8/img/41.png b/maze/task2/maps/level8/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..c979d93f1ec3840e105d6f0edba50e33869551f6 --- /dev/null +++ b/maze/task2/maps/level8/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bf0277140f0125e4171af1d46b71ec2dd9dbc174b6e56986337e18446734ab +size 17737 diff --git a/maze/task2/maps/level8/img/42.png b/maze/task2/maps/level8/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..802af52eacf356257d7aad774fe22026f02ea322 --- /dev/null +++ b/maze/task2/maps/level8/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54105bd9af61a318ad2a3339a46687145c08a65dc54b237aa9a7ca73bcae726b +size 18858 diff --git a/maze/task2/maps/level8/img/43.png b/maze/task2/maps/level8/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..095f1868131833534289025d3bbb51b39e827b87 --- /dev/null +++ b/maze/task2/maps/level8/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7899bc5987c4fee5397059aa5249a7a6bbc185939d0574220d4ce59eddc79359 +size 17702 diff --git a/maze/task2/maps/level8/img/44.png b/maze/task2/maps/level8/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..1368a10cf3534bde6bcf101afb2ff996f028e90b --- /dev/null +++ b/maze/task2/maps/level8/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a27953b0a215c20c36ed9aee700535f4f716ec7250c39453286cc2f4753582ae +size 18634 diff --git a/maze/task2/maps/level8/img/45.png b/maze/task2/maps/level8/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..3884ef2628c729b6e4e151de6f4fc4c97ab62983 --- /dev/null +++ b/maze/task2/maps/level8/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48733a4b86a0e8642af2d1ecbaddd32ef1d7d5648b9ea0a1fefcf249c0e50a35 +size 17637 diff --git a/maze/task2/maps/level8/img/46.png b/maze/task2/maps/level8/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..208a99108bcd16d323d7da9bc4300c6c9af287fd --- /dev/null +++ b/maze/task2/maps/level8/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da207d136b088051f44a057563d4cd11b4e786eb4c1bba218403886dcb2f781 +size 17732 diff --git a/maze/task2/maps/level8/img/47.png b/maze/task2/maps/level8/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..285ae9513fd3130149c431e21d1aaa20176a528f --- /dev/null +++ b/maze/task2/maps/level8/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0609fcb166afbf7a5b95643f60c02190458403453e009b6e72df6f4e2436f77e +size 18708 diff --git a/maze/task2/maps/level8/img/48.png b/maze/task2/maps/level8/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..b18c5b1cc221cf305613a24c45967cec674cc733 --- /dev/null +++ b/maze/task2/maps/level8/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a04db77ebb28dc02d947c0f3a847cf7ec5f03b0cc4b5306a64b2edc00feef3dc +size 16842 diff --git a/maze/task2/maps/level8/img/49.png b/maze/task2/maps/level8/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..22028d664cc98b8f82c12d7e6f6d13fa8b226e5b --- /dev/null +++ b/maze/task2/maps/level8/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87297e71c2ae0002fe09b6977dd548ecbb910c547146f374e5817347620c46d7 +size 16993 diff --git a/maze/task2/maps/level8/img/5.png b/maze/task2/maps/level8/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..98dc449fceac63bec948eb26800d79a6934e2f37 --- /dev/null +++ b/maze/task2/maps/level8/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55119da1e56efb846194b295292772a2aef9ee8cf3e4d1302f1d3dc48adaf13d +size 18613 diff --git a/maze/task2/maps/level8/img/50.png b/maze/task2/maps/level8/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..1f432b116c97e3c4df75fb5a45f998b5a488fca8 --- /dev/null +++ b/maze/task2/maps/level8/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11037638ae2e192cd9405b8ff937edae0b40c47f3f8eb8300bbac5410dcfb640 +size 18716 diff --git a/maze/task2/maps/level8/img/51.png b/maze/task2/maps/level8/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..f97f4d4ab9758e8787479ee9e4d3e7c65b2d0b30 --- /dev/null +++ b/maze/task2/maps/level8/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20159c1f05f6d0823c6a99b4dcc7f18700ed5b5727a2ea6ac64f2c902b956385 +size 18831 diff --git a/maze/task2/maps/level8/img/52.png b/maze/task2/maps/level8/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..ab90e754c48d8fdc96597b75a26ade38cff8f062 --- /dev/null +++ b/maze/task2/maps/level8/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a1a0298aaa8e7d6d230d6156c0b5b6f9f2fae01c753f0cba4e15bb3143a792 +size 19582 diff --git a/maze/task2/maps/level8/img/53.png b/maze/task2/maps/level8/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..07459fe91084a54fbf633b6587fbc65bfc463932 --- /dev/null +++ b/maze/task2/maps/level8/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260fa96402d5b4bbeff16a5947f00d5e8359d2bde16c19cc433573d2d6e71322 +size 19689 diff --git a/maze/task2/maps/level8/img/54.png b/maze/task2/maps/level8/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..eaed6e9f3d5e10281116193b67db7e100c37e2e5 --- /dev/null +++ b/maze/task2/maps/level8/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847d616194063c9c3feb35f7f37cd6fce1cd057aabafcd03bd5097476f4494ea +size 19602 diff --git a/maze/task2/maps/level8/img/55.png b/maze/task2/maps/level8/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..94542f9a36d78c3f09e6a37d04e30559481c4e6f --- /dev/null +++ b/maze/task2/maps/level8/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd5413e189a3eca044786d733f3363ab52b4b3dd00f0143b916ba1613029f74 +size 18726 diff --git a/maze/task2/maps/level8/img/56.png b/maze/task2/maps/level8/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..21a32de04fc0aae5ccbfd793f71ff08369c18fa4 --- /dev/null +++ b/maze/task2/maps/level8/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff245f941c9444696462a595c268d67523046de02b73c6a4675d971f9012eb9 +size 19685 diff --git a/maze/task2/maps/level8/img/57.png b/maze/task2/maps/level8/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..2c1c1a2dbf3ce8db96c82b478843be150944ad8e --- /dev/null +++ b/maze/task2/maps/level8/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea9ebf242680be471785311043ba652655f96e0ca181ecba183ebc690a01801 +size 17768 diff --git a/maze/task2/maps/level8/img/58.png b/maze/task2/maps/level8/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..264aeb65bc1b9c7d2128215385f4cd92c97a770c --- /dev/null +++ b/maze/task2/maps/level8/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a8558c63524f1efd18a16bb595ce8e21a3f2473f890e1b48b5c4ca20c4f238 +size 18751 diff --git a/maze/task2/maps/level8/img/59.png b/maze/task2/maps/level8/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..6920305444ff56d7ac78ba5c469735866be7a009 --- /dev/null +++ b/maze/task2/maps/level8/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a11afde854931813174c07f848c32bac8faee03028886e0a4a2b274e0f03745 +size 17587 diff --git a/maze/task2/maps/level8/img/6.png b/maze/task2/maps/level8/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b476a87e8f861e1be069f0ab0e9be23cdc2e6d5b --- /dev/null +++ b/maze/task2/maps/level8/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd14257ada4b7b8d158b6055be7f6a20b4914d3e4721081e138b8f1ac52d8f08 +size 19836 diff --git a/maze/task2/maps/level8/img/60.png b/maze/task2/maps/level8/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..eba869229a7edccc691357f159d55b1beb018f9b --- /dev/null +++ b/maze/task2/maps/level8/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8feea8129af273c3243c30d340ad604f8d7b011bd7253d27bfcae9a04d87ffc +size 17745 diff --git a/maze/task2/maps/level8/img/61.png b/maze/task2/maps/level8/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..56d7b9a7db856a2d22225548c4f672c702321f01 --- /dev/null +++ b/maze/task2/maps/level8/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd0f8bf6475c3e9a92285f827a3582644e5fa378bf862105e2063b49b68bb79 +size 17788 diff --git a/maze/task2/maps/level8/img/62.png b/maze/task2/maps/level8/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..2f3b2de3fa41b5cb73f80b552dfee96df35a6fea --- /dev/null +++ b/maze/task2/maps/level8/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a0e157431a787003deb6501a03da44abfb46b2652f9711dc611b0cb95acecb +size 19706 diff --git a/maze/task2/maps/level8/img/63.png b/maze/task2/maps/level8/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..b32513bb15fa8f42c699aca0014b0e076eaf8472 --- /dev/null +++ b/maze/task2/maps/level8/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7840449e9040dfa3b5a3d8f1cb821c9c7adfe148f0cc33445a7372d18f1ecf +size 16793 diff --git a/maze/task2/maps/level8/img/64.png b/maze/task2/maps/level8/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..43cf534c79249808d634539211a9bc8d6319d2f0 --- /dev/null +++ b/maze/task2/maps/level8/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8b27aba132c7977b7c96d029502ed49342b45cc5017c1aecd2450c70cded66 +size 16788 diff --git a/maze/task2/maps/level8/img/65.png b/maze/task2/maps/level8/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..547bd7afc5df4fe7049a8d8a464ecf6de384f4c5 --- /dev/null +++ b/maze/task2/maps/level8/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570ba937607f86eccfe05d90d2e65f53ce44eb961f54164db7ed77256d27ec8e +size 17007 diff --git a/maze/task2/maps/level8/img/66.png b/maze/task2/maps/level8/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..3d37a26963f2ba8300d5855e555edd5f2d5d805b --- /dev/null +++ b/maze/task2/maps/level8/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8227afc97a1baca2569cff85b781d90c810c3271ebf08b719c1a26baf86acb97 +size 18922 diff --git a/maze/task2/maps/level8/img/67.png b/maze/task2/maps/level8/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..ea92f85c469eb04254866c8768e8985aa27aff97 --- /dev/null +++ b/maze/task2/maps/level8/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b6b77db6d1e89a6ee7f7cf67b2220cf3d2a19930c2f0d2dcd067217140c8a6 +size 19627 diff --git a/maze/task2/maps/level8/img/68.png b/maze/task2/maps/level8/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..5666d3cd9d5cc1d8ded6876e55cd4cabd71f8a10 --- /dev/null +++ b/maze/task2/maps/level8/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a6b4c47b3de2404e1cf8359133c31ca44e3dbc409ff03dce7c98442149302d +size 19423 diff --git a/maze/task2/maps/level8/img/69.png b/maze/task2/maps/level8/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..114f6958223ab4e28dfd8d59367e4504eebd4bbf --- /dev/null +++ b/maze/task2/maps/level8/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b0409b9e447202f3ff6da0d89c8afe94bc169d87f99c9cfd4236efd9b3f6cc +size 18037 diff --git a/maze/task2/maps/level8/img/7.png b/maze/task2/maps/level8/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f72ab06d175db6011aeef26e24f4ac8ed5063a12 --- /dev/null +++ b/maze/task2/maps/level8/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ddcf453b7cc8d0dd80d7deb275f081feb90aab8f441f078f7ddccf22a95af2 +size 17787 diff --git a/maze/task2/maps/level8/img/70.png b/maze/task2/maps/level8/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..0b3b1b50b2bec64b5814291bde8901a9b5ad82d8 --- /dev/null +++ b/maze/task2/maps/level8/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9b4a74dad5a294638b394c36f8ce18d0493011e3065bb3410f6359e243a386 +size 17881 diff --git a/maze/task2/maps/level8/img/71.png b/maze/task2/maps/level8/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..0c05efe3b7c008aeb82f997d0383559dab41211e --- /dev/null +++ b/maze/task2/maps/level8/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787a25ad0b24d39f6f48f1116242b34edb12441e00e90058dde0246dc4fe6692 +size 18873 diff --git a/maze/task2/maps/level8/img/72.png b/maze/task2/maps/level8/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..636fe12c8af7bafcf6de4f963423ba524c3944c8 --- /dev/null +++ b/maze/task2/maps/level8/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da93dbe0354ea0bd83ac8eed98ebd1a43bd569c9540d347c6ba61c0627f36eb +size 17783 diff --git a/maze/task2/maps/level8/img/73.png b/maze/task2/maps/level8/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..5a78a4b4afb52ed6a485487fadfcd9ca4a8a855a --- /dev/null +++ b/maze/task2/maps/level8/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1971b9440337eb1b7b6e96c7ebb7167ca54ca8714b8de458f5e3c8d83c2eacd8 +size 16840 diff --git a/maze/task2/maps/level8/img/74.png b/maze/task2/maps/level8/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..6f70c245b1e223b29a5ca1c9c43130bc08af3c20 --- /dev/null +++ b/maze/task2/maps/level8/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc32844e299f20b3f901002184f30b7e2e7bede9b6575d7b4f0558c834ecf19c +size 18845 diff --git a/maze/task2/maps/level8/img/75.png b/maze/task2/maps/level8/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..d907c9ae85afa045dceb08b0136077e373a3c305 --- /dev/null +++ b/maze/task2/maps/level8/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82aa588d3a29a84a4623635237f711d541f52255a2cc3b09138bf81bfa4b0377 +size 17852 diff --git a/maze/task2/maps/level8/img/76.png b/maze/task2/maps/level8/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..db860eabb44de2b209ea3a7e95d00d9da05d5b57 --- /dev/null +++ b/maze/task2/maps/level8/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d82a8cd4e3a9af30e16119c149a333033f7089348d0e6bd91a18056b2164dc2 +size 19164 diff --git a/maze/task2/maps/level8/img/77.png b/maze/task2/maps/level8/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..f86c4ea8675dd51a44627e3978ec6f14e82ca562 --- /dev/null +++ b/maze/task2/maps/level8/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08db4bf4325c26f228df3b344e4e0e28fe65a823dba07e3a03965c8619aa9637 +size 19576 diff --git a/maze/task2/maps/level8/img/78.png b/maze/task2/maps/level8/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..7c7b556bd5a323d4547b9e714a14ca2b42c45c1d --- /dev/null +++ b/maze/task2/maps/level8/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ba708ead386a77ba0826ef25c8d139f89fa5b3f12eb4f3fe8bd072c2ca077 +size 16797 diff --git a/maze/task2/maps/level8/img/79.png b/maze/task2/maps/level8/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..d55bdda293cfe83cb15d831479e4ebd78066a770 --- /dev/null +++ b/maze/task2/maps/level8/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308d15f69f93a8ff4c1e2cd5b4df675fa167f25af70f113f75f50a84653f059c +size 18638 diff --git a/maze/task2/maps/level8/img/8.png b/maze/task2/maps/level8/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..41f4ce61961caacc51f3359192abed60609d4c7d --- /dev/null +++ b/maze/task2/maps/level8/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dcb999d5852bf4771ef543f4263476f2cb3c06ec051928bc355bdbffd2745b3 +size 16757 diff --git a/maze/task2/maps/level8/img/80.png b/maze/task2/maps/level8/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..85fdd47dcff6ac2eab20e242a8c056d272f857b4 --- /dev/null +++ b/maze/task2/maps/level8/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a99cf5dafe1e7b1834751ea28c8a48cfded232aa1205f520dbebfd3a6279cb3 +size 18685 diff --git a/maze/task2/maps/level8/img/81.png b/maze/task2/maps/level8/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..3f23aca01092c314b3205b1085b4c759060d7c96 --- /dev/null +++ b/maze/task2/maps/level8/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2cdeecb514a2895878ab47291a7ee1bfbbed5687fad1bf360b7d162ce52d6c +size 17884 diff --git a/maze/task2/maps/level8/img/82.png b/maze/task2/maps/level8/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..729821acb44941102f7e586a25ded86c1776dba7 --- /dev/null +++ b/maze/task2/maps/level8/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13e1c969db6f58a8293c964be47eb1a6eb26a1baa7cd8e28c9c743367de23a6 +size 18781 diff --git a/maze/task2/maps/level8/img/83.png b/maze/task2/maps/level8/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..dce69a7284da2abdeacd8f0cb65752368818b369 --- /dev/null +++ b/maze/task2/maps/level8/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25ba75a1cb200a569f34215b08ca6191a8ab129e9e6be7da252e24c333d8bd4 +size 18612 diff --git a/maze/task2/maps/level8/img/84.png b/maze/task2/maps/level8/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..7058efa5c3c100a0f17b9c8ab0c8785369f4d5de --- /dev/null +++ b/maze/task2/maps/level8/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e893344141c5ecb6b9e46644ca19d35ac441b3dbf0398fe1d8bb3d2c8d60f0d4 +size 18739 diff --git a/maze/task2/maps/level8/img/85.png b/maze/task2/maps/level8/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..c992e8abd629bcb4593bd4d2a6947fa423087d8b --- /dev/null +++ b/maze/task2/maps/level8/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dad47fe91abf2da36d065d893ffdd24858ff915e64de8bc0aa20261ed508e93 +size 17109 diff --git a/maze/task2/maps/level8/img/86.png b/maze/task2/maps/level8/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..fe716c60315cd70d2cad845fc223135d6765bd0c --- /dev/null +++ b/maze/task2/maps/level8/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdb273c3f7574e21ddd1df8603945836010b818a726bb715bc45290734b4ff8 +size 18708 diff --git a/maze/task2/maps/level8/img/87.png b/maze/task2/maps/level8/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..6b8745ac906d3553301edfa84b312df796e48bd1 --- /dev/null +++ b/maze/task2/maps/level8/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973839c531def7ad1eb261660d86971c3adead999a2faef31a0fa881712bed97 +size 18610 diff --git a/maze/task2/maps/level8/img/88.png b/maze/task2/maps/level8/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..86c9ea49c728ffa54ad84b33d78e321076b134f3 --- /dev/null +++ b/maze/task2/maps/level8/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2285035728e567d7cfb3fa6ef2e5baa5596aaae38b675635ead52ea9aa39ec4 +size 17914 diff --git a/maze/task2/maps/level8/img/89.png b/maze/task2/maps/level8/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..c56e477e08ad778044a9c5353b283d0ecae62dec --- /dev/null +++ b/maze/task2/maps/level8/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00547202b522c513eb5012589eebe2861c2fb0f11b9dbdc4f08320b1f76158e7 +size 17869 diff --git a/maze/task2/maps/level8/img/9.png b/maze/task2/maps/level8/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ca66f9d0b956005d9deafef2c15b08014c8f8a4a --- /dev/null +++ b/maze/task2/maps/level8/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2ee0d4ca489ecfcc47effd4e137bed71bd6c29dd514fca1244ad802033b578 +size 18615 diff --git a/maze/task2/maps/level8/img/90.png b/maze/task2/maps/level8/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac7ccbf0ab8d96187a39ccb46021e8317486da5 --- /dev/null +++ b/maze/task2/maps/level8/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d30ffcde1c157ce971bbb1913295497727092c8eabfb137110b8bc5d572b94 +size 17820 diff --git a/maze/task2/maps/level8/img/91.png b/maze/task2/maps/level8/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..c3301a7935c67a4c939aaba44f1570344307c940 --- /dev/null +++ b/maze/task2/maps/level8/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49055fd559ba684762bf0d6a8162d6b10c762057c6335988c302bf5738513e15 +size 17755 diff --git a/maze/task2/maps/level8/img/92.png b/maze/task2/maps/level8/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..6d5708285cab7405bf5504cc4ca99ae8fa14e4a0 --- /dev/null +++ b/maze/task2/maps/level8/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5ac6ca877d4d06a0197a768d011e68b8264aa11a8d03399b0a159080d4d893 +size 18769 diff --git a/maze/task2/maps/level8/img/93.png b/maze/task2/maps/level8/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..157427830c176ffa3cb675825bda01b4a19f0c00 --- /dev/null +++ b/maze/task2/maps/level8/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2662f3e314b3d8abc22615aa45f9ac722255bc0aab40f345cdc341dd1cffbe +size 18724 diff --git a/maze/task2/maps/level8/img/94.png b/maze/task2/maps/level8/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..0df761883c14a4e28121ab9baf5125f3235dfd6c --- /dev/null +++ b/maze/task2/maps/level8/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9d91ed3104bcd9d8a26ccd79d8da2058d60bf731d3e86a4e748eda4f27918db +size 16930 diff --git a/maze/task2/maps/level8/img/95.png b/maze/task2/maps/level8/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..3a02502ec36854319e67abe93e82d86907aebf44 --- /dev/null +++ b/maze/task2/maps/level8/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e98d0ba1b283a33bbf8ec5088d09e84a59eb45c172a2b0ce518233a4d5589ca +size 19622 diff --git a/maze/task2/maps/level8/img/96.png b/maze/task2/maps/level8/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..ab84e8103a465f803975dcff6822f997d234a3b6 --- /dev/null +++ b/maze/task2/maps/level8/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209161fa2ab0a89538fa690b095ce5dd0506690f6f1122207e15e2a3efc4f2ec +size 18798 diff --git a/maze/task2/maps/level8/img/97.png b/maze/task2/maps/level8/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..d4e8c8979cc54f4390dd6a1c3d1670882c36d9b4 --- /dev/null +++ b/maze/task2/maps/level8/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9f7e0b69a389eec5692585882268e1a8b285e50805a2efa899ef72ecd38b92 +size 19877 diff --git a/maze/task2/maps/level8/img/98.png b/maze/task2/maps/level8/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..de6caae508393409406c601cd5f403aa4f6148bb --- /dev/null +++ b/maze/task2/maps/level8/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039f87ff576798a523081cc824bd93bd27d1a26a72ca9ef82fae9568f958f0b9 +size 17976 diff --git a/maze/task2/maps/level8/img/99.png b/maze/task2/maps/level8/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..bacebac2a699f713248cc0d0edae76ec8668c670 --- /dev/null +++ b/maze/task2/maps/level8/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f30fd058068421b7b1d78d24762afce32703c469b93777b0a5513e944c2110 +size 18059 diff --git a/maze/task2/maps/level8/pure_text/0.txt b/maze/task2/maps/level8/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..69cad96b665e8bba1763ed949cd44b8b0be5e7be --- /dev/null +++ b/maze/task2/maps/level8/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 8; Row 2, Column 4; Row 2, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 4; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 7; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/1.txt b/maze/task2/maps/level8/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..934509ca72329ebb4ea13656cfbb4da5fa51c731 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 8; Row 2, Column 7; Row 3, Column 7; Row 5, Column 7; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 7; Row 7, Column 8; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/10.txt b/maze/task2/maps/level8/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a5cda0bf8741c1774146f9b8abff223a36ccd87 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; Row 3, Column 7; Row 5, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 8, Column 4; Row 8, Column 8; +The goal is at: Row 5, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/11.txt b/maze/task2/maps/level8/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..92bbf838035535c12a257446773fa5bd35e23726 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 8; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 5; Row 5, Column 2; Row 6, Column 5; Row 7, Column 4; Row 7, Column 8; Row 8, Column 6; +The goal is at: Row 6, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/12.txt b/maze/task2/maps/level8/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ccaf4a188948de140ce713d7daa6e80efb16788 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 8; Row 6, Column 8; Row 7, Column 1; Row 8, Column 4; Row 8, Column 7; +The goal is at: Row 8, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/13.txt b/maze/task2/maps/level8/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9ca5fd91a7be69ec57874ea6cee5b44c11fc0d0 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 2, Column 6; Row 3, Column 4; Row 3, Column 8; Row 4, Column 1; Row 4, Column 6; Row 6, Column 8; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/14.txt b/maze/task2/maps/level8/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3ceaa3849c3151b09445ca6f7633e93251b7365 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 1, Column 7; Row 2, Column 1; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 7, Column 7; Row 8, Column 3; Row 8, Column 5; Row 8, Column 7; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/15.txt b/maze/task2/maps/level8/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..8761869a5c86d60cd17e3bb004404d906d0d26ac --- /dev/null +++ b/maze/task2/maps/level8/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 3, Column 3; Row 3, Column 8; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 7; Row 8, Column 6; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/16.txt b/maze/task2/maps/level8/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..816a956173e7e8f08d14f4197a7a77d27541adf1 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 7; Row 3, Column 3; Row 3, Column 8; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 4; Row 6, Column 5; Row 7, Column 2; Row 8, Column 3; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/17.txt b/maze/task2/maps/level8/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..0722904ace3bb344443c27dd9dfef2c9875dc403 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 3, Column 6; Row 5, Column 1; Row 5, Column 4; Row 6, Column 1; Row 6, Column 3; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; Row 7, Column 8; Row 8, Column 5; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/18.txt b/maze/task2/maps/level8/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..dce9880e23be0bb25595d588338c5ce9ea7419dc --- /dev/null +++ b/maze/task2/maps/level8/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 3, Column 8; Row 6, Column 1; Row 6, Column 8; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/19.txt b/maze/task2/maps/level8/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..15c566e6e563be754e698bf1982a2714bebc79e3 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 7; Row 4, Column 5; Row 4, Column 7; Row 5, Column 4; Row 6, Column 1; Row 6, Column 8; Row 7, Column 3; Row 7, Column 5; Row 7, Column 8; Row 8, Column 7; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/2.txt b/maze/task2/maps/level8/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..483c00f02a7f747ae5baf287b72a5411694e2dce --- /dev/null +++ b/maze/task2/maps/level8/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 8; +The hole(s) are at: Row 1, Column 3; Row 1, Column 8; Row 2, Column 1; Row 3, Column 3; Row 3, Column 7; Row 5, Column 2; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; Row 8, Column 4; Row 8, Column 5; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/20.txt b/maze/task2/maps/level8/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c404d89f4ab030f209934ff5c7ccdc8b6b6c3cb --- /dev/null +++ b/maze/task2/maps/level8/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 8; Row 4, Column 6; Row 5, Column 2; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 4; Row 7, Column 7; Row 8, Column 3; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/21.txt b/maze/task2/maps/level8/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ebac7fa1fff0d81f9678c9a100456ada3af3fa7 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 4, Column 1; Row 4, Column 5; Row 6, Column 8; Row 8, Column 3; Row 8, Column 5; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/22.txt b/maze/task2/maps/level8/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..908bbcfa9729cb6d68e0ad7642f7261e6574bd53 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 3; Row 4, Column 3; Row 4, Column 5; Row 5, Column 3; Row 5, Column 4; Row 6, Column 2; Row 6, Column 7; Row 7, Column 8; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/23.txt b/maze/task2/maps/level8/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0c6cf24e6dd29399b9c2e4fe0ef94245772ae42 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 8; Row 2, Column 8; Row 3, Column 8; Row 4, Column 3; Row 5, Column 1; Row 5, Column 8; Row 7, Column 3; Row 7, Column 7; Row 7, Column 8; Row 8, Column 2; Row 8, Column 8; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/24.txt b/maze/task2/maps/level8/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cd4dfa3b9f76c58eed100124154f8bc0406324c --- /dev/null +++ b/maze/task2/maps/level8/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 4; Row 4, Column 1; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 6; Row 8, Column 1; Row 8, Column 2; Row 8, Column 8; +The goal is at: Row 4, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/25.txt b/maze/task2/maps/level8/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..26b8fd0050e74804bcde2b93b85f3517597b353b --- /dev/null +++ b/maze/task2/maps/level8/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 3; Row 5, Column 2; Row 6, Column 6; Row 7, Column 1; Row 7, Column 5; Row 8, Column 1; Row 8, Column 7; +The goal is at: Row 8, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/26.txt b/maze/task2/maps/level8/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..6049f44d2512f3c34fc0b5f0a543e46562ccd2fb --- /dev/null +++ b/maze/task2/maps/level8/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 7; Row 4, Column 2; Row 6, Column 2; Row 6, Column 5; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/27.txt b/maze/task2/maps/level8/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..54cb5c0da2f233834343f1ed1b525ec254333211 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 3; Row 3, Column 6; Row 3, Column 8; Row 6, Column 1; Row 6, Column 2; Row 7, Column 1; Row 8, Column 2; Row 8, Column 6; +The goal is at: Row 5, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/28.txt b/maze/task2/maps/level8/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..3331221fa563c48a069b37aa4bc434ba1a607536 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; Row 3, Column 7; Row 5, Column 1; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 8; Row 7, Column 6; Row 8, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/29.txt b/maze/task2/maps/level8/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..60d5f2cc4351bd135b384c27b253bded851f44da --- /dev/null +++ b/maze/task2/maps/level8/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 3, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 6, Column 3; Row 6, Column 6; Row 7, Column 7; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/3.txt b/maze/task2/maps/level8/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..66d85c258f93ec4f659fea96ee1e6630c2914c3e --- /dev/null +++ b/maze/task2/maps/level8/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 3, Column 6; Row 4, Column 5; Row 4, Column 7; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 8; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/30.txt b/maze/task2/maps/level8/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad13ccd68f57b27aa3e10347dcfe24939893aaf9 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 8; +The hole(s) are at: Row 1, Column 2; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 8; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 6; Row 6, Column 2; Row 7, Column 4; Row 7, Column 6; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/31.txt b/maze/task2/maps/level8/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b037c248f9f9ffb356243dbf8a43e26b4b75f6d --- /dev/null +++ b/maze/task2/maps/level8/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 2, Column 6; Row 3, Column 4; Row 3, Column 7; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 5, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 1; Row 7, Column 7; Row 7, Column 8; Row 8, Column 3; +The goal is at: Row 8, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/32.txt b/maze/task2/maps/level8/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..33726092af825cb738f81d2841283f2ef820931d --- /dev/null +++ b/maze/task2/maps/level8/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 8; Row 2, Column 2; Row 2, Column 3; Row 4, Column 7; Row 6, Column 3; Row 8, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/33.txt b/maze/task2/maps/level8/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..978a5048f4bcae53f8ff9b16b1f7e3d2774d6632 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 3; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 5, Column 3; Row 6, Column 2; Row 6, Column 4; Row 6, Column 7; Row 8, Column 6; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/34.txt b/maze/task2/maps/level8/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6663f86c1bc8ae0697bdc17599801a3d07476b2 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 6; Row 1, Column 7; Row 3, Column 3; Row 5, Column 1; Row 5, Column 8; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/35.txt b/maze/task2/maps/level8/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd654db54329e0ee79e36910a28f7892317e00fc --- /dev/null +++ b/maze/task2/maps/level8/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 8; Row 6, Column 1; Row 6, Column 4; Row 6, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; Row 8, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/36.txt b/maze/task2/maps/level8/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..75342c92a61f0dbc7fbb6a065c3d33e56a0850d3 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 8; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 4; Row 5, Column 3; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/37.txt b/maze/task2/maps/level8/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..91e6dd54820741f443b097abc31477247f2783d5 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 7; Row 2, Column 8; Row 3, Column 1; Row 5, Column 4; Row 6, Column 4; Row 6, Column 7; Row 7, Column 3; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/38.txt b/maze/task2/maps/level8/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c74bf0397954a159100b5840ee662f15903ae4f --- /dev/null +++ b/maze/task2/maps/level8/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 6; Row 2, Column 8; Row 3, Column 1; Row 3, Column 5; Row 5, Column 2; Row 7, Column 6; Row 8, Column 5; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/39.txt b/maze/task2/maps/level8/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..730cb0a264e67f8de85ffb770d7ba179522e9a14 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 6, Column 2; Row 6, Column 8; Row 7, Column 3; Row 8, Column 3; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/4.txt b/maze/task2/maps/level8/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0318b035b016a1b35f124a7d3caaf2707d66e5b --- /dev/null +++ b/maze/task2/maps/level8/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 4, Column 5; Row 6, Column 2; Row 7, Column 2; Row 8, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/40.txt b/maze/task2/maps/level8/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f1f8a6ffb0faec70642afdf3ef64d591a0ac4ec --- /dev/null +++ b/maze/task2/maps/level8/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 6, Column 7; Row 7, Column 4; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/41.txt b/maze/task2/maps/level8/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..75ec47ef83f6b00e7bedb57db602b8e550b38d37 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 6; Row 3, Column 5; Row 3, Column 7; Row 4, Column 7; Row 4, Column 8; Row 6, Column 2; Row 7, Column 1; Row 7, Column 2; Row 7, Column 8; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/42.txt b/maze/task2/maps/level8/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..735d9782db57c8bf02b017e8171aadad66e0d238 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 8; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 5, Column 1; Row 6, Column 4; Row 6, Column 5; Row 7, Column 1; Row 7, Column 6; Row 8, Column 2; Row 8, Column 3; Row 8, Column 7; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/43.txt b/maze/task2/maps/level8/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c62deefe60c79b8ab599638fe6d0786542f83e6 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 8; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 7, Column 7; +The goal is at: Row 1, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/44.txt b/maze/task2/maps/level8/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb267f6d6f28c445ea81ab67660bc08d9a551984 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 6; Row 4, Column 6; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 3; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/45.txt b/maze/task2/maps/level8/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcd172cf652d64daff6add5f0ee2ba98dc628f1c --- /dev/null +++ b/maze/task2/maps/level8/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 2, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 6; Row 6, Column 3; Row 7, Column 5; Row 7, Column 7; Row 8, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/46.txt b/maze/task2/maps/level8/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..6665e7450851c43a91c2eb21c5b5a54e707c39d2 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 3, Column 3; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 7, Column 8; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/47.txt b/maze/task2/maps/level8/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0cd678f0963692fa6822c4ae06adf917a2b486c --- /dev/null +++ b/maze/task2/maps/level8/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 2; Row 2, Column 5; Row 3, Column 8; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 7; Row 6, Column 8; Row 7, Column 5; Row 7, Column 8; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 8, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/48.txt b/maze/task2/maps/level8/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..9509df21ddcb644a0fec4ebe8d0f8ad1a4bdd418 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 3, Column 1; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 7; Row 7, Column 3; Row 8, Column 1; Row 8, Column 7; +The goal is at: Row 5, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/49.txt b/maze/task2/maps/level8/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a4fdf6de7da55acbfa4e5d77cdb96e2b5415d0d --- /dev/null +++ b/maze/task2/maps/level8/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 3; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 8, Column 1; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/5.txt b/maze/task2/maps/level8/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7ecfdadd429ec8380e9cdd366c413ceb3f5aa56 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 1, Column 8; Row 2, Column 2; Row 2, Column 5; Row 2, Column 8; Row 3, Column 1; Row 4, Column 8; Row 6, Column 2; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 8, Column 2; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/50.txt b/maze/task2/maps/level8/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d71bb35630e3fe914c3d169d1be19157d43db73 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 5; Row 5, Column 3; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 7, Column 2; Row 8, Column 4; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/51.txt b/maze/task2/maps/level8/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3f27071e6b912301a972aeae3b2cbd6463dc53e --- /dev/null +++ b/maze/task2/maps/level8/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 8; Row 3, Column 2; Row 4, Column 1; Row 6, Column 1; Row 6, Column 3; Row 7, Column 4; Row 8, Column 2; Row 8, Column 6; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/52.txt b/maze/task2/maps/level8/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..c847d022a2549bd8aa47c9828295696ce4672f5b --- /dev/null +++ b/maze/task2/maps/level8/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 3; Row 6, Column 7; Row 7, Column 7; Row 8, Column 3; +The goal is at: Row 7, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/53.txt b/maze/task2/maps/level8/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ace6c0b14c4b64b61653b4a230a4006611133eb9 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 4; Row 3, Column 1; Row 3, Column 8; Row 4, Column 1; Row 4, Column 4; Row 5, Column 2; Row 6, Column 3; Row 6, Column 4; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 8, Column 6; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/54.txt b/maze/task2/maps/level8/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..1892e0d545fa513202af80777b08cc59dfd2374d --- /dev/null +++ b/maze/task2/maps/level8/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 8; Row 2, Column 4; Row 2, Column 5; Row 2, Column 8; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 7, Column 6; Row 7, Column 7; Row 8, Column 3; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/55.txt b/maze/task2/maps/level8/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ff2a4951b37cd2275a6fa56eaa5a52a89a58ac3 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 7; Row 2, Column 1; Row 3, Column 1; Row 3, Column 8; Row 4, Column 6; Row 4, Column 7; Row 6, Column 4; Row 6, Column 8; Row 7, Column 5; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/56.txt b/maze/task2/maps/level8/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..28a7e3a60340ea486659a2b1e8c2dcc4e2c11c06 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 7; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 8; Row 4, Column 1; Row 4, Column 5; Row 5, Column 3; Row 6, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 4; Row 8, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/57.txt b/maze/task2/maps/level8/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2a881385786d4e581fc876b53ee202bd3aa8826 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 1; Row 2, Column 6; Row 3, Column 3; Row 3, Column 4; Row 3, Column 7; Row 3, Column 8; Row 4, Column 4; Row 5, Column 8; Row 7, Column 7; Row 7, Column 8; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/58.txt b/maze/task2/maps/level8/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..a79fcdb8b6b2872164b4a05ddc85f549443ab8fb --- /dev/null +++ b/maze/task2/maps/level8/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 6; Row 1, Column 8; Row 2, Column 5; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 4, Column 5; Row 4, Column 7; Row 4, Column 8; Row 5, Column 5; Row 5, Column 8; Row 6, Column 2; Row 8, Column 5; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/59.txt b/maze/task2/maps/level8/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..6448dad4f9cf355aa7445301c331178cd653c7af --- /dev/null +++ b/maze/task2/maps/level8/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 5; Row 2, Column 7; Row 3, Column 7; Row 4, Column 6; Row 5, Column 2; Row 7, Column 2; Row 7, Column 3; Row 8, Column 8; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/6.txt b/maze/task2/maps/level8/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcbfc1098530f7bceaa9885ab4e4fec65f1ca2af --- /dev/null +++ b/maze/task2/maps/level8/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 7; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 1, Column 8; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 8; Row 4, Column 3; Row 4, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 7, Column 8; Row 8, Column 1; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/60.txt b/maze/task2/maps/level8/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..de0b09fe2bf5d8fed3095c7fecac61d2657444b2 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 4; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 4, Column 8; Row 6, Column 1; Row 6, Column 4; Row 7, Column 8; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/61.txt b/maze/task2/maps/level8/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cbd33602aea35f1fe3a6d300d5a99a56a7b9b7e --- /dev/null +++ b/maze/task2/maps/level8/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 8; Row 3, Column 4; Row 3, Column 8; Row 4, Column 7; Row 5, Column 4; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/62.txt b/maze/task2/maps/level8/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea6c6a57103aa70e9cbf030b664f21c0f827f8e0 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 6, Column 6; Row 7, Column 3; Row 7, Column 4; Row 8, Column 1; Row 8, Column 6; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/63.txt b/maze/task2/maps/level8/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..07b3baa86340066e7f9cd788e96fdb1b93cf49c8 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 6; +The hole(s) are at: Row 3, Column 4; Row 4, Column 3; Row 4, Column 5; Row 5, Column 5; Row 5, Column 6; Row 6, Column 7; Row 7, Column 1; +The goal is at: Row 8, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/64.txt b/maze/task2/maps/level8/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1fb374a785fa45509e380a54fcf789d5e392f74 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 2, Column 2; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 6; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 7; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/65.txt b/maze/task2/maps/level8/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c5216b6caf8e057e9381b133f44d10481f16f3f --- /dev/null +++ b/maze/task2/maps/level8/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 3, Column 4; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; Row 7, Column 8; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/66.txt b/maze/task2/maps/level8/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2bd377ffd749294b69f29ef9a4974b7f9a43187 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 2, Column 2; Row 2, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/67.txt b/maze/task2/maps/level8/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..40291dccb72594f19b704bef48f2c8be94794b57 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 8; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 3; Row 4, Column 8; Row 5, Column 3; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; Row 7, Column 2; Row 7, Column 6; Row 7, Column 8; Row 8, Column 5; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/68.txt b/maze/task2/maps/level8/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccfa02b629c852aa7d875baa9ca38c5f0f3de48f --- /dev/null +++ b/maze/task2/maps/level8/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 8; Row 2, Column 4; Row 3, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 7; Row 5, Column 8; Row 6, Column 6; Row 7, Column 8; Row 8, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/69.txt b/maze/task2/maps/level8/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d6e19b9ae2b4ea2908da3c07965ab65209f9437 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 6; Row 1, Column 8; Row 2, Column 4; Row 2, Column 5; Row 3, Column 4; Row 3, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/7.txt b/maze/task2/maps/level8/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ff0fc6344e75f1bbadf15df581375f91eaf1751 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 8; Row 2, Column 1; Row 2, Column 5; Row 3, Column 8; Row 4, Column 3; Row 6, Column 1; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 6; +The goal is at: Row 8, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/70.txt b/maze/task2/maps/level8/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..7749acf2367ad4bff8af4cd0c424534fc00331c7 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 3, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 7; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 7, Column 2; Row 8, Column 4; Row 8, Column 7; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/71.txt b/maze/task2/maps/level8/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..911c5422964f25f36865b2df1559145fb2f12bb4 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 2, Column 6; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 6; Row 5, Column 3; Row 5, Column 6; Row 6, Column 4; Row 6, Column 7; Row 7, Column 3; Row 7, Column 6; Row 8, Column 1; Row 8, Column 4; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/72.txt b/maze/task2/maps/level8/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..1025d30a72e42dc2b17c1c9eafee0be98fdcb54e --- /dev/null +++ b/maze/task2/maps/level8/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 7; Row 3, Column 4; Row 3, Column 6; Row 5, Column 2; Row 6, Column 3; Row 6, Column 4; Row 7, Column 3; Row 8, Column 1; +The goal is at: Row 8, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/73.txt b/maze/task2/maps/level8/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..4668bd5d7291a4902b569219720ff69c854fa164 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 6, Column 1; Row 6, Column 6; Row 7, Column 3; Row 7, Column 8; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/74.txt b/maze/task2/maps/level8/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0fd2f7813ab29864debcd958bff8123a5c0ae2b --- /dev/null +++ b/maze/task2/maps/level8/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 4, Column 8; Row 5, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 4; Row 7, Column 4; Row 7, Column 7; Row 8, Column 1; Row 8, Column 3; Row 8, Column 5; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/75.txt b/maze/task2/maps/level8/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..03fe9082300c6476df207801ddd22bdb2c702eca --- /dev/null +++ b/maze/task2/maps/level8/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 2, Column 4; Row 4, Column 1; Row 4, Column 4; Row 4, Column 8; Row 5, Column 4; Row 5, Column 7; Row 6, Column 4; Row 6, Column 6; Row 7, Column 1; Row 7, Column 5; Row 8, Column 7; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/76.txt b/maze/task2/maps/level8/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b8bdae395d8fef94ba06be4a4a8ffad7b259df4 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 4, Column 8; Row 5, Column 4; Row 6, Column 2; Row 7, Column 5; Row 7, Column 6; Row 8, Column 1; Row 8, Column 3; Row 8, Column 4; Row 8, Column 7; +The goal is at: Row 7, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/77.txt b/maze/task2/maps/level8/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..1068542fcb365ced1d62daa2330bbe674bac35f4 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 4, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 5; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; Row 8, Column 2; Row 8, Column 3; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/78.txt b/maze/task2/maps/level8/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..54901c63a9de34e9ea7ca2e5f43a4f9c461b953c --- /dev/null +++ b/maze/task2/maps/level8/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 8; Row 4, Column 2; Row 4, Column 6; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/79.txt b/maze/task2/maps/level8/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..77b80ad1ddb5b65697e28692d807824dcbd58a96 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 2, Column 2; Row 3, Column 2; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 6, Column 1; Row 8, Column 2; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/8.txt b/maze/task2/maps/level8/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7ee98c8f32c1df685aa70cdac0538c52d87c03e --- /dev/null +++ b/maze/task2/maps/level8/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 1, Column 1; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 5, Column 6; Row 7, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/80.txt b/maze/task2/maps/level8/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..99333863cff3bce7d854eaa70962a11bfb98dcbe --- /dev/null +++ b/maze/task2/maps/level8/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 7; Row 2, Column 1; Row 2, Column 8; Row 3, Column 3; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 6, Column 8; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/81.txt b/maze/task2/maps/level8/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6988f299182b5cefc1d9ab418b0fabef1a1ff91 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 4, Column 2; Row 4, Column 6; Row 6, Column 6; Row 6, Column 7; Row 7, Column 8; Row 8, Column 3; Row 8, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/82.txt b/maze/task2/maps/level8/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..041d80d450e507058ec9cc8d6c11931b3b13cc68 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 3, Column 5; Row 4, Column 3; Row 4, Column 5; Row 4, Column 8; Row 5, Column 2; Row 5, Column 4; Row 7, Column 4; Row 7, Column 5; Row 8, Column 7; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/83.txt b/maze/task2/maps/level8/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9e652774cc569ff852bd1539e20d67fc98220d6 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 5; Row 3, Column 7; Row 4, Column 3; Row 5, Column 3; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/84.txt b/maze/task2/maps/level8/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..246f19c15ad2daa2786585f0e64479f80c6d7b0d --- /dev/null +++ b/maze/task2/maps/level8/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 8; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; Row 3, Column 7; Row 5, Column 4; Row 6, Column 1; Row 6, Column 6; Row 7, Column 6; Row 8, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/85.txt b/maze/task2/maps/level8/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..9471e6bc6f99b40f1c4c3e431b5bd50b8e854ed6 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 8; Row 3, Column 2; Row 3, Column 4; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 4, Column 8; Row 6, Column 1; Row 6, Column 6; Row 6, Column 8; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/86.txt b/maze/task2/maps/level8/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..6045a979f402c1c49d401b689d4cc28cd20246a0 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 4, Column 6; Row 4, Column 8; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 8, Column 7; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/87.txt b/maze/task2/maps/level8/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..1159fd781db2b9646aacf6abc4f2aa0077ed8925 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 8; Row 3, Column 8; Row 4, Column 2; Row 4, Column 6; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 4; Row 7, Column 2; Row 8, Column 8; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/88.txt b/maze/task2/maps/level8/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b79879d494201d69f8961c4a0786ee0a5f5eb2d --- /dev/null +++ b/maze/task2/maps/level8/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 4, Column 4; Row 6, Column 4; Row 6, Column 6; Row 7, Column 6; Row 8, Column 2; Row 8, Column 7; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/89.txt b/maze/task2/maps/level8/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d915d7d35b1c0aae8919d963b62258c9519b561 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 2, Column 2; Row 3, Column 6; Row 4, Column 2; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 7, Column 5; Row 7, Column 8; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/9.txt b/maze/task2/maps/level8/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cf3bda3b94822dcb89bdc4e6f060dcc835e493b --- /dev/null +++ b/maze/task2/maps/level8/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 2; Row 2, Column 4; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 6, Column 6; Row 6, Column 8; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; +The goal is at: Row 8, Column 5. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/90.txt b/maze/task2/maps/level8/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..797e48106cf7be091baeb8d101b7aed7f118f28a --- /dev/null +++ b/maze/task2/maps/level8/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 1; +The hole(s) are at: Row 1, Column 7; Row 2, Column 1; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 5, Column 6; Row 6, Column 4; Row 7, Column 7; +The goal is at: Row 8, Column 6. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/91.txt b/maze/task2/maps/level8/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..32918b7d6cc7a60cce24fd786da274f03bad5852 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 6; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 5, Column 3; Row 5, Column 4; Row 5, Column 8; Row 6, Column 1; Row 6, Column 2; Row 8, Column 1; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 4, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/92.txt b/maze/task2/maps/level8/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b1e163a00e6962402b1e7e5dece8848c6ca6f82 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 1; Row 2, Column 6; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 6, Column 3; Row 6, Column 7; Row 6, Column 8; Row 7, Column 3; Row 8, Column 3; Row 8, Column 5; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/93.txt b/maze/task2/maps/level8/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c06bee2540deafc1cedc2ef198e866c9a27ad54d --- /dev/null +++ b/maze/task2/maps/level8/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 3, Column 1; Row 4, Column 1; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 3; Row 6, Column 7; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/94.txt b/maze/task2/maps/level8/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5f2997b4396d69029a1bbb7e1077f4e4df7cecb --- /dev/null +++ b/maze/task2/maps/level8/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 3, Column 8; Row 5, Column 6; Row 6, Column 1; Row 6, Column 5; Row 6, Column 6; Row 8, Column 2; Row 8, Column 7; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/95.txt b/maze/task2/maps/level8/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3c48e16e364f33f81c96cac940d5d861a958ccb --- /dev/null +++ b/maze/task2/maps/level8/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 7; Row 2, Column 1; Row 3, Column 7; Row 4, Column 1; Row 5, Column 3; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 7, Column 2; Row 8, Column 7; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/96.txt b/maze/task2/maps/level8/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4d50735f8799f1eef9a9ec5946ef9fbe83abeab --- /dev/null +++ b/maze/task2/maps/level8/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 1, Column 8; Row 2, Column 7; Row 4, Column 2; Row 4, Column 7; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 6; Row 6, Column 7; Row 7, Column 7; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 8, Column 8. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/97.txt b/maze/task2/maps/level8/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c4c0fd42dc954d960ff88ccf79ae55b707a4609 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 2, Column 7; Row 3, Column 7; Row 4, Column 1; Row 4, Column 8; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; Row 6, Column 5; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 8, Column 1; Row 8, Column 7; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/98.txt b/maze/task2/maps/level8/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7aa6269b686fee2363c5e296717fb739b702ad4 --- /dev/null +++ b/maze/task2/maps/level8/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 3, Column 7; Row 3, Column 8; Row 4, Column 2; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 8; Row 6, Column 1; Row 6, Column 5; Row 7, Column 4; Row 7, Column 5; Row 8, Column 3; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/pure_text/99.txt b/maze/task2/maps/level8/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..889e4bfad34ea4ed20349dcfa1008d1fc3223fcb --- /dev/null +++ b/maze/task2/maps/level8/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 4, Column 7; Row 6, Column 3; Row 6, Column 6; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task2/maps/level8/table/0.txt b/maze/task2/maps/level8/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ec34b8d12e51d4b558ce37cf687580d631f73b1 --- /dev/null +++ b/maze/task2/maps/level8/table/0.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | # | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/1.txt b/maze/task2/maps/level8/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b64b1756c25b812b07a933475352daf5c6f5e6f --- /dev/null +++ b/maze/task2/maps/level8/table/1.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | @ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | # | _ | # | _ | # | # | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task2/maps/level8/table/10.txt b/maze/task2/maps/level8/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..90b3088fa3ecf183d03c2f35d8af8abc926434d6 --- /dev/null +++ b/maze/task2/maps/level8/table/10.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | * | +| Row 6 | _ | # | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | _ | # | diff --git a/maze/task2/maps/level8/table/11.txt b/maze/task2/maps/level8/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..88c2ddf8f26a4c31a33cf445e36c4b3357ee18b4 --- /dev/null +++ b/maze/task2/maps/level8/table/11.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | * | +| Row 7 | _ | _ | _ | # | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level8/table/12.txt b/maze/task2/maps/level8/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9ee700601c080bd3d2a411d6e922ecfb8429967 --- /dev/null +++ b/maze/task2/maps/level8/table/12.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | # | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | * | diff --git a/maze/task2/maps/level8/table/13.txt b/maze/task2/maps/level8/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..9292e2a4d42c7b8c3fb6ce8345ea27c22cfe4c67 --- /dev/null +++ b/maze/task2/maps/level8/table/13.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | * | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/14.txt b/maze/task2/maps/level8/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..81479ff12e7f0dfa763fc13afb175b652bf06ca7 --- /dev/null +++ b/maze/task2/maps/level8/table/14.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | # | _ | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | @ | # | _ | +| Row 8 | _ | _ | # | _ | # | _ | # | _ | diff --git a/maze/task2/maps/level8/table/15.txt b/maze/task2/maps/level8/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d5b73839f988ab7e481ad12fc64e43d0159d8d0 --- /dev/null +++ b/maze/task2/maps/level8/table/15.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | @ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | # | +| Row 7 | # | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level8/table/16.txt b/maze/task2/maps/level8/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd3d796a883a66202d9ae07209eb2a663634582c --- /dev/null +++ b/maze/task2/maps/level8/table/16.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | _ | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | @ | _ | # | _ | # | diff --git a/maze/task2/maps/level8/table/17.txt b/maze/task2/maps/level8/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..4874b883651b8bf1deea10af493f41b69052b915 --- /dev/null +++ b/maze/task2/maps/level8/table/17.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | * | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | @ | _ | +| Row 7 | # | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/18.txt b/maze/task2/maps/level8/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..03700daac60ec0aa3870c085b09c10f2689806d9 --- /dev/null +++ b/maze/task2/maps/level8/table/18.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | _ | # | _ | # | +| Row 8 | _ | # | _ | # | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/19.txt b/maze/task2/maps/level8/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..7026ce40c1800d1538c56d9a8a298989264e97b3 --- /dev/null +++ b/maze/task2/maps/level8/table/19.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | @ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | # | +| Row 7 | * | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/2.txt b/maze/task2/maps/level8/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..f41cf86513720ea73b0e888377bbdac21bea7a07 --- /dev/null +++ b/maze/task2/maps/level8/table/2.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | * | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | @ | diff --git a/maze/task2/maps/level8/table/20.txt b/maze/task2/maps/level8/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6d091ba98c33e3a83a6f821ea3767daf93f06dc --- /dev/null +++ b/maze/task2/maps/level8/table/20.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | # | _ | _ | # | # | _ | diff --git a/maze/task2/maps/level8/table/21.txt b/maze/task2/maps/level8/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..19852a572102f63dd074153dc1a235ea39e288c6 --- /dev/null +++ b/maze/task2/maps/level8/table/21.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/22.txt b/maze/task2/maps/level8/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..31b4c5ed521d6df149da1a2859397e96cfb21346 --- /dev/null +++ b/maze/task2/maps/level8/table/22.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | @ | _ | # | # | _ | _ | _ | _ | +| Row 6 | * | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/23.txt b/maze/task2/maps/level8/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b5ed49a6917c9176e862b9caa5e1101dc82a669 --- /dev/null +++ b/maze/task2/maps/level8/table/23.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level8/table/24.txt b/maze/task2/maps/level8/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..7873e4aeb5c7eac57fd14f35390226073a96e008 --- /dev/null +++ b/maze/task2/maps/level8/table/24.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | # | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level8/table/25.txt b/maze/task2/maps/level8/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..753f2cf56c9651070077ccc4bf2270b947eeb676 --- /dev/null +++ b/maze/task2/maps/level8/table/25.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | # | _ | * | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/26.txt b/maze/task2/maps/level8/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4393f7852e6385d5b449f4cc81cc6693d77ad64 --- /dev/null +++ b/maze/task2/maps/level8/table/26.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | * | _ | +| Row 5 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level8/table/27.txt b/maze/task2/maps/level8/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..79f875c4a6e6c423dc4dd1da116f167f09a44d94 --- /dev/null +++ b/maze/task2/maps/level8/table/27.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level8/table/28.txt b/maze/task2/maps/level8/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..20299c4440761d7b57489d9e5e176dea42940f28 --- /dev/null +++ b/maze/task2/maps/level8/table/28.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/29.txt b/maze/task2/maps/level8/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a433fc1743e3e6dea2120f43dc7b54e128ba0bf --- /dev/null +++ b/maze/task2/maps/level8/table/29.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | * | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task2/maps/level8/table/3.txt b/maze/task2/maps/level8/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d6c5749184137e7db88d58ecba3d4e42fc89d77 --- /dev/null +++ b/maze/task2/maps/level8/table/3.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | # | _ | _ | # | +| Row 7 | _ | # | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level8/table/30.txt b/maze/task2/maps/level8/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..effec626b8e1edcbf45ec8e3048d2b2329de36a0 --- /dev/null +++ b/maze/task2/maps/level8/table/30.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | @ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task2/maps/level8/table/31.txt b/maze/task2/maps/level8/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..750241827928a4c4d240fa633babcdb531046a6d --- /dev/null +++ b/maze/task2/maps/level8/table/31.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | # | _ | _ | * | _ | _ | diff --git a/maze/task2/maps/level8/table/32.txt b/maze/task2/maps/level8/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..231c109082afe45b2c8e182f4bc6beb928833312 --- /dev/null +++ b/maze/task2/maps/level8/table/32.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | @ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/33.txt b/maze/task2/maps/level8/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..1eb3b0fc36c85ff0c73b20f194ede115afd93bcd --- /dev/null +++ b/maze/task2/maps/level8/table/33.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | # | # | +| Row 3 | # | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | # | _ | +| Row 7 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level8/table/34.txt b/maze/task2/maps/level8/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..734bd6cf9041dd4aa3cb65591d5254355f7ea846 --- /dev/null +++ b/maze/task2/maps/level8/table/34.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | @ | # | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | # | _ | # | _ | # | +| Row 8 | # | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/35.txt b/maze/task2/maps/level8/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a20fefc79d10b64d6309aab15ae26b511b5a123 --- /dev/null +++ b/maze/task2/maps/level8/table/35.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | # | # | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | # | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level8/table/36.txt b/maze/task2/maps/level8/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..41f629a179bdfe4c653cc380763945d0aad8d5a3 --- /dev/null +++ b/maze/task2/maps/level8/table/36.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task2/maps/level8/table/37.txt b/maze/task2/maps/level8/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f10efdb8f3821ec452c751053c911c2c5161697b --- /dev/null +++ b/maze/task2/maps/level8/table/37.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | # | _ | _ | # | _ | +| Row 7 | @ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task2/maps/level8/table/38.txt b/maze/task2/maps/level8/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..47f5bf836bbb17f0c90711a8bafd1bd805ae780f --- /dev/null +++ b/maze/task2/maps/level8/table/38.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/39.txt b/maze/task2/maps/level8/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9ac3e1a8649ef16b0765c119a39436c5fbc0703 --- /dev/null +++ b/maze/task2/maps/level8/table/39.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/4.txt b/maze/task2/maps/level8/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ec2b47516ba16d48ef194e55334415b0eb13f94 --- /dev/null +++ b/maze/task2/maps/level8/table/4.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | # | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/40.txt b/maze/task2/maps/level8/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..da8ac5c230851329b54f48fb8a3ba2993f1e638e --- /dev/null +++ b/maze/task2/maps/level8/table/40.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | * | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | # | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | # | _ | diff --git a/maze/task2/maps/level8/table/41.txt b/maze/task2/maps/level8/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..385d022271b13d8a6ee8952628fc73b64fdd1b82 --- /dev/null +++ b/maze/task2/maps/level8/table/41.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/42.txt b/maze/task2/maps/level8/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..76c5f1e7165349c7acb193bda72a6abd13cc6e2e --- /dev/null +++ b/maze/task2/maps/level8/table/42.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | @ | _ | # | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | # | _ | _ | * | _ | # | _ | _ | +| Row 8 | _ | # | # | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/43.txt b/maze/task2/maps/level8/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c6c8e3f5907b4947306a2f81d23ae156f2a2eb5 --- /dev/null +++ b/maze/task2/maps/level8/table/43.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | * | +| Row 2 | @ | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/44.txt b/maze/task2/maps/level8/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cd13a8219bf4fce161a035fd3afd6a0e7cea5ba --- /dev/null +++ b/maze/task2/maps/level8/table/44.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | * | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/45.txt b/maze/task2/maps/level8/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec4167c8ae5deaab126bd28c00f02f3eaf8aedef --- /dev/null +++ b/maze/task2/maps/level8/table/45.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | # | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | _ | _ | +| Row 7 | _ | _ | @ | _ | # | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/46.txt b/maze/task2/maps/level8/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1b78f321a81e5d95c28216002aff2069b633846 --- /dev/null +++ b/maze/task2/maps/level8/table/46.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | * | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/47.txt b/maze/task2/maps/level8/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..aeb4e0c2ca3b7fa1e34b3dc3c9d70be74b3c62e7 --- /dev/null +++ b/maze/task2/maps/level8/table/47.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | @ | # | _ | _ | # | +| Row 8 | _ | _ | # | _ | * | _ | _ | # | diff --git a/maze/task2/maps/level8/table/48.txt b/maze/task2/maps/level8/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..140700095f4749c08353420d37e4df15e4a7ca7b --- /dev/null +++ b/maze/task2/maps/level8/table/48.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | # | * | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/49.txt b/maze/task2/maps/level8/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..0efd0ad7b8f24db32261fd02988998c6c7ec4fe2 --- /dev/null +++ b/maze/task2/maps/level8/table/49.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task2/maps/level8/table/5.txt b/maze/task2/maps/level8/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..322a6b340869ac0e7e2d56b1bf233924d6cc5951 --- /dev/null +++ b/maze/task2/maps/level8/table/5.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | * | # | +| Row 2 | _ | # | _ | _ | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/50.txt b/maze/task2/maps/level8/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..612b4f786c5299991ab7430549ea13586f73c005 --- /dev/null +++ b/maze/task2/maps/level8/table/50.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | diff --git a/maze/task2/maps/level8/table/51.txt b/maze/task2/maps/level8/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..86dd906279ab4c0fe46d984a6466455675e306a8 --- /dev/null +++ b/maze/task2/maps/level8/table/51.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | # | * | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level8/table/52.txt b/maze/task2/maps/level8/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5ecd8be116ed85ef16530d69d00764e74f5c818 --- /dev/null +++ b/maze/task2/maps/level8/table/52.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | * | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/53.txt b/maze/task2/maps/level8/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b62de9b6c5aabf0de59469d8bc160d35423c50b --- /dev/null +++ b/maze/task2/maps/level8/table/53.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | @ | _ | # | # | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level8/table/54.txt b/maze/task2/maps/level8/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..aaba9ddbc00e4ee0d0a15a5a31d9c42b29cfd730 --- /dev/null +++ b/maze/task2/maps/level8/table/54.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | @ | _ | _ | * | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/55.txt b/maze/task2/maps/level8/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..716cde76cd3b1d0fbdb905d507614e2fb771643e --- /dev/null +++ b/maze/task2/maps/level8/table/55.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | # | +| Row 8 | # | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/56.txt b/maze/task2/maps/level8/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1c309f0e323846ff48ddbfd0e567e92a54e6466 --- /dev/null +++ b/maze/task2/maps/level8/table/56.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | # | _ | _ | # | _ | +| Row 2 | # | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/57.txt b/maze/task2/maps/level8/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..58eb6391e35f4d5431a331187177eb35de132c5f --- /dev/null +++ b/maze/task2/maps/level8/table/57.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | # | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task2/maps/level8/table/58.txt b/maze/task2/maps/level8/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..611c6edf6e8aa3722337ce1e2bec9b8e627d723e --- /dev/null +++ b/maze/task2/maps/level8/table/58.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | # | +| Row 2 | @ | _ | _ | * | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | _ | # | _ | # | # | +| Row 5 | _ | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/59.txt b/maze/task2/maps/level8/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..feeca2698a8624f090493695911fdc1560ac864a --- /dev/null +++ b/maze/task2/maps/level8/table/59.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | @ | * | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level8/table/6.txt b/maze/task2/maps/level8/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..73de95bf17f6c6bcbfcff5571026411f41e60bfb --- /dev/null +++ b/maze/task2/maps/level8/table/6.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | * | # | _ | # | +| Row 2 | _ | # | _ | # | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | @ | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | # | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | # | +| Row 8 | # | _ | _ | _ | # | # | # | _ | diff --git a/maze/task2/maps/level8/table/60.txt b/maze/task2/maps/level8/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ae93ffaaf361bade10333c2707d14b627f6e689 --- /dev/null +++ b/maze/task2/maps/level8/table/60.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | # | # | +| Row 3 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | # | diff --git a/maze/task2/maps/level8/table/61.txt b/maze/task2/maps/level8/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b2da4db351bd163db79a4db472d396a20aaf4fc --- /dev/null +++ b/maze/task2/maps/level8/table/61.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task2/maps/level8/table/62.txt b/maze/task2/maps/level8/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cfdb4e81874849773e43e546569aa3211d8bd3e --- /dev/null +++ b/maze/task2/maps/level8/table/62.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | # | # | _ | +| Row 4 | _ | _ | @ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | # | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | * | _ | # | # | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level8/table/63.txt b/maze/task2/maps/level8/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..29b5ba2bf20424a01f120ff8d2510c27b1bcba4d --- /dev/null +++ b/maze/task2/maps/level8/table/63.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | @ | _ | * | diff --git a/maze/task2/maps/level8/table/64.txt b/maze/task2/maps/level8/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ba90938b65968ffd5a42501e4b171826b037e49 --- /dev/null +++ b/maze/task2/maps/level8/table/64.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | # | @ | +| Row 3 | # | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | * | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/65.txt b/maze/task2/maps/level8/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1205e38e0d2fd1864d89cb19d74e7174086ff487 --- /dev/null +++ b/maze/task2/maps/level8/table/65.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task2/maps/level8/table/66.txt b/maze/task2/maps/level8/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4d1788a2fd1f0fdb6c72fd53cd2c538d9dacffe --- /dev/null +++ b/maze/task2/maps/level8/table/66.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | # | _ | +| Row 2 | _ | # | _ | * | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | # | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task2/maps/level8/table/67.txt b/maze/task2/maps/level8/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c592575bd779c70d68a764d8c968deb7039973c --- /dev/null +++ b/maze/task2/maps/level8/table/67.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | # | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | * | _ | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | @ | diff --git a/maze/task2/maps/level8/table/68.txt b/maze/task2/maps/level8/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2896c217b0f0cae0d95d392e669de00e78c7b0d --- /dev/null +++ b/maze/task2/maps/level8/table/68.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task2/maps/level8/table/69.txt b/maze/task2/maps/level8/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..d659af3f8ef495ec573926c4b1f0e159481edd66 --- /dev/null +++ b/maze/task2/maps/level8/table/69.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | @ | # | +| Row 8 | _ | # | _ | _ | _ | # | # | # | diff --git a/maze/task2/maps/level8/table/7.txt b/maze/task2/maps/level8/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bc6ac1c33bf8651fbdd0d48b3a2ce6997493198 --- /dev/null +++ b/maze/task2/maps/level8/table/7.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | # | _ | _ | # | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | _ | _ | _ | # | _ | _ | +| Row 8 | * | _ | _ | @ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/70.txt b/maze/task2/maps/level8/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8c5d1ed52b8c6530c5c8cedbdd209f607e93e8d --- /dev/null +++ b/maze/task2/maps/level8/table/70.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | _ | @ | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | * | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/71.txt b/maze/task2/maps/level8/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..91284bf87766ae201e2f63e325136a7f1ffec8d3 --- /dev/null +++ b/maze/task2/maps/level8/table/71.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | _ | +| Row 6 | @ | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | _ | +| Row 8 | # | _ | _ | # | _ | _ | # | # | diff --git a/maze/task2/maps/level8/table/72.txt b/maze/task2/maps/level8/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c0d81a2309aec130c61edb3716be0ae3e39ff78 --- /dev/null +++ b/maze/task2/maps/level8/table/72.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/73.txt b/maze/task2/maps/level8/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d24b60a91bfc46c81a772c9c4c16258861db631 --- /dev/null +++ b/maze/task2/maps/level8/table/73.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task2/maps/level8/table/74.txt b/maze/task2/maps/level8/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9b51bb7516131ed6cce39c3e6850c0c1ac93ff5 --- /dev/null +++ b/maze/task2/maps/level8/table/74.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | # | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/75.txt b/maze/task2/maps/level8/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..15b26987bb168746ea520284b7130d9776bdf495 --- /dev/null +++ b/maze/task2/maps/level8/table/75.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/76.txt b/maze/task2/maps/level8/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddd5c1d1a24f03c2bcbefcf0170ba7bb09bf1025 --- /dev/null +++ b/maze/task2/maps/level8/table/76.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | * | _ | _ | # | # | _ | _ | +| Row 8 | # | _ | # | # | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/77.txt b/maze/task2/maps/level8/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eddfa971d66750ef394d40aa5d4b00da983588f --- /dev/null +++ b/maze/task2/maps/level8/table/77.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | _ | # | _ | * | _ | +| Row 7 | _ | _ | _ | # | _ | # | # | _ | +| Row 8 | _ | # | # | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/78.txt b/maze/task2/maps/level8/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4bd67227034be15df369e85ea3da53b183b8d2b --- /dev/null +++ b/maze/task2/maps/level8/table/78.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | # | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/79.txt b/maze/task2/maps/level8/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..445e4447d4a3c2647c25e8163eaee4a0566003bb --- /dev/null +++ b/maze/task2/maps/level8/table/79.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | # | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | @ | _ | # | # | diff --git a/maze/task2/maps/level8/table/8.txt b/maze/task2/maps/level8/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..286723d6d284314fdcbbe474b99b4c317666c561 --- /dev/null +++ b/maze/task2/maps/level8/table/8.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/80.txt b/maze/task2/maps/level8/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f566a874d2343c53b31f409f2f2523d8e8fec67d --- /dev/null +++ b/maze/task2/maps/level8/table/80.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | # | # | +| Row 4 | # | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | @ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task2/maps/level8/table/81.txt b/maze/task2/maps/level8/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..17beec7ac84bd3c52e7e71ecac02540e335d3022 --- /dev/null +++ b/maze/task2/maps/level8/table/81.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/82.txt b/maze/task2/maps/level8/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..516a679e6e6125642feba2b7d43fe6c79edb9a10 --- /dev/null +++ b/maze/task2/maps/level8/table/82.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | @ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/83.txt b/maze/task2/maps/level8/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..61355d13c6990b0ff47e6f123d62ee8586e517b0 --- /dev/null +++ b/maze/task2/maps/level8/table/83.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level8/table/84.txt b/maze/task2/maps/level8/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d1a9345cd824a9dfade22a1c4b04d345c6bdba --- /dev/null +++ b/maze/task2/maps/level8/table/84.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/85.txt b/maze/task2/maps/level8/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..764c44b8be36864aba448ec4c421063af0f96ce5 --- /dev/null +++ b/maze/task2/maps/level8/table/85.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | # | # | _ | @ | # | # | +| Row 5 | _ | * | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task2/maps/level8/table/86.txt b/maze/task2/maps/level8/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..4513d950ed397ed1fd3724a2922d068b8db94d52 --- /dev/null +++ b/maze/task2/maps/level8/table/86.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | # | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/87.txt b/maze/task2/maps/level8/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f809e5a616566cc938b54f533b37d34e617cb900 --- /dev/null +++ b/maze/task2/maps/level8/table/87.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task2/maps/level8/table/88.txt b/maze/task2/maps/level8/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..4db2888d75cb84bbef686a297a6e3aa0c0296722 --- /dev/null +++ b/maze/task2/maps/level8/table/88.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/89.txt b/maze/task2/maps/level8/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6aa8824d448b9edeea68ae416f497c45455475f9 --- /dev/null +++ b/maze/task2/maps/level8/table/89.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | # | +| Row 8 | _ | # | # | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/9.txt b/maze/task2/maps/level8/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..432f3ed8a224d04ff2a1416cafc081243b1d1ff4 --- /dev/null +++ b/maze/task2/maps/level8/table/9.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | # | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | # | _ | _ | * | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/90.txt b/maze/task2/maps/level8/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..521463f44f0ff4fec990f5f923ca5422aa672718 --- /dev/null +++ b/maze/task2/maps/level8/table/90.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | @ | _ | _ | _ | _ | * | _ | _ | diff --git a/maze/task2/maps/level8/table/91.txt b/maze/task2/maps/level8/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..d242e5038bf82520a58f23f2ca7b4942942d8e4b --- /dev/null +++ b/maze/task2/maps/level8/table/91.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | @ | # | # | _ | _ | _ | # | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task2/maps/level8/table/92.txt b/maze/task2/maps/level8/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fa6cca71785b0eb88f8a69d3243ef83dddb8f67 --- /dev/null +++ b/maze/task2/maps/level8/table/92.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task2/maps/level8/table/93.txt b/maze/task2/maps/level8/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c84844b842fccfca8d68d4fed7b36d031a1d9569 --- /dev/null +++ b/maze/task2/maps/level8/table/93.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | _ | +| Row 7 | @ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | # | _ | # | # | _ | diff --git a/maze/task2/maps/level8/table/94.txt b/maze/task2/maps/level8/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e12a258a2b15d345a42339871a1b674ec26de98 --- /dev/null +++ b/maze/task2/maps/level8/table/94.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | @ | # | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | _ | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/95.txt b/maze/task2/maps/level8/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..e14e9eb9361b941266e0b98b59d6c5e08935584a --- /dev/null +++ b/maze/task2/maps/level8/table/95.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | * | # | # | _ | # | +| Row 7 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/96.txt b/maze/task2/maps/level8/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb024cd551b2e51580e78bbeee3eb51e4e7189f9 --- /dev/null +++ b/maze/task2/maps/level8/table/96.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | * | diff --git a/maze/task2/maps/level8/table/97.txt b/maze/task2/maps/level8/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f343b9548105ad8a3e799da15265d419af33c43 --- /dev/null +++ b/maze/task2/maps/level8/table/97.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | # | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task2/maps/level8/table/98.txt b/maze/task2/maps/level8/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d893a4c967150dd8109e509947de799619dbd8 --- /dev/null +++ b/maze/task2/maps/level8/table/98.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | * | _ | +| Row 8 | _ | _ | # | _ | _ | # | # | _ | diff --git a/maze/task2/maps/level8/table/99.txt b/maze/task2/maps/level8/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba63bbda2462aea64b39ce0f8b0643fb0d92722f --- /dev/null +++ b/maze/task2/maps/level8/table/99.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | @ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task2/prompt-text/prompt-text.txt b/maze/task2/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b67f9c99eb07d87c4a68c70508c106e3e1fcfb --- /dev/null +++ b/maze/task2/prompt-text/prompt-text.txt @@ -0,0 +1,23 @@ +In this task, you will analyze a maze to determine the relative positions of the player and the goal. +The following figure illustrates the appearances of the player, holes, lands, and the goal within the maze. You will need to focus on the player and the goal. + + + +To describe their relative positions, use the directional indicators from {"Above", "Below", "Left", "Right"}. We provide an example to illustrate how to interpret and describe these positions: + + + +In this example: +- We focus on the position of the player and the goal. +- Rows: The player is at row 1, and the goal is at row 4. Here, the row number is from top to bottom. Comparing player (row=1) with goal (row=4), player is counted first. Therefore, the player is positioned above the target. +- Columns: The player is at column 1, and the goal is at column 4. Here, the column number is from left to right. Comparing player (column=1) with goal (column=4). Therefore, the player is to the left of the target. +- Remember that we should answer the player's position with respect to the goal, not the opposite. Therefore, we answer "Above,Left". + +Your output should be two parts: +1. Analyze the rows and columns of the player and the goal like shown above. +2. Following your analysis, output answer as " ". For example, "Above,Left" means the player is above and to the left of the goal, and "Below" means the player is below the goal. +Note that you should not output "Left" or "Right" if the plyaer and the goal are at the same column, and similarly, you should not output "Above" or "Below" if the player and the goal are at the same row. + +Now you will analyze the following maze and determine the relative position of the player in relation to the goal. + + \ No newline at end of file diff --git a/maze/task2/prompt-visual-images/system-figure-1.png b/maze/task2/prompt-visual-images/system-figure-1.png new file mode 100644 index 0000000000000000000000000000000000000000..3ea294f723f08b14abfe02349587a8bcfde5fe2d --- /dev/null +++ b/maze/task2/prompt-visual-images/system-figure-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7321fc3f75b4a763f4c2e5965a513c281bd8542cec31bb90b9f60eff63035b08 +size 159667 diff --git a/maze/task2/prompt-visual-images/system-figure-2.png b/maze/task2/prompt-visual-images/system-figure-2.png new file mode 100644 index 0000000000000000000000000000000000000000..b453ba1a67610367a9480fa7ab711530aaabd58a --- /dev/null +++ b/maze/task2/prompt-visual-images/system-figure-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc4ae6e6474849687801599ffa7b112ce7044ae74bbd612fa01c8619afff9c1 +size 7099 diff --git a/maze/task2/test.py b/maze/task2/test.py new file mode 100644 index 0000000000000000000000000000000000000000..9d3e639effc58e1acb1819936d50e8c1ed364f12 --- /dev/null +++ b/maze/task2/test.py @@ -0,0 +1,127 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) +seed_everything(1) + +levels = [3,4,5,6,7,8] +in_context_example_num = 0 # 0, 1, 2, 4, 8 + + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +loop_time = 0 + +EXAMPLE_DICT = { + 3: [], + 4: [], + 5: [], + 6: [], + 7: [], + 8: [] +} + +# Prepare examples +for level in levels: + for example_id in range(8): + example_path = "../example-spatial-relation/level%d/"%(level) + img_input = PIL.Image.open(example_path + "%d.png"%(example_id)) + with open("../example-spatial-relation/level%d__sol/%d.txt"%(level, example_id), "r") as f: + text_input = f.read() + this_example = (img_input, text_input) + EXAMPLE_DICT[level].append(this_example) + +# import ipdb; ipdb.set_trace() +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + map_path = "../maps/level%d/"%(level) + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + img_input = PIL.Image.open(map_path + "%d.png"%(curr_id)) + prompt_input_1 = ''' +In this task, you will analyze a maze to determine the relative positions of the player and the goal. +The following figure illustrates the appearances of the player, holes, lands, and the goal within the maze. You will need to focus on the player and the goal. +''' + prompt_input_2 = ''' +To describe their relative positions, use the directional indicators from {"Above", "Below", "Left", "Right"}. We provide an example to illustrate how to interpret and describe these positions: +''' + prompt_input_3 = ''' +In this example: +- We focus on the position of the player and the goal. +- Rows: The player is at row 1, and the goal is at row 4. Here, the row number is from top to bottom. Comparing player (row=1) with goal (row=4), player is counted first. Therefore, the player is positioned above the target. +- Columns: The player is at column 1, and the goal is at column 4. Here, the column number is from left to right. Comparing player (column=1) with goal (column=4). Therefore, the player is to the left of the target. +- Remember that we should answer the player's position with respect to the goal, not the opposite. Therefore, we answer "Above,Left". + +Your output should be two parts: +1. Analyze the rows and columns of the player and the goal like shown above. +2. Following your analysis, output answer as " ". For example, "Above,Left" means the player is above and to the left of the goal, and "Below" means the player is below the goal. +Note that you should not output "Left" or "Right" if the plyaer and the goal are at the same column, and similarly, you should not output "Above" or "Below" if the player and the goal are at the same row. + +''' + prompt_examples = [] + image_examples = [] + if in_context_example_num > 0: + prompt_examples.append("## Example:\n") + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + image_examples.append(this_example[0]) + prompt_examples.append(this_example[1] + "\n") + prompt_input_4 = "\nNow you will analyze the following maze and determine the relative position of the player in relation to the goal." + prompt_img_1 = PIL.Image.open('prompt-visual-images/system-figure-1.png') + prompt_img_2 = PIL.Image.open('prompt-visual-images/system-figure-2.png') + model_input_seq = [prompt_input_1, prompt_img_1, prompt_input_2, prompt_img_2, prompt_input_3] + if in_context_example_num > 0: + assert len(prompt_examples) == len(image_examples) + 1 + assert len(prompt_examples) == in_context_example_num + 1 + model_input_seq.append(prompt_examples[0]) + for example_index in range(in_context_example_num): + model_input_seq.append(image_examples[example_index]) + model_input_seq.append(prompt_examples[example_index+1]) + model_input_seq += [prompt_input_4, img_input] + + response = model.generate_content(model_input_seq) + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + # import ipdb; ipdb.set_trace() + # pass + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass diff --git a/maze/task3/.DS_Store b/maze/task3/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..56898cafd0ced813f2a4fdd351fc4e4f877349d0 Binary files /dev/null and b/maze/task3/.DS_Store differ diff --git a/maze/task3/eval.py b/maze/task3/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..8a9dfa128f602cb7880c678f11f15a7215cfcf05 --- /dev/null +++ b/maze/task3/eval.py @@ -0,0 +1,89 @@ +# read a map, receive a solution, determine if the solution reaches the goal + +import gym +from gym.envs.toy_text.frozen_lake import generate_random_map +import random +import os +import numpy as np +# from PIL import Image + + + +levels = [3,4,5,6,7,8] +# import ipdb; ipdb.set_trace() +for level in levels: +# level = 3 + count = 0 + correct = 0 + invalid = 0 + + gt_answer_dir = "../maps/level%d/answer/"%(level) + check_answer_dir = "output/output_img/level%d/"%(level) + + for test_id in range(100): + try: + # parse answer from the output + output_path = check_answer_dir + "%d.txt"%(test_id) + with open(output_path, "r") as f: + contents = f.read() + # answer_index = contents.find("") + # answer = contents[answer_index+len(""):] + # if answer_index == -1: + answer_index = contents.find("") + answer = contents[answer_index+len(""):] + if answer_index == -1: + answer_index = contents.find("**Answer") + answer = contents[answer_index+len("**Answer"):] + if answer_index == -1: + answer_index = contents.find("Answer") + answer = contents[answer_index+len("Answer"):] + answer = answer.replace('"', '') + answer = answer.replace('*', '') + answer = answer.replace(':', '') + answer = answer.replace("'", '') + answer = answer.replace("\n", '') + answer = answer.replace(".", '') + answer = answer.replace("(", '') + answer = answer.replace(")", '') + answer = answer.replace("<", '') + answer = answer.replace(">", '') + answer = answer.replace("`", '') + answer = answer.lstrip() + answer = answer.rstrip() + # import ipdb; ipdb.set_trace() + assert answer in ['A', 'B', 'C', 'D'] + # pass + # else: + # assert + # if 'A' in answer and 'B' not in answer and 'C' not in answer and 'D' not in answer: + # answer = 'A' + # elif 'B' in answer and 'C' not in answer and 'D' not in answer: + # answer = 'B' + # elif 'C' in answer and 'D' not in answer: + # answer = 'C' + # elif 'D' in answer: + # answer = 'D' + # parse GT from recorded file + gt_path = gt_answer_dir + "%d.txt"%(test_id) + with open(gt_path, "r") as f: + contents = f.read() + rows = contents.split('\n') + assert len(rows) == 5 + gt = int(rows[-1]) + key_dict = {0: 'A', 1: 'B', 2: 'C', 3:'D'} + gt = key_dict[gt] + if answer == gt: + correct += 1 + # else: + # print(answer, test_id) + count += 1 + except: + # print(test_id) + # import ipdb; ipdb.set_trace() + invalid += 1 + count += 1 + pass + print("------Level %d-------"%(level)) + print("Total tested: %d"%(count)) + print("Total correct: %d"%(correct)) + print("Total invalid: %d"%(invalid)) diff --git a/maze/task3/example/level3/analysis/0.txt b/maze/task3/example/level3/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..f847eaeeb1093ec10294940abe0680977884a4df --- /dev/null +++ b/maze/task3/example/level3/analysis/0.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 3-by-3 maze. We then review the candidates. +- Candidate A is a 7-by-7 maze. Candidate B is a 3-by-3 maze. Candidate C is a 8-by-8 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate A and C cannot be correct. Now we only need to choose from Candidate B and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 1. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 1, column 1, matching the input image. For Candidate B, the player is located at row 1, column 2. Hence, Candidate B is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level3/analysis/1.txt b/maze/task3/example/level3/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4f8e7328fded5fb939fc08ff594bcc3d789596f --- /dev/null +++ b/maze/task3/example/level3/analysis/1.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 3-by-3 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 3-by-3 maze. Candidate C is a 3-by-3 maze. Candidate D is a 7-by-7 maze. Therefore, Candidate A and D cannot be correct. Now we only need to choose from Candidate B and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 3. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 1, column 3, matching the input image. For Candidate C, the player is located at row 3, column 2. Hence, Candidate C is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level3/analysis/2.txt b/maze/task3/example/level3/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..49b505ab723a99d7034e0e9f0a0ba3aa1e3c4b9b --- /dev/null +++ b/maze/task3/example/level3/analysis/2.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 3-by-3 maze. We then review the candidates. +- Candidate A is a 5-by-5 maze. Candidate B is a 3-by-3 maze. Candidate C is a 3-by-3 maze. Candidate D is a 4-by-4 maze. Therefore, Candidate A and D cannot be correct. Now we only need to choose from Candidate B and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 3, column 1. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 3, column 1, matching the input image. For Candidate C, the player is located at row 2, column 3. Hence, Candidate C is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level3/analysis/3.txt b/maze/task3/example/level3/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..480e191d6161ecca590ddcb4e7a31927c59768fc --- /dev/null +++ b/maze/task3/example/level3/analysis/3.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 3-by-3 maze. We then review the candidates. +- Candidate A is a 3-by-3 maze. Candidate B is a 4-by-4 maze. Candidate C is a 3-by-3 maze. Candidate D is a 8-by-8 maze. Therefore, Candidate B and D cannot be correct. Now we only need to choose from Candidate A and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 3, column 2. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 3, column 2, matching the input image. For Candidate C, the player is located at row 2, column 2. Hence, Candidate C is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level3/analysis/4.txt b/maze/task3/example/level3/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b8042a633398cf76b6f7b2b1db70748598b4217 --- /dev/null +++ b/maze/task3/example/level3/analysis/4.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 3-by-3 maze. We then review the candidates. +- Candidate A is a 7-by-7 maze. Candidate B is a 3-by-3 maze. Candidate C is a 6-by-6 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate A and C cannot be correct. Now we only need to choose from Candidate B and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 2. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 2, column 2, matching the input image. For Candidate B, the player is located at row 2, column 3. Hence, Candidate B is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level3/analysis/5.txt b/maze/task3/example/level3/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d19503302a68d2879d00596e9ebce5decbc8691 --- /dev/null +++ b/maze/task3/example/level3/analysis/5.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 3-by-3 maze. We then review the candidates. +- Candidate A is a 3-by-3 maze. Candidate B is a 8-by-8 maze. Candidate C is a 6-by-6 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 1. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 2, column 1, matching the input image. For Candidate D, the player is located at row 3, column 2. Hence, Candidate D is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level3/analysis/6.txt b/maze/task3/example/level3/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb08bb17a28f5b542da130ab1e4828b2921f3d9e --- /dev/null +++ b/maze/task3/example/level3/analysis/6.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 3-by-3 maze. We then review the candidates. +- Candidate A is a 7-by-7 maze. Candidate B is a 3-by-3 maze. Candidate C is a 4-by-4 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate A and C cannot be correct. Now we only need to choose from Candidate B and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 3, column 2. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 3, column 2, matching the input image. For Candidate D, the player is located at row 2, column 2. Hence, Candidate D is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level3/analysis/7.txt b/maze/task3/example/level3/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..545fce81edab43d0d10f442d65b15ef4101dc16a --- /dev/null +++ b/maze/task3/example/level3/analysis/7.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 3-by-3 maze. We then review the candidates. +- Candidate A is a 3-by-3 maze. Candidate B is a 3-by-3 maze. Candidate C is a 6-by-6 maze. Candidate D is a 4-by-4 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 3. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 2, column 3, matching the input image. For Candidate A, the player is located at row 3, column 1. Hence, Candidate A is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level3/answer/0.txt b/maze/task3/example/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbd916b5d5d98efdd054958e8cb405d2e46afe48 --- /dev/null +++ b/maze/task3/example/level3/answer/0.txt @@ -0,0 +1,5 @@ +7-5 +3-65 +8-33 +3-0 +3 \ No newline at end of file diff --git a/maze/task3/example/level3/answer/1.txt b/maze/task3/example/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e17254205f37a9e1c33a4721aa2ffe0c56f9c1d --- /dev/null +++ b/maze/task3/example/level3/answer/1.txt @@ -0,0 +1,5 @@ +6-45 +3-1 +3-27 +7-74 +1 \ No newline at end of file diff --git a/maze/task3/example/level3/answer/2.txt b/maze/task3/example/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..87fb941c58554c880bc85c33e3358c74fe2313a8 --- /dev/null +++ b/maze/task3/example/level3/answer/2.txt @@ -0,0 +1,5 @@ +5-79 +3-2 +3-68 +4-32 +1 \ No newline at end of file diff --git a/maze/task3/example/level3/answer/3.txt b/maze/task3/example/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a5bc384852c3c264f4fe3589f6540e3e0215ad4 --- /dev/null +++ b/maze/task3/example/level3/answer/3.txt @@ -0,0 +1,5 @@ +3-3 +4-87 +3-60 +8-42 +0 \ No newline at end of file diff --git a/maze/task3/example/level3/answer/4.txt b/maze/task3/example/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..87900e549ee31548f2873e1f6ae137ae2780fa18 --- /dev/null +++ b/maze/task3/example/level3/answer/4.txt @@ -0,0 +1,5 @@ +7-78 +3-26 +6-81 +3-4 +3 \ No newline at end of file diff --git a/maze/task3/example/level3/answer/5.txt b/maze/task3/example/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffcd252f2203fe52ddd01068d5e69ee6625aad46 --- /dev/null +++ b/maze/task3/example/level3/answer/5.txt @@ -0,0 +1,5 @@ +3-5 +8-7 +6-70 +3-1 +0 \ No newline at end of file diff --git a/maze/task3/example/level3/answer/6.txt b/maze/task3/example/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2f9c2182781ddeea99b56ddce078a71566d819b --- /dev/null +++ b/maze/task3/example/level3/answer/6.txt @@ -0,0 +1,5 @@ +7-78 +3-6 +4-63 +3-42 +1 \ No newline at end of file diff --git a/maze/task3/example/level3/answer/7.txt b/maze/task3/example/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ba01ebc89087b550048c771382a879cb077d047 --- /dev/null +++ b/maze/task3/example/level3/answer/7.txt @@ -0,0 +1,5 @@ +3-28 +3-7 +6-24 +4-72 +1 \ No newline at end of file diff --git a/maze/task3/example/level3/img/0.png b/maze/task3/example/level3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e69efe3beee37e8258543ba5d82b419b0dc26146 --- /dev/null +++ b/maze/task3/example/level3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:256f750ccc57362cb386440528992167aebe85e471ca042ff982c49f1078c3c1 +size 4897 diff --git a/maze/task3/example/level3/img/1.png b/maze/task3/example/level3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2f9faefbc26fd3b2347b21792c71bc7da18fc37f --- /dev/null +++ b/maze/task3/example/level3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0575e17453c04eaed425af2cb9bb2fb2b979f78bd33bb42090ff5f74fb24cdb +size 4856 diff --git a/maze/task3/example/level3/img/2.png b/maze/task3/example/level3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a47bd83bc451ca9d08d45a1f596b8f06dc77ed15 --- /dev/null +++ b/maze/task3/example/level3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3dc7afeebf2ed0b1bc3f97acd5712e25cdd3e4246de6d13f41539527a347f9 +size 4014 diff --git a/maze/task3/example/level3/img/3.png b/maze/task3/example/level3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..397c3b91ddcfdb9c45d5d19fb0202bcbdfaf383c --- /dev/null +++ b/maze/task3/example/level3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea9edc8e57a64c37cc679d53b2f195d8837321d30569c37eff9a4e609d84203 +size 4071 diff --git a/maze/task3/example/level3/img/4.png b/maze/task3/example/level3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..853c1abd4fa416f0d9cc38e2871e362e09041b44 --- /dev/null +++ b/maze/task3/example/level3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f09a54a84f47f30af7af4e63bb26a2561f1629b754e93c806f47429ba8f61873 +size 5641 diff --git a/maze/task3/example/level3/img/5.png b/maze/task3/example/level3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5dcfd7b042745dd12f27b2589d097d8912438f43 --- /dev/null +++ b/maze/task3/example/level3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb8439978f0e4da1228c52f6650a66ea2a9855be76aab94ab82b102b81171f9 +size 4970 diff --git a/maze/task3/example/level3/img/6.png b/maze/task3/example/level3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5ba04a3f5f021e6340cd8ae24058e985c9edcaf2 --- /dev/null +++ b/maze/task3/example/level3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce02898472e0dae909101f23664d4e12526aeaadf4a27e07cc46d292617b0e96 +size 5725 diff --git a/maze/task3/example/level3/img/7.png b/maze/task3/example/level3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f98c5a830f3ee0a8136a2cd3a12977f3f3c926e8 --- /dev/null +++ b/maze/task3/example/level3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03cfc3d9196a7a02fb90d3da9f337acc01f90f746fdbcf2bc23cbf1f81c348d4 +size 4849 diff --git a/maze/task3/example/level3/question/0.txt b/maze/task3/example/level3/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca9cf907494c4f3a89f084ad68eb5e89ce8acf8a --- /dev/null +++ b/maze/task3/example/level3/question/0.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | _ | # | # | +| Row 3 | * | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | # | # | +| Row 3 | # | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | # | _ | +| Row 7 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | # | # | diff --git a/maze/task3/example/level3/question/1.txt b/maze/task3/example/level3/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..14da453e405a11943ed94e065ebefd5db3ffb232 --- /dev/null +++ b/maze/task3/example/level3/question/1.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | * | _ | _ | +| Row 3 | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | * | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/example/level3/question/2.txt b/maze/task3/example/level3/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..684507e5240b7280a28a5ce3db4bc311c873a3c0 --- /dev/null +++ b/maze/task3/example/level3/question/2.txt @@ -0,0 +1,27 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | * | +| Row 3 | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | # | _ | @ | +| Row 3 | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task3/example/level3/question/3.txt b/maze/task3/example/level3/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7e37267db1b7d27b602082c91f9ca9ef2fecbf1 --- /dev/null +++ b/maze/task3/example/level3/question/3.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | _ | +| Row 3 | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | @ | _ | # | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | # | _ | _ | * | _ | # | _ | _ | +| Row 8 | _ | # | # | _ | _ | _ | # | _ | diff --git a/maze/task3/example/level3/question/4.txt b/maze/task3/example/level3/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..04d2ad5ecd2465f7cbc0c5ab9c2cbb60cdb5f728 --- /dev/null +++ b/maze/task3/example/level3/question/4.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | # | @ | # | +| Row 3 | _ | * | _ | diff --git a/maze/task3/example/level3/question/5.txt b/maze/task3/example/level3/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..9341e46adaae3cc7f48977cd38971786942cb623 --- /dev/null +++ b/maze/task3/example/level3/question/5.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | # | _ | _ | # | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | _ | _ | _ | # | _ | _ | +| Row 8 | * | _ | _ | @ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | _ | _ | +| Row 2 | * | _ | # | _ | _ | @ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | @ | _ | diff --git a/maze/task3/example/level3/question/6.txt b/maze/task3/example/level3/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6936adf848fbcf27ed950a5d29e7f26523c9102 --- /dev/null +++ b/maze/task3/example/level3/question/6.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/example/level3/question/7.txt b/maze/task3/example/level3/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0e85ae35bd485226b138cd73bb491d8d8df913c --- /dev/null +++ b/maze/task3/example/level3/question/7.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | # | @ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | * | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | diff --git a/maze/task3/example/level4/analysis/0.txt b/maze/task3/example/level4/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..356a0cc0d8e8ab09fc0d2830e16982db850479c3 --- /dev/null +++ b/maze/task3/example/level4/analysis/0.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. +- Candidate A is a 4-by-4 maze. Candidate B is a 8-by-8 maze. Candidate C is a 7-by-7 maze. Candidate D is a 4-by-4 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 4, column 1. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 4, column 1, matching the input image. For Candidate A, the player is located at row 3, column 1. Hence, Candidate A is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level4/analysis/1.txt b/maze/task3/example/level4/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..febe3e4341d7dc9f8f7ea49ca2a5b25474c75266 --- /dev/null +++ b/maze/task3/example/level4/analysis/1.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 8-by-8 maze. Candidate C is a 4-by-4 maze. Candidate D is a 4-by-4 maze. Therefore, Candidate A and B cannot be correct. Now we only need to choose from Candidate C and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 4. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 2, column 4, matching the input image. For Candidate D, the player is located at row 3, column 2. Hence, Candidate D is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level4/analysis/2.txt b/maze/task3/example/level4/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b80e63b9194d66652b0c9d00055559e1b8553832 --- /dev/null +++ b/maze/task3/example/level4/analysis/2.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. +- Candidate A is a 5-by-5 maze. Candidate B is a 4-by-4 maze. Candidate C is a 6-by-6 maze. Candidate D is a 4-by-4 maze. Therefore, Candidate A and C cannot be correct. Now we only need to choose from Candidate B and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 1. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 1, column 1, matching the input image. For Candidate B, the player is located at row 3, column 2. Hence, Candidate B is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level4/analysis/3.txt b/maze/task3/example/level4/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6799f4a26686f7820fc5395c5fc70d86464d5c3 --- /dev/null +++ b/maze/task3/example/level4/analysis/3.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. +- Candidate A is a 4-by-4 maze. Candidate B is a 4-by-4 maze. Candidate C is a 8-by-8 maze. Candidate D is a 5-by-5 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 3, column 1. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 3, column 1, matching the input image. For Candidate A, the player is located at row 2, column 3. Hence, Candidate A is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level4/analysis/4.txt b/maze/task3/example/level4/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..6eaf9ac4c70e685449396e8ae9c9cabcdc671698 --- /dev/null +++ b/maze/task3/example/level4/analysis/4.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. +- Candidate A is a 4-by-4 maze. Candidate B is a 4-by-4 maze. Candidate C is a 8-by-8 maze. Candidate D is a 6-by-6 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 3. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 1, column 3, matching the input image. For Candidate A, the player is located at row 3, column 2. Hence, Candidate A is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level4/analysis/5.txt b/maze/task3/example/level4/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..66fce0b74536fc838b1512dee1325bcec69e4ac1 --- /dev/null +++ b/maze/task3/example/level4/analysis/5.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. +- Candidate A is a 3-by-3 maze. Candidate B is a 8-by-8 maze. Candidate C is a 4-by-4 maze. Candidate D is a 4-by-4 maze. Therefore, Candidate A and B cannot be correct. Now we only need to choose from Candidate C and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 3, column 3. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 3, column 3, matching the input image. For Candidate C, the player is located at row 1, column 3. Hence, Candidate C is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level4/analysis/6.txt b/maze/task3/example/level4/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..204e4d53086797b91076b43636b2f25ccdb007f1 --- /dev/null +++ b/maze/task3/example/level4/analysis/6.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. +- Candidate A is a 8-by-8 maze. Candidate B is a 6-by-6 maze. Candidate C is a 4-by-4 maze. Candidate D is a 4-by-4 maze. Therefore, Candidate A and B cannot be correct. Now we only need to choose from Candidate C and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 1. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 2, column 1, matching the input image. For Candidate C, the player is located at row 3, column 4. Hence, Candidate C is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level4/analysis/7.txt b/maze/task3/example/level4/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7baece4b48dc0a8214b30cfacf6a971dc0ddf015 --- /dev/null +++ b/maze/task3/example/level4/analysis/7.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. +- Candidate A is a 4-by-4 maze. Candidate B is a 6-by-6 maze. Candidate C is a 4-by-4 maze. Candidate D is a 7-by-7 maze. Therefore, Candidate B and D cannot be correct. Now we only need to choose from Candidate A and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 4, column 1. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 4, column 1, matching the input image. For Candidate A, the player is located at row 2, column 3. Hence, Candidate A is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level4/answer/0.txt b/maze/task3/example/level4/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae0cbf04d5b30cd90c99f0b22b4e0d7655c96a57 --- /dev/null +++ b/maze/task3/example/level4/answer/0.txt @@ -0,0 +1,5 @@ +4-40 +8-11 +7-10 +4-0 +3 \ No newline at end of file diff --git a/maze/task3/example/level4/answer/1.txt b/maze/task3/example/level4/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3078a810078abad5b3b091075cab80dec9b5a7a5 --- /dev/null +++ b/maze/task3/example/level4/answer/1.txt @@ -0,0 +1,5 @@ +6-90 +8-15 +4-1 +4-70 +2 \ No newline at end of file diff --git a/maze/task3/example/level4/answer/2.txt b/maze/task3/example/level4/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6779f6193c9fc6c78968a91d92edcbf5adce6a7 --- /dev/null +++ b/maze/task3/example/level4/answer/2.txt @@ -0,0 +1,5 @@ +5-56 +4-76 +6-11 +4-2 +3 \ No newline at end of file diff --git a/maze/task3/example/level4/answer/3.txt b/maze/task3/example/level4/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b404601171d17fbad307c42adcc1144c33638e97 --- /dev/null +++ b/maze/task3/example/level4/answer/3.txt @@ -0,0 +1,5 @@ +4-24 +4-3 +8-37 +5-23 +1 \ No newline at end of file diff --git a/maze/task3/example/level4/answer/4.txt b/maze/task3/example/level4/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c793fe4ee3310a649ad5f88cad482c5383f9dc9 --- /dev/null +++ b/maze/task3/example/level4/answer/4.txt @@ -0,0 +1,5 @@ +4-11 +4-4 +8-60 +6-8 +1 \ No newline at end of file diff --git a/maze/task3/example/level4/answer/5.txt b/maze/task3/example/level4/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c249a94807813ed2b7dd75980a269f757ad28109 --- /dev/null +++ b/maze/task3/example/level4/answer/5.txt @@ -0,0 +1,5 @@ +3-89 +8-69 +4-87 +4-5 +3 \ No newline at end of file diff --git a/maze/task3/example/level4/answer/6.txt b/maze/task3/example/level4/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c94bd1e91efb4c3993da2300275982f593a7c64 --- /dev/null +++ b/maze/task3/example/level4/answer/6.txt @@ -0,0 +1,5 @@ +8-66 +6-30 +4-27 +4-6 +3 \ No newline at end of file diff --git a/maze/task3/example/level4/answer/7.txt b/maze/task3/example/level4/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..127398c89bce5c459a9c71706672cfbe44dd0136 --- /dev/null +++ b/maze/task3/example/level4/answer/7.txt @@ -0,0 +1,5 @@ +4-82 +6-63 +4-7 +7-84 +2 \ No newline at end of file diff --git a/maze/task3/example/level4/img/0.png b/maze/task3/example/level4/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c074c9dc702f7b92a9ec9ad521a6c586ca4f459e --- /dev/null +++ b/maze/task3/example/level4/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25592c71462fe5f55b364dd00da91b2cdee432b629ae3cba637b95456d07a592 +size 6232 diff --git a/maze/task3/example/level4/img/1.png b/maze/task3/example/level4/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed99e7af18fd0c7b08336597145aa0341828d56 --- /dev/null +++ b/maze/task3/example/level4/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c5bed43c76a123f06b50a38730d88692854d81fe67084cccbad61483edd40d +size 8657 diff --git a/maze/task3/example/level4/img/2.png b/maze/task3/example/level4/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d32da5ff0d58f43fd518b8cac5040ed426fb77 --- /dev/null +++ b/maze/task3/example/level4/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7ebf8c35c853e1b6dd29a8ebd398d700313b9adf7fa703399fe2c95e22cc0b +size 8847 diff --git a/maze/task3/example/level4/img/3.png b/maze/task3/example/level4/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dd920256d0699c093a4b6beec1f30a61a684d0a3 --- /dev/null +++ b/maze/task3/example/level4/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b30c02646632b0ee4220b4828db84b64ff9bab153cb38c57b597ef361a882c +size 7066 diff --git a/maze/task3/example/level4/img/4.png b/maze/task3/example/level4/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..89487cf5f04dd9f480026eb7388a9f5c5e2c5097 --- /dev/null +++ b/maze/task3/example/level4/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03bea8593fc946ee54381924b2c22d655db08105f455c4df62773b196efbb5e +size 7137 diff --git a/maze/task3/example/level4/img/5.png b/maze/task3/example/level4/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0c6c0cc6a6ec3382df2731ebc84e565d34e124 --- /dev/null +++ b/maze/task3/example/level4/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e546e87bdaa563f43144753cc637a543340a3d244989a37a3009461a972ea2 +size 7091 diff --git a/maze/task3/example/level4/img/6.png b/maze/task3/example/level4/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..487c89794e5b4262f4df94194d870899d3d61951 --- /dev/null +++ b/maze/task3/example/level4/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ef04692ebdd21df54384d2a7f0624805ef62e88445f846fddb518872e20c86 +size 7093 diff --git a/maze/task3/example/level4/img/7.png b/maze/task3/example/level4/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..37c20da02df2ff06dedd67e313ecc433c323b4c4 --- /dev/null +++ b/maze/task3/example/level4/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5800ae68bd7c990eda0472906080d5458ba211e069e329c2b8f5250aa4681c +size 6992 diff --git a/maze/task3/example/level4/question/0.txt b/maze/task3/example/level4/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6d019fc6d8aa3c7baa662784ee3a71d4ebe167f --- /dev/null +++ b/maze/task3/example/level4/question/0.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | * | +| Row 7 | _ | _ | _ | # | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | * | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/example/level4/question/1.txt b/maze/task3/example/level4/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa4b1e208d78bbe6387c27e9285c8f06053a35f8 --- /dev/null +++ b/maze/task3/example/level4/question/1.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | @ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | # | +| Row 7 | # | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | _ | _ | @ | +| Row 3 | # | * | # | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task3/example/level4/question/2.txt b/maze/task3/example/level4/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..936d71d9b30ecd59f7c3a0bb70d916e27dbbbf28 --- /dev/null +++ b/maze/task3/example/level4/question/2.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | * | # | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task3/example/level4/question/3.txt b/maze/task3/example/level4/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..98c227f11861e6c3804cb7f2be25216e35326060 --- /dev/null +++ b/maze/task3/example/level4/question/3.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | # | _ | _ | # | _ | +| Row 7 | @ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task3/example/level4/question/4.txt b/maze/task3/example/level4/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..1be07edd6cbc4b904d9cb3edea0698ffd6af1286 --- /dev/null +++ b/maze/task3/example/level4/question/4.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | # | # | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | # | * | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | # | # | +| Row 3 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | diff --git a/maze/task3/example/level4/question/5.txt b/maze/task3/example/level4/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b25019872f83badce93c7e25ddf48359901f8a34 --- /dev/null +++ b/maze/task3/example/level4/question/5.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | @ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | @ | # | +| Row 8 | _ | # | _ | _ | _ | # | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/example/level4/question/6.txt b/maze/task3/example/level4/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a325ff191fdb0de4ebac21b9f3c70d71076f3bd9 --- /dev/null +++ b/maze/task3/example/level4/question/6.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | # | _ | +| Row 2 | _ | # | _ | * | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | # | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | * | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | # | _ | +| Row 5 | # | # | _ | _ | # | _ | +| Row 6 | # | # | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | # | _ | @ | +| Row 4 | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/example/level4/question/7.txt b/maze/task3/example/level4/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..70cce85bd50242974ba8ed19600b4a7611d7e12c --- /dev/null +++ b/maze/task3/example/level4/question/7.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | @ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | * | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | +| Row 3 | _ | # | * | # | +| Row 4 | @ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | # | +| Row 7 | _ | _ | # | _ | * | # | _ | diff --git a/maze/task3/example/level5/analysis/0.txt b/maze/task3/example/level5/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..939ab84e46af0703751cc57582afaa7eb522e0b9 --- /dev/null +++ b/maze/task3/example/level5/analysis/0.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 5-by-5 maze. We then review the candidates. +- Candidate A is a 5-by-5 maze. Candidate B is a 6-by-6 maze. Candidate C is a 5-by-5 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate B and D cannot be correct. Now we only need to choose from Candidate A and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 5, column 1. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 5, column 1, matching the input image. For Candidate A, the player is located at row 5, column 2. Hence, Candidate A is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level5/analysis/1.txt b/maze/task3/example/level5/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..93262ee7701d76cfb01de84041fbc27725b44a5e --- /dev/null +++ b/maze/task3/example/level5/analysis/1.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 5-by-5 maze. We then review the candidates. +- Candidate A is a 4-by-4 maze. Candidate B is a 5-by-5 maze. Candidate C is a 5-by-5 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate A and D cannot be correct. Now we only need to choose from Candidate B and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 3. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 1, column 3, matching the input image. For Candidate C, the player is located at row 1, column 4. Hence, Candidate C is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level5/analysis/2.txt b/maze/task3/example/level5/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dc7c9f537180150643c692608acf87e99e6c50f --- /dev/null +++ b/maze/task3/example/level5/analysis/2.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 5-by-5 maze. We then review the candidates. +- Candidate A is a 4-by-4 maze. Candidate B is a 5-by-5 maze. Candidate C is a 6-by-6 maze. Candidate D is a 5-by-5 maze. Therefore, Candidate A and C cannot be correct. Now we only need to choose from Candidate B and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 4, column 2. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 4, column 2, matching the input image. For Candidate D, the player is located at row 4, column 3. Hence, Candidate D is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level5/analysis/3.txt b/maze/task3/example/level5/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f44668e9841c1333f3e325efaa9e4219e1d677b --- /dev/null +++ b/maze/task3/example/level5/analysis/3.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 5-by-5 maze. We then review the candidates. +- Candidate A is a 5-by-5 maze. Candidate B is a 5-by-5 maze. Candidate C is a 4-by-4 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 4. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 2, column 4, matching the input image. For Candidate B, the player is located at row 2, column 1. Hence, Candidate B is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level5/analysis/4.txt b/maze/task3/example/level5/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b24439c71af8d81757d2ada785336d965ce2fcc2 --- /dev/null +++ b/maze/task3/example/level5/analysis/4.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 5-by-5 maze. We then review the candidates. +- Candidate A is a 5-by-5 maze. Candidate B is a 3-by-3 maze. Candidate C is a 4-by-4 maze. Candidate D is a 5-by-5 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 4, column 3. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 4, column 3, matching the input image. For Candidate A, the player is located at row 2, column 5. Hence, Candidate A is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level5/analysis/5.txt b/maze/task3/example/level5/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ceca96656e99a260d40087fc1d63c4500c7ada84 --- /dev/null +++ b/maze/task3/example/level5/analysis/5.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 5-by-5 maze. We then review the candidates. +- Candidate A is a 5-by-5 maze. Candidate B is a 5-by-5 maze. Candidate C is a 6-by-6 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 1. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 2, column 1, matching the input image. For Candidate A, the player is located at row 4, column 1. Hence, Candidate A is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level5/analysis/6.txt b/maze/task3/example/level5/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..6683960a4c17e25b305d9f7db9a52e6bf8a7e14f --- /dev/null +++ b/maze/task3/example/level5/analysis/6.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 5-by-5 maze. We then review the candidates. +- Candidate A is a 5-by-5 maze. Candidate B is a 3-by-3 maze. Candidate C is a 7-by-7 maze. Candidate D is a 5-by-5 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 2. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 2, column 2, matching the input image. For Candidate D, the player is located at row 2, column 3. Hence, Candidate D is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level5/analysis/7.txt b/maze/task3/example/level5/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d0c6f1e802c572fc7a7a155c7be4cf1bdeaefc4 --- /dev/null +++ b/maze/task3/example/level5/analysis/7.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 5-by-5 maze. We then review the candidates. +- Candidate A is a 5-by-5 maze. Candidate B is a 7-by-7 maze. Candidate C is a 3-by-3 maze. Candidate D is a 5-by-5 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 5. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 1, column 5, matching the input image. For Candidate D, the player is located at row 3, column 5. Hence, Candidate D is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level5/answer/0.txt b/maze/task3/example/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..7841b714e87cf12053a0d9aa398d52c9c31feaae --- /dev/null +++ b/maze/task3/example/level5/answer/0.txt @@ -0,0 +1,5 @@ +5-80 +6-62 +5-0 +3-75 +2 \ No newline at end of file diff --git a/maze/task3/example/level5/answer/1.txt b/maze/task3/example/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..af3c8cdd0449f5b39506223ad9716ef532f61877 --- /dev/null +++ b/maze/task3/example/level5/answer/1.txt @@ -0,0 +1,5 @@ +4-93 +5-1 +5-14 +3-34 +1 \ No newline at end of file diff --git a/maze/task3/example/level5/answer/2.txt b/maze/task3/example/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d7fd78a0cb945f5c9a18760bd2034eefea86914 --- /dev/null +++ b/maze/task3/example/level5/answer/2.txt @@ -0,0 +1,5 @@ +4-54 +5-2 +6-7 +5-12 +1 \ No newline at end of file diff --git a/maze/task3/example/level5/answer/3.txt b/maze/task3/example/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f4c855b23e232f2218a9e3ce4d7d4137d6da784 --- /dev/null +++ b/maze/task3/example/level5/answer/3.txt @@ -0,0 +1,5 @@ +5-3 +5-68 +4-73 +3-81 +0 \ No newline at end of file diff --git a/maze/task3/example/level5/answer/4.txt b/maze/task3/example/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..01f3222c5d2b77b76ffe53086f7dab8dd8d3572e --- /dev/null +++ b/maze/task3/example/level5/answer/4.txt @@ -0,0 +1,5 @@ +5-15 +3-77 +4-73 +5-4 +3 \ No newline at end of file diff --git a/maze/task3/example/level5/answer/5.txt b/maze/task3/example/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d412d6e334d2ac06f10e8e7c6f74817bae27867 --- /dev/null +++ b/maze/task3/example/level5/answer/5.txt @@ -0,0 +1,5 @@ +5-2 +5-5 +6-4 +3-77 +1 \ No newline at end of file diff --git a/maze/task3/example/level5/answer/6.txt b/maze/task3/example/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2826b837486a053196b0c4a2e7c1c5aac296228 --- /dev/null +++ b/maze/task3/example/level5/answer/6.txt @@ -0,0 +1,5 @@ +5-6 +3-26 +7-93 +5-7 +0 \ No newline at end of file diff --git a/maze/task3/example/level5/answer/7.txt b/maze/task3/example/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..da522f6c80c659b0db952480657b0710dca4f3fa --- /dev/null +++ b/maze/task3/example/level5/answer/7.txt @@ -0,0 +1,5 @@ +5-7 +7-33 +3-8 +5-28 +0 \ No newline at end of file diff --git a/maze/task3/example/level5/img/0.png b/maze/task3/example/level5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ed5e7badc06275eeaa5b41d085dc623c2af81a --- /dev/null +++ b/maze/task3/example/level5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fadd0fae179efcdce0a96bb58f646621aadeb39a3d18bea6d44630dba00955d3 +size 8682 diff --git a/maze/task3/example/level5/img/1.png b/maze/task3/example/level5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..82b3e6463a6aa8aab753e948240e30c19102cd2d --- /dev/null +++ b/maze/task3/example/level5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d22eab26f87cfb01be09c75c509164d96d7421278b0c50e38602c9fafb9687 +size 10290 diff --git a/maze/task3/example/level5/img/2.png b/maze/task3/example/level5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c3e9af1902cc943b4f94c2215bd33a94edafa0b8 --- /dev/null +++ b/maze/task3/example/level5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09753e5556f0aaf26f05dc726115603db47614a8f3989c87245b4c3a9cf8ccda +size 9649 diff --git a/maze/task3/example/level5/img/3.png b/maze/task3/example/level5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..08ebdff007b8a59d3eea8c457738d40f33d539d9 --- /dev/null +++ b/maze/task3/example/level5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a646049df05d461081e86964898ab02ba353f7f15016c84b1ecbe9eb463cf098 +size 9355 diff --git a/maze/task3/example/level5/img/4.png b/maze/task3/example/level5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1e12e5a7925369d062fc3673600d8ff8a57c468b --- /dev/null +++ b/maze/task3/example/level5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464864c5b635bf5fb3a5ff0415fd306b7e0b6a18fdcce1742c1f35d0dc074334 +size 10364 diff --git a/maze/task3/example/level5/img/5.png b/maze/task3/example/level5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9d16c27c4df5179272f61b3be543d93b14cbbe95 --- /dev/null +++ b/maze/task3/example/level5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fc7914a946fefa1f6e2fca2baa97a8512abb7d6b3a0d2af34b57cfcbab701d +size 11211 diff --git a/maze/task3/example/level5/img/6.png b/maze/task3/example/level5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d37d690b3f8d52f70d3eed5b4ce7fdbe20da97 --- /dev/null +++ b/maze/task3/example/level5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a8d438ccda3f10d587b1d1e1dfde868394fd5da1e752ee0a8c4445c6fcebe6 +size 10463 diff --git a/maze/task3/example/level5/img/7.png b/maze/task3/example/level5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f57983012206b090b958f693e4a337ad4ac9606f --- /dev/null +++ b/maze/task3/example/level5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac9741bb5db7166aac63fb953280b8c55a90d974989f0cd055e5fd708fc5908 +size 9504 diff --git a/maze/task3/example/level5/question/0.txt b/maze/task3/example/level5/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..49241d74a8987ca30e9e372da00d07c77ee2a401 --- /dev/null +++ b/maze/task3/example/level5/question/0.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | * | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | _ | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | * | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task3/example/level5/question/1.txt b/maze/task3/example/level5/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b0bccc4f1b0fc0e8ca78c1260f02c5232b41f17 --- /dev/null +++ b/maze/task3/example/level5/question/1.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | * | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task3/example/level5/question/2.txt b/maze/task3/example/level5/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..df8f3372d2469625195bff24c04f634e08db772f --- /dev/null +++ b/maze/task3/example/level5/question/2.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | @ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | # | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task3/example/level5/question/3.txt b/maze/task3/example/level5/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..261429b3da6e94a54923e79c1aaa8d3d54cea35b --- /dev/null +++ b/maze/task3/example/level5/question/3.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | _ | +| Row 2 | # | # | _ | @ | # | +| Row 3 | # | # | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | # | _ | diff --git a/maze/task3/example/level5/question/4.txt b/maze/task3/example/level5/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f92d24f70ca272542f5fc7dcd5ef487b233c1d8 --- /dev/null +++ b/maze/task3/example/level5/question/4.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | * | +| Row 2 | # | _ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | # | # | @ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task3/example/level5/question/5.txt b/maze/task3/example/level5/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ffbfcf698aa7bae20c0f09bf76fe6470ddfd919 --- /dev/null +++ b/maze/task3/example/level5/question/5.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | * | +| Row 2 | # | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/example/level5/question/6.txt b/maze/task3/example/level5/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd477dfa87faaa215a2bdd782030d1bc4b8be3b1 --- /dev/null +++ b/maze/task3/example/level5/question/6.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | * | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | @ | _ | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | # | +| Row 7 | _ | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task3/example/level5/question/7.txt b/maze/task3/example/level5/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..a116b62502fb15b81a224e02eb8db4b3d3d7353e --- /dev/null +++ b/maze/task3/example/level5/question/7.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | @ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | * | # | _ | +| Row 3 | @ | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | # | +| Row 3 | _ | * | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/example/level6/analysis/0.txt b/maze/task3/example/level6/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea8935bed2b2a8d924b2002591d95a36cabed672 --- /dev/null +++ b/maze/task3/example/level6/analysis/0.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 6-by-6 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 5-by-5 maze. Candidate C is a 8-by-8 maze. Candidate D is a 6-by-6 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 4, column 2. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 4, column 2, matching the input image. For Candidate A, the player is located at row 1, column 6. Hence, Candidate A is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level6/analysis/1.txt b/maze/task3/example/level6/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8af90eb5e593b80b453a7b394bcb6998636ab356 --- /dev/null +++ b/maze/task3/example/level6/analysis/1.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 6-by-6 maze. We then review the candidates. +- Candidate A is a 8-by-8 maze. Candidate B is a 6-by-6 maze. Candidate C is a 6-by-6 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate A and D cannot be correct. Now we only need to choose from Candidate B and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 6. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 1, column 6, matching the input image. For Candidate B, the player is located at row 1, column 4. Hence, Candidate B is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level6/analysis/2.txt b/maze/task3/example/level6/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4275530568b5411d393f88109181dc0165b02f1c --- /dev/null +++ b/maze/task3/example/level6/analysis/2.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 6-by-6 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 7-by-7 maze. Candidate C is a 4-by-4 maze. Candidate D is a 6-by-6 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 3, column 3. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 3, column 3, matching the input image. For Candidate D, the player is located at row 2, column 1. Hence, Candidate D is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level6/analysis/3.txt b/maze/task3/example/level6/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a413dc09ac26b1ab4484a8ecc054aaf8d1a1bbe8 --- /dev/null +++ b/maze/task3/example/level6/analysis/3.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 6-by-6 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 4-by-4 maze. Candidate C is a 8-by-8 maze. Candidate D is a 6-by-6 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 5, column 6. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 5, column 6, matching the input image. For Candidate D, the player is located at row 5, column 3. Hence, Candidate D is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level6/analysis/4.txt b/maze/task3/example/level6/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5706cd320a7397470ee40e5224a9886f40f1503 --- /dev/null +++ b/maze/task3/example/level6/analysis/4.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 6-by-6 maze. We then review the candidates. +- Candidate A is a 7-by-7 maze. Candidate B is a 4-by-4 maze. Candidate C is a 6-by-6 maze. Candidate D is a 6-by-6 maze. Therefore, Candidate A and B cannot be correct. Now we only need to choose from Candidate C and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 6, column 1. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 6, column 1, matching the input image. For Candidate C, the player is located at row 6, column 4. Hence, Candidate C is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level6/analysis/5.txt b/maze/task3/example/level6/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..58509a131af40636f48f596dc7ccf49aa2160b54 --- /dev/null +++ b/maze/task3/example/level6/analysis/5.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 6-by-6 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 8-by-8 maze. Candidate C is a 6-by-6 maze. Candidate D is a 5-by-5 maze. Therefore, Candidate B and D cannot be correct. Now we only need to choose from Candidate A and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 6, column 5. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 6, column 5, matching the input image. For Candidate A, the player is located at row 4, column 4. Hence, Candidate A is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level6/analysis/6.txt b/maze/task3/example/level6/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d96bd20091fd27fa11c3d496a7a6fb85071dd72 --- /dev/null +++ b/maze/task3/example/level6/analysis/6.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 6-by-6 maze. We then review the candidates. +- Candidate A is a 8-by-8 maze. Candidate B is a 3-by-3 maze. Candidate C is a 6-by-6 maze. Candidate D is a 6-by-6 maze. Therefore, Candidate A and B cannot be correct. Now we only need to choose from Candidate C and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 6, column 6. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 6, column 6, matching the input image. For Candidate D, the player is located at row 4, column 3. Hence, Candidate D is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level6/analysis/7.txt b/maze/task3/example/level6/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..23506f929a61e3f26da119032bb0cc4c020fc86d --- /dev/null +++ b/maze/task3/example/level6/analysis/7.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 6-by-6 maze. We then review the candidates. +- Candidate A is a 3-by-3 maze. Candidate B is a 6-by-6 maze. Candidate C is a 5-by-5 maze. Candidate D is a 6-by-6 maze. Therefore, Candidate A and C cannot be correct. Now we only need to choose from Candidate B and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 6, column 5. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 6, column 5, matching the input image. For Candidate B, the player is located at row 2, column 1. Hence, Candidate B is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level6/answer/0.txt b/maze/task3/example/level6/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9d26962cb55053ac2ad1ee866123104722f658c --- /dev/null +++ b/maze/task3/example/level6/answer/0.txt @@ -0,0 +1,5 @@ +6-7 +5-55 +8-23 +6-0 +3 \ No newline at end of file diff --git a/maze/task3/example/level6/answer/1.txt b/maze/task3/example/level6/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2216c1d77bb23037e6b18aefd9ae5605b34de5c7 --- /dev/null +++ b/maze/task3/example/level6/answer/1.txt @@ -0,0 +1,5 @@ +8-89 +6-25 +6-1 +3-50 +2 \ No newline at end of file diff --git a/maze/task3/example/level6/answer/2.txt b/maze/task3/example/level6/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..07507f75404412f1f83d8da4c94a89688c23d101 --- /dev/null +++ b/maze/task3/example/level6/answer/2.txt @@ -0,0 +1,5 @@ +6-2 +7-89 +4-86 +6-26 +0 \ No newline at end of file diff --git a/maze/task3/example/level6/answer/3.txt b/maze/task3/example/level6/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..21cf1dbf1e3bb9912ce32c77efbf4358ae3a0037 --- /dev/null +++ b/maze/task3/example/level6/answer/3.txt @@ -0,0 +1,5 @@ +6-3 +4-43 +8-67 +6-32 +0 \ No newline at end of file diff --git a/maze/task3/example/level6/answer/4.txt b/maze/task3/example/level6/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..7345f7ff9bf2eaf3161134b79fc4a313633ee696 --- /dev/null +++ b/maze/task3/example/level6/answer/4.txt @@ -0,0 +1,5 @@ +7-1 +4-60 +6-87 +6-4 +3 \ No newline at end of file diff --git a/maze/task3/example/level6/answer/5.txt b/maze/task3/example/level6/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..7470ce5a623f9a09e6c0262314f745cb55a35c2e --- /dev/null +++ b/maze/task3/example/level6/answer/5.txt @@ -0,0 +1,5 @@ +6-49 +8-83 +6-5 +5-45 +2 \ No newline at end of file diff --git a/maze/task3/example/level6/answer/6.txt b/maze/task3/example/level6/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b429c796562146abd26ce67739bd6af8d0b0be61 --- /dev/null +++ b/maze/task3/example/level6/answer/6.txt @@ -0,0 +1,5 @@ +8-58 +3-94 +6-6 +6-10 +2 \ No newline at end of file diff --git a/maze/task3/example/level6/answer/7.txt b/maze/task3/example/level6/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bd98e7e736f573082e7f1f39b11ada92be2028f --- /dev/null +++ b/maze/task3/example/level6/answer/7.txt @@ -0,0 +1,5 @@ +3-17 +6-97 +5-30 +6-7 +3 \ No newline at end of file diff --git a/maze/task3/example/level6/img/0.png b/maze/task3/example/level6/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..232072305899cae72948427b7721c3e81282cfc1 --- /dev/null +++ b/maze/task3/example/level6/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4a1633af79971996f2de900aa888ab70b3f68917d0c68a1b0664bb71a5e2f6 +size 11248 diff --git a/maze/task3/example/level6/img/1.png b/maze/task3/example/level6/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..554f57e7af72b2d5c914d17f5987f5e820d88554 --- /dev/null +++ b/maze/task3/example/level6/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73acbaf052f72506244f75a232c9575cec593ecaa29c6803f80f699e87bfc73c +size 13137 diff --git a/maze/task3/example/level6/img/2.png b/maze/task3/example/level6/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a03450eac03433a22a55261ff1f70477daf999f7 --- /dev/null +++ b/maze/task3/example/level6/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1f87373934880cd4b047820200bf0484bdb55df3ccbd976638e68bb03cf9e2 +size 11281 diff --git a/maze/task3/example/level6/img/3.png b/maze/task3/example/level6/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..257bf7905575d38586568afce5bcc7712e1cf8e8 --- /dev/null +++ b/maze/task3/example/level6/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744006b6d8a85a99178974cad91f898c7e497cc5ce0f77c2faf49ed0ee3c8597 +size 12154 diff --git a/maze/task3/example/level6/img/4.png b/maze/task3/example/level6/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e66ed4f04c2f5d158a440ba376140b28a3955e3 --- /dev/null +++ b/maze/task3/example/level6/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305d0ceb3f99b0275209c4fc6ca0b6763ead0f9d6b24d1bfe2bcd68c6d2bcb1f +size 13989 diff --git a/maze/task3/example/level6/img/5.png b/maze/task3/example/level6/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..13d4dfdb513f5d10a82c5022907d1c2a8bade577 --- /dev/null +++ b/maze/task3/example/level6/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bab37e24e4b963309b273d5085cbdeafdbd008ce10b6c41f99d1a48edcded5b +size 13120 diff --git a/maze/task3/example/level6/img/6.png b/maze/task3/example/level6/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c9c14a2e46bb32a51da3b01db1a6f2d791489c --- /dev/null +++ b/maze/task3/example/level6/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2de05e5043907d5d7022c39541ac90d885d9149c64114d7d0622a57f48a695 +size 13023 diff --git a/maze/task3/example/level6/img/7.png b/maze/task3/example/level6/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..63802b59531589ab4d2b0a0c5c0b99d8cc2338b6 --- /dev/null +++ b/maze/task3/example/level6/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13028fc730b6933ab731745d9da5dc2233ffd63b68a6739764c8616d2c1b4ddc +size 11261 diff --git a/maze/task3/example/level6/question/0.txt b/maze/task3/example/level6/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d644fbf7844393ea9f0e09907de1b0f92d2854e --- /dev/null +++ b/maze/task3/example/level6/question/0.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/example/level6/question/1.txt b/maze/task3/example/level6/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..d66a754d2ff35957c927b95beeb560292616614b --- /dev/null +++ b/maze/task3/example/level6/question/1.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | # | +| Row 8 | _ | # | # | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | @ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | # | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | * | @ | +| Row 3 | # | _ | _ | diff --git a/maze/task3/example/level6/question/2.txt b/maze/task3/example/level6/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..7de788f31a596e812aeba17c777d3684a17130bb --- /dev/null +++ b/maze/task3/example/level6/question/2.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/example/level6/question/3.txt b/maze/task3/example/level6/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2392278d9e1d0199018de628a7134bfa62eca672 --- /dev/null +++ b/maze/task3/example/level6/question/3.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | * | _ | @ | +| Row 6 | _ | _ | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | # | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | * | _ | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | diff --git a/maze/task3/example/level6/question/4.txt b/maze/task3/example/level6/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..37b8ea8dbd9d42c60fee11a4233367ace1ddb3a2 --- /dev/null +++ b/maze/task3/example/level6/question/4.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | @ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | # | * | # | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | +| Row 6 | @ | _ | _ | _ | # | _ | diff --git a/maze/task3/example/level6/question/5.txt b/maze/task3/example/level6/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e951ac83e966a109668ac1715462a64df3de8dd --- /dev/null +++ b/maze/task3/example/level6/question/5.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | * | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | @ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/example/level6/question/6.txt b/maze/task3/example/level6/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..60d2183c7785b9cb3a5d1635b9969dea26bc5858 --- /dev/null +++ b/maze/task3/example/level6/question/6.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | # | +| Row 2 | @ | _ | _ | * | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | _ | # | _ | # | # | +| Row 5 | _ | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | # | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task3/example/level6/question/7.txt b/maze/task3/example/level6/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..559fdf3562bfc4581881bd8b13c0b5aff11170e6 --- /dev/null +++ b/maze/task3/example/level6/question/7.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | * | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | * | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | * | +| Row 5 | _ | _ | # | @ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | * | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | @ | _ | diff --git a/maze/task3/example/level7/analysis/0.txt b/maze/task3/example/level7/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a19899cc4a5b1bc54e32e881d9e1e756809bac5e --- /dev/null +++ b/maze/task3/example/level7/analysis/0.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 7-by-7 maze. We then review the candidates. +- Candidate A is a 8-by-8 maze. Candidate B is a 7-by-7 maze. Candidate C is a 5-by-5 maze. Candidate D is a 7-by-7 maze. Therefore, Candidate A and C cannot be correct. Now we only need to choose from Candidate B and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 1. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 2, column 1, matching the input image. For Candidate D, the player is located at row 4, column 4. Hence, Candidate D is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level7/analysis/1.txt b/maze/task3/example/level7/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc8a8de9a1390bcc48dba3591f2dac772965f0a5 --- /dev/null +++ b/maze/task3/example/level7/analysis/1.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 7-by-7 maze. We then review the candidates. +- Candidate A is a 7-by-7 maze. Candidate B is a 7-by-7 maze. Candidate C is a 5-by-5 maze. Candidate D is a 6-by-6 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 1. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 1, column 1, matching the input image. For Candidate B, the player is located at row 3, column 2. Hence, Candidate B is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level7/analysis/2.txt b/maze/task3/example/level7/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..25df87fe40217ecbb6f5ab931da0ba12a2a64ce8 --- /dev/null +++ b/maze/task3/example/level7/analysis/2.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 7-by-7 maze. We then review the candidates. +- Candidate A is a 7-by-7 maze. Candidate B is a 7-by-7 maze. Candidate C is a 8-by-8 maze. Candidate D is a 4-by-4 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 3, column 6. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 3, column 6, matching the input image. For Candidate A, the player is located at row 2, column 2. Hence, Candidate A is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level7/analysis/3.txt b/maze/task3/example/level7/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af1cd795f5dad5a461872404dc72a0727897594c --- /dev/null +++ b/maze/task3/example/level7/analysis/3.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 7-by-7 maze. We then review the candidates. +- Candidate A is a 7-by-7 maze. Candidate B is a 6-by-6 maze. Candidate C is a 8-by-8 maze. Candidate D is a 7-by-7 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 2, column 2. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 2, column 2, matching the input image. For Candidate A, the player is located at row 4, column 4. Hence, Candidate A is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level7/analysis/4.txt b/maze/task3/example/level7/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6ca88c13b8853dd33d069dfeee66bdd6e02504b --- /dev/null +++ b/maze/task3/example/level7/analysis/4.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 7-by-7 maze. We then review the candidates. +- Candidate A is a 7-by-7 maze. Candidate B is a 7-by-7 maze. Candidate C is a 6-by-6 maze. Candidate D is a 8-by-8 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 6, column 6. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 6, column 6, matching the input image. For Candidate B, the player is located at row 4, column 2. Hence, Candidate B is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level7/analysis/5.txt b/maze/task3/example/level7/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d828a672c52df70f829ce2d003b7eede7e192cb0 --- /dev/null +++ b/maze/task3/example/level7/analysis/5.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 7-by-7 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 3-by-3 maze. Candidate C is a 7-by-7 maze. Candidate D is a 7-by-7 maze. Therefore, Candidate A and B cannot be correct. Now we only need to choose from Candidate C and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 4. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 1, column 4, matching the input image. For Candidate C, the player is located at row 2, column 2. Hence, Candidate C is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level7/analysis/6.txt b/maze/task3/example/level7/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..f68adc0aaeddb5261e1e2eff2653a54ed44333a8 --- /dev/null +++ b/maze/task3/example/level7/analysis/6.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 7-by-7 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 7-by-7 maze. Candidate C is a 7-by-7 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate A and D cannot be correct. Now we only need to choose from Candidate B and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 7, column 4. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 7, column 4, matching the input image. For Candidate B, the player is located at row 7, column 6. Hence, Candidate B is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level7/analysis/7.txt b/maze/task3/example/level7/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6fb00f6e62e024a8f76cdc79f8db52b7dfd9531 --- /dev/null +++ b/maze/task3/example/level7/analysis/7.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 7-by-7 maze. We then review the candidates. +- Candidate A is a 7-by-7 maze. Candidate B is a 3-by-3 maze. Candidate C is a 6-by-6 maze. Candidate D is a 7-by-7 maze. Therefore, Candidate B and C cannot be correct. Now we only need to choose from Candidate A and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 3, column 7. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 3, column 7, matching the input image. For Candidate D, the player is located at row 1, column 6. Hence, Candidate D is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level7/answer/0.txt b/maze/task3/example/level7/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..0980de989a1635f6df9cb083ff24f5dbd70c9f1f --- /dev/null +++ b/maze/task3/example/level7/answer/0.txt @@ -0,0 +1,5 @@ +8-86 +7-0 +5-45 +7-75 +1 \ No newline at end of file diff --git a/maze/task3/example/level7/answer/1.txt b/maze/task3/example/level7/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf365b844282b223042567867f125084ef8a4bbc --- /dev/null +++ b/maze/task3/example/level7/answer/1.txt @@ -0,0 +1,5 @@ +7-1 +7-83 +5-95 +6-53 +0 \ No newline at end of file diff --git a/maze/task3/example/level7/answer/2.txt b/maze/task3/example/level7/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3e7b589c6ea772cf1cf4458f17a7eaf205e862c --- /dev/null +++ b/maze/task3/example/level7/answer/2.txt @@ -0,0 +1,5 @@ +7-20 +7-2 +8-89 +4-42 +1 \ No newline at end of file diff --git a/maze/task3/example/level7/answer/3.txt b/maze/task3/example/level7/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5546733fbb774c4a1fb3cd18389ddaa4db5edc0f --- /dev/null +++ b/maze/task3/example/level7/answer/3.txt @@ -0,0 +1,5 @@ +7-72 +6-90 +8-86 +7-3 +3 \ No newline at end of file diff --git a/maze/task3/example/level7/answer/4.txt b/maze/task3/example/level7/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e31659800e23710d8ea201edd7072317b626fb49 --- /dev/null +++ b/maze/task3/example/level7/answer/4.txt @@ -0,0 +1,5 @@ +7-4 +7-90 +6-98 +8-84 +0 \ No newline at end of file diff --git a/maze/task3/example/level7/answer/5.txt b/maze/task3/example/level7/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e7997cf887575b611cd7a4ba1777629b1d192fd --- /dev/null +++ b/maze/task3/example/level7/answer/5.txt @@ -0,0 +1,5 @@ +6-33 +3-89 +7-20 +7-5 +3 \ No newline at end of file diff --git a/maze/task3/example/level7/answer/6.txt b/maze/task3/example/level7/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea8b736c28c025498564ce5ba63a0be492be2fc3 --- /dev/null +++ b/maze/task3/example/level7/answer/6.txt @@ -0,0 +1,5 @@ +6-4 +7-41 +7-6 +3-63 +2 \ No newline at end of file diff --git a/maze/task3/example/level7/answer/7.txt b/maze/task3/example/level7/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0867c40a4c167c1f874e69895bae6c5404020d51 --- /dev/null +++ b/maze/task3/example/level7/answer/7.txt @@ -0,0 +1,5 @@ +7-7 +3-24 +6-70 +7-81 +0 \ No newline at end of file diff --git a/maze/task3/example/level7/img/0.png b/maze/task3/example/level7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ec1551bc3196875951ce735b1708a68b4510d1 --- /dev/null +++ b/maze/task3/example/level7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5014f95197d3d3ddf3afe8fc24c09535887996d3d7fd3f79e82f37463142386c +size 14112 diff --git a/maze/task3/example/level7/img/1.png b/maze/task3/example/level7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..acfdae826a45c55093b9926d81c97ccfd880ba03 --- /dev/null +++ b/maze/task3/example/level7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58fca51ffce43ad44ed50a44ebf2734c7833181a5f0024b64f246c49ed1dec0 +size 15711 diff --git a/maze/task3/example/level7/img/2.png b/maze/task3/example/level7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ac3120a0a61d7484cde99938f75e83082a227856 --- /dev/null +++ b/maze/task3/example/level7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f467c453083203e3ee6d34ee52a453b8113684c87288806198671fd66be28aab +size 15809 diff --git a/maze/task3/example/level7/img/3.png b/maze/task3/example/level7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a5f97c578c9765d72cf5f8f0dd25d0faebf43d2 --- /dev/null +++ b/maze/task3/example/level7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df03093c5def2a84fe1c2a460af82d6cbd3cd6b86110148806155f6731c00560 +size 15029 diff --git a/maze/task3/example/level7/img/4.png b/maze/task3/example/level7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bb620b2bc07802f2d6e34fdc5d8467cedc7f6b57 --- /dev/null +++ b/maze/task3/example/level7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:302afbde7ca6415b9524ccabdc42f208acce43a38c01db96b3576afd13be269a +size 14954 diff --git a/maze/task3/example/level7/img/5.png b/maze/task3/example/level7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ac69a1dddc59806acd1115f04ff7eb5684b2cde1 --- /dev/null +++ b/maze/task3/example/level7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64408ebc8a3e79693a7f09ae27fbd4c9cdffb80b8d4a9761fd9449975ac17a29 +size 14163 diff --git a/maze/task3/example/level7/img/6.png b/maze/task3/example/level7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9c2ab52c9f5ad45925658de8a8427382525ee32a --- /dev/null +++ b/maze/task3/example/level7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b081e9cb6d5c7eb6969ddd660a32ba6b08d0bf1b9468bf1664fee7358c5a6f1 +size 14807 diff --git a/maze/task3/example/level7/img/7.png b/maze/task3/example/level7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0785bcbda7c123b12ed87650ee67149c2ee12dac --- /dev/null +++ b/maze/task3/example/level7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b393373dbb991c34f9f42fbac316ce0f565fc4a0af85fbda9ac6df46935d888 +size 14982 diff --git a/maze/task3/example/level7/question/0.txt b/maze/task3/example/level7/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..12e31b67b8725c315be4bd3dc50335f1ebd64bd2 --- /dev/null +++ b/maze/task3/example/level7/question/0.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | # | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | # | _ | * | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task3/example/level7/question/1.txt b/maze/task3/example/level7/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e428de87fecdbfa3189058b77f4e199a833e06d1 --- /dev/null +++ b/maze/task3/example/level7/question/1.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | _ | _ | # | * | _ | diff --git a/maze/task3/example/level7/question/2.txt b/maze/task3/example/level7/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b4720c639234a1d9c59ba0488028783c1734943 --- /dev/null +++ b/maze/task3/example/level7/question/2.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | _ | # | +| Row 3 | * | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | @ | # | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | # | +| Row 8 | _ | # | # | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task3/example/level7/question/3.txt b/maze/task3/example/level7/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..c82fe81d97e01619557106e2149d34d62c372512 --- /dev/null +++ b/maze/task3/example/level7/question/3.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | # | +| Row 2 | _ | # | * | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | # | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | # | @ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/example/level7/question/4.txt b/maze/task3/example/level7/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae10022087bf7a0377d508dfc66c4db8afdddb3c --- /dev/null +++ b/maze/task3/example/level7/question/4.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | @ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | * | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | * | # | # | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/example/level7/question/5.txt b/maze/task3/example/level7/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a47e9e927b43d4632f6678632f759bade81c413f --- /dev/null +++ b/maze/task3/example/level7/question/5.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | @ | _ | +| Row 5 | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | @ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | _ | # | +| Row 3 | * | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | @ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/example/level7/question/6.txt b/maze/task3/example/level7/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..47b7454960a2e447397fe162671efaed3478cb40 --- /dev/null +++ b/maze/task3/example/level7/question/6.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | @ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | diff --git a/maze/task3/example/level7/question/7.txt b/maze/task3/example/level7/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a68026b9370f6ac086167deeb5a55423065801a --- /dev/null +++ b/maze/task3/example/level7/question/7.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | @ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | * | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | _ | _ | +| Row 2 | * | _ | # | _ | _ | @ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | @ | _ | +| Row 2 | # | * | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/example/level8/analysis/0.txt b/maze/task3/example/level8/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..0573415353986963381e6ca9936683836e846d19 --- /dev/null +++ b/maze/task3/example/level8/analysis/0.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 8-by-8 maze. We then review the candidates. +- Candidate A is a 8-by-8 maze. Candidate B is a 4-by-4 maze. Candidate C is a 8-by-8 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate B and D cannot be correct. Now we only need to choose from Candidate A and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 3, column 6. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 3, column 6, matching the input image. For Candidate A, the player is located at row 1, column 4. Hence, Candidate A is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level8/analysis/1.txt b/maze/task3/example/level8/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..093f2a59fe5c728795ff1dd3f02a22b3595a5005 --- /dev/null +++ b/maze/task3/example/level8/analysis/1.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 8-by-8 maze. We then review the candidates. +- Candidate A is a 8-by-8 maze. Candidate B is a 8-by-8 maze. Candidate C is a 4-by-4 maze. Candidate D is a 3-by-3 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 8, column 2. We then check the remaining candidates. For Candidate A, the textual representation indicates the player is also at row 8, column 2, matching the input image. For Candidate B, the player is located at row 4, column 4. Hence, Candidate B is not the correct answer. + A \ No newline at end of file diff --git a/maze/task3/example/level8/analysis/2.txt b/maze/task3/example/level8/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d20707fafa4ab4836c7407727854583f1a5af4aa --- /dev/null +++ b/maze/task3/example/level8/analysis/2.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 8-by-8 maze. We then review the candidates. +- Candidate A is a 8-by-8 maze. Candidate B is a 8-by-8 maze. Candidate C is a 3-by-3 maze. Candidate D is a 4-by-4 maze. Therefore, Candidate C and D cannot be correct. Now we only need to choose from Candidate A and B. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 5, column 3. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 5, column 3, matching the input image. For Candidate A, the player is located at row 3, column 4. Hence, Candidate A is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level8/analysis/3.txt b/maze/task3/example/level8/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6152df7437c21f03752135ea90c62cc0135fcc8 --- /dev/null +++ b/maze/task3/example/level8/analysis/3.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 8-by-8 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 8-by-8 maze. Candidate C is a 8-by-8 maze. Candidate D is a 7-by-7 maze. Therefore, Candidate A and D cannot be correct. Now we only need to choose from Candidate B and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 5, column 4. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 5, column 4, matching the input image. For Candidate B, the player is located at row 8, column 8. Hence, Candidate B is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level8/analysis/4.txt b/maze/task3/example/level8/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..55e21536eeeef1ede2ac6d4860eb9505f1f2f462 --- /dev/null +++ b/maze/task3/example/level8/analysis/4.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 8-by-8 maze. We then review the candidates. +- Candidate A is a 8-by-8 maze. Candidate B is a 3-by-3 maze. Candidate C is a 8-by-8 maze. Candidate D is a 5-by-5 maze. Therefore, Candidate B and D cannot be correct. Now we only need to choose from Candidate A and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 8, column 3. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 8, column 3, matching the input image. For Candidate A, the player is located at row 3, column 2. Hence, Candidate A is not the correct answer. + C \ No newline at end of file diff --git a/maze/task3/example/level8/analysis/5.txt b/maze/task3/example/level8/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..391f16c0437ee60c2d277d174ddd3966abe5ece6 --- /dev/null +++ b/maze/task3/example/level8/analysis/5.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 8-by-8 maze. We then review the candidates. +- Candidate A is a 4-by-4 maze. Candidate B is a 8-by-8 maze. Candidate C is a 5-by-5 maze. Candidate D is a 8-by-8 maze. Therefore, Candidate A and C cannot be correct. Now we only need to choose from Candidate B and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 6, column 8. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 6, column 8, matching the input image. For Candidate D, the player is located at row 5, column 7. Hence, Candidate D is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level8/analysis/6.txt b/maze/task3/example/level8/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..51474682014a0c938188c454a56a18a4e79a92d4 --- /dev/null +++ b/maze/task3/example/level8/analysis/6.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 8-by-8 maze. We then review the candidates. +- Candidate A is a 5-by-5 maze. Candidate B is a 7-by-7 maze. Candidate C is a 8-by-8 maze. Candidate D is a 8-by-8 maze. Therefore, Candidate A and B cannot be correct. Now we only need to choose from Candidate C and D. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 7, column 3. We then check the remaining candidates. For Candidate D, the textual representation indicates the player is also at row 7, column 3, matching the input image. For Candidate C, the player is located at row 5, column 7. Hence, Candidate C is not the correct answer. + D \ No newline at end of file diff --git a/maze/task3/example/level8/analysis/7.txt b/maze/task3/example/level8/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5bbeca42ad6915792b98be73c5ed03ad4b4a1e2 --- /dev/null +++ b/maze/task3/example/level8/analysis/7.txt @@ -0,0 +1,7 @@ + +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 8-by-8 maze. We then review the candidates. +- Candidate A is a 6-by-6 maze. Candidate B is a 8-by-8 maze. Candidate C is a 8-by-8 maze. Candidate D is a 7-by-7 maze. Therefore, Candidate A and D cannot be correct. Now we only need to choose from Candidate B and C. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 6, column 2. We then check the remaining candidates. For Candidate B, the textual representation indicates the player is also at row 6, column 2, matching the input image. For Candidate C, the player is located at row 5, column 1. Hence, Candidate C is not the correct answer. + B \ No newline at end of file diff --git a/maze/task3/example/level8/answer/0.txt b/maze/task3/example/level8/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..973f4e361274093e1598da6839932a7cc0ed738c --- /dev/null +++ b/maze/task3/example/level8/answer/0.txt @@ -0,0 +1,5 @@ +8-53 +4-51 +8-0 +3-86 +2 \ No newline at end of file diff --git a/maze/task3/example/level8/answer/1.txt b/maze/task3/example/level8/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..248f2390ef1a799b0a92adf7e2881f7e3eed79ae --- /dev/null +++ b/maze/task3/example/level8/answer/1.txt @@ -0,0 +1,5 @@ +8-1 +8-0 +4-91 +3-96 +0 \ No newline at end of file diff --git a/maze/task3/example/level8/answer/2.txt b/maze/task3/example/level8/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3f44c94bd4954d64084a446b2571ccdf80fd112 --- /dev/null +++ b/maze/task3/example/level8/answer/2.txt @@ -0,0 +1,5 @@ +8-88 +8-2 +3-38 +4-35 +1 \ No newline at end of file diff --git a/maze/task3/example/level8/answer/3.txt b/maze/task3/example/level8/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef1fb0e7d3640658d8e25d6434c7f1d5dddaa1f6 --- /dev/null +++ b/maze/task3/example/level8/answer/3.txt @@ -0,0 +1,5 @@ +6-80 +8-2 +8-3 +7-10 +2 \ No newline at end of file diff --git a/maze/task3/example/level8/answer/4.txt b/maze/task3/example/level8/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e12515c50e5921f5fa78673429277665f5706109 --- /dev/null +++ b/maze/task3/example/level8/answer/4.txt @@ -0,0 +1,5 @@ +8-66 +3-17 +8-4 +5-83 +2 \ No newline at end of file diff --git a/maze/task3/example/level8/answer/5.txt b/maze/task3/example/level8/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e656a1516bee2bc5e943ce26c09295815143ead --- /dev/null +++ b/maze/task3/example/level8/answer/5.txt @@ -0,0 +1,5 @@ +4-2 +8-5 +5-5 +8-5 +1 \ No newline at end of file diff --git a/maze/task3/example/level8/answer/6.txt b/maze/task3/example/level8/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f424523855e7ed8816bebc8928f8de224b75d35 --- /dev/null +++ b/maze/task3/example/level8/answer/6.txt @@ -0,0 +1,5 @@ +5-46 +7-72 +8-5 +8-6 +3 \ No newline at end of file diff --git a/maze/task3/example/level8/answer/7.txt b/maze/task3/example/level8/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..a52c4836b7ff6d9a788382305e7a86202e2fc4bb --- /dev/null +++ b/maze/task3/example/level8/answer/7.txt @@ -0,0 +1,5 @@ +6-47 +8-7 +8-22 +7-68 +1 \ No newline at end of file diff --git a/maze/task3/example/level8/img/0.png b/maze/task3/example/level8/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..337ebfe0bf0385cb5552db4b44a7ff6875a2c1ed --- /dev/null +++ b/maze/task3/example/level8/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59fef933ba83a82905985d36241435f5acc0ca055bd5d9bcd55748c3c4ebf0e +size 15903 diff --git a/maze/task3/example/level8/img/1.png b/maze/task3/example/level8/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b821251a8a62b6456abd1dc562c7289f1cb80806 --- /dev/null +++ b/maze/task3/example/level8/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34e301b3323653d4418a6b501c9e2c7c0061ca4012e161a65fff949ac7d43777 +size 18828 diff --git a/maze/task3/example/level8/img/2.png b/maze/task3/example/level8/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4b6cfbe87a3363dd0ffc68859cce0999ceb73f15 --- /dev/null +++ b/maze/task3/example/level8/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f830e159b04105b6d4975a3618431a29cde2a7a61fcdb3871d7b47b5551bdd0b +size 17638 diff --git a/maze/task3/example/level8/img/3.png b/maze/task3/example/level8/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d19e1a9bc9810ccde9dbd5df358e2fe1eb91db8a --- /dev/null +++ b/maze/task3/example/level8/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4890877ad18be6539d4337e363caa5d557b6476520284f89ee6b4be7a2979dce +size 17009 diff --git a/maze/task3/example/level8/img/4.png b/maze/task3/example/level8/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8967ffd22cd05bcb20ced1a8a407a3ab80cf341b --- /dev/null +++ b/maze/task3/example/level8/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7bd4a0d2a019ead8cc553f161f145c3e65d080bedc0e4d5c9398ea1e85b3277 +size 17959 diff --git a/maze/task3/example/level8/img/5.png b/maze/task3/example/level8/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a8e00b9257dbac158a625faaa3adf15a3e3c1651 --- /dev/null +++ b/maze/task3/example/level8/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:413fb9be59b95adba36ef6a7e1bd2d1f791576c008fb4c280b3deaa8d49efe38 +size 19535 diff --git a/maze/task3/example/level8/img/6.png b/maze/task3/example/level8/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..183c914616316b65475bb60cc3bba6119b022100 --- /dev/null +++ b/maze/task3/example/level8/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563a23d525cb9ef5e1742a93572439398d755eb1e3d930a3ef211128de0c1a56 +size 17009 diff --git a/maze/task3/example/level8/img/7.png b/maze/task3/example/level8/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0b371075a311b61b6eef8ae530480d52a527e376 --- /dev/null +++ b/maze/task3/example/level8/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093ccfe263bd159c6d6b41adf2cfb95e3963e57cd5aa33be23067999e0860df1 +size 18721 diff --git a/maze/task3/example/level8/question/0.txt b/maze/task3/example/level8/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..37951ae8336a0f6fbcdc4f2e692a75027a532502 --- /dev/null +++ b/maze/task3/example/level8/question/0.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | @ | _ | # | # | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | +| Row 4 | # | _ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | # | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | @ | +| Row 2 | _ | _ | # | +| Row 3 | # | _ | _ | diff --git a/maze/task3/example/level8/question/1.txt b/maze/task3/example/level8/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cb1a7710ac00557ff2c281b4a6ba4e790814bab --- /dev/null +++ b/maze/task3/example/level8/question/1.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | _ | # | _ | +| Row 5 | # | # | _ | # | _ | _ | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | * | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | @ | _ | # | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | # | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/example/level8/question/2.txt b/maze/task3/example/level8/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b777a89fd1dd60afed55b87df6e0453df4e0850 --- /dev/null +++ b/maze/task3/example/level8/question/2.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | * | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/example/level8/question/3.txt b/maze/task3/example/level8/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ede709d54947b8420abeda82fb66ee2fd814a02 --- /dev/null +++ b/maze/task3/example/level8/question/3.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | * | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | # | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | @ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | * | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/example/level8/question/4.txt b/maze/task3/example/level8/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..357f9cc7cffb575d553527bec296dd3835c3c488 --- /dev/null +++ b/maze/task3/example/level8/question/4.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | # | _ | +| Row 2 | _ | # | _ | * | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | # | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | * | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | * | # | # | _ | _ | _ | # | # | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | @ | # | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | # | diff --git a/maze/task3/example/level8/question/5.txt b/maze/task3/example/level8/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..91d7e42c79565b0d5a9fc1c71b94aabab0fc1297 --- /dev/null +++ b/maze/task3/example/level8/question/5.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | # | _ | @ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | * | # | +| Row 2 | _ | # | _ | _ | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/example/level8/question/6.txt b/maze/task3/example/level8/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cf1aa30f0b2648002dc3efe484412fce25fff73 --- /dev/null +++ b/maze/task3/example/level8/question/6.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | # | +| Row 2 | _ | # | * | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | * | # | +| Row 2 | _ | # | _ | _ | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | # | _ | _ | +| Row 7 | _ | _ | @ | _ | * | _ | _ | _ | +| Row 8 | _ | # | _ | _ | # | # | _ | _ | diff --git a/maze/task3/example/level8/question/7.txt b/maze/task3/example/level8/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed3c55607214e8c3e2bf04488a00437b499d196c --- /dev/null +++ b/maze/task3/example/level8/question/7.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | * | # | _ | +| Row 6 | _ | @ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | # | # | # | +| Row 8 | _ | _ | # | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | @ | _ | # | # | _ | _ | _ | _ | +| Row 6 | * | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | diff --git a/maze/task3/maps/level3/answer/0.txt b/maze/task3/maps/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d442a934e642b337bfd2a66ac178ac619b40d53 --- /dev/null +++ b/maze/task3/maps/level3/answer/0.txt @@ -0,0 +1,5 @@ +5-32 +3-64 +4-15 +3-0 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/1.txt b/maze/task3/maps/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..61159331d7ccae2ef55f0c3193ed0b51448c8b5f --- /dev/null +++ b/maze/task3/maps/level3/answer/1.txt @@ -0,0 +1,5 @@ +7-12 +3-4 +5-62 +3-1 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/10.txt b/maze/task3/maps/level3/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..b65f8716ffba9977daf82f2d35405f5a914b523f --- /dev/null +++ b/maze/task3/maps/level3/answer/10.txt @@ -0,0 +1,5 @@ +3-87 +5-70 +3-10 +6-89 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/11.txt b/maze/task3/maps/level3/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6ddda19957ac0ef098e4f8834b89f4f34b0eac7 --- /dev/null +++ b/maze/task3/maps/level3/answer/11.txt @@ -0,0 +1,5 @@ +7-99 +3-67 +4-20 +3-11 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/12.txt b/maze/task3/maps/level3/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed4d2357874428ee2c896f81da5799390c3e2891 --- /dev/null +++ b/maze/task3/maps/level3/answer/12.txt @@ -0,0 +1,5 @@ +7-60 +4-5 +3-40 +3-12 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/13.txt b/maze/task3/maps/level3/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..be5c95ddfc082a7b570bf67490abe889bcbaec8a --- /dev/null +++ b/maze/task3/maps/level3/answer/13.txt @@ -0,0 +1,5 @@ +5-64 +3-13 +8-29 +3-1 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/14.txt b/maze/task3/maps/level3/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8fa639940870866cd637dd659989d928bd539b7 --- /dev/null +++ b/maze/task3/maps/level3/answer/14.txt @@ -0,0 +1,5 @@ +8-51 +3-45 +3-14 +5-65 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/15.txt b/maze/task3/maps/level3/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..85ea78b481350b1fec93726a19b8a5ba9d011186 --- /dev/null +++ b/maze/task3/maps/level3/answer/15.txt @@ -0,0 +1,5 @@ +6-49 +3-15 +4-94 +3-66 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/16.txt b/maze/task3/maps/level3/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..97ea14da80cf7e2277bd947624300d9000d6063d --- /dev/null +++ b/maze/task3/maps/level3/answer/16.txt @@ -0,0 +1,5 @@ +8-54 +5-7 +3-16 +3-62 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/17.txt b/maze/task3/maps/level3/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9965cb617bde795425f58f5b54df6ea4a39fa1c --- /dev/null +++ b/maze/task3/maps/level3/answer/17.txt @@ -0,0 +1,5 @@ +8-64 +3-63 +3-17 +5-52 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/18.txt b/maze/task3/maps/level3/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..02e21747ba7fea2962d362aa1f927976de7504a4 --- /dev/null +++ b/maze/task3/maps/level3/answer/18.txt @@ -0,0 +1,5 @@ +6-68 +3-80 +3-18 +4-69 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/19.txt b/maze/task3/maps/level3/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..b61012a9c1edeab8268c50f17f9d8fad98253d9e --- /dev/null +++ b/maze/task3/maps/level3/answer/19.txt @@ -0,0 +1,5 @@ +3-23 +3-19 +8-29 +4-81 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/2.txt b/maze/task3/maps/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb53001532b68b9991998a18a0baf2a0bf85ebe8 --- /dev/null +++ b/maze/task3/maps/level3/answer/2.txt @@ -0,0 +1,5 @@ +8-89 +3-2 +4-57 +3-35 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/20.txt b/maze/task3/maps/level3/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..df635af5c8f08bf662abdd04da39fcdb999e3320 --- /dev/null +++ b/maze/task3/maps/level3/answer/20.txt @@ -0,0 +1,5 @@ +3-20 +3-9 +8-4 +6-86 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/21.txt b/maze/task3/maps/level3/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..755d74222394c16d6bf89e0b994156b279679ac1 --- /dev/null +++ b/maze/task3/maps/level3/answer/21.txt @@ -0,0 +1,5 @@ +7-96 +3-21 +3-36 +4-96 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/22.txt b/maze/task3/maps/level3/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..684b55868f46dde7db09a26d23a22938172717bd --- /dev/null +++ b/maze/task3/maps/level3/answer/22.txt @@ -0,0 +1,5 @@ +3-8 +3-22 +4-44 +5-37 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/23.txt b/maze/task3/maps/level3/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6722be8abf1fdd4dead258b7048ae3ac6d847ee --- /dev/null +++ b/maze/task3/maps/level3/answer/23.txt @@ -0,0 +1,5 @@ +6-84 +3-83 +3-23 +5-34 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/24.txt b/maze/task3/maps/level3/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d1f08ba5ad456576e1bfc080d70c01ab38629a0 --- /dev/null +++ b/maze/task3/maps/level3/answer/24.txt @@ -0,0 +1,5 @@ +6-60 +3-3 +3-24 +7-14 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/25.txt b/maze/task3/maps/level3/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b0065d90ba4a28ae1e6d1b10f6b91fcd95f9ccf --- /dev/null +++ b/maze/task3/maps/level3/answer/25.txt @@ -0,0 +1,5 @@ +6-24 +7-33 +3-25 +3-13 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/26.txt b/maze/task3/maps/level3/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..12b8ff2dc9d317c378b237d209e18cb20d7b6bda --- /dev/null +++ b/maze/task3/maps/level3/answer/26.txt @@ -0,0 +1,5 @@ +3-2 +3-26 +8-77 +5-55 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/27.txt b/maze/task3/maps/level3/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..44e21d5f04141bde53391a2cc9ef4ed8bef71fcc --- /dev/null +++ b/maze/task3/maps/level3/answer/27.txt @@ -0,0 +1,5 @@ +7-4 +5-92 +3-20 +3-27 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/28.txt b/maze/task3/maps/level3/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ce2da212e42ed93334d72f02e6d73bd8b251f0d --- /dev/null +++ b/maze/task3/maps/level3/answer/28.txt @@ -0,0 +1,5 @@ +3-81 +8-69 +7-28 +3-28 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/29.txt b/maze/task3/maps/level3/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e11ffc9ef369993b69b2121f96ee00dc5340847 --- /dev/null +++ b/maze/task3/maps/level3/answer/29.txt @@ -0,0 +1,5 @@ +8-50 +4-86 +3-29 +3-74 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/3.txt b/maze/task3/maps/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e58fc144192c44699230ed116947d7b1639139e3 --- /dev/null +++ b/maze/task3/maps/level3/answer/3.txt @@ -0,0 +1,5 @@ +3-3 +4-3 +3-4 +6-2 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/30.txt b/maze/task3/maps/level3/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..39747b11a6158e7341799ec04d408806236181f2 --- /dev/null +++ b/maze/task3/maps/level3/answer/30.txt @@ -0,0 +1,5 @@ +3-16 +3-30 +7-94 +4-38 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/31.txt b/maze/task3/maps/level3/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..689442358d7265f31d583e520c125f5003c9eee6 --- /dev/null +++ b/maze/task3/maps/level3/answer/31.txt @@ -0,0 +1,5 @@ +6-9 +3-31 +3-39 +4-39 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/32.txt b/maze/task3/maps/level3/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d5d9c203f756adb805308d079b4cc50933eba6 --- /dev/null +++ b/maze/task3/maps/level3/answer/32.txt @@ -0,0 +1,5 @@ +3-32 +8-16 +6-1 +3-72 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/33.txt b/maze/task3/maps/level3/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..16dd700be88f4f7ba4f61d7d3616c4013d1f9bed --- /dev/null +++ b/maze/task3/maps/level3/answer/33.txt @@ -0,0 +1,5 @@ +3-33 +5-21 +3-91 +7-99 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/34.txt b/maze/task3/maps/level3/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..3600af2047a3596ef8c3c38811e1fe28fda84278 --- /dev/null +++ b/maze/task3/maps/level3/answer/34.txt @@ -0,0 +1,5 @@ +5-12 +6-26 +3-74 +3-34 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/35.txt b/maze/task3/maps/level3/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a861f2b196a2cba52cd6eff4e1fd189a61559c7 --- /dev/null +++ b/maze/task3/maps/level3/answer/35.txt @@ -0,0 +1,5 @@ +5-13 +7-85 +3-35 +3-50 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/36.txt b/maze/task3/maps/level3/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdca4948e96a98d9e8cc59074786e139c969bfbf --- /dev/null +++ b/maze/task3/maps/level3/answer/36.txt @@ -0,0 +1,5 @@ +3-52 +7-41 +3-36 +4-78 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/37.txt b/maze/task3/maps/level3/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..17c7f2ad1d40d5b9a45667294e4cb7c9653bfb6c --- /dev/null +++ b/maze/task3/maps/level3/answer/37.txt @@ -0,0 +1,5 @@ +5-41 +3-17 +3-37 +8-72 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/38.txt b/maze/task3/maps/level3/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a83330a2217cc2a27b932adeeab16c7e189af0a --- /dev/null +++ b/maze/task3/maps/level3/answer/38.txt @@ -0,0 +1,5 @@ +5-86 +6-12 +3-38 +3-49 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/39.txt b/maze/task3/maps/level3/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e528661f6da6824ac6df6ab38ea5a6da0b968cdf --- /dev/null +++ b/maze/task3/maps/level3/answer/39.txt @@ -0,0 +1,5 @@ +3-39 +8-98 +7-68 +3-30 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/4.txt b/maze/task3/maps/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..09885e97e21df36aad541487e514dc936c26591c --- /dev/null +++ b/maze/task3/maps/level3/answer/4.txt @@ -0,0 +1,5 @@ +5-92 +3-4 +3-68 +7-3 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/40.txt b/maze/task3/maps/level3/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..357bbe24ac16463cb87d17bc99a0382d8dcc5fbe --- /dev/null +++ b/maze/task3/maps/level3/answer/40.txt @@ -0,0 +1,5 @@ +4-17 +3-40 +3-21 +8-21 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/41.txt b/maze/task3/maps/level3/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf75f85e38b8cb916c23da7305f270f336504c30 --- /dev/null +++ b/maze/task3/maps/level3/answer/41.txt @@ -0,0 +1,5 @@ +3-41 +6-47 +3-44 +8-43 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/42.txt b/maze/task3/maps/level3/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce2c916a7046a29a537a6a2895cda7ab8c4069be --- /dev/null +++ b/maze/task3/maps/level3/answer/42.txt @@ -0,0 +1,5 @@ +3-42 +5-17 +3-71 +7-74 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/43.txt b/maze/task3/maps/level3/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..96e8bd41e06a073e4224c01ba793b7e623002862 --- /dev/null +++ b/maze/task3/maps/level3/answer/43.txt @@ -0,0 +1,5 @@ +4-9 +3-43 +3-18 +7-48 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/44.txt b/maze/task3/maps/level3/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..466a209d4ea3952c7322faf252f41f62d94672b6 --- /dev/null +++ b/maze/task3/maps/level3/answer/44.txt @@ -0,0 +1,5 @@ +4-9 +3-44 +7-73 +3-71 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/45.txt b/maze/task3/maps/level3/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e3e99d6a9d91594a1189530ae8af4c4d75ce87a --- /dev/null +++ b/maze/task3/maps/level3/answer/45.txt @@ -0,0 +1,5 @@ +3-45 +4-46 +3-73 +6-37 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/46.txt b/maze/task3/maps/level3/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..ace51cbefa29c0cb5ec47de941568c63cf45ad43 --- /dev/null +++ b/maze/task3/maps/level3/answer/46.txt @@ -0,0 +1,5 @@ +3-46 +3-1 +6-5 +4-37 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/47.txt b/maze/task3/maps/level3/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..450729728a906cf0ca5f27f383e5f82068518aae --- /dev/null +++ b/maze/task3/maps/level3/answer/47.txt @@ -0,0 +1,5 @@ +3-30 +7-5 +4-24 +3-47 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/48.txt b/maze/task3/maps/level3/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..aef28932d965147fd3605fc16364cbb301052ee0 --- /dev/null +++ b/maze/task3/maps/level3/answer/48.txt @@ -0,0 +1,5 @@ +4-21 +3-48 +7-87 +3-30 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/49.txt b/maze/task3/maps/level3/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..836f12f03b8c36cda9d73a5c7dc6f65b1d548d5c --- /dev/null +++ b/maze/task3/maps/level3/answer/49.txt @@ -0,0 +1,5 @@ +4-48 +7-69 +3-49 +3-37 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/5.txt b/maze/task3/maps/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe7b1de60cdc58f32f765113fec21ffe439b0996 --- /dev/null +++ b/maze/task3/maps/level3/answer/5.txt @@ -0,0 +1,5 @@ +7-44 +3-5 +3-87 +5-29 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/50.txt b/maze/task3/maps/level3/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2e3bea1c54db5abb7baca993092d2ffbedb1d8c --- /dev/null +++ b/maze/task3/maps/level3/answer/50.txt @@ -0,0 +1,5 @@ +3-84 +7-12 +3-50 +6-26 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/51.txt b/maze/task3/maps/level3/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf66579bc31956a04664424a9cb15e47bc0d57b1 --- /dev/null +++ b/maze/task3/maps/level3/answer/51.txt @@ -0,0 +1,5 @@ +4-37 +3-77 +3-51 +8-92 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/52.txt b/maze/task3/maps/level3/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..30a64c6c9db485f79cff440dca59e15ac0090d48 --- /dev/null +++ b/maze/task3/maps/level3/answer/52.txt @@ -0,0 +1,5 @@ +7-51 +6-8 +3-52 +3-8 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/53.txt b/maze/task3/maps/level3/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7bada86a0f1f7e7d814103215416740ec9af9cf --- /dev/null +++ b/maze/task3/maps/level3/answer/53.txt @@ -0,0 +1,5 @@ +7-32 +4-27 +3-80 +3-53 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/54.txt b/maze/task3/maps/level3/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb85ede0facf0b87714c6ff02599a25c79543acb --- /dev/null +++ b/maze/task3/maps/level3/answer/54.txt @@ -0,0 +1,5 @@ +3-26 +6-23 +3-54 +8-69 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/55.txt b/maze/task3/maps/level3/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dcfcb47d0182c4cb134678c04a21e19bdf7234d --- /dev/null +++ b/maze/task3/maps/level3/answer/55.txt @@ -0,0 +1,5 @@ +3-11 +5-10 +6-35 +3-55 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/56.txt b/maze/task3/maps/level3/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6bf31755b85717a919a7da33dc4977048b90dfd --- /dev/null +++ b/maze/task3/maps/level3/answer/56.txt @@ -0,0 +1,5 @@ +3-56 +8-29 +3-39 +6-49 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/57.txt b/maze/task3/maps/level3/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9c0dafc26c4b7e23aaa9ee3ba025a1da0d695fd --- /dev/null +++ b/maze/task3/maps/level3/answer/57.txt @@ -0,0 +1,5 @@ +3-31 +5-74 +3-57 +6-38 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/58.txt b/maze/task3/maps/level3/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..90de2c9800af1af174f032446070df6a9d0fb17d --- /dev/null +++ b/maze/task3/maps/level3/answer/58.txt @@ -0,0 +1,5 @@ +8-31 +3-58 +3-2 +4-28 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/59.txt b/maze/task3/maps/level3/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..abdead5280e335ae5b43d1fb091705efa35665c6 --- /dev/null +++ b/maze/task3/maps/level3/answer/59.txt @@ -0,0 +1,5 @@ +3-59 +3-94 +4-70 +6-9 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/6.txt b/maze/task3/maps/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cc9bcc5cdcfafe91ac06acadc6728866a4cec48 --- /dev/null +++ b/maze/task3/maps/level3/answer/6.txt @@ -0,0 +1,5 @@ +3-6 +3-83 +6-53 +4-71 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/60.txt b/maze/task3/maps/level3/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..388ca1e1422a67d1722ca11f5b773fc3dab76d9d --- /dev/null +++ b/maze/task3/maps/level3/answer/60.txt @@ -0,0 +1,5 @@ +3-64 +4-96 +6-45 +3-60 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/61.txt b/maze/task3/maps/level3/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce4bf444e4f91279ccd7adadc9900bee55caee47 --- /dev/null +++ b/maze/task3/maps/level3/answer/61.txt @@ -0,0 +1,5 @@ +3-86 +3-61 +4-9 +6-65 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/62.txt b/maze/task3/maps/level3/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5137645b08268e4b87472c1b1583638930e2d59 --- /dev/null +++ b/maze/task3/maps/level3/answer/62.txt @@ -0,0 +1,5 @@ +3-13 +5-40 +3-62 +8-39 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/63.txt b/maze/task3/maps/level3/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..e336322c84fbdc865208d1b6a8701ca9e6ef1031 --- /dev/null +++ b/maze/task3/maps/level3/answer/63.txt @@ -0,0 +1,5 @@ +5-69 +8-92 +3-63 +3-4 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/64.txt b/maze/task3/maps/level3/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf62922c659cf34acbf23ffcc08b938726dbdeb6 --- /dev/null +++ b/maze/task3/maps/level3/answer/64.txt @@ -0,0 +1,5 @@ +3-55 +3-64 +8-22 +5-38 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/65.txt b/maze/task3/maps/level3/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b908844c572d8e5b2b63a0b30321075498b2254 --- /dev/null +++ b/maze/task3/maps/level3/answer/65.txt @@ -0,0 +1,5 @@ +5-99 +3-88 +6-8 +3-65 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/66.txt b/maze/task3/maps/level3/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdda61c158b7297dfabfda6dab946b85d0f29177 --- /dev/null +++ b/maze/task3/maps/level3/answer/66.txt @@ -0,0 +1,5 @@ +3-69 +8-69 +6-56 +3-66 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/67.txt b/maze/task3/maps/level3/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b99f5ac82c3c02d5f2b29849ce91f3b2a440742 --- /dev/null +++ b/maze/task3/maps/level3/answer/67.txt @@ -0,0 +1,5 @@ +3-67 +7-21 +6-33 +3-62 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/68.txt b/maze/task3/maps/level3/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb39f402527f89bd9ccf597bdcf9f0cabf45c5e4 --- /dev/null +++ b/maze/task3/maps/level3/answer/68.txt @@ -0,0 +1,5 @@ +7-7 +3-68 +4-88 +3-45 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/69.txt b/maze/task3/maps/level3/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d23d57b687084f415c2ea921e3fb10507da745f --- /dev/null +++ b/maze/task3/maps/level3/answer/69.txt @@ -0,0 +1,5 @@ +3-50 +5-33 +8-35 +3-69 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/7.txt b/maze/task3/maps/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..28ba50a755726c53310315456e31aefceea08b0e --- /dev/null +++ b/maze/task3/maps/level3/answer/7.txt @@ -0,0 +1,5 @@ +6-95 +4-42 +3-93 +3-7 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/70.txt b/maze/task3/maps/level3/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f4a60c9f8d1b6bf79fed701f854e491397b7443 --- /dev/null +++ b/maze/task3/maps/level3/answer/70.txt @@ -0,0 +1,5 @@ +8-29 +3-70 +4-62 +3-0 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/71.txt b/maze/task3/maps/level3/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d0bbcbba2b6d25a95b372587cca830088cdb15e --- /dev/null +++ b/maze/task3/maps/level3/answer/71.txt @@ -0,0 +1,5 @@ +3-94 +3-71 +6-87 +7-81 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/72.txt b/maze/task3/maps/level3/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..00083311003033b24cab217a0664cceeb87ce59f --- /dev/null +++ b/maze/task3/maps/level3/answer/72.txt @@ -0,0 +1,5 @@ +6-87 +3-28 +7-61 +3-72 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/73.txt b/maze/task3/maps/level3/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f52e5aac8ce1432ad527d448932710887a7c408 --- /dev/null +++ b/maze/task3/maps/level3/answer/73.txt @@ -0,0 +1,5 @@ +3-73 +8-82 +6-28 +3-6 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/74.txt b/maze/task3/maps/level3/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2baee3033b0084447baf8152a8bf6007008494fb --- /dev/null +++ b/maze/task3/maps/level3/answer/74.txt @@ -0,0 +1,5 @@ +6-65 +3-26 +3-74 +5-98 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/75.txt b/maze/task3/maps/level3/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..85353652bdfa29454bb6c6e5fe6ea36b2a27db0a --- /dev/null +++ b/maze/task3/maps/level3/answer/75.txt @@ -0,0 +1,5 @@ +6-21 +8-89 +3-90 +3-75 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/76.txt b/maze/task3/maps/level3/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..499fd1c07690a92d4760a2193560187b2a841382 --- /dev/null +++ b/maze/task3/maps/level3/answer/76.txt @@ -0,0 +1,5 @@ +3-73 +4-77 +8-65 +3-76 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/77.txt b/maze/task3/maps/level3/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..a32257bc0c2542cfbaa80b1f5b277928b944b497 --- /dev/null +++ b/maze/task3/maps/level3/answer/77.txt @@ -0,0 +1,5 @@ +3-77 +5-54 +3-72 +6-27 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/78.txt b/maze/task3/maps/level3/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb7b4edaf97e34a5fc36691aaf4b1b2004c2ecb6 --- /dev/null +++ b/maze/task3/maps/level3/answer/78.txt @@ -0,0 +1,5 @@ +3-78 +7-49 +6-65 +3-21 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/79.txt b/maze/task3/maps/level3/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdc41a511ccd4c4e6c2af3d57c9417841868b122 --- /dev/null +++ b/maze/task3/maps/level3/answer/79.txt @@ -0,0 +1,5 @@ +3-79 +3-34 +4-80 +6-12 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/8.txt b/maze/task3/maps/level3/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec6d28edb672a1bd88ed3415f7a4c06f4bde8136 --- /dev/null +++ b/maze/task3/maps/level3/answer/8.txt @@ -0,0 +1,5 @@ +5-36 +6-75 +3-64 +3-8 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/80.txt b/maze/task3/maps/level3/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..7948939e5ceeebf13079c90cf7b550974f86c39e --- /dev/null +++ b/maze/task3/maps/level3/answer/80.txt @@ -0,0 +1,5 @@ +8-56 +3-48 +4-30 +3-80 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/81.txt b/maze/task3/maps/level3/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c13470e33982811ea834da8824b30950b206d86 --- /dev/null +++ b/maze/task3/maps/level3/answer/81.txt @@ -0,0 +1,5 @@ +3-79 +5-56 +6-16 +3-81 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/82.txt b/maze/task3/maps/level3/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..6da7028668d0a27dc70057c9742052d9a6c80794 --- /dev/null +++ b/maze/task3/maps/level3/answer/82.txt @@ -0,0 +1,5 @@ +3-82 +4-76 +7-68 +3-52 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/83.txt b/maze/task3/maps/level3/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5ae4b8a2089057d7b3a168ddecce90b6bc88460 --- /dev/null +++ b/maze/task3/maps/level3/answer/83.txt @@ -0,0 +1,5 @@ +3-83 +3-96 +6-31 +8-48 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/84.txt b/maze/task3/maps/level3/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce1000b00afb992f6f884271904d7b3c3e62fe98 --- /dev/null +++ b/maze/task3/maps/level3/answer/84.txt @@ -0,0 +1,5 @@ +8-74 +3-84 +3-3 +7-2 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/85.txt b/maze/task3/maps/level3/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cef82db5404c34adc2d8046c7ac4f07d975b52b --- /dev/null +++ b/maze/task3/maps/level3/answer/85.txt @@ -0,0 +1,5 @@ +5-36 +3-85 +3-69 +8-18 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/86.txt b/maze/task3/maps/level3/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a220a7de74aca409431e0b75501a5e8443bb9a3c --- /dev/null +++ b/maze/task3/maps/level3/answer/86.txt @@ -0,0 +1,5 @@ +6-87 +3-21 +3-86 +8-57 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/87.txt b/maze/task3/maps/level3/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad8d7efd3ca588eb59317d1e3c16c82eb2bf7a9f --- /dev/null +++ b/maze/task3/maps/level3/answer/87.txt @@ -0,0 +1,5 @@ +3-73 +7-98 +4-26 +3-87 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/88.txt b/maze/task3/maps/level3/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..d00585e7eceb7d184a994cf7d8370efd80d8ab93 --- /dev/null +++ b/maze/task3/maps/level3/answer/88.txt @@ -0,0 +1,5 @@ +3-88 +6-3 +4-15 +3-72 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/89.txt b/maze/task3/maps/level3/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..17679383615a6c289d039a5d0bc8e5a5173403ce --- /dev/null +++ b/maze/task3/maps/level3/answer/89.txt @@ -0,0 +1,5 @@ +6-9 +3-47 +3-89 +5-64 +2 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/9.txt b/maze/task3/maps/level3/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6a50f114020b43ecfcad4eb3a9c52e23bda6509 --- /dev/null +++ b/maze/task3/maps/level3/answer/9.txt @@ -0,0 +1,5 @@ +4-31 +7-95 +3-52 +3-9 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/90.txt b/maze/task3/maps/level3/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..91b51fa3979874546de83d0250cacdbb6a7058c5 --- /dev/null +++ b/maze/task3/maps/level3/answer/90.txt @@ -0,0 +1,5 @@ +3-90 +3-41 +8-97 +6-67 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/91.txt b/maze/task3/maps/level3/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea41066136aef179ec79fab94da1bfa388427a58 --- /dev/null +++ b/maze/task3/maps/level3/answer/91.txt @@ -0,0 +1,5 @@ +7-44 +3-69 +8-39 +3-91 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/92.txt b/maze/task3/maps/level3/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8824e8f3647e0fef1b8324a364658e0065c0355 --- /dev/null +++ b/maze/task3/maps/level3/answer/92.txt @@ -0,0 +1,5 @@ +3-48 +8-14 +7-82 +3-92 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/93.txt b/maze/task3/maps/level3/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b6ca8ddef079cc7946143ea3616d7967ae7f667 --- /dev/null +++ b/maze/task3/maps/level3/answer/93.txt @@ -0,0 +1,5 @@ +8-35 +3-93 +3-76 +4-81 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/94.txt b/maze/task3/maps/level3/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..256c49715b4da373dddd6335a126580e1c51006c --- /dev/null +++ b/maze/task3/maps/level3/answer/94.txt @@ -0,0 +1,5 @@ +8-95 +3-94 +3-39 +7-91 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/95.txt b/maze/task3/maps/level3/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..3efe8ce51c8214ecf3f9b04b9733654c61e18b24 --- /dev/null +++ b/maze/task3/maps/level3/answer/95.txt @@ -0,0 +1,5 @@ +8-46 +5-67 +3-0 +3-95 +3 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/96.txt b/maze/task3/maps/level3/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..b62d79876f042ebb66af2f8cf82d8ba509644dda --- /dev/null +++ b/maze/task3/maps/level3/answer/96.txt @@ -0,0 +1,5 @@ +3-96 +7-43 +3-74 +8-79 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/97.txt b/maze/task3/maps/level3/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..d53881d44a8a8d535827aa30ff3ef6fc78164a94 --- /dev/null +++ b/maze/task3/maps/level3/answer/97.txt @@ -0,0 +1,5 @@ +5-80 +3-97 +6-2 +3-52 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/98.txt b/maze/task3/maps/level3/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bfd034c10d190d6cf18d4b9a202a2782a1d3ff6 --- /dev/null +++ b/maze/task3/maps/level3/answer/98.txt @@ -0,0 +1,5 @@ +3-98 +7-22 +3-9 +6-98 +0 \ No newline at end of file diff --git a/maze/task3/maps/level3/answer/99.txt b/maze/task3/maps/level3/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..f03c8f280fb482ee5b18532ee190d50c2bf68a9d --- /dev/null +++ b/maze/task3/maps/level3/answer/99.txt @@ -0,0 +1,5 @@ +6-87 +3-99 +3-38 +7-69 +1 \ No newline at end of file diff --git a/maze/task3/maps/level3/img/0.png b/maze/task3/maps/level3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..063c0e8e9967f70150ea87a51adab03fb50acb2d --- /dev/null +++ b/maze/task3/maps/level3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0f1e890ed75bae24c07640e624c58f91cf992234035bfc01b465c438ae28ed +size 4124 diff --git a/maze/task3/maps/level3/img/1.png b/maze/task3/maps/level3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fd126c841b65ab90071ea84c6d9a3592d2a45d0c --- /dev/null +++ b/maze/task3/maps/level3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c91bc109bc40f61091e8f2e6146b8c066360b5078dd18abe3906b0a3c4fbfea +size 5693 diff --git a/maze/task3/maps/level3/img/10.png b/maze/task3/maps/level3/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c66721f00efd5c76729c309c8d796f631a57a559 --- /dev/null +++ b/maze/task3/maps/level3/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c3751bc59071e4c1bf7a53b632b6d69ea2f4bb3fddf6c47784d9e70aafb754 +size 4004 diff --git a/maze/task3/maps/level3/img/11.png b/maze/task3/maps/level3/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..635848320732b02561ee4daae8f81d5f27fcd627 --- /dev/null +++ b/maze/task3/maps/level3/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a325ae32abd3fa2fc040c6bf88ba2624a0e79eba731c562717045d50e48320 +size 4923 diff --git a/maze/task3/maps/level3/img/12.png b/maze/task3/maps/level3/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ce2fd3438c841b44d0be9b12ef36aaba3a24343b --- /dev/null +++ b/maze/task3/maps/level3/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6686033900aa8b3735fec232292115641fa102b1be8877f58d059870f2a2595 +size 4868 diff --git a/maze/task3/maps/level3/img/13.png b/maze/task3/maps/level3/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..7fbf2301d96c46d958ad4accb71e1161cfceea13 --- /dev/null +++ b/maze/task3/maps/level3/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33cfba107c51067193927c9c18270dc497af9ce8a38d31dec7ac5c95e3e50e76 +size 4040 diff --git a/maze/task3/maps/level3/img/14.png b/maze/task3/maps/level3/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e94e8b0d5da7563c37a3dce2076c88b569e3302e --- /dev/null +++ b/maze/task3/maps/level3/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3665ea90cf54422f3e01519c7ade688551aaa9a82498a9b488673fe5b0023f +size 5560 diff --git a/maze/task3/maps/level3/img/15.png b/maze/task3/maps/level3/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..7f21878c7b780333390c4dc80b1e13d1bff7becb --- /dev/null +++ b/maze/task3/maps/level3/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c38fd01e6f374c6747ae5be93d58d9462d31ce66b6f0d4f8a51ca8cb6ac67df +size 5692 diff --git a/maze/task3/maps/level3/img/16.png b/maze/task3/maps/level3/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..99c9c9b31794f1d27f9aefb52a1d82f0f0e57e53 --- /dev/null +++ b/maze/task3/maps/level3/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80ab087825fdc0a2f5729eb6644956049aefa8b7446b6a7585d48de1e9acd71 +size 4900 diff --git a/maze/task3/maps/level3/img/17.png b/maze/task3/maps/level3/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..918a069efcac167d35af9c385bd2ae2acea959ee --- /dev/null +++ b/maze/task3/maps/level3/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782bdb724f4910b45b0660e44dcc8e0129b34ebf223355b03810ee59d3565ec0 +size 4086 diff --git a/maze/task3/maps/level3/img/18.png b/maze/task3/maps/level3/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a2bc65da73c7f88973904c9607849e785ca1ea56 --- /dev/null +++ b/maze/task3/maps/level3/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf834a38900b3746c31a1c1e6f9c926e8a25d452303c50080d641cfdf35108d1 +size 4674 diff --git a/maze/task3/maps/level3/img/19.png b/maze/task3/maps/level3/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..688ba642774bd88371af3843902e9c1886841890 --- /dev/null +++ b/maze/task3/maps/level3/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64718d56c2c58b72a2dafce00767d2a9d2999035e344c94dad79e88050042b0f +size 5495 diff --git a/maze/task3/maps/level3/img/2.png b/maze/task3/maps/level3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5fa5008498f4f6038088ee093802d827f3071427 --- /dev/null +++ b/maze/task3/maps/level3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53380f4785c79549bc17f5553cd81680be3e293158e75785c7441b0f2d6be66d +size 5695 diff --git a/maze/task3/maps/level3/img/20.png b/maze/task3/maps/level3/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..bb3c19c522655f0c53c844524ea01a64a7b01cc7 --- /dev/null +++ b/maze/task3/maps/level3/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbb5c1a20970446544ea89aeb6c0fc5dbf378f69503748ac73bab0adf6abd21 +size 4920 diff --git a/maze/task3/maps/level3/img/21.png b/maze/task3/maps/level3/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..72662d16087b65d67264b568779ff459ccbb2e26 --- /dev/null +++ b/maze/task3/maps/level3/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:134e5088db8eea08165bb4f52dd7d6dd4d631bb53f48a5d8ab5b695432d3cdb3 +size 4059 diff --git a/maze/task3/maps/level3/img/22.png b/maze/task3/maps/level3/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..f58514fc3f291e9e028dcb345bf9ea2d67424b06 --- /dev/null +++ b/maze/task3/maps/level3/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e2321740b2ea4d18851a755e217f6f67932efaff2da788c0810e3378350a2a +size 4873 diff --git a/maze/task3/maps/level3/img/23.png b/maze/task3/maps/level3/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..fde8b294342c884757a01fb8b2cbf08ca90f9f5b --- /dev/null +++ b/maze/task3/maps/level3/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425ed14b808aa2a52951b65737d36fd4bc9f5466950513a11cf475b3304387aa +size 4003 diff --git a/maze/task3/maps/level3/img/24.png b/maze/task3/maps/level3/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..cef0cfe6105eeda57db801881872acd28f2a52b7 --- /dev/null +++ b/maze/task3/maps/level3/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33e00e86aa38b503e050f040c95b679a1182b87bfa04f05901c2916bd3b1fa4 +size 4130 diff --git a/maze/task3/maps/level3/img/25.png b/maze/task3/maps/level3/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..c82d25addbe5947c837d6411116188084dacc975 --- /dev/null +++ b/maze/task3/maps/level3/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41aab14513e714af3014032a2e503d351bc7453244a6d4da54ef417bbe4ec72 +size 5758 diff --git a/maze/task3/maps/level3/img/26.png b/maze/task3/maps/level3/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa3128d758d2bddd6f94504c5cca1864723566a --- /dev/null +++ b/maze/task3/maps/level3/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50525df05921182bb20b778f223228428e0e8f86a04d5c18319b4a2e3dab444d +size 5745 diff --git a/maze/task3/maps/level3/img/27.png b/maze/task3/maps/level3/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..08f8ff50052cfe5e0be453ea30ca8aa224f5b0d5 --- /dev/null +++ b/maze/task3/maps/level3/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4261299d3bae873044a3b1e98d8ff01f23bbc237ae86db1e668d74ecfa7b5261 +size 5566 diff --git a/maze/task3/maps/level3/img/28.png b/maze/task3/maps/level3/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d269e0112cc6748472aa833ed9afe76949ec59 --- /dev/null +++ b/maze/task3/maps/level3/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0dbcfcd8ae22e86581966e8a931259ce6cb982de45bab909f78dcba36b60c9 +size 4033 diff --git a/maze/task3/maps/level3/img/29.png b/maze/task3/maps/level3/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..0c7889dbecb5a723653d9bdd4bfe4d49c348b691 --- /dev/null +++ b/maze/task3/maps/level3/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a9026a303b58e478a3ee5984c64cf79136c2cf17968f08807bfcbeb867386a +size 4071 diff --git a/maze/task3/maps/level3/img/3.png b/maze/task3/maps/level3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..cd209eab4b29f433ff04bdad7d8fbbed25ca64b1 --- /dev/null +++ b/maze/task3/maps/level3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e209c42fd8abc4d6b37941cea573b0198f5ae129d4501ca1b361797fc4f1ba6 +size 4874 diff --git a/maze/task3/maps/level3/img/30.png b/maze/task3/maps/level3/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..2b54d2d8d3d9be1f68b6cd46267ccfc32816c579 --- /dev/null +++ b/maze/task3/maps/level3/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baad1139efc46d6b8a43848c0f4cc9a6f82cdf22e1f07c58c01fe652881a7d4f +size 4045 diff --git a/maze/task3/maps/level3/img/31.png b/maze/task3/maps/level3/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..e367571ade709b57954617b98d0cfab061e28bc8 --- /dev/null +++ b/maze/task3/maps/level3/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31a62e43411531f8ba03f4c4d1bd9534425cbc4e4bf03a8e8c03f9626f6d394 +size 4893 diff --git a/maze/task3/maps/level3/img/32.png b/maze/task3/maps/level3/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..6a7e613dc28e655a24cabc19153205547baa61cc --- /dev/null +++ b/maze/task3/maps/level3/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb062d2b2f252391b4bc6f426bd7f75a714ffd94313ec67b375051d7d25fe28 +size 4922 diff --git a/maze/task3/maps/level3/img/33.png b/maze/task3/maps/level3/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..2718765f94e3aa1772a833c6a287effab39a8a76 --- /dev/null +++ b/maze/task3/maps/level3/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e124edc9bca4e42c587d1052d714e287bbbe955066becaf9557237eac3a65b6 +size 4020 diff --git a/maze/task3/maps/level3/img/34.png b/maze/task3/maps/level3/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..c92343ef08eebfd7bee110c028e49b9d9b08a067 --- /dev/null +++ b/maze/task3/maps/level3/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4d3d2578d063accd2ea4268fb7758e1bb4ab996db814eb136d7bb7d531395b +size 5801 diff --git a/maze/task3/maps/level3/img/35.png b/maze/task3/maps/level3/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..c93b9b7cee94208e0bfbed7184096e3d26a7683a --- /dev/null +++ b/maze/task3/maps/level3/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea56255d80918431cd7333332500e9254bd45fd3fbb54244ac217fee064576a +size 4985 diff --git a/maze/task3/maps/level3/img/36.png b/maze/task3/maps/level3/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..d3127379ffe6093d6790b5786e5bcca7f789d279 --- /dev/null +++ b/maze/task3/maps/level3/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea607e87c32cccf8627b2ba4f6f79da710750431180371d699399abf168d05e +size 5731 diff --git a/maze/task3/maps/level3/img/37.png b/maze/task3/maps/level3/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..d431f7b2d30c6d0ce033af5c2661334f6d850d55 --- /dev/null +++ b/maze/task3/maps/level3/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e05138aa1f782b92d0bfbce2dcead18301cc7b6b7b3540cb60beab11d7b60d +size 5558 diff --git a/maze/task3/maps/level3/img/38.png b/maze/task3/maps/level3/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..ff01bfd86cde6740f9eba1cf8859f29d0427cfc7 --- /dev/null +++ b/maze/task3/maps/level3/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdbd33e5ef08b4d2db1b6cf81f8c5a7e2f2c0ccbf9a7c81d6f51150b8a5bc89 +size 4143 diff --git a/maze/task3/maps/level3/img/39.png b/maze/task3/maps/level3/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..2370856d267ef8e9b38d0c199c2cc6a0d6e7bcc3 --- /dev/null +++ b/maze/task3/maps/level3/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9447712751703ca87d50b1a4d426ef06e55701e190523c77d9ba5185d67d04c1 +size 4925 diff --git a/maze/task3/maps/level3/img/4.png b/maze/task3/maps/level3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..413a48cc1486e45790b05b81ca423f7a4886d729 --- /dev/null +++ b/maze/task3/maps/level3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9307c437ba8b444721ba9470304a6c4f8b93e8c8421fb6b74bcecc01cf450af3 +size 5628 diff --git a/maze/task3/maps/level3/img/40.png b/maze/task3/maps/level3/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..6a8af60df410256247b960f2e5c7e68e49a40ff9 --- /dev/null +++ b/maze/task3/maps/level3/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d926f55e3ce09de0d6efebd2d4ae1fc0bb26deb91f0cd6fc6c772bc33d0567fc +size 4892 diff --git a/maze/task3/maps/level3/img/41.png b/maze/task3/maps/level3/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..b5001c31af67effdc18df4584675787e0e935ee6 --- /dev/null +++ b/maze/task3/maps/level3/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c74ca8f6ef9cfa9dc8129a9b415b8ad0e47e265cea802a6b870b8095db94a17 +size 5730 diff --git a/maze/task3/maps/level3/img/42.png b/maze/task3/maps/level3/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6cb8b195306924178e7c0353951f6cfea87899 --- /dev/null +++ b/maze/task3/maps/level3/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49ac76e2548e9e53dd6f2c43e2db522b4e3768ddd1e9d9bbf0a7b28f6679d0c +size 4053 diff --git a/maze/task3/maps/level3/img/43.png b/maze/task3/maps/level3/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..f82d3b60aa3a3a95b11e2f1a0a18398239031105 --- /dev/null +++ b/maze/task3/maps/level3/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a9e485ba5e7709ddc0463ba24af143773a56f03a1f38ea0c93e532e67206af +size 4882 diff --git a/maze/task3/maps/level3/img/44.png b/maze/task3/maps/level3/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..8984438ddafc57134e041f288a148b6f5191851d --- /dev/null +++ b/maze/task3/maps/level3/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b1988a780f020ea25f791c3544162eb682029c86a4ed4381383d4a93683cbd +size 3983 diff --git a/maze/task3/maps/level3/img/45.png b/maze/task3/maps/level3/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..9ecab569c90121f056395aa80e5dfa7da3ac5ee0 --- /dev/null +++ b/maze/task3/maps/level3/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6338034a16c7855033607520245821a625eee7e44c3e82d5be45878da03b4e0b +size 4126 diff --git a/maze/task3/maps/level3/img/46.png b/maze/task3/maps/level3/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..a5c703861b17b80b3f6b5667244185af42a238b6 --- /dev/null +++ b/maze/task3/maps/level3/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811aaaf6bd7a113979db84f52612a8f4660981ffe642e4a246b5f9a860a6ecda +size 4094 diff --git a/maze/task3/maps/level3/img/47.png b/maze/task3/maps/level3/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..9eda3ebe1cca1bc593c96a1c487acd6c80a89962 --- /dev/null +++ b/maze/task3/maps/level3/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681401d6f1a5f821f8b695a2ef6b14d62554edf4c95c3d340c925f5d355c77e6 +size 5622 diff --git a/maze/task3/maps/level3/img/48.png b/maze/task3/maps/level3/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd1b92279721972aa47d357dc24b28bdbd05b6 --- /dev/null +++ b/maze/task3/maps/level3/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d28d1c54dee219bc0a7b1a0d238f1cda29e3d4965833f85afe4b5b22eafaee +size 4123 diff --git a/maze/task3/maps/level3/img/49.png b/maze/task3/maps/level3/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9ac5e9c136a636540536c9415a737ce23a7a5a --- /dev/null +++ b/maze/task3/maps/level3/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f68b666bd2103cff42d806bca13c8592233de8a7bc1d3583ca938b24ad43668 +size 4951 diff --git a/maze/task3/maps/level3/img/5.png b/maze/task3/maps/level3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6c2667f9c8c90b358c321d62b5028c3b21f6cde6 --- /dev/null +++ b/maze/task3/maps/level3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8520a4952f8d326200b8ad8729418b205685f077b88da1d52922090b5ca67ec6 +size 5674 diff --git a/maze/task3/maps/level3/img/50.png b/maze/task3/maps/level3/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..f816901bf0ef7f02ec3a23b6ac1327f8441a2b44 --- /dev/null +++ b/maze/task3/maps/level3/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f2c39db0f639d5edc536a3f537dc4df78ab911a892374779cd13d4acfd369d +size 5774 diff --git a/maze/task3/maps/level3/img/51.png b/maze/task3/maps/level3/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..0adacd1b4c5ef637bc3f92de76e156c0a19caa95 --- /dev/null +++ b/maze/task3/maps/level3/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5977fa4fdbdaf85379fb68a3c5d27f789ab75c2295d6cc78bed3dfda654c9ce +size 5715 diff --git a/maze/task3/maps/level3/img/52.png b/maze/task3/maps/level3/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..d16ea83487d44186ba15dd72bb8ef3e2cd6abc9a --- /dev/null +++ b/maze/task3/maps/level3/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca368b2d822b76ab6f6f8899abf6716cb892387e22e598b95b2c99ee49948e9 +size 4896 diff --git a/maze/task3/maps/level3/img/53.png b/maze/task3/maps/level3/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..5dcfd7b042745dd12f27b2589d097d8912438f43 --- /dev/null +++ b/maze/task3/maps/level3/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb8439978f0e4da1228c52f6650a66ea2a9855be76aab94ab82b102b81171f9 +size 4970 diff --git a/maze/task3/maps/level3/img/54.png b/maze/task3/maps/level3/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..eb85d8c93612eaa33a374d4fe1925e31268c3551 --- /dev/null +++ b/maze/task3/maps/level3/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57051a95f032d62973b9c3d1ac10410114defaaae6e39e9351ea8c5ce6d8ddb1 +size 4853 diff --git a/maze/task3/maps/level3/img/55.png b/maze/task3/maps/level3/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..693676865072fd3209615c0a94c85aa0f8ab737e --- /dev/null +++ b/maze/task3/maps/level3/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded0944bb43644b7bd5b2b7831e498b78e770792092cac5fe443dac90a7dc22f +size 5653 diff --git a/maze/task3/maps/level3/img/56.png b/maze/task3/maps/level3/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..9d04fcac5cf7ced2f3edd66206cafbc4eac8382d --- /dev/null +++ b/maze/task3/maps/level3/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02be244d5771f261949e3f57ce1d6148ec2ca0132470e66dc1d0de78876e858d +size 4923 diff --git a/maze/task3/maps/level3/img/57.png b/maze/task3/maps/level3/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..8a2635ca4c479209f8c35f47403516d90ce4ca86 --- /dev/null +++ b/maze/task3/maps/level3/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead0f8c04df6c5756cb6853252cef20cc486e5a8b9d089616dc2d4d2c0d097e7 +size 4948 diff --git a/maze/task3/maps/level3/img/58.png b/maze/task3/maps/level3/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..cabfbaf061b078e8e1f909d5d0f4807936281435 --- /dev/null +++ b/maze/task3/maps/level3/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e653476468ad4fb2e5323d849e905ad84dd7744ff37b1a81e5de81b4d7cf58d +size 4912 diff --git a/maze/task3/maps/level3/img/59.png b/maze/task3/maps/level3/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..0a5eb1a68dda681e43d0f4bf347dec441e0802bc --- /dev/null +++ b/maze/task3/maps/level3/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7c4fcd713c6fbd1761788c2a2ad08cc59526b5b27e83edd74e889de23b4f31 +size 5691 diff --git a/maze/task3/maps/level3/img/6.png b/maze/task3/maps/level3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..fcac28397404bf013dfc71909411a5959b0d57e9 --- /dev/null +++ b/maze/task3/maps/level3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf6bdc4edf9ed19406481b84ea3f49ec59135e3e5e19b6a607361044dbf820d +size 3980 diff --git a/maze/task3/maps/level3/img/60.png b/maze/task3/maps/level3/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6cb8b195306924178e7c0353951f6cfea87899 --- /dev/null +++ b/maze/task3/maps/level3/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49ac76e2548e9e53dd6f2c43e2db522b4e3768ddd1e9d9bbf0a7b28f6679d0c +size 4053 diff --git a/maze/task3/maps/level3/img/61.png b/maze/task3/maps/level3/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..480cceb486d81b57179438c8dd158306c35240f9 --- /dev/null +++ b/maze/task3/maps/level3/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70bf0eb3a67a63cad2eaa88a7715f2ebf7c72c4ffc7dbc996fabd43fc6091724 +size 5800 diff --git a/maze/task3/maps/level3/img/62.png b/maze/task3/maps/level3/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..72dbebb7b15c275626d5df1f51b988e6eeb5eb9d --- /dev/null +++ b/maze/task3/maps/level3/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e6b08a27bb8ce039416d76212788abc59c559cc215a3c631797073914b4512 +size 4887 diff --git a/maze/task3/maps/level3/img/63.png b/maze/task3/maps/level3/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..278a10fb88834d87f32750dc10f92e524da9e20c --- /dev/null +++ b/maze/task3/maps/level3/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e0dc9088844c0e155bcf1b5d4e3d6bd7592296576f78044266723a66e171bbc +size 5674 diff --git a/maze/task3/maps/level3/img/64.png b/maze/task3/maps/level3/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..11e659b5c65daa459e143d12ccb809c0dc4722a0 --- /dev/null +++ b/maze/task3/maps/level3/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbf7ffc2028a2360a5ea2f451d359b44cc60dddd405efa50084d07f587e11a0 +size 5763 diff --git a/maze/task3/maps/level3/img/65.png b/maze/task3/maps/level3/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..2487ee34ef4b841d865717a7b9ae5b18b12efb50 --- /dev/null +++ b/maze/task3/maps/level3/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c23bb39414e8e895217096cf42dd114fafae8fd6c7929170b54b850300f1d1a +size 4130 diff --git a/maze/task3/maps/level3/img/66.png b/maze/task3/maps/level3/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..f9bba95c526d6cc74bf68199522b3bb6792acd80 --- /dev/null +++ b/maze/task3/maps/level3/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba9607786c57d1d8341fdcc2117f8d7f9d8e0fd22c6c166c51d3ed6a1602f37 +size 4126 diff --git a/maze/task3/maps/level3/img/67.png b/maze/task3/maps/level3/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..53d00c6b2517641dee7aa60d2b33641e4c0308ac --- /dev/null +++ b/maze/task3/maps/level3/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1afb3836c194463edb56fcfca78a084116c6a23c0288000222e0f7b0ac5c985c +size 4074 diff --git a/maze/task3/maps/level3/img/68.png b/maze/task3/maps/level3/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..fc45758830492d8846b4045a73eb51670995a042 --- /dev/null +++ b/maze/task3/maps/level3/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9819bc0e062a0130eb1f0818f6f574dd01d67e303dd9f039527164096dba718d +size 5726 diff --git a/maze/task3/maps/level3/img/69.png b/maze/task3/maps/level3/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..888e0df1c5462e5cedfb57c829504a7674f74acb --- /dev/null +++ b/maze/task3/maps/level3/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a74c276dbab2cd90711434f9bb2a28a6525c1851490f39fc7c2473b93bbfcd0 +size 4060 diff --git a/maze/task3/maps/level3/img/7.png b/maze/task3/maps/level3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a9dd3542827c17195b56e4f9bf16a914b0f318ae --- /dev/null +++ b/maze/task3/maps/level3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b55666bc3104b1486190d01cf611263df68e6dabdd4afbbba14aba765c84d219 +size 4902 diff --git a/maze/task3/maps/level3/img/70.png b/maze/task3/maps/level3/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..a4ad840eadacf19b977c85336830ebe841f8b42f --- /dev/null +++ b/maze/task3/maps/level3/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76c605aad16c1e0dd17655d077c1bc7fd0bbb0d19f7eae342febdf18dc638b7 +size 4833 diff --git a/maze/task3/maps/level3/img/71.png b/maze/task3/maps/level3/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..a12f92de409e46210db9a5fa7061dad7a977cfcd --- /dev/null +++ b/maze/task3/maps/level3/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abce35c57d385b6a459bf6619e231f26751af00e245c19c985caba7adf465d84 +size 4023 diff --git a/maze/task3/maps/level3/img/72.png b/maze/task3/maps/level3/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..3bfab69a2f680e3091493dd5edf7449bd2a5f925 --- /dev/null +++ b/maze/task3/maps/level3/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5628c109828fb1549505038942a89ee6c57117ca16b7d6f536eae0c3321d5947 +size 4995 diff --git a/maze/task3/maps/level3/img/73.png b/maze/task3/maps/level3/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..5a03df9a4d3a8c3ccca3ce727024b5262b80d818 --- /dev/null +++ b/maze/task3/maps/level3/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c57fe842c1852d65badc1f220344b02a9dc06fe7195cb3dcf8c7f6f59f45be7 +size 4924 diff --git a/maze/task3/maps/level3/img/74.png b/maze/task3/maps/level3/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..f14fd2044549c3296d2f1c2c8150a8fa58d2d19e --- /dev/null +++ b/maze/task3/maps/level3/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40148654e48f5aee8e143589ee55cbfcb487d83395cc79eda66669027407c602 +size 5810 diff --git a/maze/task3/maps/level3/img/75.png b/maze/task3/maps/level3/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..a8fc4fcffc10ed6f409172650d5c2d5d4fa47ca4 --- /dev/null +++ b/maze/task3/maps/level3/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def7d401c5f6ef761af40ab854bd709f8c2c7eb8936b0693e6b0c6d2f48829df +size 4107 diff --git a/maze/task3/maps/level3/img/76.png b/maze/task3/maps/level3/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..aaf60a674e856ddc3cfac613b92056d01ca81e31 --- /dev/null +++ b/maze/task3/maps/level3/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516fe830ff758a80b60e8b9a07bf53eb5c6cff855da4d361f64eea15a992e536 +size 5716 diff --git a/maze/task3/maps/level3/img/77.png b/maze/task3/maps/level3/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..b18c21487e2c30ac8741d1b57fd3d315a38dc77b --- /dev/null +++ b/maze/task3/maps/level3/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb5672b2ffe235fd65da24c3653ad08113ca10314ce2eeef472143e2381e660 +size 4888 diff --git a/maze/task3/maps/level3/img/78.png b/maze/task3/maps/level3/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..3599ad56b5ef04cdc867d59a793cc0675c6227a4 --- /dev/null +++ b/maze/task3/maps/level3/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03392fdb052cd30dce2742e983f22ad9657acec029ac681fbc20b0e498068d0 +size 4957 diff --git a/maze/task3/maps/level3/img/79.png b/maze/task3/maps/level3/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..5d0c9e5ede6b847efe09c34dbea7d0c9f5953860 --- /dev/null +++ b/maze/task3/maps/level3/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb086eff44fd88c18b011c6ca5c9d00ee7fed823c6dd46e25728ae7f7d940c89 +size 4078 diff --git a/maze/task3/maps/level3/img/8.png b/maze/task3/maps/level3/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..96026f4cfe69dbc922cf8ea8d5581845f15df16b --- /dev/null +++ b/maze/task3/maps/level3/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffafc16718a14d05170b65864032edb79ca775e56f71d0bf61a50fd3dffe5eb +size 5651 diff --git a/maze/task3/maps/level3/img/80.png b/maze/task3/maps/level3/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..9ecab569c90121f056395aa80e5dfa7da3ac5ee0 --- /dev/null +++ b/maze/task3/maps/level3/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6338034a16c7855033607520245821a625eee7e44c3e82d5be45878da03b4e0b +size 4126 diff --git a/maze/task3/maps/level3/img/81.png b/maze/task3/maps/level3/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..0b380887e4f8492a031399a306cdee28cdab719c --- /dev/null +++ b/maze/task3/maps/level3/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c41dfa983208c6aff7ba919414d61065e1bbeadd49cb25b1caab6d0556e308e +size 5742 diff --git a/maze/task3/maps/level3/img/82.png b/maze/task3/maps/level3/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..cce2e442aca632fc2d596b3b7fda141410a1f4fa --- /dev/null +++ b/maze/task3/maps/level3/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877e4826a60801adce55db70a51d120deb363d7b13a31cbe43c054ffbd9f9d48 +size 5633 diff --git a/maze/task3/maps/level3/img/83.png b/maze/task3/maps/level3/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..30129754af0df48b1c5e707ac22fee3b4ccd44ff --- /dev/null +++ b/maze/task3/maps/level3/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f547a89937b81a9b368536cf51aa09419b2b48a8faf0b6ead90c34c69974d16c +size 4920 diff --git a/maze/task3/maps/level3/img/84.png b/maze/task3/maps/level3/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..2a168b55c29652a7137afe78abce31f1fa8f46f2 --- /dev/null +++ b/maze/task3/maps/level3/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26fa4394bb11626268d9eb51843b62add307cc12d74ed204ec124d4d9436abe8 +size 5590 diff --git a/maze/task3/maps/level3/img/85.png b/maze/task3/maps/level3/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..a9d059143a1f9ca609bb104ee3d7fba80d3d99b2 --- /dev/null +++ b/maze/task3/maps/level3/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef275e1974b897dea65426dcc4f2f30b5bb0c71bee438891b90b583ad7a4e972 +size 6461 diff --git a/maze/task3/maps/level3/img/86.png b/maze/task3/maps/level3/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..4668ad19ff66c0e1e315fafa1b117ef9f6826b75 --- /dev/null +++ b/maze/task3/maps/level3/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf95d4e674ad62c2ba2dc3513a5fda78439032b38973073902fb9bfad8f9ea1 +size 5626 diff --git a/maze/task3/maps/level3/img/87.png b/maze/task3/maps/level3/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..cf1f233247ba6760885619e4243d94b1c1faba07 --- /dev/null +++ b/maze/task3/maps/level3/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937e5bd2ff336962288d80da2b2bc04e81178bb8ebf0fdc94b352a190420435e +size 5617 diff --git a/maze/task3/maps/level3/img/88.png b/maze/task3/maps/level3/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..ff01bfd86cde6740f9eba1cf8859f29d0427cfc7 --- /dev/null +++ b/maze/task3/maps/level3/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdbd33e5ef08b4d2db1b6cf81f8c5a7e2f2c0ccbf9a7c81d6f51150b8a5bc89 +size 4143 diff --git a/maze/task3/maps/level3/img/89.png b/maze/task3/maps/level3/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..f70bd314f218cf188729ab2bef773a94ed80dd39 --- /dev/null +++ b/maze/task3/maps/level3/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8afca69f411eda1081eaa7ef733395571b789e3ff81a31994fa4483fcb4d0f +size 4918 diff --git a/maze/task3/maps/level3/img/9.png b/maze/task3/maps/level3/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..3d86180a58f12f0838cadfcf1da425c1c8c2dc28 --- /dev/null +++ b/maze/task3/maps/level3/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba007e83865e7f36243cb638d04c9bf6c90b384670d243d2d81eac50aaaa14d2 +size 4850 diff --git a/maze/task3/maps/level3/img/90.png b/maze/task3/maps/level3/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..137e805d019c6f96653723994c61d4301e116809 --- /dev/null +++ b/maze/task3/maps/level3/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9304c73e9c591f8aa39c70e60847b9ad9879d00db1853f3b0e15a0c7807c0ce +size 5628 diff --git a/maze/task3/maps/level3/img/91.png b/maze/task3/maps/level3/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..d93b5bdf1a4b07d2cb5abb37c7420c36a8ee16b2 --- /dev/null +++ b/maze/task3/maps/level3/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1495d793a8eb7257778b7b38a5e0a6f7bd0a9582a55d87517c83e29f37ed0d74 +size 4901 diff --git a/maze/task3/maps/level3/img/92.png b/maze/task3/maps/level3/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..2023e77e63982bb9bf5a8a7a4619c593c3fdb0c1 --- /dev/null +++ b/maze/task3/maps/level3/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062bea294f84953ecfd1f17f8a53ad30aeffc114e5e46762ecc3fd719a9b48c6 +size 4995 diff --git a/maze/task3/maps/level3/img/93.png b/maze/task3/maps/level3/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..21fdb46091b8b9f0328deeaded6ad3c193051cfa --- /dev/null +++ b/maze/task3/maps/level3/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71577afd119a46b24316afbf570424e8b1009add0e91fa465f2c129a345a5fd7 +size 4129 diff --git a/maze/task3/maps/level3/img/94.png b/maze/task3/maps/level3/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..d751b59cf6f66f3764a726bd9e922ffd31696d0a --- /dev/null +++ b/maze/task3/maps/level3/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb9513041227122305af8149d4229fd2ad3559cc09d8f3d1ab37b506c013d0d +size 4527 diff --git a/maze/task3/maps/level3/img/95.png b/maze/task3/maps/level3/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..eb5bf1557b5dcaa46e907aea7f7f7884bb6967a0 --- /dev/null +++ b/maze/task3/maps/level3/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3060d21f269b69cbc83ceb97b545950ccaba75fd22f1c5ab2e558d7b422e402b +size 5615 diff --git a/maze/task3/maps/level3/img/96.png b/maze/task3/maps/level3/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..f2fd9966f4e0525e1cf0b9f26b4bb23520091d96 --- /dev/null +++ b/maze/task3/maps/level3/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2089fd078a858df8efcc3ad14d0a0032a7b0b7721b37820da58d56bbc9584e83 +size 4976 diff --git a/maze/task3/maps/level3/img/97.png b/maze/task3/maps/level3/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..95de31518ee2b5b89a43cb84aaf6d07ed7fd8c4e --- /dev/null +++ b/maze/task3/maps/level3/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e149e09bfc370ce911c940809dac0bea096923551bb5302c996dbbe425d4577 +size 5675 diff --git a/maze/task3/maps/level3/img/98.png b/maze/task3/maps/level3/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d269e0112cc6748472aa833ed9afe76949ec59 --- /dev/null +++ b/maze/task3/maps/level3/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0dbcfcd8ae22e86581966e8a931259ce6cb982de45bab909f78dcba36b60c9 +size 4033 diff --git a/maze/task3/maps/level3/img/99.png b/maze/task3/maps/level3/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..7544ec6e81b509344b6ac3ffe9d8ba36b7965d67 --- /dev/null +++ b/maze/task3/maps/level3/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e611cd13bcb9e5c0c6a22535bc12d5dafe86195c1cb2d51f2d5dc157f5cba9aa +size 4820 diff --git a/maze/task3/maps/level3/question/0.txt b/maze/task3/maps/level3/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..f52562417d645695c44b57207d956a95622891b6 --- /dev/null +++ b/maze/task3/maps/level3/question/0.txt @@ -0,0 +1,27 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | * | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task3/maps/level3/question/1.txt b/maze/task3/maps/level3/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e97deb682bd70e3d35e9cc7573b35b1838228316 --- /dev/null +++ b/maze/task3/maps/level3/question/1.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | # | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | @ | _ | diff --git a/maze/task3/maps/level3/question/10.txt b/maze/task3/maps/level3/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..a52df2277787ec7fd5ece35186968936c9bf4ba2 --- /dev/null +++ b/maze/task3/maps/level3/question/10.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | * | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | @ | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level3/question/11.txt b/maze/task3/maps/level3/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dcd0c6d4a570d00f4042f28ab9d065ddd9d83b1 --- /dev/null +++ b/maze/task3/maps/level3/question/11.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | @ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | @ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | _ | * | diff --git a/maze/task3/maps/level3/question/12.txt b/maze/task3/maps/level3/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eba5c9582502a83367fc8f0411fa3efe5de4427 --- /dev/null +++ b/maze/task3/maps/level3/question/12.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | @ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | * | +| Row 7 | _ | _ | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | # | diff --git a/maze/task3/maps/level3/question/13.txt b/maze/task3/maps/level3/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaf3d054cc89ed61c71622e62f204610637c0925 --- /dev/null +++ b/maze/task3/maps/level3/question/13.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | * | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | @ | _ | diff --git a/maze/task3/maps/level3/question/14.txt b/maze/task3/maps/level3/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..61f40388211e7f5f02fc1a824c821d2c7a89441d --- /dev/null +++ b/maze/task3/maps/level3/question/14.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | # | * | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | @ | _ | +| Row 3 | # | * | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task3/maps/level3/question/15.txt b/maze/task3/maps/level3/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..02b606a0b104b1e745465d680b005c50b246e2e9 --- /dev/null +++ b/maze/task3/maps/level3/question/15.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | _ | _ | +| Row 3 | # | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | diff --git a/maze/task3/maps/level3/question/16.txt b/maze/task3/maps/level3/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d2e3344002151e7db60ca6cf91819c9bdb46ea4 --- /dev/null +++ b/maze/task3/maps/level3/question/16.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | @ | _ | _ | * | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | _ | +| Row 3 | # | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | # | _ | _ | diff --git a/maze/task3/maps/level3/question/17.txt b/maze/task3/maps/level3/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..945e238573f58c728e0b5dc69bb10179a2b661a7 --- /dev/null +++ b/maze/task3/maps/level3/question/17.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | # | @ | +| Row 3 | # | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | * | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/18.txt b/maze/task3/maps/level3/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ad3d733ae67dca368fc3336ba37fe6b6b47a484 --- /dev/null +++ b/maze/task3/maps/level3/question/18.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | # | _ | +| Row 3 | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | @ | _ | * | _ | diff --git a/maze/task3/maps/level3/question/19.txt b/maze/task3/maps/level3/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae57a4e71d40285beaa75d4bb61ac68cb9023993 --- /dev/null +++ b/maze/task3/maps/level3/question/19.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | * | # | +| Row 3 | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | * | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | * | _ | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task3/maps/level3/question/2.txt b/maze/task3/maps/level3/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef1d6a7af560fb82052d2d012329b0f8cd151c7f --- /dev/null +++ b/maze/task3/maps/level3/question/2.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | # | +| Row 8 | _ | # | # | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task3/maps/level3/question/20.txt b/maze/task3/maps/level3/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d598cfb75e8a8451c183bbb135a071420a80ae1 --- /dev/null +++ b/maze/task3/maps/level3/question/20.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | _ | _ | +| Row 3 | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | # | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level3/question/21.txt b/maze/task3/maps/level3/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..caa273a6a9efbdf66a515939d63182d4f58a2742 --- /dev/null +++ b/maze/task3/maps/level3/question/21.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | * | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | _ | _ | * | +| Row 3 | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | # | # | +| Row 3 | @ | _ | _ | * | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task3/maps/level3/question/22.txt b/maze/task3/maps/level3/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e39fbddf4042ea43262768c170872ea62df8439 --- /dev/null +++ b/maze/task3/maps/level3/question/22.txt @@ -0,0 +1,27 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | # | +| Row 3 | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | diff --git a/maze/task3/maps/level3/question/23.txt b/maze/task3/maps/level3/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b6134dfada49b47717b893c9b6c6e12258dd2e4 --- /dev/null +++ b/maze/task3/maps/level3/question/23.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/24.txt b/maze/task3/maps/level3/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..70c6ef199a16a763ec67f3047960153a33868deb --- /dev/null +++ b/maze/task3/maps/level3/question/24.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | # | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level3/question/25.txt b/maze/task3/maps/level3/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ee822ee678e2ff299170dbc8f33329ebcd1f8b2 --- /dev/null +++ b/maze/task3/maps/level3/question/25.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | # | @ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | * | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | * | # | _ | +| Row 3 | @ | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task3/maps/level3/question/26.txt b/maze/task3/maps/level3/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd496577f0e66779d698af5b7f25429258dfe7ef --- /dev/null +++ b/maze/task3/maps/level3/question/26.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | _ | # | _ | * | _ | +| Row 7 | _ | _ | _ | # | _ | # | # | _ | +| Row 8 | _ | # | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level3/question/27.txt b/maze/task3/maps/level3/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..84796c4a34e5a30edb7ec185b5a6eb5e21cbd692 --- /dev/null +++ b/maze/task3/maps/level3/question/27.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | @ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/28.txt b/maze/task3/maps/level3/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..44f6ca0626af0e251461e3098c3482f6caeff6ee --- /dev/null +++ b/maze/task3/maps/level3/question/28.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | @ | # | +| Row 8 | _ | # | _ | _ | _ | # | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | # | _ | _ | +| Row 6 | # | _ | _ | @ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task3/maps/level3/question/29.txt b/maze/task3/maps/level3/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..6777e427a874a7e81020d00505a7c20f55130cdb --- /dev/null +++ b/maze/task3/maps/level3/question/29.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | diff --git a/maze/task3/maps/level3/question/3.txt b/maze/task3/maps/level3/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..20d00d4b1df168b71f24243a67c93021c7c42b7d --- /dev/null +++ b/maze/task3/maps/level3/question/3.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | # | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | # | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/30.txt b/maze/task3/maps/level3/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2633a53d61f4612ef222513d982c4fda1e755e6a --- /dev/null +++ b/maze/task3/maps/level3/question/30.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | _ | +| Row 3 | # | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | * | # | # | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/31.txt b/maze/task3/maps/level3/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae99532b3ee19c9d3f9ab573ab0a8d7a48242f67 --- /dev/null +++ b/maze/task3/maps/level3/question/31.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | # | _ | +| Row 3 | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/32.txt b/maze/task3/maps/level3/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc687890b44cf5cc8235a4930a2bdd8f34f557c6 --- /dev/null +++ b/maze/task3/maps/level3/question/32.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | _ | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | @ | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | # | @ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task3/maps/level3/question/33.txt b/maze/task3/maps/level3/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5898f558f25e218dde18dea40ab0bbce4d6587a --- /dev/null +++ b/maze/task3/maps/level3/question/33.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | @ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task3/maps/level3/question/34.txt b/maze/task3/maps/level3/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4f47902d1f8a1dc342b635a5dca6f2a15fe8dd1 --- /dev/null +++ b/maze/task3/maps/level3/question/34.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task3/maps/level3/question/35.txt b/maze/task3/maps/level3/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..9078315704ad60a10b4439f6a80f63308dc5b121 --- /dev/null +++ b/maze/task3/maps/level3/question/35.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | * | @ | +| Row 3 | # | _ | _ | diff --git a/maze/task3/maps/level3/question/36.txt b/maze/task3/maps/level3/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..d394cb6553b189a68619c056274c3b48757067a5 --- /dev/null +++ b/maze/task3/maps/level3/question/36.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | @ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | _ | _ | * | +| Row 3 | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | _ | _ | * | diff --git a/maze/task3/maps/level3/question/37.txt b/maze/task3/maps/level3/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd571dbbd65307b74380e628555160ddab964381 --- /dev/null +++ b/maze/task3/maps/level3/question/37.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | * | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | # | +| Row 3 | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/38.txt b/maze/task3/maps/level3/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a13f7829ba0c6c43de9002698461e8c3408bd9b --- /dev/null +++ b/maze/task3/maps/level3/question/38.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | @ | +| Row 2 | * | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/39.txt b/maze/task3/maps/level3/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..59b4c7e727d8634a9155031c9c264073a5ce2567 --- /dev/null +++ b/maze/task3/maps/level3/question/39.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | # | _ | +| Row 3 | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | * | _ | +| Row 8 | _ | _ | # | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task3/maps/level3/question/4.txt b/maze/task3/maps/level3/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..104f966c98059e1e1367d0f58c769ac44cc4a4a9 --- /dev/null +++ b/maze/task3/maps/level3/question/4.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | # | _ | @ | +| Row 3 | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | diff --git a/maze/task3/maps/level3/question/40.txt b/maze/task3/maps/level3/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..62da6fc3ab035cafb656d5034982af716da6adc3 --- /dev/null +++ b/maze/task3/maps/level3/question/40.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/41.txt b/maze/task3/maps/level3/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba20a0590b30ba1a4083d6eb98d46c84c6170302 --- /dev/null +++ b/maze/task3/maps/level3/question/41.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | @ | _ | +| Row 2 | _ | _ | * | +| Row 3 | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | * | +| Row 2 | @ | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/42.txt b/maze/task3/maps/level3/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..693d7b1f3758cd944bfd442bb84cc5807a876371 --- /dev/null +++ b/maze/task3/maps/level3/question/42.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | * | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level3/question/43.txt b/maze/task3/maps/level3/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2ae4ce91da9fa2a194dc48819c53751d9782412 --- /dev/null +++ b/maze/task3/maps/level3/question/43.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | * | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | @ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level3/question/44.txt b/maze/task3/maps/level3/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..726d47ebbcdbb58e4498dede77f04b5807f930a8 --- /dev/null +++ b/maze/task3/maps/level3/question/44.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | @ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/45.txt b/maze/task3/maps/level3/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..30bcc750dcd019afa26ca289d83c8d397fd7ce94 --- /dev/null +++ b/maze/task3/maps/level3/question/45.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | # | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | @ | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | * | _ | diff --git a/maze/task3/maps/level3/question/46.txt b/maze/task3/maps/level3/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..28f0b546489d6e39a32479326dcc4c439e8df01b --- /dev/null +++ b/maze/task3/maps/level3/question/46.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | @ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | @ | # | _ | _ | diff --git a/maze/task3/maps/level3/question/47.txt b/maze/task3/maps/level3/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ceb7f41c06bbb8b6f627a4fecf055bb16bca0ac3 --- /dev/null +++ b/maze/task3/maps/level3/question/47.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | _ | # | # | +| Row 3 | * | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | @ | diff --git a/maze/task3/maps/level3/question/48.txt b/maze/task3/maps/level3/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f378c10824e0bc6d4dbe40633884b34302a20a1 --- /dev/null +++ b/maze/task3/maps/level3/question/48.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | @ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | * | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task3/maps/level3/question/49.txt b/maze/task3/maps/level3/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..896ba5178557ce5ca402e26eab018f0717d1306b --- /dev/null +++ b/maze/task3/maps/level3/question/49.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | # | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | @ | +| Row 2 | * | _ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | # | +| Row 3 | _ | _ | # | diff --git a/maze/task3/maps/level3/question/5.txt b/maze/task3/maps/level3/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d1657ebd676bf3ce2e4704f9a46b92ee4b1b7f3 --- /dev/null +++ b/maze/task3/maps/level3/question/5.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | # | _ | _ | # | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/50.txt b/maze/task3/maps/level3/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..f359fb0269b75e6c47703776c762fa4072a58ada --- /dev/null +++ b/maze/task3/maps/level3/question/50.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | # | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | * | @ | +| Row 3 | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level3/question/51.txt b/maze/task3/maps/level3/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8846f3c9db996b7fd7eee271def6320d9afa88db --- /dev/null +++ b/maze/task3/maps/level3/question/51.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | @ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | * | +| Row 2 | # | _ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | _ | * | _ | +| Row 3 | # | # | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/52.txt b/maze/task3/maps/level3/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b5ac2f7efef67c2e4035ef3bd3a7fffeb42698c --- /dev/null +++ b/maze/task3/maps/level3/question/52.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | # | _ | _ | * | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | @ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | # | +| Row 3 | _ | * | # | diff --git a/maze/task3/maps/level3/question/53.txt b/maze/task3/maps/level3/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bd51cb1c0e01ca898b052b9843eab98873c5c1c --- /dev/null +++ b/maze/task3/maps/level3/question/53.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | * | _ | _ | # | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | # | _ | @ | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | * | _ | diff --git a/maze/task3/maps/level3/question/54.txt b/maze/task3/maps/level3/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..cefa47dfc5cc4f94f0bc95b611862e064b1d7591 --- /dev/null +++ b/maze/task3/maps/level3/question/54.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | * | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | @ | # | +| Row 8 | _ | # | _ | _ | _ | # | # | # | diff --git a/maze/task3/maps/level3/question/55.txt b/maze/task3/maps/level3/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f5232fdc45df74d35e6decc5faf22cdf764a1ba --- /dev/null +++ b/maze/task3/maps/level3/question/55.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | @ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/56.txt b/maze/task3/maps/level3/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..b41c837ad7845457e39348de337f6a5a60575dae --- /dev/null +++ b/maze/task3/maps/level3/question/56.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | * | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | # | _ | +| Row 3 | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level3/question/57.txt b/maze/task3/maps/level3/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..b422f7644b5dcf4b8578dfe217cc4f9331c52164 --- /dev/null +++ b/maze/task3/maps/level3/question/57.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | # | +| Row 6 | # | _ | _ | * | _ | _ | diff --git a/maze/task3/maps/level3/question/58.txt b/maze/task3/maps/level3/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b89ed4224eb5272dda4951fcf83834d066bf47b --- /dev/null +++ b/maze/task3/maps/level3/question/58.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | # | _ | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | * | _ | _ | @ | diff --git a/maze/task3/maps/level3/question/59.txt b/maze/task3/maps/level3/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2cecf98e161fbe945627c097cec6acd17cd0b5d --- /dev/null +++ b/maze/task3/maps/level3/question/59.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | @ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | diff --git a/maze/task3/maps/level3/question/6.txt b/maze/task3/maps/level3/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3c4bf7a03e4d95bb9f1ef5f7f32cd811bec4d5e --- /dev/null +++ b/maze/task3/maps/level3/question/6.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | _ | _ | # | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level3/question/60.txt b/maze/task3/maps/level3/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bcae535696244f9ddea5e29683c1655ff4d1628 --- /dev/null +++ b/maze/task3/maps/level3/question/60.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | * | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | # | # | +| Row 3 | @ | _ | _ | * | +| Row 4 | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/61.txt b/maze/task3/maps/level3/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..d00bae1e0a24f2e8f0cedf8c76f6a3a5ede9881d --- /dev/null +++ b/maze/task3/maps/level3/question/61.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | @ | +| Row 2 | _ | _ | # | +| Row 3 | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/62.txt b/maze/task3/maps/level3/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a6abb4f729911bffd603f21f838d24af89df7f5 --- /dev/null +++ b/maze/task3/maps/level3/question/62.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/63.txt b/maze/task3/maps/level3/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..0076b98cf5eb92d7224d6b3c6ce9ebaaa5d77534 --- /dev/null +++ b/maze/task3/maps/level3/question/63.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | # | diff --git a/maze/task3/maps/level3/question/64.txt b/maze/task3/maps/level3/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b84a6bf899180ff5d3c105badc4afdb14e73d96 --- /dev/null +++ b/maze/task3/maps/level3/question/64.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | * | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | @ | _ | # | # | _ | _ | _ | _ | +| Row 6 | * | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level3/question/65.txt b/maze/task3/maps/level3/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..82bb1788ec752e63f3d5a29769414ac1bf6d85c8 --- /dev/null +++ b/maze/task3/maps/level3/question/65.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task3/maps/level3/question/66.txt b/maze/task3/maps/level3/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..063929d07ec28714d04472be2fd2b2afa993d5e5 --- /dev/null +++ b/maze/task3/maps/level3/question/66.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | @ | # | +| Row 8 | _ | # | _ | _ | _ | # | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | # | +| Row 3 | # | _ | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | diff --git a/maze/task3/maps/level3/question/67.txt b/maze/task3/maps/level3/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..a76f6a9fd2dc7dcf4621c2555c26e3799800a99b --- /dev/null +++ b/maze/task3/maps/level3/question/67.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | @ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | @ | _ | +| Row 5 | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | # | _ | _ | diff --git a/maze/task3/maps/level3/question/68.txt b/maze/task3/maps/level3/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5bb8a9a44055e24b3b749da8159729b7eb78ae0 --- /dev/null +++ b/maze/task3/maps/level3/question/68.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | # | _ | @ | +| Row 3 | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/69.txt b/maze/task3/maps/level3/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7f324ac64a013f66c5e4381c744e44bd6a74a19 --- /dev/null +++ b/maze/task3/maps/level3/question/69.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | * | @ | +| Row 3 | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | # | # | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | # | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/7.txt b/maze/task3/maps/level3/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b98bf6dd1f5d222559b594e3b21bc39e287c1e65 --- /dev/null +++ b/maze/task3/maps/level3/question/7.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | _ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | diff --git a/maze/task3/maps/level3/question/70.txt b/maze/task3/maps/level3/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..8428f0bb2cd12c593fb7209bb01de63840b70c88 --- /dev/null +++ b/maze/task3/maps/level3/question/70.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | * | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | * | # | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | # | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task3/maps/level3/question/71.txt b/maze/task3/maps/level3/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..794164ad37e94094fb63aa063cdc265d8126ae55 --- /dev/null +++ b/maze/task3/maps/level3/question/71.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | @ | _ | +| Row 2 | # | * | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/72.txt b/maze/task3/maps/level3/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f28f9da389ca4fa63788c99fae5d705020ca719 --- /dev/null +++ b/maze/task3/maps/level3/question/72.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | # | # | _ | # | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task3/maps/level3/question/73.txt b/maze/task3/maps/level3/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..c729ab92c8a9e8fd1ed1de2df43a644c7779d692 --- /dev/null +++ b/maze/task3/maps/level3/question/73.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | @ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | @ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | @ | diff --git a/maze/task3/maps/level3/question/74.txt b/maze/task3/maps/level3/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5f09937f98c0e8aa873e58845a24341881c7b11 --- /dev/null +++ b/maze/task3/maps/level3/question/74.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | * | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/75.txt b/maze/task3/maps/level3/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..31652a7e98f72160f984577af897fdefa1fde900 --- /dev/null +++ b/maze/task3/maps/level3/question/75.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | # | +| Row 8 | _ | # | # | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | # | _ | _ | +| Row 3 | _ | # | * | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task3/maps/level3/question/76.txt b/maze/task3/maps/level3/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..65d13a28b9d0a801240a56e7c13ce8411bc5e37c --- /dev/null +++ b/maze/task3/maps/level3/question/76.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | # | diff --git a/maze/task3/maps/level3/question/77.txt b/maze/task3/maps/level3/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..88360308284f7907ddbcf9f991f263f6f5110102 --- /dev/null +++ b/maze/task3/maps/level3/question/77.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | * | +| Row 2 | # | _ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | _ | +| Row 3 | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level3/question/78.txt b/maze/task3/maps/level3/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..986c33d6a9b015d87c4de1fe9359ca9a1b025fd8 --- /dev/null +++ b/maze/task3/maps/level3/question/78.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | # | +| Row 3 | @ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | # | # | _ | _ | # | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task3/maps/level3/question/79.txt b/maze/task3/maps/level3/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..3971e8c36d101d886cdfa0679453080e03e36f4b --- /dev/null +++ b/maze/task3/maps/level3/question/79.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level3/question/8.txt b/maze/task3/maps/level3/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..a16642e815107756684a481a358f55489d83455b --- /dev/null +++ b/maze/task3/maps/level3/question/8.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | # | _ | @ | +| Row 6 | _ | _ | * | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | * | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | # | +| Row 3 | _ | * | # | diff --git a/maze/task3/maps/level3/question/80.txt b/maze/task3/maps/level3/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4346f7462ff742d3c9fa173822936ab0d2e63c6 --- /dev/null +++ b/maze/task3/maps/level3/question/80.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | # | _ | _ | # | _ | +| Row 2 | # | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | _ | # | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | * | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/81.txt b/maze/task3/maps/level3/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..69a04d2096bbdb9b542fc0f1f8a6cf8660b2ee33 --- /dev/null +++ b/maze/task3/maps/level3/question/81.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | # | _ | diff --git a/maze/task3/maps/level3/question/82.txt b/maze/task3/maps/level3/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fc0c0c6743917370f4365a52d868af036d6a5fa --- /dev/null +++ b/maze/task3/maps/level3/question/82.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | # | * | _ | +| Row 3 | @ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/83.txt b/maze/task3/maps/level3/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..87db3668345e527385c2017e50cbfe052b1a570c --- /dev/null +++ b/maze/task3/maps/level3/question/83.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | # | +| Row 5 | _ | # | _ | _ | * | # | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | # | * | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level3/question/84.txt b/maze/task3/maps/level3/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..d179ba7e37d1af9e86c13eed76b2c9109a53f75e --- /dev/null +++ b/maze/task3/maps/level3/question/84.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | # | _ | # | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | # | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | # | +| Row 6 | * | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level3/question/85.txt b/maze/task3/maps/level3/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bb94a9d9cfc320d3f160474dfeee1cb51a8c738 --- /dev/null +++ b/maze/task3/maps/level3/question/85.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | * | +| Row 2 | _ | _ | # | +| Row 3 | @ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | _ | # | _ | # | +| Row 8 | _ | # | _ | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/86.txt b/maze/task3/maps/level3/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..970b89b0241a1a8a2a609c01f9587b30736a13c4 --- /dev/null +++ b/maze/task3/maps/level3/question/86.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | @ | +| Row 2 | _ | _ | # | +| Row 3 | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | # | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task3/maps/level3/question/87.txt b/maze/task3/maps/level3/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..33f42c70131981791beaa5118b98b5e71906f21c --- /dev/null +++ b/maze/task3/maps/level3/question/87.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | # | # | +| Row 2 | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | # | +| Row 5 | @ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | * | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | * | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task3/maps/level3/question/88.txt b/maze/task3/maps/level3/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9447a783f680c05017a80852ca19756b830a77b --- /dev/null +++ b/maze/task3/maps/level3/question/88.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | @ | _ | # | _ | +| Row 6 | # | * | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task3/maps/level3/question/89.txt b/maze/task3/maps/level3/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..86f14823441756ae4b7338aa01b36a849965ad53 --- /dev/null +++ b/maze/task3/maps/level3/question/89.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | @ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/9.txt b/maze/task3/maps/level3/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..355ce0ab9474cf6e8856e7bb156cfa2dee63e409 --- /dev/null +++ b/maze/task3/maps/level3/question/9.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | @ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task3/maps/level3/question/90.txt b/maze/task3/maps/level3/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..34e4acf4820673b7c31757b22560b8f156d006ad --- /dev/null +++ b/maze/task3/maps/level3/question/90.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | # | _ | _ | +| Row 3 | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | @ | _ | +| Row 2 | _ | _ | * | +| Row 3 | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | # | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/91.txt b/maze/task3/maps/level3/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..41fd2a82033e503b1db2e36ee4ebb9e5da38404d --- /dev/null +++ b/maze/task3/maps/level3/question/91.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | # | _ | _ | # | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task3/maps/level3/question/92.txt b/maze/task3/maps/level3/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecdf2013d90aa5443b7f3520f383c5cdf50fc949 --- /dev/null +++ b/maze/task3/maps/level3/question/92.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | # | _ | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | @ | # | _ | +| Row 8 | _ | _ | # | _ | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | @ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | * | _ | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | _ | * | _ | diff --git a/maze/task3/maps/level3/question/93.txt b/maze/task3/maps/level3/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b9882306cb61654cb35af9ec26fc199d2935439 --- /dev/null +++ b/maze/task3/maps/level3/question/93.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | # | # | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | # | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | * | _ | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task3/maps/level3/question/94.txt b/maze/task3/maps/level3/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..0159c14d0d92f9e8de1b431f21c6aab2d94ef13b --- /dev/null +++ b/maze/task3/maps/level3/question/94.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | * | # | # | _ | # | +| Row 7 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | # | _ | +| Row 3 | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | * | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/95.txt b/maze/task3/maps/level3/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..773cb0f9eee8eb8857b394c9c2d23efc638db5d9 --- /dev/null +++ b/maze/task3/maps/level3/question/95.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | * | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | * | @ | +| Row 3 | _ | # | _ | diff --git a/maze/task3/maps/level3/question/96.txt b/maze/task3/maps/level3/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..8129bc5d8e3e854cf1b9866d01469dadb49811ce --- /dev/null +++ b/maze/task3/maps/level3/question/96.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | # | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | @ | _ | # | # | diff --git a/maze/task3/maps/level3/question/97.txt b/maze/task3/maps/level3/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eec4862b527ec2acf445e36315d8af947706ed9 --- /dev/null +++ b/maze/task3/maps/level3/question/97.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | * | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/98.txt b/maze/task3/maps/level3/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bf33a57160942af1e7b2401883faae5299ddd92 --- /dev/null +++ b/maze/task3/maps/level3/question/98.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | _ | +| Row 6 | _ | # | _ | # | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | _ | _ | +| Row 3 | @ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | * | # | # | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level3/question/99.txt b/maze/task3/maps/level3/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e774460dacb2a987d3b78460a513d29abc8d8a11 --- /dev/null +++ b/maze/task3/maps/level3/question/99.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | @ | +| Row 3 | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | diff --git a/maze/task3/maps/level4/answer/0.txt b/maze/task3/maps/level4/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a2471debaaa5fb40ac03090ccd05a5308f72d7c --- /dev/null +++ b/maze/task3/maps/level4/answer/0.txt @@ -0,0 +1,5 @@ +4-0 +6-21 +4-66 +7-59 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/1.txt b/maze/task3/maps/level4/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ad229da6af43d7b1403d845ddd7ea5486de3056 --- /dev/null +++ b/maze/task3/maps/level4/answer/1.txt @@ -0,0 +1,5 @@ +4-1 +8-95 +4-55 +3-75 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/10.txt b/maze/task3/maps/level4/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..a68a7dcb01ff2274a007276a7563ee59e60ad548 --- /dev/null +++ b/maze/task3/maps/level4/answer/10.txt @@ -0,0 +1,5 @@ +3-74 +4-10 +5-56 +4-75 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/11.txt b/maze/task3/maps/level4/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..21cd9f077da3384b8879128d653ecb1e86caf764 --- /dev/null +++ b/maze/task3/maps/level4/answer/11.txt @@ -0,0 +1,5 @@ +6-67 +4-11 +7-20 +4-18 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/12.txt b/maze/task3/maps/level4/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d3943645212cc55199322fb9ab8a65e9ed41e27 --- /dev/null +++ b/maze/task3/maps/level4/answer/12.txt @@ -0,0 +1,5 @@ +4-52 +4-12 +7-39 +6-96 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/13.txt b/maze/task3/maps/level4/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f0a8a4ec0b1aa74e09d9c50b888b27d71a7ef10 --- /dev/null +++ b/maze/task3/maps/level4/answer/13.txt @@ -0,0 +1,5 @@ +5-8 +4-30 +6-13 +4-13 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/14.txt b/maze/task3/maps/level4/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..02ee5ea54c7ee4ec7b4bc8a5158727a377ccfb6e --- /dev/null +++ b/maze/task3/maps/level4/answer/14.txt @@ -0,0 +1,5 @@ +4-14 +4-7 +7-23 +3-5 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/15.txt b/maze/task3/maps/level4/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1038958d76f8fbe79859a5fef8007807bd4e074 --- /dev/null +++ b/maze/task3/maps/level4/answer/15.txt @@ -0,0 +1,5 @@ +3-90 +4-93 +7-67 +4-15 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/16.txt b/maze/task3/maps/level4/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..23e9db9def09facfc3ff2e4aa0f8b896e99838ca --- /dev/null +++ b/maze/task3/maps/level4/answer/16.txt @@ -0,0 +1,5 @@ +4-16 +4-23 +6-78 +3-88 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/17.txt b/maze/task3/maps/level4/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..345358910f7f820a94309c3038b9cce22995e89f --- /dev/null +++ b/maze/task3/maps/level4/answer/17.txt @@ -0,0 +1,5 @@ +4-49 +4-17 +7-63 +5-57 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/18.txt b/maze/task3/maps/level4/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..51f059364a84d4fe8218c8d62c890f90aabbdef4 --- /dev/null +++ b/maze/task3/maps/level4/answer/18.txt @@ -0,0 +1,5 @@ +4-75 +5-59 +6-70 +4-18 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/19.txt b/maze/task3/maps/level4/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..33b42b75d161f057b141d3394ae1a4eebfb509eb --- /dev/null +++ b/maze/task3/maps/level4/answer/19.txt @@ -0,0 +1,5 @@ +4-19 +4-76 +7-42 +6-63 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/2.txt b/maze/task3/maps/level4/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..f964e7748c86fcbf8272a05f9629748e6ab050a5 --- /dev/null +++ b/maze/task3/maps/level4/answer/2.txt @@ -0,0 +1,5 @@ +3-2 +4-2 +7-21 +4-65 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/20.txt b/maze/task3/maps/level4/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..333ba62a8e8a2ba10b86648eb8599776dec911d9 --- /dev/null +++ b/maze/task3/maps/level4/answer/20.txt @@ -0,0 +1,5 @@ +3-1 +4-62 +4-20 +8-0 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/21.txt b/maze/task3/maps/level4/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e8c750b8876bb0c39619bf7a727915865582442 --- /dev/null +++ b/maze/task3/maps/level4/answer/21.txt @@ -0,0 +1,5 @@ +4-20 +4-21 +8-25 +6-51 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/22.txt b/maze/task3/maps/level4/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d87b812c22a57c4ddaecf00227f3c1218dc0f97 --- /dev/null +++ b/maze/task3/maps/level4/answer/22.txt @@ -0,0 +1,5 @@ +4-22 +3-18 +7-85 +4-70 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/23.txt b/maze/task3/maps/level4/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed4f41ceb3c682be6c1817fcaac798e6a4c07f8a --- /dev/null +++ b/maze/task3/maps/level4/answer/23.txt @@ -0,0 +1,5 @@ +4-60 +7-16 +4-23 +6-10 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/24.txt b/maze/task3/maps/level4/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..53f7a5291779dd422b71f0854944567736ce9ba7 --- /dev/null +++ b/maze/task3/maps/level4/answer/24.txt @@ -0,0 +1,5 @@ +4-5 +3-67 +4-24 +8-16 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/25.txt b/maze/task3/maps/level4/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a42a9f4c2b940e4bbe39d9a369a15a7841dabc3 --- /dev/null +++ b/maze/task3/maps/level4/answer/25.txt @@ -0,0 +1,5 @@ +7-24 +4-25 +3-3 +4-64 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/26.txt b/maze/task3/maps/level4/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..074c4378a20d71b133865ce4ecb2e4b09973e335 --- /dev/null +++ b/maze/task3/maps/level4/answer/26.txt @@ -0,0 +1,5 @@ +6-84 +5-57 +4-26 +4-50 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/27.txt b/maze/task3/maps/level4/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a548580d14d2eda8bfc2debecbd3fc53a4c4dcc --- /dev/null +++ b/maze/task3/maps/level4/answer/27.txt @@ -0,0 +1,5 @@ +4-32 +4-27 +6-82 +8-81 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/28.txt b/maze/task3/maps/level4/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..c01e640d1db775cd1c505d9a2c235f2693d50345 --- /dev/null +++ b/maze/task3/maps/level4/answer/28.txt @@ -0,0 +1,5 @@ +4-28 +8-44 +4-78 +5-54 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/29.txt b/maze/task3/maps/level4/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..b27bb1a0e30968c92e6edf0579efae2827f59020 --- /dev/null +++ b/maze/task3/maps/level4/answer/29.txt @@ -0,0 +1,5 @@ +8-68 +7-25 +4-92 +4-29 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/3.txt b/maze/task3/maps/level4/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e866b601018f813049403d99c3b3802812ac58f1 --- /dev/null +++ b/maze/task3/maps/level4/answer/3.txt @@ -0,0 +1,5 @@ +4-36 +3-81 +4-3 +7-88 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/30.txt b/maze/task3/maps/level4/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..91bf73e14494b3a33792f3b23882a676c807465e --- /dev/null +++ b/maze/task3/maps/level4/answer/30.txt @@ -0,0 +1,5 @@ +4-30 +3-95 +4-93 +6-78 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/31.txt b/maze/task3/maps/level4/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..2898cf8b0e96ed7365277689dc922bfa77ad8be5 --- /dev/null +++ b/maze/task3/maps/level4/answer/31.txt @@ -0,0 +1,5 @@ +4-26 +5-19 +3-7 +4-31 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/32.txt b/maze/task3/maps/level4/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1a6640d203f0ed087e6d5575421cdde6a477f20 --- /dev/null +++ b/maze/task3/maps/level4/answer/32.txt @@ -0,0 +1,5 @@ +4-65 +3-65 +4-32 +8-60 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/33.txt b/maze/task3/maps/level4/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d6578de4c9862351fc9611c3113b47c7a59c826 --- /dev/null +++ b/maze/task3/maps/level4/answer/33.txt @@ -0,0 +1,5 @@ +6-16 +3-68 +4-4 +4-33 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/34.txt b/maze/task3/maps/level4/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..51690cf75a253df33a3a169d798a3d795a02e000 --- /dev/null +++ b/maze/task3/maps/level4/answer/34.txt @@ -0,0 +1,5 @@ +4-34 +5-97 +7-90 +4-58 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/35.txt b/maze/task3/maps/level4/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fe07b3254ae56ae15e0c8356e941d7ffa1245a9 --- /dev/null +++ b/maze/task3/maps/level4/answer/35.txt @@ -0,0 +1,5 @@ +4-35 +8-11 +4-42 +6-32 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/36.txt b/maze/task3/maps/level4/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c328fb065e3f05a31408c0570122edfd07ffa4c --- /dev/null +++ b/maze/task3/maps/level4/answer/36.txt @@ -0,0 +1,5 @@ +3-7 +7-93 +4-36 +4-33 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/37.txt b/maze/task3/maps/level4/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd57e73cdc80f008e8dc7e3486603851dbe6f718 --- /dev/null +++ b/maze/task3/maps/level4/answer/37.txt @@ -0,0 +1,5 @@ +4-87 +5-48 +4-37 +6-14 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/38.txt b/maze/task3/maps/level4/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..64700a48714b3afcc038a7727591fb738ad5935e --- /dev/null +++ b/maze/task3/maps/level4/answer/38.txt @@ -0,0 +1,5 @@ +7-64 +4-26 +4-38 +5-71 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/39.txt b/maze/task3/maps/level4/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..83a25a9047acca0530827b02fff130c01f5184d9 --- /dev/null +++ b/maze/task3/maps/level4/answer/39.txt @@ -0,0 +1,5 @@ +8-74 +4-39 +7-61 +4-13 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/4.txt b/maze/task3/maps/level4/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb06859ce4f68855d5af26bf1a3005b41ed0304e --- /dev/null +++ b/maze/task3/maps/level4/answer/4.txt @@ -0,0 +1,5 @@ +4-4 +4-35 +8-30 +5-42 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/40.txt b/maze/task3/maps/level4/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8ba85fafb12f0f22d0cb51062e692f59c0fd756 --- /dev/null +++ b/maze/task3/maps/level4/answer/40.txt @@ -0,0 +1,5 @@ +7-37 +4-40 +4-20 +3-95 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/41.txt b/maze/task3/maps/level4/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..231f7e15643ed32017cab380f936510d88639608 --- /dev/null +++ b/maze/task3/maps/level4/answer/41.txt @@ -0,0 +1,5 @@ +7-12 +4-41 +6-52 +4-45 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/42.txt b/maze/task3/maps/level4/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b4b6a31e607403a495506c8274e7cc571955277 --- /dev/null +++ b/maze/task3/maps/level4/answer/42.txt @@ -0,0 +1,5 @@ +3-38 +4-69 +4-42 +8-83 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/43.txt b/maze/task3/maps/level4/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..87c50b0b39fc17e41f36bf0ea8a61f8320f95000 --- /dev/null +++ b/maze/task3/maps/level4/answer/43.txt @@ -0,0 +1,5 @@ +4-43 +6-45 +8-34 +4-41 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/44.txt b/maze/task3/maps/level4/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd451b5a027d90e6cf5de9acd7620809d245b41c --- /dev/null +++ b/maze/task3/maps/level4/answer/44.txt @@ -0,0 +1,5 @@ +3-40 +5-93 +4-44 +4-41 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/45.txt b/maze/task3/maps/level4/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..19da438a62c8f6fd07df1da803c08f531f61c319 --- /dev/null +++ b/maze/task3/maps/level4/answer/45.txt @@ -0,0 +1,5 @@ +3-35 +7-61 +4-45 +4-59 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/46.txt b/maze/task3/maps/level4/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..32f76b4fde65206cf44a02063dc596e923c0a597 --- /dev/null +++ b/maze/task3/maps/level4/answer/46.txt @@ -0,0 +1,5 @@ +4-46 +7-74 +3-7 +4-17 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/47.txt b/maze/task3/maps/level4/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fffd9cb3ab5ba888e3d3e6c93f1bc576da7772a --- /dev/null +++ b/maze/task3/maps/level4/answer/47.txt @@ -0,0 +1,5 @@ +7-31 +4-74 +4-47 +6-89 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/48.txt b/maze/task3/maps/level4/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..c23a16a92745ca0e27ae8fe6a96c12f8326b5fc1 --- /dev/null +++ b/maze/task3/maps/level4/answer/48.txt @@ -0,0 +1,5 @@ +6-39 +7-59 +4-48 +4-77 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/49.txt b/maze/task3/maps/level4/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b8cfaf961da1173f53276f55ea0dd4d9e806706 --- /dev/null +++ b/maze/task3/maps/level4/answer/49.txt @@ -0,0 +1,5 @@ +8-3 +4-49 +5-18 +4-32 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/5.txt b/maze/task3/maps/level4/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..748dde6a2101c52b2034be0dd7b3835f60b7a39b --- /dev/null +++ b/maze/task3/maps/level4/answer/5.txt @@ -0,0 +1,5 @@ +4-5 +4-72 +8-59 +6-65 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/50.txt b/maze/task3/maps/level4/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..d197283b410926038410ca07e2f748b5cd22eb52 --- /dev/null +++ b/maze/task3/maps/level4/answer/50.txt @@ -0,0 +1,5 @@ +4-50 +4-53 +5-23 +3-98 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/51.txt b/maze/task3/maps/level4/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..35fc91cc3f9ade0b6852b78f62d48f8d5326f0e8 --- /dev/null +++ b/maze/task3/maps/level4/answer/51.txt @@ -0,0 +1,5 @@ +4-26 +8-91 +4-51 +6-13 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/52.txt b/maze/task3/maps/level4/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..8873019d23826d4e1a7836a3fc53bd5b562a460d --- /dev/null +++ b/maze/task3/maps/level4/answer/52.txt @@ -0,0 +1,5 @@ +8-9 +4-52 +3-27 +4-83 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/53.txt b/maze/task3/maps/level4/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e6a7420299ac70ff10950511db64a4b8c7a8ebd --- /dev/null +++ b/maze/task3/maps/level4/answer/53.txt @@ -0,0 +1,5 @@ +4-63 +7-75 +4-53 +3-47 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/54.txt b/maze/task3/maps/level4/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..d02244f1b9412b8ecba0bc480b38de25cc6205fd --- /dev/null +++ b/maze/task3/maps/level4/answer/54.txt @@ -0,0 +1,5 @@ +5-30 +7-54 +4-54 +4-58 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/55.txt b/maze/task3/maps/level4/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e02ed2ef6cb3fd496d0ea7299e9d1b19ce0c40b --- /dev/null +++ b/maze/task3/maps/level4/answer/55.txt @@ -0,0 +1,5 @@ +4-32 +5-92 +7-9 +4-55 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/56.txt b/maze/task3/maps/level4/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1ec6479e60435735d8eb1f05b38e049c35ead69 --- /dev/null +++ b/maze/task3/maps/level4/answer/56.txt @@ -0,0 +1,5 @@ +3-65 +7-62 +4-9 +4-56 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/57.txt b/maze/task3/maps/level4/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..65a3b035875375910b10972535077e4af24e61f3 --- /dev/null +++ b/maze/task3/maps/level4/answer/57.txt @@ -0,0 +1,5 @@ +4-57 +4-59 +8-5 +7-45 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/58.txt b/maze/task3/maps/level4/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..eef957e776bb62446f36488438c91c20bfc73366 --- /dev/null +++ b/maze/task3/maps/level4/answer/58.txt @@ -0,0 +1,5 @@ +6-69 +3-15 +4-58 +4-38 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/59.txt b/maze/task3/maps/level4/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..4256b5a170c3108dcdb742b8f1497e7a8c339af4 --- /dev/null +++ b/maze/task3/maps/level4/answer/59.txt @@ -0,0 +1,5 @@ +8-67 +6-52 +4-70 +4-59 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/6.txt b/maze/task3/maps/level4/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d154b099f9f7bc9eb130c44196810a9fb2bcf89a --- /dev/null +++ b/maze/task3/maps/level4/answer/6.txt @@ -0,0 +1,5 @@ +6-45 +4-6 +4-95 +8-78 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/60.txt b/maze/task3/maps/level4/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f518c00688b925d7a58006368141c47377998e0 --- /dev/null +++ b/maze/task3/maps/level4/answer/60.txt @@ -0,0 +1,5 @@ +8-57 +6-38 +4-16 +4-60 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/61.txt b/maze/task3/maps/level4/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..c11ce09fde72587221d0e08c1c77a7eaf4ee5283 --- /dev/null +++ b/maze/task3/maps/level4/answer/61.txt @@ -0,0 +1,5 @@ +5-32 +8-81 +4-1 +4-61 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/62.txt b/maze/task3/maps/level4/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..385c7f681d9f81b189ad134a63db1f1b0efe4ff8 --- /dev/null +++ b/maze/task3/maps/level4/answer/62.txt @@ -0,0 +1,5 @@ +8-47 +3-53 +4-62 +4-51 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/63.txt b/maze/task3/maps/level4/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7bdc4219edfd5204282526fd7301f45767543b8 --- /dev/null +++ b/maze/task3/maps/level4/answer/63.txt @@ -0,0 +1,5 @@ +3-11 +4-49 +4-63 +8-0 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/64.txt b/maze/task3/maps/level4/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..5151c3af23c7a7871a4a8d63a0e5aafac1c67e7d --- /dev/null +++ b/maze/task3/maps/level4/answer/64.txt @@ -0,0 +1,5 @@ +6-81 +4-61 +4-64 +8-95 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/65.txt b/maze/task3/maps/level4/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f65515851d88e25ebbd5872f1c849178f28d7c9 --- /dev/null +++ b/maze/task3/maps/level4/answer/65.txt @@ -0,0 +1,5 @@ +4-18 +7-61 +3-45 +4-65 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/66.txt b/maze/task3/maps/level4/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..9046bff3a8a4222448a3b15cc27944455ed31454 --- /dev/null +++ b/maze/task3/maps/level4/answer/66.txt @@ -0,0 +1,5 @@ +3-33 +4-16 +4-66 +5-47 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/67.txt b/maze/task3/maps/level4/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..4050b887ae243d4e4378adc0529ac9eeb092bb69 --- /dev/null +++ b/maze/task3/maps/level4/answer/67.txt @@ -0,0 +1,5 @@ +6-94 +4-89 +4-67 +8-53 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/68.txt b/maze/task3/maps/level4/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..d96683d401d01d9de3923bcce1d435944d5128ff --- /dev/null +++ b/maze/task3/maps/level4/answer/68.txt @@ -0,0 +1,5 @@ +6-27 +7-91 +4-62 +4-68 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/69.txt b/maze/task3/maps/level4/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..06c431249ebcc5bbbe3f2c22795ae2738128fee5 --- /dev/null +++ b/maze/task3/maps/level4/answer/69.txt @@ -0,0 +1,5 @@ +4-26 +4-69 +7-8 +3-16 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/7.txt b/maze/task3/maps/level4/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..422c2bddd36d355a70abbfa3a227e179fac54fee --- /dev/null +++ b/maze/task3/maps/level4/answer/7.txt @@ -0,0 +1,5 @@ +8-22 +7-61 +4-7 +4-34 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/70.txt b/maze/task3/maps/level4/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..390692cd7013f154e106afb51b719fb9316fe2b6 --- /dev/null +++ b/maze/task3/maps/level4/answer/70.txt @@ -0,0 +1,5 @@ +4-70 +3-32 +4-61 +8-19 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/71.txt b/maze/task3/maps/level4/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c1f54e32a20b89da74d44a3e73bbde57a8ced5c --- /dev/null +++ b/maze/task3/maps/level4/answer/71.txt @@ -0,0 +1,5 @@ +4-71 +5-11 +3-54 +4-79 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/72.txt b/maze/task3/maps/level4/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..b13ccf138159830fd4bab137efe07e3a0a58aeaa --- /dev/null +++ b/maze/task3/maps/level4/answer/72.txt @@ -0,0 +1,5 @@ +4-72 +5-44 +7-6 +4-84 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/73.txt b/maze/task3/maps/level4/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..68601ee2c285ee9f81ee24ee19e12f1055736adb --- /dev/null +++ b/maze/task3/maps/level4/answer/73.txt @@ -0,0 +1,5 @@ +8-85 +7-94 +4-73 +4-15 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/74.txt b/maze/task3/maps/level4/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcf87eff4e3415b6df1c106c9a6b7bf03ac478ff --- /dev/null +++ b/maze/task3/maps/level4/answer/74.txt @@ -0,0 +1,5 @@ +6-61 +4-74 +5-90 +4-6 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/75.txt b/maze/task3/maps/level4/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9392eba6452e5eb25328c02937c0525771749c3 --- /dev/null +++ b/maze/task3/maps/level4/answer/75.txt @@ -0,0 +1,5 @@ +3-15 +7-85 +4-75 +4-57 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/76.txt b/maze/task3/maps/level4/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..c56bea49b31856cb79f5769b44c494bb8d9796ab --- /dev/null +++ b/maze/task3/maps/level4/answer/76.txt @@ -0,0 +1,5 @@ +4-78 +8-50 +7-14 +4-76 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/77.txt b/maze/task3/maps/level4/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0fb3fe9a7fd091e599212612d6df51cdb7dbda0 --- /dev/null +++ b/maze/task3/maps/level4/answer/77.txt @@ -0,0 +1,5 @@ +5-78 +4-77 +7-89 +4-25 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/78.txt b/maze/task3/maps/level4/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..197b874306388d1831fb944db82bb696a9d3bb2c --- /dev/null +++ b/maze/task3/maps/level4/answer/78.txt @@ -0,0 +1,5 @@ +6-95 +7-68 +4-36 +4-78 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/79.txt b/maze/task3/maps/level4/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc1823af0a62d8e01618072c79c0143aac9fca3d --- /dev/null +++ b/maze/task3/maps/level4/answer/79.txt @@ -0,0 +1,5 @@ +4-43 +8-97 +5-79 +4-79 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/8.txt b/maze/task3/maps/level4/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e3bd83ee9e341ac9f2b3c8d441abd2503e1fb68 --- /dev/null +++ b/maze/task3/maps/level4/answer/8.txt @@ -0,0 +1,5 @@ +4-8 +5-78 +6-90 +4-32 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/80.txt b/maze/task3/maps/level4/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..57b9ad751714effc86f01ba46ec614c9b167561b --- /dev/null +++ b/maze/task3/maps/level4/answer/80.txt @@ -0,0 +1,5 @@ +3-90 +4-7 +6-34 +4-80 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/81.txt b/maze/task3/maps/level4/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..e42b7393ab7bae855a9f9d9a9e5819289da09423 --- /dev/null +++ b/maze/task3/maps/level4/answer/81.txt @@ -0,0 +1,5 @@ +3-65 +4-81 +4-34 +5-35 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/82.txt b/maze/task3/maps/level4/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..769272d21e7ab8195f3de3d9e4bf3278ddb265a9 --- /dev/null +++ b/maze/task3/maps/level4/answer/82.txt @@ -0,0 +1,5 @@ +4-82 +5-32 +8-24 +4-52 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/83.txt b/maze/task3/maps/level4/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..14347d535ec63e25e95464611e16ebd915d314aa --- /dev/null +++ b/maze/task3/maps/level4/answer/83.txt @@ -0,0 +1,5 @@ +8-52 +5-34 +4-35 +4-83 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/84.txt b/maze/task3/maps/level4/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c52f3e8a6df956075cbc6a99be53370f4a5e88c --- /dev/null +++ b/maze/task3/maps/level4/answer/84.txt @@ -0,0 +1,5 @@ +6-62 +8-27 +4-84 +4-63 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/85.txt b/maze/task3/maps/level4/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..549db828afdd9265b45fa61015e28ce0dfea2c98 --- /dev/null +++ b/maze/task3/maps/level4/answer/85.txt @@ -0,0 +1,5 @@ +7-43 +4-85 +5-22 +4-77 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/86.txt b/maze/task3/maps/level4/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..d855d63a0f2418eadc152ce303ae3433e71491bb --- /dev/null +++ b/maze/task3/maps/level4/answer/86.txt @@ -0,0 +1,5 @@ +8-68 +7-19 +4-86 +4-7 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/87.txt b/maze/task3/maps/level4/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d7a4cc8d9986323ce5f92c607c55512c7e1dcd4 --- /dev/null +++ b/maze/task3/maps/level4/answer/87.txt @@ -0,0 +1,5 @@ +5-40 +4-63 +8-79 +4-87 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/88.txt b/maze/task3/maps/level4/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebdd05a68b73f46b8a38cbb8f39cecfa8242263f --- /dev/null +++ b/maze/task3/maps/level4/answer/88.txt @@ -0,0 +1,5 @@ +4-32 +4-88 +3-17 +5-89 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/89.txt b/maze/task3/maps/level4/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..93af43705fb14a2c7c8cb67cc8ad34da00e59790 --- /dev/null +++ b/maze/task3/maps/level4/answer/89.txt @@ -0,0 +1,5 @@ +4-89 +4-87 +8-72 +3-22 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/9.txt b/maze/task3/maps/level4/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..37ec4494907a97e9e42cca5e4bfd90baddc4923a --- /dev/null +++ b/maze/task3/maps/level4/answer/9.txt @@ -0,0 +1,5 @@ +4-32 +7-55 +4-9 +6-97 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/90.txt b/maze/task3/maps/level4/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..22fdf134ad57951d643d6cb8a5cd5c342cd7c333 --- /dev/null +++ b/maze/task3/maps/level4/answer/90.txt @@ -0,0 +1,5 @@ +8-64 +4-84 +4-90 +5-72 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/91.txt b/maze/task3/maps/level4/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa35a1489085d2f58ab150320eb09e7c24ca69d6 --- /dev/null +++ b/maze/task3/maps/level4/answer/91.txt @@ -0,0 +1,5 @@ +4-39 +4-91 +6-99 +3-2 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/92.txt b/maze/task3/maps/level4/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba006b7f08879ad412b03efcdf527cf6793aaa86 --- /dev/null +++ b/maze/task3/maps/level4/answer/92.txt @@ -0,0 +1,5 @@ +5-87 +6-80 +4-92 +4-43 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/93.txt b/maze/task3/maps/level4/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..b79299fafad19e3159cdb2814fe8a6d3946b2db1 --- /dev/null +++ b/maze/task3/maps/level4/answer/93.txt @@ -0,0 +1,5 @@ +4-42 +8-2 +4-93 +7-15 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/94.txt b/maze/task3/maps/level4/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..211c06c807b69c62869cbfb54b631443a685a2a2 --- /dev/null +++ b/maze/task3/maps/level4/answer/94.txt @@ -0,0 +1,5 @@ +4-94 +3-98 +4-87 +6-18 +0 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/95.txt b/maze/task3/maps/level4/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..524dfc3f47ddb9167cfdb48174d931613decf30c --- /dev/null +++ b/maze/task3/maps/level4/answer/95.txt @@ -0,0 +1,5 @@ +4-38 +3-92 +4-95 +8-13 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/96.txt b/maze/task3/maps/level4/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..d39e588a7e90cbee5ce79796af32a720e8c10b4d --- /dev/null +++ b/maze/task3/maps/level4/answer/96.txt @@ -0,0 +1,5 @@ +6-46 +4-96 +4-10 +3-3 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/97.txt b/maze/task3/maps/level4/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e481c7c0466149ba80b1b6d1b018c489ac5c4c4 --- /dev/null +++ b/maze/task3/maps/level4/answer/97.txt @@ -0,0 +1,5 @@ +4-42 +6-12 +4-97 +5-86 +2 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/98.txt b/maze/task3/maps/level4/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ffa332bbbe3bc05a567b43eb77c429686a91b92 --- /dev/null +++ b/maze/task3/maps/level4/answer/98.txt @@ -0,0 +1,5 @@ +8-14 +4-98 +6-45 +4-82 +1 \ No newline at end of file diff --git a/maze/task3/maps/level4/answer/99.txt b/maze/task3/maps/level4/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..c47cea5a5a472aefdd47b97d78c47c0cbdd8178b --- /dev/null +++ b/maze/task3/maps/level4/answer/99.txt @@ -0,0 +1,5 @@ +6-11 +7-86 +4-73 +4-99 +3 \ No newline at end of file diff --git a/maze/task3/maps/level4/img/0.png b/maze/task3/maps/level4/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3db223649dc0c81cb1cae2f9e75f05d19afbe8e7 --- /dev/null +++ b/maze/task3/maps/level4/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51fc82ad2340501e17ba6b9f95968480b8834f0407ef76e87d37e47b0f5f0054 +size 7956 diff --git a/maze/task3/maps/level4/img/1.png b/maze/task3/maps/level4/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..51a8d9f11dec4fc38a317625f3d01888433a1a0c --- /dev/null +++ b/maze/task3/maps/level4/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae03338e81b2b35ffdcc4c05716dbbc0190a25c24cac5316f400f1a513ab845 +size 7818 diff --git a/maze/task3/maps/level4/img/10.png b/maze/task3/maps/level4/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..66b525dd81a04850f345272441dd8c68e6db0dd1 --- /dev/null +++ b/maze/task3/maps/level4/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8063d6c73a7d6d25de678fb0b54a843989ba3839923cb759ce136a66b2c0c1 +size 6990 diff --git a/maze/task3/maps/level4/img/11.png b/maze/task3/maps/level4/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6a7904e848d871aa38f06c379710d0b508117d6d --- /dev/null +++ b/maze/task3/maps/level4/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1c1b90e7d5588c401e39b617729c129ef65b10c7beba95b03871f341113acd +size 6969 diff --git a/maze/task3/maps/level4/img/12.png b/maze/task3/maps/level4/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..df386054eeebb588459e1045566377485efdd54a --- /dev/null +++ b/maze/task3/maps/level4/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2568a367eb1943beaccdfbb9e79a425d7d1e46d96f8c2f7e39704d5d31e5f814 +size 6153 diff --git a/maze/task3/maps/level4/img/13.png b/maze/task3/maps/level4/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..098e21d1aea20f23ab361c8abdbf95bfa464a9e6 --- /dev/null +++ b/maze/task3/maps/level4/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b4ab2233612625f3915bd9fb0ab79f8c75e0cb8a4c0210dd4ecd36a402827b +size 7966 diff --git a/maze/task3/maps/level4/img/14.png b/maze/task3/maps/level4/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..105e19f2b26eebc6579b96d099ffd2f2a90101e5 --- /dev/null +++ b/maze/task3/maps/level4/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f6e963ae8abb6058febefc149e6be82fe4be9121066e5d59fe2b6ea2671bf2 +size 6096 diff --git a/maze/task3/maps/level4/img/15.png b/maze/task3/maps/level4/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..a5b33bed091a9a50de883e698ca421e7933d8974 --- /dev/null +++ b/maze/task3/maps/level4/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30df5dddbc70095b4590efd47e23a21890cf9a79da700f5397288eb7d6de9ca6 +size 6232 diff --git a/maze/task3/maps/level4/img/16.png b/maze/task3/maps/level4/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..adb6d11b05b752c75c2fcf6b25734e9d37f5405c --- /dev/null +++ b/maze/task3/maps/level4/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c504d9213192a25f410aeec3940cf5eee4420437113428fd8153be5cfec489 +size 7089 diff --git a/maze/task3/maps/level4/img/17.png b/maze/task3/maps/level4/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..8e8987cbf819f87c84b2b16deae6e74a7ae0d107 --- /dev/null +++ b/maze/task3/maps/level4/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee6349b678df8c3c0e020d47e48556aeb4a56643596224f66a7414a06cfa9ff +size 5354 diff --git a/maze/task3/maps/level4/img/18.png b/maze/task3/maps/level4/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..5218b8ed891109595ef0eb05d2ac6bc16a30f468 --- /dev/null +++ b/maze/task3/maps/level4/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b3455e698c4ffd000e3d13eb34f0b00076ca6e014e8ace76fbf0e41470786b +size 7105 diff --git a/maze/task3/maps/level4/img/19.png b/maze/task3/maps/level4/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..95de8f0680331cf0e819161f4ff8bf97a12c729f --- /dev/null +++ b/maze/task3/maps/level4/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20cedd3cb21876ef022a559a9c3902713123abaf587b85973904a6c9fd5b779d +size 6119 diff --git a/maze/task3/maps/level4/img/2.png b/maze/task3/maps/level4/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5f9a5f83d9ec0e4f4f00602887604f032157e1d5 --- /dev/null +++ b/maze/task3/maps/level4/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f5113d13f73daa2711080b2d1077cf10cb5775dd9516a4d0c9be6c2b739c32 +size 5405 diff --git a/maze/task3/maps/level4/img/20.png b/maze/task3/maps/level4/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..69c8c5caa64b97a31fed79e29848a212a4c41273 --- /dev/null +++ b/maze/task3/maps/level4/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cdaa3afa67d30a4e39f9c18ae36de92dc4f32b40b8685771cb8dbb8361b34f0 +size 7033 diff --git a/maze/task3/maps/level4/img/21.png b/maze/task3/maps/level4/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..00a73ed1ee9a9d4ace7cbd5837045a994c27cd21 --- /dev/null +++ b/maze/task3/maps/level4/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a9a0dbbd6be6fe287bd47b9989572e64dc21aed318a2fd101654bd5fb528afc +size 7883 diff --git a/maze/task3/maps/level4/img/22.png b/maze/task3/maps/level4/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..c9879be05473f87c788feae46b2afbec69669e9e --- /dev/null +++ b/maze/task3/maps/level4/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794f33e454f924c8209fcb79b7b6af6721911b909df5780ecf0e8292c97397f8 +size 7855 diff --git a/maze/task3/maps/level4/img/23.png b/maze/task3/maps/level4/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..ca460cae973054bf627d01616a1ae78f470624ee --- /dev/null +++ b/maze/task3/maps/level4/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecbf2ce644d3259be94f44ae0e5bfbb11862273840382f37b434bf11cb32db04 +size 5307 diff --git a/maze/task3/maps/level4/img/24.png b/maze/task3/maps/level4/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..1c09dd33c92856ee14f80d05d251a482e9ef766a --- /dev/null +++ b/maze/task3/maps/level4/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924b2c4258ff2e01a4899c68a758b73e05091bf49b219e0fe3e8971d2cc741f7 +size 7158 diff --git a/maze/task3/maps/level4/img/25.png b/maze/task3/maps/level4/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..92938f3e349ad70e5cdd656f7dfb2b31ef4226af --- /dev/null +++ b/maze/task3/maps/level4/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2064dafd391f2a139fe8abadae370d20a72ffab3ad46a0613ecc65e0566e9d +size 6245 diff --git a/maze/task3/maps/level4/img/26.png b/maze/task3/maps/level4/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..2072c9f94d751974a7646ed1000b4fbd44431837 --- /dev/null +++ b/maze/task3/maps/level4/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9add3c30940f19023e6d975f7fd218ab1efab81dc6e32fb02fcd069b2057a42 +size 7878 diff --git a/maze/task3/maps/level4/img/27.png b/maze/task3/maps/level4/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..c2f0d51c27cf80be47beba4958f03eab58290f77 --- /dev/null +++ b/maze/task3/maps/level4/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeaab6ff3ff7750de94f8715873e971c36c7b62a51588087ec04b591076b4693 +size 7918 diff --git a/maze/task3/maps/level4/img/28.png b/maze/task3/maps/level4/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..9b48676618e2bca186b8e97a4713a62704efd5ec --- /dev/null +++ b/maze/task3/maps/level4/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a6b331a73a81641feaf27a3cb5723ccae997d15c76f07e4ce21289b21787af +size 7815 diff --git a/maze/task3/maps/level4/img/29.png b/maze/task3/maps/level4/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..ba470a09510a2ed64ffbb2d3b410b212f27a3886 --- /dev/null +++ b/maze/task3/maps/level4/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9d444a18c22195a73173822292450610ba73ff78c80b5700fb82ef574b9cc2 +size 7914 diff --git a/maze/task3/maps/level4/img/3.png b/maze/task3/maps/level4/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d956eff9d59cce4cc664d01598257592a11b1bf2 --- /dev/null +++ b/maze/task3/maps/level4/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7035f787974cb269f188cea4104b5fb0cd9fa01f912f4c6196aec827f3068243 +size 7063 diff --git a/maze/task3/maps/level4/img/30.png b/maze/task3/maps/level4/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..884116b04d2f05d8ef95cbb5b7f09b694142dd76 --- /dev/null +++ b/maze/task3/maps/level4/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74f70539ea8238c4e67de0f913b1c2cd0ace7a5d9032fcfe1e9d5a45580a311 +size 7171 diff --git a/maze/task3/maps/level4/img/31.png b/maze/task3/maps/level4/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..9f2c2a1ce1fc2bd2788f5a72d8c14151500b97da --- /dev/null +++ b/maze/task3/maps/level4/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67873129e29a5f1fa9bf3b8ded0421cadee980e4d52f97d6504c977c320d2567 +size 6120 diff --git a/maze/task3/maps/level4/img/32.png b/maze/task3/maps/level4/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..eaae6a6853b1d0d130ed8d7757db70230dacd6e1 --- /dev/null +++ b/maze/task3/maps/level4/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71507f98f85d96fd97c67461b05c6220a09b70ab58d94aef403b096885cfea3 +size 7086 diff --git a/maze/task3/maps/level4/img/33.png b/maze/task3/maps/level4/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..eeaf60d85d099bb649ecf65572f67bc27a84f970 --- /dev/null +++ b/maze/task3/maps/level4/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702932417c0ec6450c6318123fde685b831e37482356f61572c4849a69f4967c +size 8802 diff --git a/maze/task3/maps/level4/img/34.png b/maze/task3/maps/level4/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..1aec681188f2645adf341ab810823259e953ffb9 --- /dev/null +++ b/maze/task3/maps/level4/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ba527a41f4ccc8f84cae29753da402cf3ee3c894701c2eaa2f70832166a232 +size 6266 diff --git a/maze/task3/maps/level4/img/35.png b/maze/task3/maps/level4/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..85d9c6e7b62bc5fd56d9437fdf76a411662d6a30 --- /dev/null +++ b/maze/task3/maps/level4/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ec9d05369186a9983944a0296f8fe7338008b504b188fbe7eae56b0f57d8ff +size 6264 diff --git a/maze/task3/maps/level4/img/36.png b/maze/task3/maps/level4/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..699cb4fe69d364391b1cd113c9cb2f63abfb0899 --- /dev/null +++ b/maze/task3/maps/level4/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3cd9bc4b66055910e203a244a2717591076ae49957fadbd95970de5e766217 +size 7013 diff --git a/maze/task3/maps/level4/img/37.png b/maze/task3/maps/level4/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..7e19608cd72e42978fd17128a3aacd1b0b80119d --- /dev/null +++ b/maze/task3/maps/level4/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e936ebfa142c75c7e474dc4d28d49c644f0907d771b994e5f7c34dfb38e1948b +size 8032 diff --git a/maze/task3/maps/level4/img/38.png b/maze/task3/maps/level4/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..88c7c785b4037ee2bf30cb4dc47a56209b372aae --- /dev/null +++ b/maze/task3/maps/level4/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bcf0870e5fd83619b507bf2bcd5b4c180329462510e4b7f9f3317785a39c707 +size 7882 diff --git a/maze/task3/maps/level4/img/39.png b/maze/task3/maps/level4/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..eb61073aed16ad9189646585312185334d6cd15e --- /dev/null +++ b/maze/task3/maps/level4/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d568a4962786de0b931b6268c242ff7705820779ee97331bfb4968ee27c60b +size 6216 diff --git a/maze/task3/maps/level4/img/4.png b/maze/task3/maps/level4/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a80d74823e5ddc1490f695d371c360b56e1b2276 --- /dev/null +++ b/maze/task3/maps/level4/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:489a2674df1d28a5f60eead85a356cd37089719d9e4948e923c9c98c2f2caabb +size 7054 diff --git a/maze/task3/maps/level4/img/40.png b/maze/task3/maps/level4/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..5d4be8afcd8b7d440b8e41271ef7a6a6c3a9a5bd --- /dev/null +++ b/maze/task3/maps/level4/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79555f781703407c431f7fe0716d84fa3972f0e1c37b23ac39bf9e7df9049146 +size 8697 diff --git a/maze/task3/maps/level4/img/41.png b/maze/task3/maps/level4/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..aa3c41d43bef37eb166a61d83de32100a4f639b4 --- /dev/null +++ b/maze/task3/maps/level4/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f016ec8c91dcd516d2b3210e827731990ae0090e69f008df317d7b808411cb +size 7124 diff --git a/maze/task3/maps/level4/img/42.png b/maze/task3/maps/level4/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ce640fa2834cc616bdaf96148820a37b84080d --- /dev/null +++ b/maze/task3/maps/level4/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1694c5421cc87cf9116f6a679f50e4aa4c25283d39fd01f6bb3b005a620b8100 +size 7141 diff --git a/maze/task3/maps/level4/img/43.png b/maze/task3/maps/level4/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..ed2d30f18ca464acaf965bf68c3cefb1b5212427 --- /dev/null +++ b/maze/task3/maps/level4/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9fde7fcfa4ab1e86a9b0eeb53ffbce2aa3c271622725bb44e8409368a0ef6d +size 6224 diff --git a/maze/task3/maps/level4/img/44.png b/maze/task3/maps/level4/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..5e082eee341992605ca8e0459d8ebb0a00d93526 --- /dev/null +++ b/maze/task3/maps/level4/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0096faa2347833ecc7595a740f20a11927de827ffe68ff6988badcadea6fbaa6 +size 6200 diff --git a/maze/task3/maps/level4/img/45.png b/maze/task3/maps/level4/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..8b3dd47dabef331d37d0063cdaeb3168458cc807 --- /dev/null +++ b/maze/task3/maps/level4/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bde54fe5aafa194b3f13f27cf26d6c65747949d28aa5e11bda0ac814a6cc164 +size 7877 diff --git a/maze/task3/maps/level4/img/46.png b/maze/task3/maps/level4/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..63b6c81588d899f93cc13f409c2c752d67957882 --- /dev/null +++ b/maze/task3/maps/level4/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26772dbe6c39571f9ea8932c69412f0a3b553cea779a3aae2c216fb281d1979b +size 7830 diff --git a/maze/task3/maps/level4/img/47.png b/maze/task3/maps/level4/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..07ad072c0e2741595a3c5d7d74eb7fd1e211dbe0 --- /dev/null +++ b/maze/task3/maps/level4/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1752e345d14350d2649fb4dfd1b061199eb98687c3470c9c74f0f49f9488af +size 7137 diff --git a/maze/task3/maps/level4/img/48.png b/maze/task3/maps/level4/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..91af188559a398e36eaf65619060b9571d19a9f8 --- /dev/null +++ b/maze/task3/maps/level4/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c33595a7ee001899ea79eb5835b67d210f0583b6a8b7e6da681017f005767b +size 7074 diff --git a/maze/task3/maps/level4/img/49.png b/maze/task3/maps/level4/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..43070d52c51ae0e7f900e3dd6a19a84e77b05977 --- /dev/null +++ b/maze/task3/maps/level4/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6f53291beac0d1626a82052996fb499b047b685b16762143aca141c16249dc +size 6168 diff --git a/maze/task3/maps/level4/img/5.png b/maze/task3/maps/level4/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..52eecd6c60a563b0ed2b28b526c873c79d786066 --- /dev/null +++ b/maze/task3/maps/level4/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ceaaf02484650f2d93bcd00a4d9af2081222b3e116c58b64541402527ba72a3 +size 5256 diff --git a/maze/task3/maps/level4/img/50.png b/maze/task3/maps/level4/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..2961890c21c1556e16447b7e8df6c4a7a8b40a92 --- /dev/null +++ b/maze/task3/maps/level4/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5554bdbebc65354415b11e168e0cfc0d519e8d96e9aa85d737aba5b0b8e03e1e +size 7103 diff --git a/maze/task3/maps/level4/img/51.png b/maze/task3/maps/level4/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..0a394744fc09802f68ad9d32465dc810155aef0b --- /dev/null +++ b/maze/task3/maps/level4/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf44a2d566fa8c2a33dd8b6d98ccde9069522402294458c485a2fcf61485227 +size 7850 diff --git a/maze/task3/maps/level4/img/52.png b/maze/task3/maps/level4/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..e272abc3a761bb70ad29c30eea28c058066b11ea --- /dev/null +++ b/maze/task3/maps/level4/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e4775f3d3c0355376f73c1d27e4de703bfbe9ea08081286e95e8d569221574 +size 7072 diff --git a/maze/task3/maps/level4/img/53.png b/maze/task3/maps/level4/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..68b86cc32d18b5dae14c4a27759fd884d4601bfe --- /dev/null +++ b/maze/task3/maps/level4/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da21729150f507d185509d52de93d5df0f178878e84d88cd06bc7e7ddca2e387 +size 7925 diff --git a/maze/task3/maps/level4/img/54.png b/maze/task3/maps/level4/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..525612a3f79d5785e5455af603c6dad5a5459071 --- /dev/null +++ b/maze/task3/maps/level4/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf4b38dbc0993112b3fc93365088f0cba82c19bc9819372331461fff056fa83 +size 7908 diff --git a/maze/task3/maps/level4/img/55.png b/maze/task3/maps/level4/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..8b7a8b854711e5b8cda706f493d0f98f20366062 --- /dev/null +++ b/maze/task3/maps/level4/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d780bd82e0d6b63a87dbe0703d648301188d363397acf1a21ecc0f230a5666 +size 6234 diff --git a/maze/task3/maps/level4/img/56.png b/maze/task3/maps/level4/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..f3939ff053d1ebb577ca53a3d9e4a1ae42f5b885 --- /dev/null +++ b/maze/task3/maps/level4/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301f0b78f77891e0e7f5dc715b0bd2e6c455abd65d9b6826f74d6b75ec5b5156 +size 7904 diff --git a/maze/task3/maps/level4/img/57.png b/maze/task3/maps/level4/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..28bdd1b152dd8a64e93ecffa77b307475dab5b20 --- /dev/null +++ b/maze/task3/maps/level4/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31bb167697cbcdb26a628266f0a3af3d3d7305f5bd49ce0de5232ad921f70d8 +size 6185 diff --git a/maze/task3/maps/level4/img/58.png b/maze/task3/maps/level4/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..30078085aed24f8568e5ae642e5a7d69e804ef61 --- /dev/null +++ b/maze/task3/maps/level4/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db139df9b206278ea0ce62cd61118c6df31e39338c8fd1e7aaa2e79fcc732d54 +size 7051 diff --git a/maze/task3/maps/level4/img/59.png b/maze/task3/maps/level4/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..fafeb62eff0a57c9c448b104b1c67e16fabcb5f6 --- /dev/null +++ b/maze/task3/maps/level4/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b772e597250e3938857abda4a5a78d758164bf66bbe87e186818fcd89d44d1c +size 6996 diff --git a/maze/task3/maps/level4/img/6.png b/maze/task3/maps/level4/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..085d056ba0397f63fc07067afc6e8d6acc93292b --- /dev/null +++ b/maze/task3/maps/level4/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef394d7cecc4e10bdfa03be8b6bcea482087e1e5e43842fe5810423700b69243 +size 7177 diff --git a/maze/task3/maps/level4/img/60.png b/maze/task3/maps/level4/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..3289ea7f5f247d6aea0d1a26bfc998eab39e2bba --- /dev/null +++ b/maze/task3/maps/level4/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9711296ca42f494ccc829b97448d4fa21a20660a671f31856cdae4bda0adf21 +size 7890 diff --git a/maze/task3/maps/level4/img/61.png b/maze/task3/maps/level4/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..6249e6bc7c81dcc2ba9f0765255a30777bac3426 --- /dev/null +++ b/maze/task3/maps/level4/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e15237327e64f0626b186c37415de62a59576028e184b8574d30fda964daed4 +size 7084 diff --git a/maze/task3/maps/level4/img/62.png b/maze/task3/maps/level4/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..af2091a904f9fe975e1dc720dff7b0b5b45da7c6 --- /dev/null +++ b/maze/task3/maps/level4/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00669100468d5f6f21d0351838d7251f56a2a3267f465839137cc4ab4b08a68 +size 6154 diff --git a/maze/task3/maps/level4/img/63.png b/maze/task3/maps/level4/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..ad7e52c1bc7304dceab1bfdd9e1d4898aff3120c --- /dev/null +++ b/maze/task3/maps/level4/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f72fca561cdea1e4bdd5fa72f41360c4458cb3e438f09408cf05ff148296015 +size 7955 diff --git a/maze/task3/maps/level4/img/64.png b/maze/task3/maps/level4/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..5be65ef945ca5bc5ef84624b595f084609a1eaf9 --- /dev/null +++ b/maze/task3/maps/level4/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a68bc8af4fd23e161f8c6a3b54380e8bc25d582a72b04abebaa7c6e88b65187 +size 7046 diff --git a/maze/task3/maps/level4/img/65.png b/maze/task3/maps/level4/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..f46b5480dcb14481e97cb38a6200b0077fd7703a --- /dev/null +++ b/maze/task3/maps/level4/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0937c25c4e1e7a433e221967bb301d992ec235986f8d1741cf7674f75d55a9cb +size 6997 diff --git a/maze/task3/maps/level4/img/66.png b/maze/task3/maps/level4/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..33df968a638385cb39db14878c4732e524b8aa98 --- /dev/null +++ b/maze/task3/maps/level4/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36ee274f490b8de0dae8d8967626c8290c078700b458f499d03cc11c0e03b1a +size 6235 diff --git a/maze/task3/maps/level4/img/67.png b/maze/task3/maps/level4/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f7db68d54d86a8bf2781db0a3c5624c2a59a38 --- /dev/null +++ b/maze/task3/maps/level4/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ee6fa77d6d9e201c8d1fcc2525832d5c350eadca1903b4a8727bdc7d4ebb19 +size 7100 diff --git a/maze/task3/maps/level4/img/68.png b/maze/task3/maps/level4/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ebb6e68260da617403def1040264a268192263 --- /dev/null +++ b/maze/task3/maps/level4/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c80735f5ab9b2213b51c2f7473355752bd6513442493bcdbf54cbcfc15c62b +size 6245 diff --git a/maze/task3/maps/level4/img/69.png b/maze/task3/maps/level4/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..e8a33abdca815488ad52ca677e9855905b228d8a --- /dev/null +++ b/maze/task3/maps/level4/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ba0b524203af0cd9dde8a0b2cc870b4452da657d28a81274da1ab5ed7f3064 +size 6171 diff --git a/maze/task3/maps/level4/img/7.png b/maze/task3/maps/level4/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..03bc532ddaf9baf101dc835f4f154d42fb6f593a --- /dev/null +++ b/maze/task3/maps/level4/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ac67b8382e5a1107635c4a52d45905b0b641d9dd85c13805097dedf07764eb +size 7154 diff --git a/maze/task3/maps/level4/img/70.png b/maze/task3/maps/level4/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..fa697c4ae5207eb3a8ef4fd8989dd2f94ddc41a6 --- /dev/null +++ b/maze/task3/maps/level4/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee57460e876f32e958d3346dc2c9715c29f9cf1fb1a9283b72e03041bfb3bb0 +size 7901 diff --git a/maze/task3/maps/level4/img/71.png b/maze/task3/maps/level4/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..557274152eee39f7cb0d15490a9529ef0d107534 --- /dev/null +++ b/maze/task3/maps/level4/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd736c1f0c27a767b674958bb5fc566a78122f5e2a10ac8dfdca35a11a08888 +size 7061 diff --git a/maze/task3/maps/level4/img/72.png b/maze/task3/maps/level4/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..e867ec30fb85484cf3857309fcb849b3ed344b49 --- /dev/null +++ b/maze/task3/maps/level4/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3579657c419c14e51f762cda672610bf1367be453f5ba4aa8ab3290570c65d +size 7074 diff --git a/maze/task3/maps/level4/img/73.png b/maze/task3/maps/level4/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..858088bf9e6efbe21e146b40522f428e286f86c2 --- /dev/null +++ b/maze/task3/maps/level4/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a03b683ff3017e1d45a506117ce13ba244f19d045f285b619f5454a1fe57dbd +size 8046 diff --git a/maze/task3/maps/level4/img/74.png b/maze/task3/maps/level4/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..fc2c6039e6997af73226a61ace7bcc98c0d42ca4 --- /dev/null +++ b/maze/task3/maps/level4/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637197eb4c66def1d7e9acd1ee8473be1bf65b04d6c6a4d83ec77765d0f8ee1b +size 7085 diff --git a/maze/task3/maps/level4/img/75.png b/maze/task3/maps/level4/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..2eab3949905d9890a27b7339517158c225b58261 --- /dev/null +++ b/maze/task3/maps/level4/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c739d4f92cfe961b95790e0e8b2c257976357100570b45e9963efcc94fed48 +size 7826 diff --git a/maze/task3/maps/level4/img/76.png b/maze/task3/maps/level4/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..fe336271869777fcc1632f1ce6583d9ded1da968 --- /dev/null +++ b/maze/task3/maps/level4/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3480f4fa89ff3ffc6d6309b7c425e8ef9ba4c7dbd9888f74e39e4afc5dc86f2 +size 7109 diff --git a/maze/task3/maps/level4/img/77.png b/maze/task3/maps/level4/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..8345220a7297b9b10e4cd10015384e9e4e7824d6 --- /dev/null +++ b/maze/task3/maps/level4/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a90c7458cf5656b6389a9c341353edd91d24ff8e22fb94b2785927c1b33b592e +size 7943 diff --git a/maze/task3/maps/level4/img/78.png b/maze/task3/maps/level4/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..dcf2fb3aa37b739be7cc00baac563676d908679c --- /dev/null +++ b/maze/task3/maps/level4/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66f86f09e6d23bfc4b02acaaf560f1b9dc1528ea6f059595e617ca2f2d22151 +size 6995 diff --git a/maze/task3/maps/level4/img/79.png b/maze/task3/maps/level4/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..58271b78c4fe75dbf9b9ef97c442d0209b320351 --- /dev/null +++ b/maze/task3/maps/level4/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cbbf9c8d2b92aa6bb0f3edd0651016b6e44f1a0a35db12b0293b6da05444b01 +size 7908 diff --git a/maze/task3/maps/level4/img/8.png b/maze/task3/maps/level4/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..46303cf05cc403321c282e1fe6b2d641d2501f44 --- /dev/null +++ b/maze/task3/maps/level4/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e908fca3b9e9f7023fc518f80ab2930d72cecba3a046094a3c301a8e0c662b +size 6167 diff --git a/maze/task3/maps/level4/img/80.png b/maze/task3/maps/level4/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..35d80c753832c288f9ca67aa4724a3a5ed2ca00f --- /dev/null +++ b/maze/task3/maps/level4/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:776a87a5c43613659139e79a62c0b4897a9dd887469475f61a693c817f55a6a3 +size 7093 diff --git a/maze/task3/maps/level4/img/81.png b/maze/task3/maps/level4/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..c777982b23a3173d79a161799456b6efbb3cdc97 --- /dev/null +++ b/maze/task3/maps/level4/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a1fe73aed04c10616e9aa5127b691cc3e6b2abdd895d2586a0371645642c604 +size 7517 diff --git a/maze/task3/maps/level4/img/82.png b/maze/task3/maps/level4/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..cb2b64fe152f12b871bb01796a7df65a8264e1fb --- /dev/null +++ b/maze/task3/maps/level4/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f265123a7ae32ebfcc029ad219d8deb0cdf33580e81e57f67e67a77b0dd4e2 +size 6949 diff --git a/maze/task3/maps/level4/img/83.png b/maze/task3/maps/level4/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..cb8a623385f74180e1ee98ab1f39604053238f90 --- /dev/null +++ b/maze/task3/maps/level4/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83230533bba8610f7bee8ecfc9b842531617bd62bfaa77a54bbee0fcc01b5b3 +size 7905 diff --git a/maze/task3/maps/level4/img/84.png b/maze/task3/maps/level4/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..732d6016f48bc31b774f9c4396dc860e66eaac56 --- /dev/null +++ b/maze/task3/maps/level4/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e62cdccdead50989566bf6e4e9ad6ad0ac261310f4df2ab043c2ec47d902c36 +size 7007 diff --git a/maze/task3/maps/level4/img/85.png b/maze/task3/maps/level4/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..0d0e0c3caca1110565ecc21d414f3ea6f5e262fa --- /dev/null +++ b/maze/task3/maps/level4/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e49e1444fac0d8f248ef984bb37b30fed458edef58a27a035e792386588ea67 +size 6228 diff --git a/maze/task3/maps/level4/img/86.png b/maze/task3/maps/level4/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..2c249a93d04dfb1d58d83f216a4dd13292f281b7 --- /dev/null +++ b/maze/task3/maps/level4/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80875115e656cbf898a6b9583239ded4971e583836e7d7974aed8f4ea83b28c5 +size 7071 diff --git a/maze/task3/maps/level4/img/87.png b/maze/task3/maps/level4/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..c563796c86de1dfd7ba34ef233ef76932767f940 --- /dev/null +++ b/maze/task3/maps/level4/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2922008148c94eed51f35374dccd3c351c60cdd54d51acd318d28c4f050695 +size 6121 diff --git a/maze/task3/maps/level4/img/88.png b/maze/task3/maps/level4/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..801ec47d4e4382c936c72801f51c0b25e81b3123 --- /dev/null +++ b/maze/task3/maps/level4/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20bcc31fb4c7608c1359fdd84e6e0261134f5720fcc5bab0eecc447d348c80de +size 6120 diff --git a/maze/task3/maps/level4/img/89.png b/maze/task3/maps/level4/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..c1f9c8ea6b9c00974f316e4dbac35092fc4c176d --- /dev/null +++ b/maze/task3/maps/level4/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c62b3498569120ebf01ec2325e70efd2e9ab5b6cb57a587276cb08d78a63bc2b +size 8001 diff --git a/maze/task3/maps/level4/img/9.png b/maze/task3/maps/level4/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1732777d42c89716df4eec105381fec4836c0732 --- /dev/null +++ b/maze/task3/maps/level4/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b1ce79a655c5435983ef974dd67b534af3d92ad25f5aa845293de672fd4fbda +size 7153 diff --git a/maze/task3/maps/level4/img/90.png b/maze/task3/maps/level4/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a3789076fd2c84fc585833020ee4c50abfd02e --- /dev/null +++ b/maze/task3/maps/level4/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63e60a0454af90ae2b78b427950b825d9375b32e374e458e7212513e0d73024 +size 7854 diff --git a/maze/task3/maps/level4/img/91.png b/maze/task3/maps/level4/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..b41dbb9fa47708292566894518d5e12404addc7e --- /dev/null +++ b/maze/task3/maps/level4/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c321d09526d937604e39a37c64c8f65cbf81380bbc2e13d1c4dd0bf33c2e294 +size 6312 diff --git a/maze/task3/maps/level4/img/92.png b/maze/task3/maps/level4/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..766c2eac5efb37f047f64b5c0dd3cb2a3abca406 --- /dev/null +++ b/maze/task3/maps/level4/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855c9ad9d6211cf4463f44ba6308c3aca03ef8f95c39f02aeaa9507abeb6bc26 +size 6239 diff --git a/maze/task3/maps/level4/img/93.png b/maze/task3/maps/level4/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..6db394fd96fa34fc6db142fe710d5c093f882695 --- /dev/null +++ b/maze/task3/maps/level4/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ada7c727706782a8b0124795b11e87dd401ab78fa1ac24612e55d5b5d87afd1 +size 7022 diff --git a/maze/task3/maps/level4/img/94.png b/maze/task3/maps/level4/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..8e0ab2c5ad824ba3ea2be07555e89ff12770e02c --- /dev/null +++ b/maze/task3/maps/level4/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99013d978f3bdc9be792ecf0b23b9be8d5006ccf1eb3ee4382446e93c435176e +size 7061 diff --git a/maze/task3/maps/level4/img/95.png b/maze/task3/maps/level4/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..699cb4fe69d364391b1cd113c9cb2f63abfb0899 --- /dev/null +++ b/maze/task3/maps/level4/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3cd9bc4b66055910e203a244a2717591076ae49957fadbd95970de5e766217 +size 7013 diff --git a/maze/task3/maps/level4/img/96.png b/maze/task3/maps/level4/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..4b4e0c90621370d01cb26cd1fea59cfc9ebe1f43 --- /dev/null +++ b/maze/task3/maps/level4/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e9afce033cc38fa0cecc6ea1175ad761058cf03c4869132bab8e715cb422dc +size 7010 diff --git a/maze/task3/maps/level4/img/97.png b/maze/task3/maps/level4/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..8efa0ea2fa24198b952de764cb67c58e379ecf4c --- /dev/null +++ b/maze/task3/maps/level4/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01d30f0e1e107e7920ebfa69c1aed0091078de8c49b788edf0d91d88cd072f5 +size 6260 diff --git a/maze/task3/maps/level4/img/98.png b/maze/task3/maps/level4/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..2148357cb07371cf383d73d69df0452cd072fe85 --- /dev/null +++ b/maze/task3/maps/level4/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7db58e5e68ec2648d59c06b68f7775e3968741a3004c3097167778e519daae +size 7835 diff --git a/maze/task3/maps/level4/img/99.png b/maze/task3/maps/level4/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..78d37a053c0819394c610d3865c96641574f2d64 --- /dev/null +++ b/maze/task3/maps/level4/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49208e49b91b2f588b84de0d976984aebf86b1e912fa2965d8d7fefbe9baf744 +size 7015 diff --git a/maze/task3/maps/level4/question/0.txt b/maze/task3/maps/level4/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f8d8fac69bd1802a033ca13930643ce1c5e2eaa --- /dev/null +++ b/maze/task3/maps/level4/question/0.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | _ | * | # | _ | +| Row 4 | # | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level4/question/1.txt b/maze/task3/maps/level4/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..209079911a594ae9953732f00ba14458227745fd --- /dev/null +++ b/maze/task3/maps/level4/question/1.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | * | # | # | _ | # | +| Row 7 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task3/maps/level4/question/10.txt b/maze/task3/maps/level4/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8a7f2f23e0676b732617f7d3344b8b4c9000cca --- /dev/null +++ b/maze/task3/maps/level4/question/10.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | * | @ | _ | # | +| Row 3 | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/11.txt b/maze/task3/maps/level4/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2841ef4a5129bd70352e6f27670ae05268a3b613 --- /dev/null +++ b/maze/task3/maps/level4/question/11.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | # | # | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | _ | # | +| Row 3 | * | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task3/maps/level4/question/12.txt b/maze/task3/maps/level4/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..01bb3aea18278e95e44878f639f9b2db062e0d03 --- /dev/null +++ b/maze/task3/maps/level4/question/12.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | # | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | * | _ | +| Row 4 | _ | @ | _ | _ | # | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/13.txt b/maze/task3/maps/level4/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9ad1d4f8557c3da682bf828bba42da9f8a2bb7d --- /dev/null +++ b/maze/task3/maps/level4/question/13.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | * | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | * | # | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | # | @ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/14.txt b/maze/task3/maps/level4/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fd3d4bc3b026443c2f7679442297efd4236d21d --- /dev/null +++ b/maze/task3/maps/level4/question/14.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | _ | @ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | +| Row 5 | # | @ | * | _ | _ | # | _ | +| Row 6 | # | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | @ | diff --git a/maze/task3/maps/level4/question/15.txt b/maze/task3/maps/level4/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..234616ecebeafe8fd44e9f43b83dafb923509311 --- /dev/null +++ b/maze/task3/maps/level4/question/15.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | # | _ | _ | +| Row 3 | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | # | # | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | @ | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/16.txt b/maze/task3/maps/level4/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4217d9dac4414cbfb0d380e2f2b21c6a4b46559 --- /dev/null +++ b/maze/task3/maps/level4/question/16.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | * | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/17.txt b/maze/task3/maps/level4/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..34d58fd0cb49a196c7c6acbc18769f16c2466ecb --- /dev/null +++ b/maze/task3/maps/level4/question/17.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task3/maps/level4/question/18.txt b/maze/task3/maps/level4/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..628eaffbb04964def6c118dcbd05a8c6d0049150 --- /dev/null +++ b/maze/task3/maps/level4/question/18.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | * | @ | _ | # | +| Row 3 | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | _ | _ | +| Row 2 | * | _ | # | _ | _ | @ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task3/maps/level4/question/19.txt b/maze/task3/maps/level4/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2673a2641f39c80560c471a8bf632d48d1851cd7 --- /dev/null +++ b/maze/task3/maps/level4/question/19.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | _ | @ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | * | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/2.txt b/maze/task3/maps/level4/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f247a3c6cfc11d56b894cfe3c2cd2b548f5d19d --- /dev/null +++ b/maze/task3/maps/level4/question/2.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | @ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task3/maps/level4/question/20.txt b/maze/task3/maps/level4/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..310278d5f62d84ad2f9d18acbe99befeeecdad3f --- /dev/null +++ b/maze/task3/maps/level4/question/20.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | # | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | @ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | # | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/21.txt b/maze/task3/maps/level4/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1c6b3e0e7f76cd17cdf121dfc9b6b7376f9299c --- /dev/null +++ b/maze/task3/maps/level4/question/21.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | @ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | @ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | # | _ | * | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | @ | * | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/22.txt b/maze/task3/maps/level4/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..0790b24a0ea0da8f488788a89a5f2417f857f382 --- /dev/null +++ b/maze/task3/maps/level4/question/22.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | _ | * | # | +| Row 4 | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task3/maps/level4/question/23.txt b/maze/task3/maps/level4/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..1703a0983d3684240371fea68cf3723e2bc05697 --- /dev/null +++ b/maze/task3/maps/level4/question/23.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | @ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | # | * | # | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | * | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/24.txt b/maze/task3/maps/level4/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6deebd6622c197c0888e68ac9a1e052a64acc15 --- /dev/null +++ b/maze/task3/maps/level4/question/24.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | _ | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | @ | _ | # | _ | # | diff --git a/maze/task3/maps/level4/question/25.txt b/maze/task3/maps/level4/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f90d47436a8123f9a5f275c23d811030a578b64 --- /dev/null +++ b/maze/task3/maps/level4/question/25.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | @ | _ | # | _ | _ | _ | +| Row 4 | # | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | # | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | diff --git a/maze/task3/maps/level4/question/26.txt b/maze/task3/maps/level4/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..087e14ffe7fa93e3a121a5a1311f71ceaf4db385 --- /dev/null +++ b/maze/task3/maps/level4/question/26.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | * | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/27.txt b/maze/task3/maps/level4/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..22bdec8ac536be37631ab655898b2450218418b1 --- /dev/null +++ b/maze/task3/maps/level4/question/27.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | # | _ | @ | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | @ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/28.txt b/maze/task3/maps/level4/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..d63acd21376388705a8f0507dcb150b6cebb4a18 --- /dev/null +++ b/maze/task3/maps/level4/question/28.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | * | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | * | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | diff --git a/maze/task3/maps/level4/question/29.txt b/maze/task3/maps/level4/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..de2f0fe062345291aacb898472aeb08861a6f21f --- /dev/null +++ b/maze/task3/maps/level4/question/29.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | @ | diff --git a/maze/task3/maps/level4/question/3.txt b/maze/task3/maps/level4/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ecdc2983fb93f7975ac3149b38b526fcc2bdd7a --- /dev/null +++ b/maze/task3/maps/level4/question/3.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | # | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | # | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | @ | _ | # | _ | _ | _ | +| Row 7 | # | _ | # | _ | # | _ | _ | diff --git a/maze/task3/maps/level4/question/30.txt b/maze/task3/maps/level4/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..22227fd2983a9e3e15b42e92ed712cd366db5bbc --- /dev/null +++ b/maze/task3/maps/level4/question/30.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | * | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | * | @ | +| Row 3 | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/31.txt b/maze/task3/maps/level4/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa948468e998c731d791443fb8c3091e37fab95c --- /dev/null +++ b/maze/task3/maps/level4/question/31.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | * | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/32.txt b/maze/task3/maps/level4/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..8741c39f82e23103c7c987f25625c16829716254 --- /dev/null +++ b/maze/task3/maps/level4/question/32.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | # | # | +| Row 3 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | # | diff --git a/maze/task3/maps/level4/question/33.txt b/maze/task3/maps/level4/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..6188c026d2ae08952fae408c19890edf8b58ad88 --- /dev/null +++ b/maze/task3/maps/level4/question/33.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | # | _ | @ | +| Row 3 | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | # | # | * | _ | diff --git a/maze/task3/maps/level4/question/34.txt b/maze/task3/maps/level4/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..5479fc4e64e60a48d9086780ebbe7433beaac799 --- /dev/null +++ b/maze/task3/maps/level4/question/34.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | * | @ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | * | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | * | _ | +| Row 4 | _ | _ | @ | _ | diff --git a/maze/task3/maps/level4/question/35.txt b/maze/task3/maps/level4/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..e729e98041165467d06bf9e76c9ca89b61bbb2c1 --- /dev/null +++ b/maze/task3/maps/level4/question/35.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | * | +| Row 7 | _ | _ | _ | # | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | @ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | diff --git a/maze/task3/maps/level4/question/36.txt b/maze/task3/maps/level4/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..344519e8fa0ada4e9e1893105fa0462c30aad97d --- /dev/null +++ b/maze/task3/maps/level4/question/36.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | @ | _ | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | # | +| Row 7 | _ | # | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | # | # | * | _ | diff --git a/maze/task3/maps/level4/question/37.txt b/maze/task3/maps/level4/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f4dfc5f3d78086cfca0572c3ec876b938def48a --- /dev/null +++ b/maze/task3/maps/level4/question/37.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | @ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | @ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | * | +| Row 4 | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | @ | # | _ | diff --git a/maze/task3/maps/level4/question/38.txt b/maze/task3/maps/level4/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a9b4c0aa75fc1cc9d0b42c6a6d73b89661abe42 --- /dev/null +++ b/maze/task3/maps/level4/question/38.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | * | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level4/question/39.txt b/maze/task3/maps/level4/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb91a94b1c3dc3631fc074aebd461ec526bd8edd --- /dev/null +++ b/maze/task3/maps/level4/question/39.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | # | _ | # | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | # | # | _ | # | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | # | @ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/4.txt b/maze/task3/maps/level4/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbf2aee030887a05bd888ad717650c28b576f523 --- /dev/null +++ b/maze/task3/maps/level4/question/4.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | @ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | # | * | _ | _ | diff --git a/maze/task3/maps/level4/question/40.txt b/maze/task3/maps/level4/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f082b0f52aad71ad3d576544be43207bd3d5601c --- /dev/null +++ b/maze/task3/maps/level4/question/40.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | * | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | @ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | * | @ | +| Row 3 | _ | # | _ | diff --git a/maze/task3/maps/level4/question/41.txt b/maze/task3/maps/level4/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..082bb1f94bd2cdf89529f0496fa259a74db68b08 --- /dev/null +++ b/maze/task3/maps/level4/question/41.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | # | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | * | _ | # | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/42.txt b/maze/task3/maps/level4/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ec4415bf6ff77c75f0d3c0c1746a6f047ae6d6 --- /dev/null +++ b/maze/task3/maps/level4/question/42.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | @ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | @ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level4/question/43.txt b/maze/task3/maps/level4/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..b30fc88c09f06eba788f9a37fb25fd0623f6d526 --- /dev/null +++ b/maze/task3/maps/level4/question/43.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | @ | # | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | # | _ | # | _ | # | +| Row 8 | # | _ | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/44.txt b/maze/task3/maps/level4/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..d57f781ff60571e771a3778ef9c6f3442561edbe --- /dev/null +++ b/maze/task3/maps/level4/question/44.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/45.txt b/maze/task3/maps/level4/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..01e7a0cacb8f27f4597f81273e43096ad6c84a00 --- /dev/null +++ b/maze/task3/maps/level4/question/45.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | # | # | _ | # | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | * | _ | # | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task3/maps/level4/question/46.txt b/maze/task3/maps/level4/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..daffdb516d12fe46efa30ccb0f17c27b027ab44c --- /dev/null +++ b/maze/task3/maps/level4/question/46.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | # | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | * | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/47.txt b/maze/task3/maps/level4/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..d68627c343c3ce3405792b61e0ed49d848a5add6 --- /dev/null +++ b/maze/task3/maps/level4/question/47.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | * | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | @ | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level4/question/48.txt b/maze/task3/maps/level4/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..eab959a1cd5a74d1b368e34e2755a5a301c3fe1e --- /dev/null +++ b/maze/task3/maps/level4/question/48.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | * | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | # | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/49.txt b/maze/task3/maps/level4/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b5af267246bbd7aa1fa32784d63795d4f3cab2b --- /dev/null +++ b/maze/task3/maps/level4/question/49.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | # | _ | _ | # | +| Row 7 | _ | # | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task3/maps/level4/question/5.txt b/maze/task3/maps/level4/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..185801e8d30283f0e9e58ddc2a6ce7f435a35376 --- /dev/null +++ b/maze/task3/maps/level4/question/5.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | @ | * | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/50.txt b/maze/task3/maps/level4/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf22f0e86a6572653e3a80fa2a018bbdcdfa8b45 --- /dev/null +++ b/maze/task3/maps/level4/question/50.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task3/maps/level4/question/51.txt b/maze/task3/maps/level4/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8211768fab1ec2390b70bb72979611993be892d6 --- /dev/null +++ b/maze/task3/maps/level4/question/51.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | * | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | @ | # | # | _ | _ | _ | # | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | +| Row 4 | # | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | * | # | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/52.txt b/maze/task3/maps/level4/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..45d57ca303aff71b8840cbc22bdf521db7250422 --- /dev/null +++ b/maze/task3/maps/level4/question/52.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | # | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | # | _ | _ | * | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | # | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | * | _ | _ | diff --git a/maze/task3/maps/level4/question/53.txt b/maze/task3/maps/level4/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc1d1c663fb09560325db6d72a9003e94b82bd3a --- /dev/null +++ b/maze/task3/maps/level4/question/53.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | # | _ | * | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | @ | diff --git a/maze/task3/maps/level4/question/54.txt b/maze/task3/maps/level4/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8f84c1ce47609b6d2f48f61bd213ad4ebabe650 --- /dev/null +++ b/maze/task3/maps/level4/question/54.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | * | +| Row 5 | _ | _ | # | @ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | @ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | * | _ | +| Row 4 | _ | _ | @ | _ | diff --git a/maze/task3/maps/level4/question/55.txt b/maze/task3/maps/level4/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3fff3112b1c08153d9f0aae1d21206b95ed6f97 --- /dev/null +++ b/maze/task3/maps/level4/question/55.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | * | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task3/maps/level4/question/56.txt b/maze/task3/maps/level4/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fd7418011598bc8b7c98ca76937198510356ed0 --- /dev/null +++ b/maze/task3/maps/level4/question/56.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | # | _ | @ | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | * | _ | # | diff --git a/maze/task3/maps/level4/question/57.txt b/maze/task3/maps/level4/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..30551ed7e6af137340745d4aba3cb06c6872ca8a --- /dev/null +++ b/maze/task3/maps/level4/question/57.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | * | # | +| Row 2 | _ | # | _ | _ | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | * | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/58.txt b/maze/task3/maps/level4/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..454bebe1c40628f6ab43563426d8ed325461f685 --- /dev/null +++ b/maze/task3/maps/level4/question/58.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | # | * | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | _ | _ | +| Row 3 | # | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | * | _ | +| Row 4 | _ | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/59.txt b/maze/task3/maps/level4/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d66279aea4867ade12a5359b014891c7925d76e --- /dev/null +++ b/maze/task3/maps/level4/question/59.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | # | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | * | _ | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task3/maps/level4/question/6.txt b/maze/task3/maps/level4/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2f77ba9aba225fb8562ccca7d65ef74075d63b2 --- /dev/null +++ b/maze/task3/maps/level4/question/6.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | @ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | # | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/60.txt b/maze/task3/maps/level4/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..5702c1354b33b091bca1bf756e24b34d05337ac3 --- /dev/null +++ b/maze/task3/maps/level4/question/60.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | # | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | # | +| Row 6 | # | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | @ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | # | * | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/61.txt b/maze/task3/maps/level4/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da0a7de8c9f95162f57c4190caa6b749b4e273d --- /dev/null +++ b/maze/task3/maps/level4/question/61.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task3/maps/level4/question/62.txt b/maze/task3/maps/level4/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ed4f87def95c9e3647b76e70d4b5fc6385f6d8c --- /dev/null +++ b/maze/task3/maps/level4/question/62.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | @ | # | _ | _ | # | +| Row 8 | _ | _ | # | _ | * | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | # | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | +| Row 4 | # | _ | _ | * | diff --git a/maze/task3/maps/level4/question/63.txt b/maze/task3/maps/level4/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f7c7335e0ceb2bb62d79a7607d3bf40d72dcf9c --- /dev/null +++ b/maze/task3/maps/level4/question/63.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | # | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/64.txt b/maze/task3/maps/level4/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fb50b7338dfdd9d1e35703921d2ca19df49c65d --- /dev/null +++ b/maze/task3/maps/level4/question/64.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | * | # | # | _ | # | +| Row 7 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/65.txt b/maze/task3/maps/level4/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2afe354083424e43a957abb29bec8d0dbd83948 --- /dev/null +++ b/maze/task3/maps/level4/question/65.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | # | # | _ | # | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task3/maps/level4/question/66.txt b/maze/task3/maps/level4/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..50704c6a4610336494de5dc09983cdb23a329a6c --- /dev/null +++ b/maze/task3/maps/level4/question/66.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/67.txt b/maze/task3/maps/level4/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fcfcf0b94cf9035632bdda1cfb91960bd3a4733 --- /dev/null +++ b/maze/task3/maps/level4/question/67.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | * | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | * | @ | _ | +| Row 4 | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | @ | _ | # | # | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level4/question/68.txt b/maze/task3/maps/level4/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ee0bc956dd1f095e8f3d6c99d0d07a5f2ae2be8 --- /dev/null +++ b/maze/task3/maps/level4/question/68.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | * | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | # | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | @ | _ | +| Row 4 | _ | * | _ | _ | diff --git a/maze/task3/maps/level4/question/69.txt b/maze/task3/maps/level4/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee0ab8ef40d9c1f39b4392a2f34c3812319c4a90 --- /dev/null +++ b/maze/task3/maps/level4/question/69.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | * | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | @ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | _ | +| Row 3 | # | _ | @ | diff --git a/maze/task3/maps/level4/question/7.txt b/maze/task3/maps/level4/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..96b4876c272116066677f2328dd6708edaf50c8b --- /dev/null +++ b/maze/task3/maps/level4/question/7.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | @ | _ | # | # | _ | _ | _ | _ | +| Row 6 | * | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | # | # | _ | # | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | * | @ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/70.txt b/maze/task3/maps/level4/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..1760c9f208cecbaf7fd62e7faa319bc111815814 --- /dev/null +++ b/maze/task3/maps/level4/question/70.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | @ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | # | +| Row 7 | * | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/71.txt b/maze/task3/maps/level4/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1138d31931668951aba8646858bca3165287559 --- /dev/null +++ b/maze/task3/maps/level4/question/71.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | # | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/72.txt b/maze/task3/maps/level4/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..38d54108e7a0c4758140d25e3186a1068a9fb00a --- /dev/null +++ b/maze/task3/maps/level4/question/72.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | _ | @ | _ | # | _ | +| Row 5 | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | @ | # | +| Row 6 | # | _ | # | # | # | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | diff --git a/maze/task3/maps/level4/question/73.txt b/maze/task3/maps/level4/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..53553fe02fcbe66adfa9cfa16ee7e581aac5b7a3 --- /dev/null +++ b/maze/task3/maps/level4/question/73.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | # | # | _ | @ | # | # | +| Row 5 | _ | * | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | * | # | # | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/74.txt b/maze/task3/maps/level4/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..57c3057fe60001d864857a7fadebd0af04d51bf1 --- /dev/null +++ b/maze/task3/maps/level4/question/74.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | @ | # | _ | _ | diff --git a/maze/task3/maps/level4/question/75.txt b/maze/task3/maps/level4/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bd04fcce2578c0b1313f961442d03fd7a33144b --- /dev/null +++ b/maze/task3/maps/level4/question/75.txt @@ -0,0 +1,30 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | _ | _ | +| Row 3 | # | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | * | @ | _ | # | +| Row 3 | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/76.txt b/maze/task3/maps/level4/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cedf466fae70db1e32e1fac475af5a18e2a699b --- /dev/null +++ b/maze/task3/maps/level4/question/76.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/77.txt b/maze/task3/maps/level4/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0f4c401b44086e637fd510f76c37a0cbfb0e8d1 --- /dev/null +++ b/maze/task3/maps/level4/question/77.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/78.txt b/maze/task3/maps/level4/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e3565852bef43e1caef7e382f914ff62c55f930 --- /dev/null +++ b/maze/task3/maps/level4/question/78.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | _ | _ | * | diff --git a/maze/task3/maps/level4/question/79.txt b/maze/task3/maps/level4/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ca51f31ca1815eb63491ba63eb436a45b62d524 --- /dev/null +++ b/maze/task3/maps/level4/question/79.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | # | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | # | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/8.txt b/maze/task3/maps/level4/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2d701f92eda733ff7386fa0076789f77bcf6924 --- /dev/null +++ b/maze/task3/maps/level4/question/8.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task3/maps/level4/question/80.txt b/maze/task3/maps/level4/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ea3ed2470bb5fb3b586c48136ba6726fdfc2daf --- /dev/null +++ b/maze/task3/maps/level4/question/80.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | # | _ | _ | +| Row 3 | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | # | _ | +| Row 5 | _ | _ | _ | # | @ | # | +| Row 6 | _ | _ | * | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level4/question/81.txt b/maze/task3/maps/level4/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f4bac39e92395b5ccc14d03a096814880aca4c6 --- /dev/null +++ b/maze/task3/maps/level4/question/81.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | * | _ | +| Row 4 | _ | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | * | @ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/82.txt b/maze/task3/maps/level4/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..58004559de76a26eb69e3b59198c63a3e9d049d7 --- /dev/null +++ b/maze/task3/maps/level4/question/82.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | @ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | # | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | # | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/83.txt b/maze/task3/maps/level4/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..0157fadd564adaeb2aeea48adc1d85a2ebb1bd71 --- /dev/null +++ b/maze/task3/maps/level4/question/83.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | * | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | * | _ | _ | diff --git a/maze/task3/maps/level4/question/84.txt b/maze/task3/maps/level4/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8d73849edc1b8e19030722b26149cb2237685f4 --- /dev/null +++ b/maze/task3/maps/level4/question/84.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | _ | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task3/maps/level4/question/85.txt b/maze/task3/maps/level4/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cd98ccd41333d5e2b75197a9010d7cd384393c8 --- /dev/null +++ b/maze/task3/maps/level4/question/85.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/86.txt b/maze/task3/maps/level4/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..91b673a2e2c50efb621db704afcc99fe01ab48ec --- /dev/null +++ b/maze/task3/maps/level4/question/86.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | * | _ | _ | @ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/87.txt b/maze/task3/maps/level4/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..993fd19580064d3126c36a033cba5db508ba689b --- /dev/null +++ b/maze/task3/maps/level4/question/87.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | # | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | @ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task3/maps/level4/question/88.txt b/maze/task3/maps/level4/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..744d1c41632b2979f16b0fc422fcc4c879a956af --- /dev/null +++ b/maze/task3/maps/level4/question/88.txt @@ -0,0 +1,28 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task3/maps/level4/question/89.txt b/maze/task3/maps/level4/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4ef41817161a1649930fa0534a0fce56e72801c --- /dev/null +++ b/maze/task3/maps/level4/question/89.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | * | @ | _ | +| Row 4 | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task3/maps/level4/question/9.txt b/maze/task3/maps/level4/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e04cce9d5d162f20ba38b7a4f6fc008423a85da --- /dev/null +++ b/maze/task3/maps/level4/question/9.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | @ | # | _ | _ | # | _ | +| Row 4 | _ | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | * | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | diff --git a/maze/task3/maps/level4/question/90.txt b/maze/task3/maps/level4/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..422952af5bd0e79b78d4508723e6b7eb68a8a7d1 --- /dev/null +++ b/maze/task3/maps/level4/question/90.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | # | @ | +| Row 3 | # | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | * | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | diff --git a/maze/task3/maps/level4/question/91.txt b/maze/task3/maps/level4/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..f582c5b71f710683d7f72d6813ebaac4fd2628bc --- /dev/null +++ b/maze/task3/maps/level4/question/91.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | @ | +| Row 4 | _ | # | _ | _ | # | _ | +| Row 5 | _ | _ | # | _ | _ | # | +| Row 6 | _ | * | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | diff --git a/maze/task3/maps/level4/question/92.txt b/maze/task3/maps/level4/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..295a0f24ccc7b579c70562020703dc8348137377 --- /dev/null +++ b/maze/task3/maps/level4/question/92.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | * | @ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/93.txt b/maze/task3/maps/level4/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccc4821be5bf5817d93d1ed184436224364dd408 --- /dev/null +++ b/maze/task3/maps/level4/question/93.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | @ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | * | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | * | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/94.txt b/maze/task3/maps/level4/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..880ddb188e4d67014cb11faf15c47a316a0423ac --- /dev/null +++ b/maze/task3/maps/level4/question/94.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | @ | _ | _ | # | _ | +| Row 6 | _ | * | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/95.txt b/maze/task3/maps/level4/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3911e96e0840e8779b8e6d8eec266c3e429a1f0 --- /dev/null +++ b/maze/task3/maps/level4/question/95.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | * | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/96.txt b/maze/task3/maps/level4/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c39a28d0bbf4d1c00726020876b333f136328cc --- /dev/null +++ b/maze/task3/maps/level4/question/96.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | # | _ | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | # | # | +| Row 3 | @ | _ | _ | * | +| Row 4 | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | # | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/97.txt b/maze/task3/maps/level4/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..d00b7720e67943bfd2134661a829a216a53db793 --- /dev/null +++ b/maze/task3/maps/level4/question/97.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | @ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/98.txt b/maze/task3/maps/level4/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e76d06e12eca67d03f42b68b5cd6397809d6fc9 --- /dev/null +++ b/maze/task3/maps/level4/question/98.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | # | _ | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | @ | # | _ | +| Row 8 | _ | _ | # | _ | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | * | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | @ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level4/question/99.txt b/maze/task3/maps/level4/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb2eeadc1e00266e54131a94b1a49d993c3f017b --- /dev/null +++ b/maze/task3/maps/level4/question/99.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | * | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | @ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | * | _ | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/answer/0.txt b/maze/task3/maps/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b592c9beaa4832f413dde484f788a00604a364d --- /dev/null +++ b/maze/task3/maps/level5/answer/0.txt @@ -0,0 +1,5 @@ +7-38 +8-28 +5-0 +5-81 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/1.txt b/maze/task3/maps/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8ebcd706bfae2950bd6c70f9d05b01f8f6d4d93 --- /dev/null +++ b/maze/task3/maps/level5/answer/1.txt @@ -0,0 +1,5 @@ +5-15 +5-1 +4-76 +3-65 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/10.txt b/maze/task3/maps/level5/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..131afd6b13cd4804904e72e4b3aebb8514bd6168 --- /dev/null +++ b/maze/task3/maps/level5/answer/10.txt @@ -0,0 +1,5 @@ +3-76 +5-55 +5-10 +7-86 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/11.txt b/maze/task3/maps/level5/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f156c0f242ec0f2b8181e779c5ebe98323f6f18 --- /dev/null +++ b/maze/task3/maps/level5/answer/11.txt @@ -0,0 +1,5 @@ +5-11 +7-77 +5-6 +8-59 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/12.txt b/maze/task3/maps/level5/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf990ffd23182074bbc7eaac37b0b79b3d936d5c --- /dev/null +++ b/maze/task3/maps/level5/answer/12.txt @@ -0,0 +1,5 @@ +3-5 +5-12 +8-14 +5-76 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/13.txt b/maze/task3/maps/level5/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..23cb4c8e30cc03679d351809fe912689d968a47c --- /dev/null +++ b/maze/task3/maps/level5/answer/13.txt @@ -0,0 +1,5 @@ +8-70 +5-73 +5-13 +6-34 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/14.txt b/maze/task3/maps/level5/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..1546545356c1d564f4d2ea101fe8f66754fa6181 --- /dev/null +++ b/maze/task3/maps/level5/answer/14.txt @@ -0,0 +1,5 @@ +5-46 +5-14 +4-13 +8-71 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/15.txt b/maze/task3/maps/level5/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae4d69dcad00e851f9e65a330b21892c22ae92e4 --- /dev/null +++ b/maze/task3/maps/level5/answer/15.txt @@ -0,0 +1,5 @@ +3-54 +6-93 +5-15 +5-45 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/16.txt b/maze/task3/maps/level5/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2fd0ae02760ec48aa095ce7f874808b1443bf9d --- /dev/null +++ b/maze/task3/maps/level5/answer/16.txt @@ -0,0 +1,5 @@ +3-53 +5-46 +5-16 +7-48 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/17.txt b/maze/task3/maps/level5/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f820dc97763b880471b76fee5d903c602123d3c --- /dev/null +++ b/maze/task3/maps/level5/answer/17.txt @@ -0,0 +1,5 @@ +5-67 +5-17 +7-81 +4-78 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/18.txt b/maze/task3/maps/level5/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..e445cbc07236ec560e1344f2583fe29441415da9 --- /dev/null +++ b/maze/task3/maps/level5/answer/18.txt @@ -0,0 +1,5 @@ +6-65 +5-70 +3-22 +5-18 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/19.txt b/maze/task3/maps/level5/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..895dc877e1f217e5e07bbefc4a8fa9faf143d8ae --- /dev/null +++ b/maze/task3/maps/level5/answer/19.txt @@ -0,0 +1,5 @@ +3-61 +5-19 +5-50 +8-26 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/2.txt b/maze/task3/maps/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..688e2d393004dd6ae3d78e5c5d23991e5e54ee54 --- /dev/null +++ b/maze/task3/maps/level5/answer/2.txt @@ -0,0 +1,5 @@ +4-35 +7-69 +5-2 +5-3 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/20.txt b/maze/task3/maps/level5/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2de2e6ed55effdf59451af03a599aa51281b733 --- /dev/null +++ b/maze/task3/maps/level5/answer/20.txt @@ -0,0 +1,5 @@ +4-31 +5-20 +3-42 +5-43 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/21.txt b/maze/task3/maps/level5/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d0b1c509b688a7e48779361d0448214f4cb84db --- /dev/null +++ b/maze/task3/maps/level5/answer/21.txt @@ -0,0 +1,5 @@ +7-47 +5-21 +5-84 +8-63 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/22.txt b/maze/task3/maps/level5/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c33170001e328d4b07717aa5fc14abfbdb66ebc --- /dev/null +++ b/maze/task3/maps/level5/answer/22.txt @@ -0,0 +1,5 @@ +7-69 +5-74 +8-15 +5-22 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/23.txt b/maze/task3/maps/level5/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..b568599afefe1e7a6484d05fc775eb693dd9eeb8 --- /dev/null +++ b/maze/task3/maps/level5/answer/23.txt @@ -0,0 +1,5 @@ +5-23 +5-54 +4-1 +8-48 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/24.txt b/maze/task3/maps/level5/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..22452f35bacd464476330a1f2465ef0b3308ec6b --- /dev/null +++ b/maze/task3/maps/level5/answer/24.txt @@ -0,0 +1,5 @@ +5-49 +3-58 +5-24 +4-98 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/25.txt b/maze/task3/maps/level5/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..b54995d4de20e2cc650db61b0f93605df710d32c --- /dev/null +++ b/maze/task3/maps/level5/answer/25.txt @@ -0,0 +1,5 @@ +4-32 +3-2 +5-60 +5-25 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/26.txt b/maze/task3/maps/level5/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..11e601122c7f1f2e3738a3515f6ce2ffd0702b75 --- /dev/null +++ b/maze/task3/maps/level5/answer/26.txt @@ -0,0 +1,5 @@ +5-32 +4-0 +7-69 +5-26 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/27.txt b/maze/task3/maps/level5/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecdb3c67031dcaba1ab0b5ebc7901c038bd1712d --- /dev/null +++ b/maze/task3/maps/level5/answer/27.txt @@ -0,0 +1,5 @@ +5-9 +5-27 +4-84 +6-30 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/28.txt b/maze/task3/maps/level5/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..ced0e53be565446301bcb4829759eec0a63b058c --- /dev/null +++ b/maze/task3/maps/level5/answer/28.txt @@ -0,0 +1,5 @@ +5-55 +5-28 +7-65 +3-27 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/29.txt b/maze/task3/maps/level5/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..764ab424e87915eaf2c0aae13240eadb141ce9b6 --- /dev/null +++ b/maze/task3/maps/level5/answer/29.txt @@ -0,0 +1,5 @@ +5-29 +5-89 +8-89 +4-64 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/3.txt b/maze/task3/maps/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..092c34df37ca0b62bd27d8b056b64e29e8d8e50e --- /dev/null +++ b/maze/task3/maps/level5/answer/3.txt @@ -0,0 +1,5 @@ +5-3 +6-60 +8-16 +5-52 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/30.txt b/maze/task3/maps/level5/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..c96b18fc342f701d6e069513ce72d9e4b87ae030 --- /dev/null +++ b/maze/task3/maps/level5/answer/30.txt @@ -0,0 +1,5 @@ +5-30 +7-15 +5-83 +8-72 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/31.txt b/maze/task3/maps/level5/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce0316efa2a001263044f6b5a63456df85e34a99 --- /dev/null +++ b/maze/task3/maps/level5/answer/31.txt @@ -0,0 +1,5 @@ +5-5 +5-31 +3-82 +8-61 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/32.txt b/maze/task3/maps/level5/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4bc40ee3d6aa1d9ee5dea91bebaa67c8a9b8499 --- /dev/null +++ b/maze/task3/maps/level5/answer/32.txt @@ -0,0 +1,5 @@ +5-93 +3-59 +6-35 +5-32 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/33.txt b/maze/task3/maps/level5/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..be2180265f8ee76c4aa4187381cd13b2ae219201 --- /dev/null +++ b/maze/task3/maps/level5/answer/33.txt @@ -0,0 +1,5 @@ +8-71 +4-90 +5-41 +5-33 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/34.txt b/maze/task3/maps/level5/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2be1b3d2ad4b15eadab9a7b3491b14503c0c7f64 --- /dev/null +++ b/maze/task3/maps/level5/answer/34.txt @@ -0,0 +1,5 @@ +5-90 +7-89 +4-50 +5-34 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/35.txt b/maze/task3/maps/level5/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ba2de5101643171a64e5c762f4396e07705e380 --- /dev/null +++ b/maze/task3/maps/level5/answer/35.txt @@ -0,0 +1,5 @@ +5-33 +7-46 +5-35 +6-19 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/36.txt b/maze/task3/maps/level5/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..68fe9d278975a410fce6175c5e1ff35a00984cec --- /dev/null +++ b/maze/task3/maps/level5/answer/36.txt @@ -0,0 +1,5 @@ +8-93 +5-36 +5-44 +3-46 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/37.txt b/maze/task3/maps/level5/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..b475f51ecf64c8c35966727573ee2e58175a7ffd --- /dev/null +++ b/maze/task3/maps/level5/answer/37.txt @@ -0,0 +1,5 @@ +5-35 +6-44 +8-49 +5-37 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/38.txt b/maze/task3/maps/level5/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..345710f1db1ad5d849c585c3f6413c94297fa977 --- /dev/null +++ b/maze/task3/maps/level5/answer/38.txt @@ -0,0 +1,5 @@ +5-38 +4-32 +8-28 +5-25 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/39.txt b/maze/task3/maps/level5/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..da8afb36e7f17993d2cd55fb0c9bae53d0934900 --- /dev/null +++ b/maze/task3/maps/level5/answer/39.txt @@ -0,0 +1,5 @@ +8-69 +5-39 +4-54 +5-92 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/4.txt b/maze/task3/maps/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f6282fdaf04a986e6d8560e3275be24058d9399 --- /dev/null +++ b/maze/task3/maps/level5/answer/4.txt @@ -0,0 +1,5 @@ +5-4 +6-83 +3-69 +5-47 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/40.txt b/maze/task3/maps/level5/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..58453e8573b1664533bf111153d62b35d59454e8 --- /dev/null +++ b/maze/task3/maps/level5/answer/40.txt @@ -0,0 +1,5 @@ +5-40 +4-50 +7-91 +5-25 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/41.txt b/maze/task3/maps/level5/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ce7f749599fdb493404e8080dc74ffb04595401 --- /dev/null +++ b/maze/task3/maps/level5/answer/41.txt @@ -0,0 +1,5 @@ +3-85 +5-3 +4-7 +5-41 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/42.txt b/maze/task3/maps/level5/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..482e8731cde61bf1b29857499c7a3be2a8e84918 --- /dev/null +++ b/maze/task3/maps/level5/answer/42.txt @@ -0,0 +1,5 @@ +5-42 +5-16 +7-75 +4-76 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/43.txt b/maze/task3/maps/level5/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3de5b653e659dcada58887c584082343d57c18b6 --- /dev/null +++ b/maze/task3/maps/level5/answer/43.txt @@ -0,0 +1,5 @@ +7-36 +5-85 +4-25 +5-43 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/44.txt b/maze/task3/maps/level5/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..5348000e87f6113e24937cda66d4ece4cb624eaa --- /dev/null +++ b/maze/task3/maps/level5/answer/44.txt @@ -0,0 +1,5 @@ +4-38 +5-18 +5-44 +8-90 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/45.txt b/maze/task3/maps/level5/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..14d1b9eb21d542398e3c51bf868aed9622413f3f --- /dev/null +++ b/maze/task3/maps/level5/answer/45.txt @@ -0,0 +1,5 @@ +8-11 +5-45 +6-65 +5-38 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/46.txt b/maze/task3/maps/level5/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b596938a6f68b15d123ef4d8d0d44b3551a6a14 --- /dev/null +++ b/maze/task3/maps/level5/answer/46.txt @@ -0,0 +1,5 @@ +5-46 +7-37 +3-79 +5-76 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/47.txt b/maze/task3/maps/level5/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..620b1c440f78cc57316d6dd5b40af4d33e1088f6 --- /dev/null +++ b/maze/task3/maps/level5/answer/47.txt @@ -0,0 +1,5 @@ +5-47 +6-32 +5-7 +7-79 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/48.txt b/maze/task3/maps/level5/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca00d2dc4a85c6633f9b0d2eaceed2ec4744b61b --- /dev/null +++ b/maze/task3/maps/level5/answer/48.txt @@ -0,0 +1,5 @@ +4-80 +8-13 +5-14 +5-48 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/49.txt b/maze/task3/maps/level5/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..225b46c6994bb69f7ff6df2806f62190aa81a8b2 --- /dev/null +++ b/maze/task3/maps/level5/answer/49.txt @@ -0,0 +1,5 @@ +5-65 +8-95 +4-26 +5-49 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/5.txt b/maze/task3/maps/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cbfe89da6fc3095ab4f586f4e0c5444e05fc25c --- /dev/null +++ b/maze/task3/maps/level5/answer/5.txt @@ -0,0 +1,5 @@ +5-5 +6-87 +7-16 +5-20 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/50.txt b/maze/task3/maps/level5/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..fede69e63337a6e277e97079852cf8682804cc03 --- /dev/null +++ b/maze/task3/maps/level5/answer/50.txt @@ -0,0 +1,5 @@ +4-84 +7-66 +5-50 +5-17 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/51.txt b/maze/task3/maps/level5/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..5118b9fe165f0ae604178e905c1b54c34cc4fbcb --- /dev/null +++ b/maze/task3/maps/level5/answer/51.txt @@ -0,0 +1,5 @@ +3-25 +8-97 +5-73 +5-51 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/52.txt b/maze/task3/maps/level5/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf74f2e00a8cc2004f79984ee3b135916168adc6 --- /dev/null +++ b/maze/task3/maps/level5/answer/52.txt @@ -0,0 +1,5 @@ +7-34 +5-52 +4-4 +5-82 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/53.txt b/maze/task3/maps/level5/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..c30f59c173dbb9ddaeaf9a4fd5463604096f8d1d --- /dev/null +++ b/maze/task3/maps/level5/answer/53.txt @@ -0,0 +1,5 @@ +8-52 +5-99 +4-35 +5-53 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/54.txt b/maze/task3/maps/level5/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..a60f2be511b5a9d33f456b0f49e2f0e2a0a5be07 --- /dev/null +++ b/maze/task3/maps/level5/answer/54.txt @@ -0,0 +1,5 @@ +6-12 +5-54 +7-85 +5-16 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/55.txt b/maze/task3/maps/level5/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2b89be206e2715f596ea5c00acdc7e2c53a2fdd --- /dev/null +++ b/maze/task3/maps/level5/answer/55.txt @@ -0,0 +1,5 @@ +3-96 +5-55 +5-63 +7-5 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/56.txt b/maze/task3/maps/level5/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ca738efac1a3653f102925e94b482566ce10439 --- /dev/null +++ b/maze/task3/maps/level5/answer/56.txt @@ -0,0 +1,5 @@ +5-56 +8-31 +5-9 +6-12 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/57.txt b/maze/task3/maps/level5/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bc6cf89b2d92a5dae91ded1b43bbc743200aaab --- /dev/null +++ b/maze/task3/maps/level5/answer/57.txt @@ -0,0 +1,5 @@ +7-22 +5-57 +4-76 +5-65 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/58.txt b/maze/task3/maps/level5/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..76d8e60e35839d13b480fae5009554b8aa9020ff --- /dev/null +++ b/maze/task3/maps/level5/answer/58.txt @@ -0,0 +1,5 @@ +5-58 +7-25 +5-46 +6-29 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/59.txt b/maze/task3/maps/level5/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..1310ebc1bd1a8524e2590c5b1825203968153bb3 --- /dev/null +++ b/maze/task3/maps/level5/answer/59.txt @@ -0,0 +1,5 @@ +3-5 +5-59 +5-22 +7-78 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/6.txt b/maze/task3/maps/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..0805ce5631c2e4f9b019a72ce2cc522915f3bd90 --- /dev/null +++ b/maze/task3/maps/level5/answer/6.txt @@ -0,0 +1,5 @@ +4-61 +5-43 +5-6 +8-98 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/60.txt b/maze/task3/maps/level5/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..241bd56404f1728b7b5b1dbbb3648fb2d40f7634 --- /dev/null +++ b/maze/task3/maps/level5/answer/60.txt @@ -0,0 +1,5 @@ +5-8 +7-74 +3-64 +5-60 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/61.txt b/maze/task3/maps/level5/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..14499727efa877535ce66caf0ed3bab5662b0867 --- /dev/null +++ b/maze/task3/maps/level5/answer/61.txt @@ -0,0 +1,5 @@ +5-45 +7-50 +6-34 +5-61 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/62.txt b/maze/task3/maps/level5/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f4238936401dfdea8578bba46f75a1a5e9e429b --- /dev/null +++ b/maze/task3/maps/level5/answer/62.txt @@ -0,0 +1,5 @@ +5-38 +8-2 +5-62 +7-54 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/63.txt b/maze/task3/maps/level5/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..fccd27c471e8962298b858d6f94cc29dc1031549 --- /dev/null +++ b/maze/task3/maps/level5/answer/63.txt @@ -0,0 +1,5 @@ +8-8 +5-46 +6-77 +5-63 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/64.txt b/maze/task3/maps/level5/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0766e5e6b83294c5ad9f046b50165a316582d8f --- /dev/null +++ b/maze/task3/maps/level5/answer/64.txt @@ -0,0 +1,5 @@ +5-64 +8-73 +3-74 +5-14 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/65.txt b/maze/task3/maps/level5/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..c968bbb631dbd82bb5a64efa2476212930fdfc08 --- /dev/null +++ b/maze/task3/maps/level5/answer/65.txt @@ -0,0 +1,5 @@ +8-12 +3-42 +5-65 +5-43 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/66.txt b/maze/task3/maps/level5/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac24c2992ca1a5e832b5ef9a9f01e343ff02d37b --- /dev/null +++ b/maze/task3/maps/level5/answer/66.txt @@ -0,0 +1,5 @@ +5-66 +3-74 +6-9 +5-62 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/67.txt b/maze/task3/maps/level5/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..25237a51a489566f9b7973eafa9e6e41241aefb6 --- /dev/null +++ b/maze/task3/maps/level5/answer/67.txt @@ -0,0 +1,5 @@ +7-64 +5-67 +5-0 +6-69 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/68.txt b/maze/task3/maps/level5/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..d926fc4b8c366b4775f4ff31e0e74d1493bac4ae --- /dev/null +++ b/maze/task3/maps/level5/answer/68.txt @@ -0,0 +1,5 @@ +5-68 +6-18 +5-18 +4-74 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/69.txt b/maze/task3/maps/level5/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..05513a6e6831492130a4a29bbabbc5c05c90a687 --- /dev/null +++ b/maze/task3/maps/level5/answer/69.txt @@ -0,0 +1,5 @@ +5-33 +6-46 +5-69 +7-43 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/7.txt b/maze/task3/maps/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe65ceb800b336781d64a234ac52917274b0782e --- /dev/null +++ b/maze/task3/maps/level5/answer/7.txt @@ -0,0 +1,5 @@ +5-7 +4-48 +8-56 +5-52 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/70.txt b/maze/task3/maps/level5/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..63ec98eafe7cfca73d6101cfd7578075139e2c88 --- /dev/null +++ b/maze/task3/maps/level5/answer/70.txt @@ -0,0 +1,5 @@ +3-33 +4-96 +5-70 +5-50 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/71.txt b/maze/task3/maps/level5/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..493ad3b57675561625babddbf1458583585289f2 --- /dev/null +++ b/maze/task3/maps/level5/answer/71.txt @@ -0,0 +1,5 @@ +8-9 +5-21 +5-71 +3-90 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/72.txt b/maze/task3/maps/level5/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..84b99e1546f16550e45d0f8cb0454ccf5689daa9 --- /dev/null +++ b/maze/task3/maps/level5/answer/72.txt @@ -0,0 +1,5 @@ +5-93 +3-36 +5-72 +4-70 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/73.txt b/maze/task3/maps/level5/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..659d6daea5d4634aa0638f6093acac05a2d83174 --- /dev/null +++ b/maze/task3/maps/level5/answer/73.txt @@ -0,0 +1,5 @@ +5-73 +4-35 +3-92 +5-61 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/74.txt b/maze/task3/maps/level5/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..25342d391bfbf5b9f70d08340c1b886410dcd55b --- /dev/null +++ b/maze/task3/maps/level5/answer/74.txt @@ -0,0 +1,5 @@ +8-26 +5-9 +5-74 +6-69 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/75.txt b/maze/task3/maps/level5/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..63906954948d6ac37f37c9662af435fefec53212 --- /dev/null +++ b/maze/task3/maps/level5/answer/75.txt @@ -0,0 +1,5 @@ +5-75 +5-46 +6-4 +4-56 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/76.txt b/maze/task3/maps/level5/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..418cb0d5e8dcc9d3dfcb66d524d82e5464e39340 --- /dev/null +++ b/maze/task3/maps/level5/answer/76.txt @@ -0,0 +1,5 @@ +5-76 +6-95 +7-20 +5-71 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/77.txt b/maze/task3/maps/level5/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ab14c6691cc5a6bfbd07e668ef21afeab56187c --- /dev/null +++ b/maze/task3/maps/level5/answer/77.txt @@ -0,0 +1,5 @@ +5-77 +8-23 +7-25 +5-29 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/78.txt b/maze/task3/maps/level5/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..345f45a07323b21ee4d09ba55b32a118ce379db0 --- /dev/null +++ b/maze/task3/maps/level5/answer/78.txt @@ -0,0 +1,5 @@ +5-58 +5-78 +4-92 +3-34 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/79.txt b/maze/task3/maps/level5/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e50595b82a9410b3c244e9350a4621892a664ec --- /dev/null +++ b/maze/task3/maps/level5/answer/79.txt @@ -0,0 +1,5 @@ +5-93 +6-42 +5-79 +7-78 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/8.txt b/maze/task3/maps/level5/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..1397ab428f7b150dcdf012ac52f1f39fdc87e233 --- /dev/null +++ b/maze/task3/maps/level5/answer/8.txt @@ -0,0 +1,5 @@ +5-8 +4-37 +6-85 +5-88 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/80.txt b/maze/task3/maps/level5/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1e247dfd5423579dbf2b01be012ac1ab0b0ea12 --- /dev/null +++ b/maze/task3/maps/level5/answer/80.txt @@ -0,0 +1,5 @@ +3-62 +8-4 +5-80 +5-21 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/81.txt b/maze/task3/maps/level5/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..e28270f10780f70216fff6fc8fbce0c030124a7a --- /dev/null +++ b/maze/task3/maps/level5/answer/81.txt @@ -0,0 +1,5 @@ +5-10 +5-81 +3-29 +8-97 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/82.txt b/maze/task3/maps/level5/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..9afb69a594a7da7cbdbced9bc19fdd2b058e38cb --- /dev/null +++ b/maze/task3/maps/level5/answer/82.txt @@ -0,0 +1,5 @@ +8-26 +5-82 +5-36 +4-56 +1 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/83.txt b/maze/task3/maps/level5/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..b207cf4b0bbc0adbe37b6793ec985f1abfaa0277 --- /dev/null +++ b/maze/task3/maps/level5/answer/83.txt @@ -0,0 +1,5 @@ +5-83 +5-84 +8-41 +6-50 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/84.txt b/maze/task3/maps/level5/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8c70c76ccade54fe136a8660cdb802197866df5 --- /dev/null +++ b/maze/task3/maps/level5/answer/84.txt @@ -0,0 +1,5 @@ +8-24 +4-87 +5-84 +5-79 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/85.txt b/maze/task3/maps/level5/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4c3076536e927ce3c60ed4c021b80a0ba524fb9 --- /dev/null +++ b/maze/task3/maps/level5/answer/85.txt @@ -0,0 +1,5 @@ +5-85 +5-62 +7-46 +8-2 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/86.txt b/maze/task3/maps/level5/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e6ed69ffc7d86bd761ae901e8b1bc3b59ed83ed --- /dev/null +++ b/maze/task3/maps/level5/answer/86.txt @@ -0,0 +1,5 @@ +5-43 +8-90 +5-86 +7-74 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/87.txt b/maze/task3/maps/level5/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..90c3f68ec74a5e37600b78b1f7b3b9a27dfe1ef4 --- /dev/null +++ b/maze/task3/maps/level5/answer/87.txt @@ -0,0 +1,5 @@ +7-89 +4-65 +5-63 +5-87 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/88.txt b/maze/task3/maps/level5/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..686a481187a74b401162604f669fbf8c0b61d734 --- /dev/null +++ b/maze/task3/maps/level5/answer/88.txt @@ -0,0 +1,5 @@ +8-77 +7-60 +5-88 +5-21 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/89.txt b/maze/task3/maps/level5/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f41597f18e78850930910b8cc79d260c85bd383 --- /dev/null +++ b/maze/task3/maps/level5/answer/89.txt @@ -0,0 +1,5 @@ +8-72 +5-50 +5-89 +6-97 +2 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/9.txt b/maze/task3/maps/level5/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5f279d5da3aafbac3a64c18d14b349815bc2dff --- /dev/null +++ b/maze/task3/maps/level5/answer/9.txt @@ -0,0 +1,5 @@ +5-9 +3-48 +5-72 +4-95 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/90.txt b/maze/task3/maps/level5/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..18bad6f4b628e7aaee422d6a0771e2dd6316b44d --- /dev/null +++ b/maze/task3/maps/level5/answer/90.txt @@ -0,0 +1,5 @@ +6-77 +5-5 +3-96 +5-90 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/91.txt b/maze/task3/maps/level5/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..7422c8f3113ff85900b69d214b52e41666cdc2b1 --- /dev/null +++ b/maze/task3/maps/level5/answer/91.txt @@ -0,0 +1,5 @@ +6-65 +5-26 +4-56 +5-91 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/92.txt b/maze/task3/maps/level5/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c310777a7366cccfa701d6b5ee2d7548c638f8f --- /dev/null +++ b/maze/task3/maps/level5/answer/92.txt @@ -0,0 +1,5 @@ +5-92 +4-55 +5-82 +7-6 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/93.txt b/maze/task3/maps/level5/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a916514cc119f1f0f0122a6961dd7bad9f99f31 --- /dev/null +++ b/maze/task3/maps/level5/answer/93.txt @@ -0,0 +1,5 @@ +5-93 +3-96 +5-95 +6-69 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/94.txt b/maze/task3/maps/level5/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7df5b08716d84401e6d6f14717283d0bcc001b1 --- /dev/null +++ b/maze/task3/maps/level5/answer/94.txt @@ -0,0 +1,5 @@ +5-94 +5-39 +7-41 +3-43 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/95.txt b/maze/task3/maps/level5/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..7aae1d9c430269a68e81fc35fe9f14044a725bcc --- /dev/null +++ b/maze/task3/maps/level5/answer/95.txt @@ -0,0 +1,5 @@ +5-95 +5-82 +3-15 +6-85 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/96.txt b/maze/task3/maps/level5/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..defb457d2bf56be9729cc1ceaf6fdc77bc6de575 --- /dev/null +++ b/maze/task3/maps/level5/answer/96.txt @@ -0,0 +1,5 @@ +5-96 +6-77 +7-43 +5-29 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/97.txt b/maze/task3/maps/level5/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf557b75c44d5417851390e65f8b94efd0e57c32 --- /dev/null +++ b/maze/task3/maps/level5/answer/97.txt @@ -0,0 +1,5 @@ +4-38 +6-37 +5-48 +5-97 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/98.txt b/maze/task3/maps/level5/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..920fcbaa70cda8b2acc466445d66c15cb10819dc --- /dev/null +++ b/maze/task3/maps/level5/answer/98.txt @@ -0,0 +1,5 @@ +5-98 +7-25 +3-52 +5-29 +0 \ No newline at end of file diff --git a/maze/task3/maps/level5/answer/99.txt b/maze/task3/maps/level5/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..72a2beb15e5be37cf3961fd45c0ad983c4a5d8de --- /dev/null +++ b/maze/task3/maps/level5/answer/99.txt @@ -0,0 +1,5 @@ +5-50 +4-31 +8-91 +5-99 +3 \ No newline at end of file diff --git a/maze/task3/maps/level5/img/0.png b/maze/task3/maps/level5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..53c675225cb4557b1697e4fa4871f0aa14c579b0 --- /dev/null +++ b/maze/task3/maps/level5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9cd3f0abed81e2b2317756e97906f959f6838129cb8e4d8cdbade95400af2d +size 8586 diff --git a/maze/task3/maps/level5/img/1.png b/maze/task3/maps/level5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f343446822ebf94b71b14c3eeb39c63926ce1b75 --- /dev/null +++ b/maze/task3/maps/level5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662a2be0231567d54a9bb941372aa13dba653e840e108fc5bd67999b9808970b +size 8576 diff --git a/maze/task3/maps/level5/img/10.png b/maze/task3/maps/level5/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..36afe96af778ab9f51ea10ad579e7cfc72bf656c --- /dev/null +++ b/maze/task3/maps/level5/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d8a4ef9af3d832ffef7907e5bd8f7ed70a602d733273507c5ff1d184503df1 +size 9540 diff --git a/maze/task3/maps/level5/img/11.png b/maze/task3/maps/level5/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a5ece63c58ccb637f8b8d6b3f8bc4c5e08a361a0 --- /dev/null +++ b/maze/task3/maps/level5/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded2d691e97803356fe059017e3a79a80dcfec9ab37b4101b44421c8e4745743 +size 9505 diff --git a/maze/task3/maps/level5/img/12.png b/maze/task3/maps/level5/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..961a186623ee0011ec0d5087f124ba6956dd303c --- /dev/null +++ b/maze/task3/maps/level5/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2c3ba8f3794820f29c4621ad30015477f75a684effd0f43c13791ef2b6e84e +size 8732 diff --git a/maze/task3/maps/level5/img/13.png b/maze/task3/maps/level5/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2e9bcd697c9f9df311a7bcc585551adc45b633 --- /dev/null +++ b/maze/task3/maps/level5/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63c693a4e866265c3ab6d440f9edda4aec2f9c6195167ab113d6907cc63582e +size 9460 diff --git a/maze/task3/maps/level5/img/14.png b/maze/task3/maps/level5/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a959b16b2d47a4ee7034609446712c1c93efda --- /dev/null +++ b/maze/task3/maps/level5/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4278d644fee0fcc945ffb661826fba43399479f20849324f828d860ce42896b7 +size 9498 diff --git a/maze/task3/maps/level5/img/15.png b/maze/task3/maps/level5/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb4459dadcd568c2617420f493cb6c647050001 --- /dev/null +++ b/maze/task3/maps/level5/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0f34aa1726792f861b04dc97b31cc2a646d248e5d44b4b360106c0bebf6fa0 +size 8569 diff --git a/maze/task3/maps/level5/img/16.png b/maze/task3/maps/level5/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7973c8fd0e44309ec3e86a3225421c70098fe0 --- /dev/null +++ b/maze/task3/maps/level5/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5583b83655c1009808d434d23387310c409754a8d3de67d91a947d9bcaa3c671 +size 10319 diff --git a/maze/task3/maps/level5/img/17.png b/maze/task3/maps/level5/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..89b88669e049ee2b40eb2964f6e3be9983d5841d --- /dev/null +++ b/maze/task3/maps/level5/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433a8057d4c23e0dd2814e9f57b18737e38ac85dad3d9122b606ff160b61592f +size 9481 diff --git a/maze/task3/maps/level5/img/18.png b/maze/task3/maps/level5/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0e4578441dc93dbe35e39e7258d5bb9f397e26b5 --- /dev/null +++ b/maze/task3/maps/level5/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b871b7baa3624a6d3c3f6723fcde0fbabe98e44ec14b697930c24110530d7e +size 9504 diff --git a/maze/task3/maps/level5/img/19.png b/maze/task3/maps/level5/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..1342eed8c66f157f6a0ee50a553bce9900d7b153 --- /dev/null +++ b/maze/task3/maps/level5/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f12b2c82dce79ca3024ad9ceeab1d87e148064972cf0f0d35cedef9f199494 +size 9487 diff --git a/maze/task3/maps/level5/img/2.png b/maze/task3/maps/level5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task3/maps/level5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task3/maps/level5/img/20.png b/maze/task3/maps/level5/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..008eb9d774f873f49d9f2aba16a957268416f06c --- /dev/null +++ b/maze/task3/maps/level5/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb6e15f6f74538fb484c9175e9f2ed53f31bb2657acdcfcd043ca68a8a31eb6 +size 10260 diff --git a/maze/task3/maps/level5/img/21.png b/maze/task3/maps/level5/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..3159880dfddac7dde77c48c798370b3351485091 --- /dev/null +++ b/maze/task3/maps/level5/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa1e9d8f938e37e6023c89eda68bf03b514f4c762b9012c78be14445f3c4b52 +size 8496 diff --git a/maze/task3/maps/level5/img/22.png b/maze/task3/maps/level5/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..b43ce1e2773dcc8f88926dbfcc55bd4e30c3300f --- /dev/null +++ b/maze/task3/maps/level5/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568fd2b874b4f84a2d182fba9255d2bd0ba319bf21ea04daf9dcc93bd6384ece +size 9431 diff --git a/maze/task3/maps/level5/img/23.png b/maze/task3/maps/level5/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..81c6a7ca79d5a70cbdc9167d691223476bc9976d --- /dev/null +++ b/maze/task3/maps/level5/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbde32d51a95bc040d27867403cf81a6029014ea37322974115bf4de681ba63 +size 9587 diff --git a/maze/task3/maps/level5/img/24.png b/maze/task3/maps/level5/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..9a6d1f5f4396d39be6b747b2245ca74e57dad2d8 --- /dev/null +++ b/maze/task3/maps/level5/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce73082473f6a8019fcddc4e20d0befd63af5607686e7d96fc44f9e76224fcf9 +size 10360 diff --git a/maze/task3/maps/level5/img/25.png b/maze/task3/maps/level5/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..dcaca11c66cd3002cc42b1541e908fc7c7d55487 --- /dev/null +++ b/maze/task3/maps/level5/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf361f95f35ac9a0112f7063281e8af77dcc95553bae500b712a502b170f5b4 +size 9481 diff --git a/maze/task3/maps/level5/img/26.png b/maze/task3/maps/level5/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..483b63e17cc629a34387f5c0d0ee653cac261b3c --- /dev/null +++ b/maze/task3/maps/level5/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b19855bb1cf3021cecae9924a96c9c3ae2d04c1122234b8f34d010d10ca9fd0 +size 10486 diff --git a/maze/task3/maps/level5/img/27.png b/maze/task3/maps/level5/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..f591e4148b776e15eb1b392b9eb5a3899d71f16e --- /dev/null +++ b/maze/task3/maps/level5/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a339a2e62e1162a190da229fa66e13f616e849539aeb08b845c35c77ce2d7a3 +size 10413 diff --git a/maze/task3/maps/level5/img/28.png b/maze/task3/maps/level5/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7b5e0d421fd9845fedd4e9bf62cf5a40560815 --- /dev/null +++ b/maze/task3/maps/level5/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6e842275c7a23fce24f6f4ebc6852f5922d6f914ed4c7c4f2c900d974ed33d +size 7724 diff --git a/maze/task3/maps/level5/img/29.png b/maze/task3/maps/level5/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0e29574aaa55dcc0d40cf007942f77d30535f6 --- /dev/null +++ b/maze/task3/maps/level5/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00443dd8966b4642e5e430ad4ab1b860149b51c0c4931b60ef48c6d24abf87bb +size 8645 diff --git a/maze/task3/maps/level5/img/3.png b/maze/task3/maps/level5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task3/maps/level5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task3/maps/level5/img/30.png b/maze/task3/maps/level5/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..d63738871f379090425d544bc204e402814b6b55 --- /dev/null +++ b/maze/task3/maps/level5/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34ae1efa396c60bd93b40f3a17ed10a570bf75920a432154f7c19649e8e0994 +size 10233 diff --git a/maze/task3/maps/level5/img/31.png b/maze/task3/maps/level5/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8414031f76b7066865976aa74936cac7b92311da --- /dev/null +++ b/maze/task3/maps/level5/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b760ca6eab9da1ac2bb044b831c20182c4ba148464e6dd749fb724c2317504 +size 10338 diff --git a/maze/task3/maps/level5/img/32.png b/maze/task3/maps/level5/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..8aa3a9101f18f5cef81a2a0ac8ea133631da8272 --- /dev/null +++ b/maze/task3/maps/level5/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6046bda5a18babfb779cd67eafbadc41ef75d339c1e22df72fee2aa6c93c3943 +size 8504 diff --git a/maze/task3/maps/level5/img/33.png b/maze/task3/maps/level5/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..0bebca99345c5d1894a4ae329be28466c2a50b28 --- /dev/null +++ b/maze/task3/maps/level5/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7b2f94ba36b04dd2dbb42233e555715f919536cc144672d8e308197195e785 +size 8604 diff --git a/maze/task3/maps/level5/img/34.png b/maze/task3/maps/level5/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..f7fc0d5b588e614bfcc670be9f68e8238d42f199 --- /dev/null +++ b/maze/task3/maps/level5/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01e7a56b654bd725b1a8d247af2b00194b0a4a8024d63d2b763b0b776533f5b +size 8457 diff --git a/maze/task3/maps/level5/img/35.png b/maze/task3/maps/level5/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..0dcccbdde8c06d23b2a3fd409778c087119d7b1a --- /dev/null +++ b/maze/task3/maps/level5/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c5cdbace6e9b727622cf498cd44c572f8538faf2fecb209501e3f1743ee079 +size 9374 diff --git a/maze/task3/maps/level5/img/36.png b/maze/task3/maps/level5/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..b9852152d7696761ee038bbc6195fe898f567da6 --- /dev/null +++ b/maze/task3/maps/level5/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369baca6210fe2e760c2799e065731a650553eb711755715981d52d264679359 +size 9546 diff --git a/maze/task3/maps/level5/img/37.png b/maze/task3/maps/level5/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..27f9ce99490c05a04894f62fda9c8566bff0f3e0 --- /dev/null +++ b/maze/task3/maps/level5/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92f6006c6fcb34ca5bab418ddb7f976cba1c9aded278d5312b49e0b981ae387 +size 11159 diff --git a/maze/task3/maps/level5/img/38.png b/maze/task3/maps/level5/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9a73f72074ae48f5589417c00b18f273052946 --- /dev/null +++ b/maze/task3/maps/level5/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9987cc6de5975fc76063e350faeeed07486c46bd4604be48931e5c2292d96aa5 +size 10355 diff --git a/maze/task3/maps/level5/img/39.png b/maze/task3/maps/level5/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..46cfb1f679d417e62c266708fb126a02cda0bf83 --- /dev/null +++ b/maze/task3/maps/level5/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7928e1bfe7fbd5034618bf5cc151ad3e5e01209de1122397a1aa9d40c2abb0ed +size 8570 diff --git a/maze/task3/maps/level5/img/4.png b/maze/task3/maps/level5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcf17753a14d717d70601f1726efa48591720d2 --- /dev/null +++ b/maze/task3/maps/level5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1527826071149f7d3fe78db8c909ec14d40d7ac2ff90cad4f018091251dbf8c2 +size 7791 diff --git a/maze/task3/maps/level5/img/40.png b/maze/task3/maps/level5/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..e53b06c208b53a7acfe48362b862e38efee5d416 --- /dev/null +++ b/maze/task3/maps/level5/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df628466c1be0248b28fa7a82355ba6f37c52eec7c290efebd33bac8780335b8 +size 7678 diff --git a/maze/task3/maps/level5/img/41.png b/maze/task3/maps/level5/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..a336550fb6b5ee724510355eddbf38e949e814f9 --- /dev/null +++ b/maze/task3/maps/level5/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0a2aa504f7ec3efbdc87c449cc23a3a36ae9d9c1553b35432c5e89bcf3dff0 +size 8743 diff --git a/maze/task3/maps/level5/img/42.png b/maze/task3/maps/level5/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..e856d73908a9cc7d534b877162988525569b9668 --- /dev/null +++ b/maze/task3/maps/level5/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f6d38b24d3f09c69970c5332c8892755512adb46838d5499665865c897f55e +size 9376 diff --git a/maze/task3/maps/level5/img/43.png b/maze/task3/maps/level5/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8240fd301b101fc3d6928b8b7837ee8f046508 --- /dev/null +++ b/maze/task3/maps/level5/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e450c5211b9cc344c3fdea9a4ac7b6f86afc861e99ce5e8e1bd73c05370aeb +size 8530 diff --git a/maze/task3/maps/level5/img/44.png b/maze/task3/maps/level5/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..fbc926d0e2b3d98e1dab0a8d75b1d5abba9eee37 --- /dev/null +++ b/maze/task3/maps/level5/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ffae263c999fdb644ac5676dff754b4eb3bba3437795940e40daa1af5bf67a +size 10484 diff --git a/maze/task3/maps/level5/img/45.png b/maze/task3/maps/level5/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..fa357d51bbdeb0678d4148305f56dab8c1d94eec --- /dev/null +++ b/maze/task3/maps/level5/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8848ac9b4fb5bb3bec41b2221a5a2a47ce69bca895b40fdde606a4b36f33fc93 +size 9491 diff --git a/maze/task3/maps/level5/img/46.png b/maze/task3/maps/level5/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d0bce4c0119ffeac19097f9f41a4c38d2a442d --- /dev/null +++ b/maze/task3/maps/level5/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4c2f0d9865a8360f4d1c974eca5d0c578296f5b4e8315cffa073c54468cde7 +size 10550 diff --git a/maze/task3/maps/level5/img/47.png b/maze/task3/maps/level5/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..61f9ef0def0f721f159208bb3aa769cefa7f4431 --- /dev/null +++ b/maze/task3/maps/level5/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bbd0e6a07a60df2a50c7f077a2675e34106d15e375efe469a077b768d6b48b +size 8667 diff --git a/maze/task3/maps/level5/img/48.png b/maze/task3/maps/level5/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..80605fc9f1d52293736c551d0c54f2054b6ae790 --- /dev/null +++ b/maze/task3/maps/level5/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af97fa09ff7c59716bd262d7ad3e0f24caf61d08f5f71494276bc04fee4141f +size 9549 diff --git a/maze/task3/maps/level5/img/49.png b/maze/task3/maps/level5/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..42ed24d9c562504ba63fa58f2a8307b0d7cc9847 --- /dev/null +++ b/maze/task3/maps/level5/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed72c064c5229fa5ce1bf62b52ec7b2aa3f7fb9ba203d81c7c33bafb9c74194 +size 10373 diff --git a/maze/task3/maps/level5/img/5.png b/maze/task3/maps/level5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task3/maps/level5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task3/maps/level5/img/50.png b/maze/task3/maps/level5/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..a10f7605b5adcd31425b5fc82f6391618c60dcce --- /dev/null +++ b/maze/task3/maps/level5/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1fa51fc530f52434841bf5f5804b0f0ffbb044d7e829d335d4060e8ffbcc8f +size 10311 diff --git a/maze/task3/maps/level5/img/51.png b/maze/task3/maps/level5/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5eb285b8ff06ddcfe7301346541ce202b37419 --- /dev/null +++ b/maze/task3/maps/level5/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92c2243e404e0ab629e4529ab56766a05dd34c0213c3e20c4910fb4fb86e831 +size 9542 diff --git a/maze/task3/maps/level5/img/52.png b/maze/task3/maps/level5/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..2f1ff31b784efbaada761fee34beb3a5518b636e --- /dev/null +++ b/maze/task3/maps/level5/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8924f69877bff72e4cdd85f86ee6f88a13184d0de32b91945669f90769b4cef +size 8583 diff --git a/maze/task3/maps/level5/img/53.png b/maze/task3/maps/level5/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..b56567b741d2a6849fdbd9a06f10a221f611854a --- /dev/null +++ b/maze/task3/maps/level5/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbbb363cbd4871bd667563335310c2a7b1e044d786a33fc9ac426ab13f9fa92 +size 10460 diff --git a/maze/task3/maps/level5/img/54.png b/maze/task3/maps/level5/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..f920ca86b117abb67013bb57a9499b0393639cea --- /dev/null +++ b/maze/task3/maps/level5/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c43e944b0140c1497f1775468827f0e4d1c41f027cd40778dc0c9189590062 +size 8588 diff --git a/maze/task3/maps/level5/img/55.png b/maze/task3/maps/level5/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..b7cd9585ed58ff2537515598c55964ef7bab9820 --- /dev/null +++ b/maze/task3/maps/level5/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53106fd75e879e3655e754942e5d3947460c00e26f52b713400f3daae45eee00 +size 9525 diff --git a/maze/task3/maps/level5/img/56.png b/maze/task3/maps/level5/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..b8c2ce52f791138a9286cf7a9cefa274ce2d0562 --- /dev/null +++ b/maze/task3/maps/level5/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b77ba0df8baf14b3ea95e0514b661b98f3af2d1f228834f4a15e148ba0a1485 +size 8755 diff --git a/maze/task3/maps/level5/img/57.png b/maze/task3/maps/level5/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..46b8af8ae47e2318fc24cf7e63adf89c23ad0768 --- /dev/null +++ b/maze/task3/maps/level5/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfb2f92be0c9aedd215a40e1879bb6cdeec5abfae96393b8899c2c7c126797f +size 11278 diff --git a/maze/task3/maps/level5/img/58.png b/maze/task3/maps/level5/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..007695ff6c8929f3c578f1e20f352034afc69d5b --- /dev/null +++ b/maze/task3/maps/level5/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4011594954c1117ae9981fa7ce16c41cb3266498795e8f487654a7f4ea47e61e +size 8568 diff --git a/maze/task3/maps/level5/img/59.png b/maze/task3/maps/level5/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..783bdee385c0a0eef8797024804679a2cb97629b --- /dev/null +++ b/maze/task3/maps/level5/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f597e4c46866313b7947e9cb1761cd53881ecbbe15d4fdf7fe3291755b0bcd +size 8756 diff --git a/maze/task3/maps/level5/img/6.png b/maze/task3/maps/level5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task3/maps/level5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task3/maps/level5/img/60.png b/maze/task3/maps/level5/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..af8ab86cf41c45007b7cfce49c76e3ff294aa2f6 --- /dev/null +++ b/maze/task3/maps/level5/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f19ceb0d0c316a16d11ddeb3238c5ef09285ab68f7796236aa0035a5676c68f +size 10322 diff --git a/maze/task3/maps/level5/img/61.png b/maze/task3/maps/level5/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..d5a479c65cb42324a8806e73a2651e20cf70f08e --- /dev/null +++ b/maze/task3/maps/level5/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b58ec3a71ab3abb8df325845f732ab77ce474560e2736f7d4f79e521d20fc72 +size 8627 diff --git a/maze/task3/maps/level5/img/62.png b/maze/task3/maps/level5/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..33cfe602364bc6dd682c246276cfb8f1404ef595 --- /dev/null +++ b/maze/task3/maps/level5/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0e338d527661874a9c46027013ed1381ad655fa2165f92ba6c74bdccc1b4c4 +size 10351 diff --git a/maze/task3/maps/level5/img/63.png b/maze/task3/maps/level5/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..111ca1697d10c3298b6ba2685b1ad306e11eae50 --- /dev/null +++ b/maze/task3/maps/level5/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5763ada5d264d472e810663294e2e7bf1566abf485f5c554cc8b0a771de43c14 +size 9561 diff --git a/maze/task3/maps/level5/img/64.png b/maze/task3/maps/level5/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..af27e78c65469a37d18cca56246e46dc40071558 --- /dev/null +++ b/maze/task3/maps/level5/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705afe8f6778c5550d77725cec8a0a4e3d06a7f07978c19ac149248442bc560f +size 7735 diff --git a/maze/task3/maps/level5/img/65.png b/maze/task3/maps/level5/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..83e96c3b8c34fbc0d1964c3a34509a80c34425bc --- /dev/null +++ b/maze/task3/maps/level5/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab691589396b93fea1f8c2e627d260083dc06c3e8200c008564e85bbe4b351d +size 8715 diff --git a/maze/task3/maps/level5/img/66.png b/maze/task3/maps/level5/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..d1198a3df020aaf0931a32171bb2eacf6c6c9e62 --- /dev/null +++ b/maze/task3/maps/level5/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b090c16cc1315c868aca80a3ea0a9d4a002bae7af3cc50909feeea2d43a8dcd2 +size 10450 diff --git a/maze/task3/maps/level5/img/67.png b/maze/task3/maps/level5/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..6d016ebafe107cbacb68734220b06aed64f37d4c --- /dev/null +++ b/maze/task3/maps/level5/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cc901ec785673687b26427ce086ebbd27f8cd2502dbb104379e8867c631760 +size 9459 diff --git a/maze/task3/maps/level5/img/68.png b/maze/task3/maps/level5/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..bcaaf350210436f4383e0333ed73e65bd52a678a --- /dev/null +++ b/maze/task3/maps/level5/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5846abc853064d63e0fb377fa2b23730d1015f367d01599936d4a3e1fba4f0c +size 8697 diff --git a/maze/task3/maps/level5/img/69.png b/maze/task3/maps/level5/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..111346baa5e8e81dce82def8b6539b70892a57e0 --- /dev/null +++ b/maze/task3/maps/level5/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bc1d785dce00bf0efdfb9cd6888c7b988193a61ffa0216b31059772952a15c +size 11228 diff --git a/maze/task3/maps/level5/img/7.png b/maze/task3/maps/level5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f814f3af4a4514eea937c4425d373246a0eddf97 --- /dev/null +++ b/maze/task3/maps/level5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7524981f599a7d73e4d8fbec30dfe5b20a4391ecea7e63082541a4fb06ee3bfb +size 9570 diff --git a/maze/task3/maps/level5/img/70.png b/maze/task3/maps/level5/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..d7d9522fdef478962bbf1ae56c58e2e914c5855f --- /dev/null +++ b/maze/task3/maps/level5/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f964ac4bbf903fffa406c1474e19146d3f9c106e21c071d0322559e28ff4fe +size 8780 diff --git a/maze/task3/maps/level5/img/71.png b/maze/task3/maps/level5/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..beb976f0cbfd54916fe8e0be18df2bc9108275af --- /dev/null +++ b/maze/task3/maps/level5/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ee8ab29dc3a229e6242ae737444cd175d7d8e3f5215e4d6bac98b7317a6fd4 +size 10314 diff --git a/maze/task3/maps/level5/img/72.png b/maze/task3/maps/level5/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..954b50dcb1eca96f53d4dd29a53a3b69f12b3e7b --- /dev/null +++ b/maze/task3/maps/level5/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc0ebd9f7920071a4425c9a4d6e5d5bfde4c946fb8104c11d176f85f3b84dbd +size 10323 diff --git a/maze/task3/maps/level5/img/73.png b/maze/task3/maps/level5/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..f88dfab626fa7c5fb363d58de200004b96209b1b --- /dev/null +++ b/maze/task3/maps/level5/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433e3ecd94a75856ad7720bf7b7a14c206ca551dfd7cdb6458168750957e6144 +size 9621 diff --git a/maze/task3/maps/level5/img/74.png b/maze/task3/maps/level5/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..070f3739720280a97743d79dad3e56dab5f41b86 --- /dev/null +++ b/maze/task3/maps/level5/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48bd3b546d81a289f3cfee56906d822df25e6ada5bf19ea59601ca8565d6d0db +size 9529 diff --git a/maze/task3/maps/level5/img/75.png b/maze/task3/maps/level5/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..93eed9dc47ad2ae321d732ef990201e356a084d8 --- /dev/null +++ b/maze/task3/maps/level5/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3d3acdebfc0ac58bd29a87edf66e3e274fd14dd7aa4e6feda5037bea7070d7 +size 9559 diff --git a/maze/task3/maps/level5/img/76.png b/maze/task3/maps/level5/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..1767ad68765f0ce53e8b51d4cc8579144cf41428 --- /dev/null +++ b/maze/task3/maps/level5/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b2a5d8df0428a24da48fa93626113f4278237054514f7bf057bdf9ef265e4e +size 9446 diff --git a/maze/task3/maps/level5/img/77.png b/maze/task3/maps/level5/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..17023bbbd055427830fcfd176021fb2fc5d6910d --- /dev/null +++ b/maze/task3/maps/level5/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c1604221f2c1545f8c8d8a1a0557dd0c7d8300bc470a02052c41ccda1c3887 +size 8661 diff --git a/maze/task3/maps/level5/img/78.png b/maze/task3/maps/level5/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..77943c92fcc18208b2c04866482640cf8d60878a --- /dev/null +++ b/maze/task3/maps/level5/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6dab09d288576c613b7637832a8ef62905a8fbcdebfc4643bb8769312aea235 +size 9527 diff --git a/maze/task3/maps/level5/img/79.png b/maze/task3/maps/level5/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..10f84b792cf0272b8e2935bdf5b34df73c511225 --- /dev/null +++ b/maze/task3/maps/level5/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1c923ccfc9c84e6a32ca615eb232d4ba7bac6ea9b58c24a03a3c659accd86e +size 9435 diff --git a/maze/task3/maps/level5/img/8.png b/maze/task3/maps/level5/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b783d4f36e2171422604495ee36e749644ce4e2b --- /dev/null +++ b/maze/task3/maps/level5/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dbba447ec1e1cdb77f547897ea2c4a87baf7985ca4f97405a7f153585f7d9e +size 9520 diff --git a/maze/task3/maps/level5/img/80.png b/maze/task3/maps/level5/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..1586f4aff7fb2594a03a008e4b4f574655a3cef1 --- /dev/null +++ b/maze/task3/maps/level5/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b80a95c16d5d71c6aff2ecb3fca0271b74df7b899d58f236c72bbc598797404 +size 9386 diff --git a/maze/task3/maps/level5/img/81.png b/maze/task3/maps/level5/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..f1d4252a1d6d7384fa2b4a0e506afe7b37ab6672 --- /dev/null +++ b/maze/task3/maps/level5/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f1e8872ed343b6369bcaf12caad0b7bbf6914638c1ac4a5bc323f87cb04b44 +size 8666 diff --git a/maze/task3/maps/level5/img/82.png b/maze/task3/maps/level5/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e4afd98ab856f1b49e892d1c8959d0c45076f933 --- /dev/null +++ b/maze/task3/maps/level5/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b516f64ea6950be4ac225452351a46ea1244d2dee61ccfe891940be0be952e8 +size 9621 diff --git a/maze/task3/maps/level5/img/83.png b/maze/task3/maps/level5/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..9d5bc5c4e701c95cdc7dbcbd5f3a9d36631c2276 --- /dev/null +++ b/maze/task3/maps/level5/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e265e8586c0760f4b178188d2644e25cef16b45d64c35e9c4a1143e085f38e62 +size 9464 diff --git a/maze/task3/maps/level5/img/84.png b/maze/task3/maps/level5/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..f196be40a6adeaa2df84f74f46b155e1e3c8f6e4 --- /dev/null +++ b/maze/task3/maps/level5/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bc1191781890d53c8eee48f62121340484b45002b11c8eb0ec0206e306442c +size 10376 diff --git a/maze/task3/maps/level5/img/85.png b/maze/task3/maps/level5/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..2b04b8b4e6430b30c5505609dc642700d988be70 --- /dev/null +++ b/maze/task3/maps/level5/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc9d00dc9b80f1693dc7134f8ed438926305e024a5dc26e8e03ad82b4608f0b +size 9491 diff --git a/maze/task3/maps/level5/img/86.png b/maze/task3/maps/level5/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..41261413e7dd3228eeff5e7010d87cd323d1dfc3 --- /dev/null +++ b/maze/task3/maps/level5/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47102eacb760f4fbee2412de1a93f98ad00be71ad00f000fc2988421bdb3436c +size 10333 diff --git a/maze/task3/maps/level5/img/87.png b/maze/task3/maps/level5/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..85bb6ac7f98a3ebfa60287c5d24b22b4e0ef6a9e --- /dev/null +++ b/maze/task3/maps/level5/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10d1716db1f68b07b9f88683877ce6310e9522d698240818680714d9943d79c +size 11010 diff --git a/maze/task3/maps/level5/img/88.png b/maze/task3/maps/level5/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..de081357b6c4a2b26b5851c19eb10854a145dd4f --- /dev/null +++ b/maze/task3/maps/level5/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90cf310b1bf6cfd8effd458bca4e303b2ed000d38681671e452629b3b2619af +size 11179 diff --git a/maze/task3/maps/level5/img/89.png b/maze/task3/maps/level5/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c25e41839c4eed11a446578ad5562be1ffc0a0 --- /dev/null +++ b/maze/task3/maps/level5/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cf54b54206896d7d5fe558e2eb4ffb8997eb1bfbf89093d978b6ec2fc56f97 +size 9489 diff --git a/maze/task3/maps/level5/img/9.png b/maze/task3/maps/level5/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..58fed855e22af0897daeb41c04cd87048322e11b --- /dev/null +++ b/maze/task3/maps/level5/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba907e17952d0a68214808d067646f0d97ef64b27d9e453a9c505779f03553eb +size 11128 diff --git a/maze/task3/maps/level5/img/90.png b/maze/task3/maps/level5/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..d868ba390ef63a27c67b8ed8fa1df03e4b3c9aa6 --- /dev/null +++ b/maze/task3/maps/level5/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4924a8d8f382432a85b02c5cd97c3a867f0cf59915631b2b46d1ecf305774ab2 +size 9461 diff --git a/maze/task3/maps/level5/img/91.png b/maze/task3/maps/level5/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..72df204957c2f6e150306936eec2127d8f38ee2c --- /dev/null +++ b/maze/task3/maps/level5/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745eb23af8b3d9225ac39f3ae773055f5213aa78e483e1d286c52b9d3adc86d8 +size 9526 diff --git a/maze/task3/maps/level5/img/92.png b/maze/task3/maps/level5/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..211572a9103c01b8b3ab01c0083299ed0390d504 --- /dev/null +++ b/maze/task3/maps/level5/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3577483fd88f2b6c9bbbcac8e051da3bdf139d40a2cb3d1df1dcbfa171e7f6f9 +size 10280 diff --git a/maze/task3/maps/level5/img/93.png b/maze/task3/maps/level5/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5c6e234b9f935f08a4fd68f91bbcf291b90426 --- /dev/null +++ b/maze/task3/maps/level5/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce939a10cc069cf6712137df96d9eeecde0871626566111d58e23e4eaf2cdf35 +size 10407 diff --git a/maze/task3/maps/level5/img/94.png b/maze/task3/maps/level5/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..e376cb24370d7c7e2d69c113477336d19e863962 --- /dev/null +++ b/maze/task3/maps/level5/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b9510d39d3c594aafd9059788bb0cd5ff3d4095f045475c747b326e2fa8f1c +size 10227 diff --git a/maze/task3/maps/level5/img/95.png b/maze/task3/maps/level5/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..0d320adfcb78f2f7a70c293086a3c9e4657e8b1e --- /dev/null +++ b/maze/task3/maps/level5/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9652b51223f250b2f0ea990f04184cecd53a9510a88e23e5d8ab92a02d6d4e +size 10401 diff --git a/maze/task3/maps/level5/img/96.png b/maze/task3/maps/level5/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb818078dd96672793c3fb3f1db50b70b9f5699 --- /dev/null +++ b/maze/task3/maps/level5/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcdeccb4c9d837d4d60f212aa9ee78eee0f1133c5bfa8b4a3706e257989a7be +size 10447 diff --git a/maze/task3/maps/level5/img/97.png b/maze/task3/maps/level5/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..748a948c5cd41ad576941a954a691c45002651bc --- /dev/null +++ b/maze/task3/maps/level5/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77adb79d8bbc1588ad59543ed98151771cd492efc2dc07e86af7ebb5873a4a67 +size 9374 diff --git a/maze/task3/maps/level5/img/98.png b/maze/task3/maps/level5/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..feee65d74a4a5cf343e4c5c33bcedfdfc5e67658 --- /dev/null +++ b/maze/task3/maps/level5/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:504b1e9147d5348e52f7be1ad068e22b6e405149356a86e1f82270d0bee89fad +size 9500 diff --git a/maze/task3/maps/level5/img/99.png b/maze/task3/maps/level5/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..d6bd9ecf67aa1f7de93eebdc0e48abc85bb467bf --- /dev/null +++ b/maze/task3/maps/level5/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570147872954af71e957d7629438d5014810bb6ec0cb216e45e41a69154b7259 +size 8604 diff --git a/maze/task3/maps/level5/question/0.txt b/maze/task3/maps/level5/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b8337e4016d016994d9d451fbbb912ff5dd59e1 --- /dev/null +++ b/maze/task3/maps/level5/question/0.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | _ | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/1.txt b/maze/task3/maps/level5/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..926ed7949746666da563c966b16aaabac7d6fa60 --- /dev/null +++ b/maze/task3/maps/level5/question/1.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task3/maps/level5/question/10.txt b/maze/task3/maps/level5/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..898aa10593321b84ba9a993d20dfb49241c5198b --- /dev/null +++ b/maze/task3/maps/level5/question/10.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | * | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | @ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/11.txt b/maze/task3/maps/level5/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..13d1c088e8cde640106302c8030b39e4008b21d2 --- /dev/null +++ b/maze/task3/maps/level5/question/11.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | @ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | @ | * | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/12.txt b/maze/task3/maps/level5/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eaf23d9971f3a25a585123d5380ee27a03211f6 --- /dev/null +++ b/maze/task3/maps/level5/question/12.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | # | _ | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | @ | # | _ | +| Row 8 | _ | _ | # | _ | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task3/maps/level5/question/13.txt b/maze/task3/maps/level5/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..12deb627e41ec30f864869582579a48f627d0b5b --- /dev/null +++ b/maze/task3/maps/level5/question/13.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | _ | @ | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | * | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | # | _ | +| Row 5 | _ | _ | _ | # | @ | # | +| Row 6 | _ | _ | * | _ | _ | # | diff --git a/maze/task3/maps/level5/question/14.txt b/maze/task3/maps/level5/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b6016089aa5a76c4096c5d34b0a6727d5780fcc --- /dev/null +++ b/maze/task3/maps/level5/question/14.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | # | @ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | _ | +| Row 6 | @ | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | _ | +| Row 8 | # | _ | _ | # | _ | _ | # | # | diff --git a/maze/task3/maps/level5/question/15.txt b/maze/task3/maps/level5/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..7382eacd01e86cbf7449b138dcee626eff1c04ad --- /dev/null +++ b/maze/task3/maps/level5/question/15.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | * | # | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/16.txt b/maze/task3/maps/level5/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..b36ec73fb24bbd37c5f92f798c95e6507646ead4 --- /dev/null +++ b/maze/task3/maps/level5/question/16.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | * | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | @ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level5/question/17.txt b/maze/task3/maps/level5/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fbe0ebf0869c4eee3de2d1b402220b9753a1409 --- /dev/null +++ b/maze/task3/maps/level5/question/17.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | @ | _ | +| Row 2 | # | * | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | _ | _ | * | diff --git a/maze/task3/maps/level5/question/18.txt b/maze/task3/maps/level5/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..053cb7ee6411059ba3052946f43cb87ae8d23a01 --- /dev/null +++ b/maze/task3/maps/level5/question/18.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/19.txt b/maze/task3/maps/level5/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f6dc3a525fd4c119748bc9a2702ba3465e42d0a --- /dev/null +++ b/maze/task3/maps/level5/question/19.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | * | _ | +| Row 5 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/2.txt b/maze/task3/maps/level5/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..39bcb0c0a8e82c157446df52ac7ca2ce90ba3f13 --- /dev/null +++ b/maze/task3/maps/level5/question/2.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/20.txt b/maze/task3/maps/level5/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ed430d48ee15d45ec347fb17562005bf6ba92c4 --- /dev/null +++ b/maze/task3/maps/level5/question/20.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/21.txt b/maze/task3/maps/level5/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c8f9a3357196df5975d7539e060251789cfc0ef --- /dev/null +++ b/maze/task3/maps/level5/question/21.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | * | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | @ | _ | * | diff --git a/maze/task3/maps/level5/question/22.txt b/maze/task3/maps/level5/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ae3b0ed80e589d48f5c27c04644ef4fd1df61e4 --- /dev/null +++ b/maze/task3/maps/level5/question/22.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | @ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | # | +| Row 7 | # | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | diff --git a/maze/task3/maps/level5/question/23.txt b/maze/task3/maps/level5/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee166f94a7fa93fe271e346b240c2c4eab04fb1e --- /dev/null +++ b/maze/task3/maps/level5/question/23.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | # | * | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level5/question/24.txt b/maze/task3/maps/level5/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..63dc3293ce2a96fca584cbea22ccb8f5273c7c68 --- /dev/null +++ b/maze/task3/maps/level5/question/24.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | * | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | # | # | _ | diff --git a/maze/task3/maps/level5/question/25.txt b/maze/task3/maps/level5/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c6dc9514054214b47fce9ced9f37a94f878aa88 --- /dev/null +++ b/maze/task3/maps/level5/question/25.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | _ | _ | +| Row 2 | # | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/26.txt b/maze/task3/maps/level5/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..0543b0c3fa8797fa837945002f76a0af90fe2319 --- /dev/null +++ b/maze/task3/maps/level5/question/26.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | _ | * | # | _ | +| Row 4 | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/27.txt b/maze/task3/maps/level5/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..68fb1d7570856feda623ecf01d20dce977e3a94a --- /dev/null +++ b/maze/task3/maps/level5/question/27.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | * | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | # | _ | +| Row 5 | # | # | _ | _ | # | _ | +| Row 6 | # | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/28.txt b/maze/task3/maps/level5/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..0053f8af56d964bb9fb6ffec234a92ac29f41304 --- /dev/null +++ b/maze/task3/maps/level5/question/28.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | * | +| Row 6 | # | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/29.txt b/maze/task3/maps/level5/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc081e91bc7b04f98c77dd43b9352a5722e306b2 --- /dev/null +++ b/maze/task3/maps/level5/question/29.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | # | +| Row 8 | _ | # | # | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | diff --git a/maze/task3/maps/level5/question/3.txt b/maze/task3/maps/level5/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff6176a723afdf3e6912bc1465fc438786e936f8 --- /dev/null +++ b/maze/task3/maps/level5/question/3.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | _ | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | @ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/30.txt b/maze/task3/maps/level5/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..810ea577752471e48d78e98bbb2670ae41e7eafc --- /dev/null +++ b/maze/task3/maps/level5/question/30.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | * | +| Row 5 | _ | _ | # | @ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | * | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/31.txt b/maze/task3/maps/level5/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..eef9dd1d4bc0649abe659d70b7e0eca8ad134195 --- /dev/null +++ b/maze/task3/maps/level5/question/31.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | # | * | _ | +| Row 3 | @ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task3/maps/level5/question/32.txt b/maze/task3/maps/level5/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..e969cac26aa24326d486d48208849b8fc05378ac --- /dev/null +++ b/maze/task3/maps/level5/question/32.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | @ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | @ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/33.txt b/maze/task3/maps/level5/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..039a13e7712547c1ccbf25d2e7f797c8dd52c7a6 --- /dev/null +++ b/maze/task3/maps/level5/question/33.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | _ | +| Row 6 | @ | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | _ | +| Row 8 | # | _ | _ | # | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task3/maps/level5/question/34.txt b/maze/task3/maps/level5/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..791a18ea7be169b5e17dd4aaaabeb3e123afcd22 --- /dev/null +++ b/maze/task3/maps/level5/question/34.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/35.txt b/maze/task3/maps/level5/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8a2cd2707f421980cf485d319a836882e8e7323 --- /dev/null +++ b/maze/task3/maps/level5/question/35.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | * | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | _ | @ | # | _ | +| Row 6 | _ | _ | _ | * | _ | _ | diff --git a/maze/task3/maps/level5/question/36.txt b/maze/task3/maps/level5/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..88dfa53e9935a83d2a4cfe66d7dd62be684c1672 --- /dev/null +++ b/maze/task3/maps/level5/question/36.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | _ | +| Row 7 | @ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | # | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | _ | @ | _ | # | _ | +| Row 5 | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/37.txt b/maze/task3/maps/level5/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..1106063cc526f3fa62a936f9dd680befd465f5b0 --- /dev/null +++ b/maze/task3/maps/level5/question/37.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | * | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | # | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | diff --git a/maze/task3/maps/level5/question/38.txt b/maze/task3/maps/level5/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..071c5aa2237d9d8fe2980466d5d8981689b37293 --- /dev/null +++ b/maze/task3/maps/level5/question/38.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/39.txt b/maze/task3/maps/level5/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff6bac707d7a33c42ac2c4b71ded193c024a1a78 --- /dev/null +++ b/maze/task3/maps/level5/question/39.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | @ | # | +| Row 8 | _ | # | _ | _ | _ | # | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | @ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/4.txt b/maze/task3/maps/level5/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a00fc1fb59e53cb2d3370e5c87a9b2b311861ba --- /dev/null +++ b/maze/task3/maps/level5/question/4.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/40.txt b/maze/task3/maps/level5/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbfe6ed4f9105ec75b5481c26d1a173c36963451 --- /dev/null +++ b/maze/task3/maps/level5/question/40.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | * | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/41.txt b/maze/task3/maps/level5/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a5a1996c87a3d429ab4cf04464239bc89e00b46 --- /dev/null +++ b/maze/task3/maps/level5/question/41.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | * | +| Row 2 | _ | _ | # | +| Row 3 | @ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/42.txt b/maze/task3/maps/level5/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..423072b0ae794bb290506ba690908818aa339ab1 --- /dev/null +++ b/maze/task3/maps/level5/question/42.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | # | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | # | _ | * | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/43.txt b/maze/task3/maps/level5/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c6c8d85d33b32d1a717a6e56c01e1b7b88c39e0 --- /dev/null +++ b/maze/task3/maps/level5/question/43.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | * | @ | # | _ | +| Row 6 | # | _ | # | _ | _ | _ | # | +| Row 7 | # | # | # | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/44.txt b/maze/task3/maps/level5/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6c54a601383bd9c4ce1a5a73c202c5278b58256 --- /dev/null +++ b/maze/task3/maps/level5/question/44.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | _ | @ | _ | # | _ | +| Row 5 | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | @ | _ | _ | _ | _ | * | _ | _ | diff --git a/maze/task3/maps/level5/question/45.txt b/maze/task3/maps/level5/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..50faeec27063fbf7c1571300b856162a94d2b1a5 --- /dev/null +++ b/maze/task3/maps/level5/question/45.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | * | +| Row 7 | _ | _ | _ | # | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level5/question/46.txt b/maze/task3/maps/level5/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..578ddf05a57123a3856b97b9255ff9b5194e546c --- /dev/null +++ b/maze/task3/maps/level5/question/46.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | * | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task3/maps/level5/question/47.txt b/maze/task3/maps/level5/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..b71e9420ae744397ad6c74be62af5c666f38c917 --- /dev/null +++ b/maze/task3/maps/level5/question/47.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | @ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | # | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | * | # | diff --git a/maze/task3/maps/level5/question/48.txt b/maze/task3/maps/level5/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..e78de6da10502c2b1a44926135de26190d23cda7 --- /dev/null +++ b/maze/task3/maps/level5/question/48.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | * | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | @ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | diff --git a/maze/task3/maps/level5/question/49.txt b/maze/task3/maps/level5/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..656b17989e4366dae5b6bf4bfabd36a334311236 --- /dev/null +++ b/maze/task3/maps/level5/question/49.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | * | # | # | _ | # | +| Row 7 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | * | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level5/question/5.txt b/maze/task3/maps/level5/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2df45b688f75b4160652e08a573b0f783a448962 --- /dev/null +++ b/maze/task3/maps/level5/question/5.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | diff --git a/maze/task3/maps/level5/question/50.txt b/maze/task3/maps/level5/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc01d7b64eb26b110f6b3de4da083d2d39c23afa --- /dev/null +++ b/maze/task3/maps/level5/question/50.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level5/question/51.txt b/maze/task3/maps/level5/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..bffa5cf706a23d53eba4e7e1936fc7d631094358 --- /dev/null +++ b/maze/task3/maps/level5/question/51.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | # | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/52.txt b/maze/task3/maps/level5/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..02d9edf47868d51c7fe97f3556237a7cc487f47e --- /dev/null +++ b/maze/task3/maps/level5/question/52.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/53.txt b/maze/task3/maps/level5/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..810c5ee14b7c4c6350693ae42011847a7614319d --- /dev/null +++ b/maze/task3/maps/level5/question/53.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | * | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | _ | _ | +| Row 2 | # | @ | # | _ | _ | +| Row 3 | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task3/maps/level5/question/54.txt b/maze/task3/maps/level5/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..149d99950d00c269add1cbb9a01cb2ced67fd277 --- /dev/null +++ b/maze/task3/maps/level5/question/54.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level5/question/55.txt b/maze/task3/maps/level5/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d5a9eb2078247dfba0f88e2f43cde036dfd01b5 --- /dev/null +++ b/maze/task3/maps/level5/question/55.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | _ | # | # | +| Row 3 | * | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | # | _ | # | _ | diff --git a/maze/task3/maps/level5/question/56.txt b/maze/task3/maps/level5/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..328b89907025aa83f1db37e66f481a8fcf4a00bb --- /dev/null +++ b/maze/task3/maps/level5/question/56.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | # | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level5/question/57.txt b/maze/task3/maps/level5/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..417c9c8586fb5cd032bc51b3c8bb81a960da1cf2 --- /dev/null +++ b/maze/task3/maps/level5/question/57.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | _ | +| Row 6 | _ | # | _ | # | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task3/maps/level5/question/58.txt b/maze/task3/maps/level5/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..0db76c13ee2641c9ddb9c6ba1722bdf174c56465 --- /dev/null +++ b/maze/task3/maps/level5/question/58.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/59.txt b/maze/task3/maps/level5/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ff4986db6bbaed1a645bfff450ac62ecfc07b1d --- /dev/null +++ b/maze/task3/maps/level5/question/59.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level5/question/6.txt b/maze/task3/maps/level5/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a882ac052c716da7d32f55a10cbebdb5e272488c --- /dev/null +++ b/maze/task3/maps/level5/question/6.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | * | _ | +| Row 8 | _ | _ | # | _ | _ | # | # | _ | diff --git a/maze/task3/maps/level5/question/60.txt b/maze/task3/maps/level5/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..91624ad853355ee377b08535bb42ca17fe559490 --- /dev/null +++ b/maze/task3/maps/level5/question/60.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | * | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | * | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | _ | _ | +| Row 2 | # | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/61.txt b/maze/task3/maps/level5/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f34572e6edb8b2b9181cd64d3f772c9c7ec89ff --- /dev/null +++ b/maze/task3/maps/level5/question/61.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | * | +| Row 6 | _ | # | _ | _ | _ | _ | @ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | # | _ | +| Row 5 | _ | _ | _ | # | @ | # | +| Row 6 | _ | _ | * | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/62.txt b/maze/task3/maps/level5/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..860a23a9f4d56a2ce54260020760cd1a61a6e3e6 --- /dev/null +++ b/maze/task3/maps/level5/question/62.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | * | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/63.txt b/maze/task3/maps/level5/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6f3b07335b05b11a12921c2ba42ba2031d4b3ea --- /dev/null +++ b/maze/task3/maps/level5/question/63.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | # | +| Row 3 | _ | # | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | @ | _ | diff --git a/maze/task3/maps/level5/question/64.txt b/maze/task3/maps/level5/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..200531147fbb9fde0fe4eb099def02b8b1bcf53a --- /dev/null +++ b/maze/task3/maps/level5/question/64.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/65.txt b/maze/task3/maps/level5/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..325b944427b326e70739d632f8c060927989e863 --- /dev/null +++ b/maze/task3/maps/level5/question/65.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | # | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/66.txt b/maze/task3/maps/level5/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd6cf25e21247f52124a9a51db00cd5863df8797 --- /dev/null +++ b/maze/task3/maps/level5/question/66.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | @ | * | # | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level5/question/67.txt b/maze/task3/maps/level5/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f0c04504d906267b5472b3f4345d4561b0f73dc --- /dev/null +++ b/maze/task3/maps/level5/question/67.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | # | * | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/68.txt b/maze/task3/maps/level5/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cc331e5c675dee5f867d2f241d584a41b937c49 --- /dev/null +++ b/maze/task3/maps/level5/question/68.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | @ | _ | _ | # | _ | +| Row 6 | _ | * | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/69.txt b/maze/task3/maps/level5/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bb286dfcaf04a7a3ba1d33d2038692cd7d21a70 --- /dev/null +++ b/maze/task3/maps/level5/question/69.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | # | _ | _ | * | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/7.txt b/maze/task3/maps/level5/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3cb56bdea95334f53d0dff377676edf948366eb --- /dev/null +++ b/maze/task3/maps/level5/question/7.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | # | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | # | _ | _ | # | _ | +| Row 2 | # | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | _ | # | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/70.txt b/maze/task3/maps/level5/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba34ddae087e802b389fe84c02a53868b30bd5ba --- /dev/null +++ b/maze/task3/maps/level5/question/70.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | # | # | +| Row 3 | @ | _ | _ | * | +| Row 4 | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | diff --git a/maze/task3/maps/level5/question/71.txt b/maze/task3/maps/level5/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..1aefe2b3f1a7a17c1edf79730bda8ee90b6d2f81 --- /dev/null +++ b/maze/task3/maps/level5/question/71.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | # | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | # | _ | _ | * | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | # | _ | _ | +| Row 3 | _ | # | * | diff --git a/maze/task3/maps/level5/question/72.txt b/maze/task3/maps/level5/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cc58c3ed6f42c23ce379ee4c6cccb46418a2954 --- /dev/null +++ b/maze/task3/maps/level5/question/72.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | _ | _ | * | +| Row 3 | @ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task3/maps/level5/question/73.txt b/maze/task3/maps/level5/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..077fd1139add322ab505719ef180891ea5a98a29 --- /dev/null +++ b/maze/task3/maps/level5/question/73.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | _ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/74.txt b/maze/task3/maps/level5/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9bb0b3c5cd404dfbe11eac8e6b1c81b8ba326b5 --- /dev/null +++ b/maze/task3/maps/level5/question/74.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | * | _ | +| Row 5 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | # | * | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/75.txt b/maze/task3/maps/level5/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..594df89c2a4eba8da35d0dc59428a1aeb1500a14 --- /dev/null +++ b/maze/task3/maps/level5/question/75.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | * | _ | _ | +| Row 3 | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | # | _ | @ | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | * | _ | # | diff --git a/maze/task3/maps/level5/question/76.txt b/maze/task3/maps/level5/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..d466e5d8918f9fc529a0f251cebb5d22ecf36e59 --- /dev/null +++ b/maze/task3/maps/level5/question/76.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | _ | # | +| Row 3 | * | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level5/question/77.txt b/maze/task3/maps/level5/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..00e22e280612fb9ccecb0052ff023002e2f39951 --- /dev/null +++ b/maze/task3/maps/level5/question/77.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/78.txt b/maze/task3/maps/level5/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..b72443dc7bdc4ffd2150ea156abb8c5c34eeeb77 --- /dev/null +++ b/maze/task3/maps/level5/question/78.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task3/maps/level5/question/79.txt b/maze/task3/maps/level5/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2bc2d6ab8867bf8cb29d933dc06b70279860f02 --- /dev/null +++ b/maze/task3/maps/level5/question/79.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | +| Row 6 | # | _ | _ | # | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level5/question/8.txt b/maze/task3/maps/level5/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..d198c792b89a9fa4e72ce1b2e71cb5363de10f8c --- /dev/null +++ b/maze/task3/maps/level5/question/8.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | @ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/80.txt b/maze/task3/maps/level5/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..d92aba2a8b72b4bab8784c33522442b4846aad4d --- /dev/null +++ b/maze/task3/maps/level5/question/80.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | # | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | * | @ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task3/maps/level5/question/81.txt b/maze/task3/maps/level5/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b77e84b2aded21be1a4598f8c5db82a9a154597 --- /dev/null +++ b/maze/task3/maps/level5/question/81.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | # | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level5/question/82.txt b/maze/task3/maps/level5/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..71b92690e17e11366eaadc43dd333742c9bfa132 --- /dev/null +++ b/maze/task3/maps/level5/question/82.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | * | _ | +| Row 5 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | # | _ | @ | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | * | _ | # | diff --git a/maze/task3/maps/level5/question/83.txt b/maze/task3/maps/level5/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..b53d868aac1d116f5c56103e27a2c20ac88b6597 --- /dev/null +++ b/maze/task3/maps/level5/question/83.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | @ | _ | # | +| Row 6 | # | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level5/question/84.txt b/maze/task3/maps/level5/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..3980b7c60a4982f910743714499571cbb617f3f2 --- /dev/null +++ b/maze/task3/maps/level5/question/84.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | # | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level5/question/85.txt b/maze/task3/maps/level5/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b6e6b437b3ddb0b87da21a39d9e42ea298d5ac0 --- /dev/null +++ b/maze/task3/maps/level5/question/85.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | * | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | * | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | @ | diff --git a/maze/task3/maps/level5/question/86.txt b/maze/task3/maps/level5/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d5a95a42f4da44f9403703b46d36653c9ec2fe7 --- /dev/null +++ b/maze/task3/maps/level5/question/86.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | @ | _ | _ | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | * | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level5/question/87.txt b/maze/task3/maps/level5/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..37489b0de614bd3181def43b90ab0f984602ce3d --- /dev/null +++ b/maze/task3/maps/level5/question/87.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | * | @ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/88.txt b/maze/task3/maps/level5/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..5bf33b950dbd1a853a2f50e7c7ebe090b2934614 --- /dev/null +++ b/maze/task3/maps/level5/question/88.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | _ | # | _ | * | _ | +| Row 7 | _ | _ | _ | # | _ | # | # | _ | +| Row 8 | _ | # | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | @ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | * | +| Row 7 | _ | _ | # | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task3/maps/level5/question/89.txt b/maze/task3/maps/level5/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4e81848b9d74403f2e724cf37eff6a2d4dd62dd --- /dev/null +++ b/maze/task3/maps/level5/question/89.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | * | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | diff --git a/maze/task3/maps/level5/question/9.txt b/maze/task3/maps/level5/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..841a55d50fc62dbd8eb2ca9e244c8c7709b957bf --- /dev/null +++ b/maze/task3/maps/level5/question/9.txt @@ -0,0 +1,29 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task3/maps/level5/question/90.txt b/maze/task3/maps/level5/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b0b5810de77dbe190f5ebfb9f8b53b5f23f7b02 --- /dev/null +++ b/maze/task3/maps/level5/question/90.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | # | +| Row 3 | _ | # | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/91.txt b/maze/task3/maps/level5/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d13cea2eb398547162e2d51e4bcecb23ed440be --- /dev/null +++ b/maze/task3/maps/level5/question/91.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | # | _ | @ | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | * | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task3/maps/level5/question/92.txt b/maze/task3/maps/level5/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..807bb2c7d1d869921ef8d8dd31502a09e43403ea --- /dev/null +++ b/maze/task3/maps/level5/question/92.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | @ | # | +| Row 6 | # | _ | # | # | # | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/93.txt b/maze/task3/maps/level5/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..0548d5a9fc7d0b1ca3f2c22972232872ff88123b --- /dev/null +++ b/maze/task3/maps/level5/question/93.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | # | * | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/94.txt b/maze/task3/maps/level5/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..68704cd3f2206a2239d73f408eefdd3a34be59bd --- /dev/null +++ b/maze/task3/maps/level5/question/94.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | # | # | diff --git a/maze/task3/maps/level5/question/95.txt b/maze/task3/maps/level5/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fc5290d439d2badb1c0d45f10b7f71e5cccb3cc --- /dev/null +++ b/maze/task3/maps/level5/question/95.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | _ | _ | +| Row 3 | # | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | diff --git a/maze/task3/maps/level5/question/96.txt b/maze/task3/maps/level5/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d36f6eb6e216cffebc27100c4ea42dc4b651bec --- /dev/null +++ b/maze/task3/maps/level5/question/96.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | # | +| Row 3 | _ | # | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/97.txt b/maze/task3/maps/level5/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0983d5b6d174bfec65ef01659b8b712fea17314 --- /dev/null +++ b/maze/task3/maps/level5/question/97.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | @ | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | @ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level5/question/98.txt b/maze/task3/maps/level5/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..82e4ffc3fb3b3418c52c74eb16ccebd7622626a2 --- /dev/null +++ b/maze/task3/maps/level5/question/98.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | * | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | @ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task3/maps/level5/question/99.txt b/maze/task3/maps/level5/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..662bd18c8ee8cc9e5321c34caf6cab1453a52d1e --- /dev/null +++ b/maze/task3/maps/level5/question/99.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | @ | # | # | _ | _ | _ | # | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/answer/0.txt b/maze/task3/maps/level6/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfd7e290937bc1cdfa3d68d076e2de1e92232f4f --- /dev/null +++ b/maze/task3/maps/level6/answer/0.txt @@ -0,0 +1,5 @@ +6-96 +8-92 +6-0 +4-38 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/1.txt b/maze/task3/maps/level6/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..000f32ce177a67cc7ee2f8770dfac0edff19dc6d --- /dev/null +++ b/maze/task3/maps/level6/answer/1.txt @@ -0,0 +1,5 @@ +6-87 +6-1 +5-63 +7-21 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/10.txt b/maze/task3/maps/level6/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6abfc691a08979087e35768f8604eeb12803d67 --- /dev/null +++ b/maze/task3/maps/level6/answer/10.txt @@ -0,0 +1,5 @@ +6-27 +5-29 +8-23 +6-10 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/11.txt b/maze/task3/maps/level6/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7f8dd61b78455bc3f5e469a398a60d753e77be1 --- /dev/null +++ b/maze/task3/maps/level6/answer/11.txt @@ -0,0 +1,5 @@ +6-42 +4-4 +7-42 +6-11 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/12.txt b/maze/task3/maps/level6/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..0caf902a3d944851a030c29c5e0a4b6cd2c222b4 --- /dev/null +++ b/maze/task3/maps/level6/answer/12.txt @@ -0,0 +1,5 @@ +6-11 +6-12 +3-64 +4-81 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/13.txt b/maze/task3/maps/level6/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bee19d7aae0563c6e9da9f5ec2952fbb54e8b75 --- /dev/null +++ b/maze/task3/maps/level6/answer/13.txt @@ -0,0 +1,5 @@ +4-38 +8-12 +6-13 +6-7 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/14.txt b/maze/task3/maps/level6/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..e28097c53d327a5d730120414f8cbb6c3e3934b1 --- /dev/null +++ b/maze/task3/maps/level6/answer/14.txt @@ -0,0 +1,5 @@ +6-14 +4-56 +3-19 +6-30 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/15.txt b/maze/task3/maps/level6/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4dd07bd48027525705c8d9a8425e57152c8cd34 --- /dev/null +++ b/maze/task3/maps/level6/answer/15.txt @@ -0,0 +1,5 @@ +6-11 +5-7 +8-75 +6-15 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/16.txt b/maze/task3/maps/level6/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..74b15ef37814ee0aadc64548d6d7f4c30af01564 --- /dev/null +++ b/maze/task3/maps/level6/answer/16.txt @@ -0,0 +1,5 @@ +6-16 +4-15 +8-7 +6-26 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/17.txt b/maze/task3/maps/level6/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2481c55990c57653e8d50392e921f90c1f9a81 --- /dev/null +++ b/maze/task3/maps/level6/answer/17.txt @@ -0,0 +1,5 @@ +3-95 +8-28 +6-17 +6-37 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/18.txt b/maze/task3/maps/level6/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd2e53330ce5d074f86c4fabd254951bb67f1bcf --- /dev/null +++ b/maze/task3/maps/level6/answer/18.txt @@ -0,0 +1,5 @@ +6-93 +7-92 +6-18 +4-4 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/19.txt b/maze/task3/maps/level6/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9a620133a12736e71775f8f93cd3aa6ed7794ad --- /dev/null +++ b/maze/task3/maps/level6/answer/19.txt @@ -0,0 +1,5 @@ +5-45 +8-58 +6-98 +6-19 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/2.txt b/maze/task3/maps/level6/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cb97f63eb2709acee7b83c36301abd990af2cfa --- /dev/null +++ b/maze/task3/maps/level6/answer/2.txt @@ -0,0 +1,5 @@ +5-70 +6-66 +7-43 +6-2 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/20.txt b/maze/task3/maps/level6/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..c413ce43e435b3fdbaa2f03c03ea55192a42b53c --- /dev/null +++ b/maze/task3/maps/level6/answer/20.txt @@ -0,0 +1,5 @@ +6-63 +7-54 +6-20 +3-31 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/21.txt b/maze/task3/maps/level6/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..b87b28ef72fe77bc9c0c1c0929fd733b0ebccb6c --- /dev/null +++ b/maze/task3/maps/level6/answer/21.txt @@ -0,0 +1,5 @@ +8-30 +6-99 +3-9 +6-21 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/22.txt b/maze/task3/maps/level6/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0d3925ed6e103bfce24208ccf660e0d1aef2040 --- /dev/null +++ b/maze/task3/maps/level6/answer/22.txt @@ -0,0 +1,5 @@ +8-42 +6-48 +5-96 +6-22 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/23.txt b/maze/task3/maps/level6/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0260751015f04089fba8214551bcac1499913385 --- /dev/null +++ b/maze/task3/maps/level6/answer/23.txt @@ -0,0 +1,5 @@ +6-23 +5-40 +6-61 +8-50 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/24.txt b/maze/task3/maps/level6/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..01a86318b53468304d62c74077ac54282510866f --- /dev/null +++ b/maze/task3/maps/level6/answer/24.txt @@ -0,0 +1,5 @@ +4-21 +6-24 +5-38 +6-73 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/25.txt b/maze/task3/maps/level6/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcfd12a9dccd3cd3991987469e23d9c6e1e8fd28 --- /dev/null +++ b/maze/task3/maps/level6/answer/25.txt @@ -0,0 +1,5 @@ +6-81 +6-25 +4-58 +8-82 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/26.txt b/maze/task3/maps/level6/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e1c2b44a97d7c00697b3e475b34ee7718cbe11 --- /dev/null +++ b/maze/task3/maps/level6/answer/26.txt @@ -0,0 +1,5 @@ +4-78 +3-32 +6-26 +6-31 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/27.txt b/maze/task3/maps/level6/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..576641b2f8304ec109c06fda08e1571dcf76bf0c --- /dev/null +++ b/maze/task3/maps/level6/answer/27.txt @@ -0,0 +1,5 @@ +6-27 +5-35 +6-40 +4-60 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/28.txt b/maze/task3/maps/level6/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..16af33ec4d6c40bce4ac980e663dc022eb11101e --- /dev/null +++ b/maze/task3/maps/level6/answer/28.txt @@ -0,0 +1,5 @@ +6-19 +4-57 +6-28 +5-13 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/29.txt b/maze/task3/maps/level6/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d9ae3c07d5b63f59e260117d2ceeba748803886 --- /dev/null +++ b/maze/task3/maps/level6/answer/29.txt @@ -0,0 +1,5 @@ +4-68 +6-29 +7-4 +6-5 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/3.txt b/maze/task3/maps/level6/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..91b949c100753e6546012700b65c66119b9af3a8 --- /dev/null +++ b/maze/task3/maps/level6/answer/3.txt @@ -0,0 +1,5 @@ +8-74 +6-38 +6-3 +3-82 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/30.txt b/maze/task3/maps/level6/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..3fac13b12948bbd29bb546fcc717d1cd217ff942 --- /dev/null +++ b/maze/task3/maps/level6/answer/30.txt @@ -0,0 +1,5 @@ +5-64 +6-65 +6-30 +8-45 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/31.txt b/maze/task3/maps/level6/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5be66fcf36f9916c3cd1f4fec86cc7f4c82ae9b --- /dev/null +++ b/maze/task3/maps/level6/answer/31.txt @@ -0,0 +1,5 @@ +6-35 +6-31 +3-48 +4-4 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/32.txt b/maze/task3/maps/level6/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fcc20a68d7d6ad1ea9f34420f64b4d8742be568 --- /dev/null +++ b/maze/task3/maps/level6/answer/32.txt @@ -0,0 +1,5 @@ +4-41 +6-32 +6-52 +5-72 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/33.txt b/maze/task3/maps/level6/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b5cd3c58603dd9a3a1ba27c9dc66877fa568d77 --- /dev/null +++ b/maze/task3/maps/level6/answer/33.txt @@ -0,0 +1,5 @@ +6-33 +6-73 +3-37 +4-89 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/34.txt b/maze/task3/maps/level6/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6e569e62f611cbdb1c23c57a5e0c3262ef393df --- /dev/null +++ b/maze/task3/maps/level6/answer/34.txt @@ -0,0 +1,5 @@ +6-65 +3-28 +6-34 +4-47 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/35.txt b/maze/task3/maps/level6/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..423132d56169b377004532933541edce5beb11bc --- /dev/null +++ b/maze/task3/maps/level6/answer/35.txt @@ -0,0 +1,5 @@ +4-9 +6-74 +8-39 +6-35 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/36.txt b/maze/task3/maps/level6/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..291617900ba29579b129e307ecb8184c707442c7 --- /dev/null +++ b/maze/task3/maps/level6/answer/36.txt @@ -0,0 +1,5 @@ +8-23 +6-36 +6-46 +7-65 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/37.txt b/maze/task3/maps/level6/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..cecf9d022c8bf544e87cde4836c3136bbcc9c9b2 --- /dev/null +++ b/maze/task3/maps/level6/answer/37.txt @@ -0,0 +1,5 @@ +6-98 +6-37 +3-26 +5-29 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/38.txt b/maze/task3/maps/level6/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..06542877067d53710164621bfff289e4c50a8ea4 --- /dev/null +++ b/maze/task3/maps/level6/answer/38.txt @@ -0,0 +1,5 @@ +6-47 +6-38 +4-20 +3-62 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/39.txt b/maze/task3/maps/level6/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f1cc7bb6be68096a924e60eff11c540a4e9d535 --- /dev/null +++ b/maze/task3/maps/level6/answer/39.txt @@ -0,0 +1,5 @@ +6-87 +6-39 +5-78 +3-30 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/4.txt b/maze/task3/maps/level6/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc12db264e28b0b88579f1c79a760d47ca1cbfc4 --- /dev/null +++ b/maze/task3/maps/level6/answer/4.txt @@ -0,0 +1,5 @@ +6-82 +3-96 +5-11 +6-4 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/40.txt b/maze/task3/maps/level6/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d8981e94f03f22536b74835b216e3bee0238f7e --- /dev/null +++ b/maze/task3/maps/level6/answer/40.txt @@ -0,0 +1,5 @@ +6-40 +6-21 +7-77 +4-43 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/41.txt b/maze/task3/maps/level6/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..285bbc8cc19afa784e2d402cee39880dd437637d --- /dev/null +++ b/maze/task3/maps/level6/answer/41.txt @@ -0,0 +1,5 @@ +5-70 +6-6 +6-41 +7-4 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/42.txt b/maze/task3/maps/level6/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..580d0199b92b9b62e0e920678887d0da04503f7f --- /dev/null +++ b/maze/task3/maps/level6/answer/42.txt @@ -0,0 +1,5 @@ +8-17 +5-62 +6-42 +6-8 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/43.txt b/maze/task3/maps/level6/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..087f5d8aa1b892a449a826de5d378c2e5e241ade --- /dev/null +++ b/maze/task3/maps/level6/answer/43.txt @@ -0,0 +1,5 @@ +6-43 +8-77 +6-74 +5-40 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/44.txt b/maze/task3/maps/level6/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..3455c0846dcd1f7f43c00b3a17f51803fc8bbbbf --- /dev/null +++ b/maze/task3/maps/level6/answer/44.txt @@ -0,0 +1,5 @@ +6-8 +5-9 +6-44 +7-33 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/45.txt b/maze/task3/maps/level6/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f87856d70e6d870a88b844ba76458e2eeb4612a --- /dev/null +++ b/maze/task3/maps/level6/answer/45.txt @@ -0,0 +1,5 @@ +4-28 +6-33 +6-45 +5-40 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/46.txt b/maze/task3/maps/level6/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b305cd243f7747b1ff52659d8b02d68e88c7629 --- /dev/null +++ b/maze/task3/maps/level6/answer/46.txt @@ -0,0 +1,5 @@ +6-20 +7-1 +6-46 +8-37 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/47.txt b/maze/task3/maps/level6/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ae64b4a1b16e03fa229cacf198d78bd9ddba2a7 --- /dev/null +++ b/maze/task3/maps/level6/answer/47.txt @@ -0,0 +1,5 @@ +3-55 +6-27 +6-47 +7-78 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/48.txt b/maze/task3/maps/level6/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f62fed148603450ae509a5fbc92423b61e0b30b --- /dev/null +++ b/maze/task3/maps/level6/answer/48.txt @@ -0,0 +1,5 @@ +8-73 +7-36 +6-48 +6-78 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/49.txt b/maze/task3/maps/level6/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..00020005c7b2eff92d7bdc8b9513f9a958c6f9e4 --- /dev/null +++ b/maze/task3/maps/level6/answer/49.txt @@ -0,0 +1,5 @@ +4-18 +6-12 +5-45 +6-49 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/5.txt b/maze/task3/maps/level6/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e72154907c285280a4dcb808d9ba25b92860fff7 --- /dev/null +++ b/maze/task3/maps/level6/answer/5.txt @@ -0,0 +1,5 @@ +8-77 +6-83 +6-5 +4-95 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/50.txt b/maze/task3/maps/level6/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2936527657bc34d6b48c336593c649cb5e45e8d0 --- /dev/null +++ b/maze/task3/maps/level6/answer/50.txt @@ -0,0 +1,5 @@ +8-50 +4-57 +6-19 +6-50 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/51.txt b/maze/task3/maps/level6/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c53b721cc322758d31da8c4006792b8f48ece99 --- /dev/null +++ b/maze/task3/maps/level6/answer/51.txt @@ -0,0 +1,5 @@ +6-51 +4-93 +3-81 +6-31 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/52.txt b/maze/task3/maps/level6/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..18e65171e7ab181efc47fe737c351120499a4ceb --- /dev/null +++ b/maze/task3/maps/level6/answer/52.txt @@ -0,0 +1,5 @@ +3-66 +8-64 +6-61 +6-52 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/53.txt b/maze/task3/maps/level6/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..b39e03624fc9bb75e5f87a9132651506c2cebcdd --- /dev/null +++ b/maze/task3/maps/level6/answer/53.txt @@ -0,0 +1,5 @@ +6-64 +5-72 +4-90 +6-53 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/54.txt b/maze/task3/maps/level6/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad1b92863d4b63116a5cd473c8fdb72749096a0d --- /dev/null +++ b/maze/task3/maps/level6/answer/54.txt @@ -0,0 +1,5 @@ +6-76 +7-21 +6-54 +8-75 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/55.txt b/maze/task3/maps/level6/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f6ca57d0f78d79ae5c96050d159c521bfa714eb --- /dev/null +++ b/maze/task3/maps/level6/answer/55.txt @@ -0,0 +1,5 @@ +6-89 +5-56 +6-55 +8-30 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/56.txt b/maze/task3/maps/level6/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..93c106e3a70b3231526f8f4b7101da2666bd00c2 --- /dev/null +++ b/maze/task3/maps/level6/answer/56.txt @@ -0,0 +1,5 @@ +6-17 +7-24 +5-20 +6-56 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/57.txt b/maze/task3/maps/level6/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..7de7b1f952b0f3863bdc9f99065672cd5ded8d55 --- /dev/null +++ b/maze/task3/maps/level6/answer/57.txt @@ -0,0 +1,5 @@ +6-63 +5-22 +8-72 +6-57 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/58.txt b/maze/task3/maps/level6/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..6baf0ce5b7f7494143c9b23b1186b5aebcefccae --- /dev/null +++ b/maze/task3/maps/level6/answer/58.txt @@ -0,0 +1,5 @@ +8-78 +6-58 +4-7 +6-56 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/59.txt b/maze/task3/maps/level6/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e9c847f87e1290303d9efe966b96fccb2824ce3 --- /dev/null +++ b/maze/task3/maps/level6/answer/59.txt @@ -0,0 +1,5 @@ +6-40 +4-59 +6-59 +7-15 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/6.txt b/maze/task3/maps/level6/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef6fdd07b918f1101018219842b3be745d3c4ac9 --- /dev/null +++ b/maze/task3/maps/level6/answer/6.txt @@ -0,0 +1,5 @@ +6-77 +6-6 +5-6 +4-13 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/60.txt b/maze/task3/maps/level6/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ad413d6c7e5e98841944c8a438fc3add6b35978 --- /dev/null +++ b/maze/task3/maps/level6/answer/60.txt @@ -0,0 +1,5 @@ +6-95 +4-16 +6-60 +5-23 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/61.txt b/maze/task3/maps/level6/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..9705ced5efcc23dd01601f6055e92fa1890486d8 --- /dev/null +++ b/maze/task3/maps/level6/answer/61.txt @@ -0,0 +1,5 @@ +6-66 +8-59 +6-61 +7-58 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/62.txt b/maze/task3/maps/level6/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b27d4af4dc92e3e726c05e0e476ba530a62e8da --- /dev/null +++ b/maze/task3/maps/level6/answer/62.txt @@ -0,0 +1,5 @@ +8-75 +6-62 +5-26 +6-36 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/63.txt b/maze/task3/maps/level6/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..f63bf91832f34ef869aa9ea8036f14ecb9859e5e --- /dev/null +++ b/maze/task3/maps/level6/answer/63.txt @@ -0,0 +1,5 @@ +3-15 +6-63 +5-54 +6-48 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/64.txt b/maze/task3/maps/level6/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..04e5d07729218bf4b861e91634c183fe3e044f12 --- /dev/null +++ b/maze/task3/maps/level6/answer/64.txt @@ -0,0 +1,5 @@ +6-46 +6-64 +7-68 +8-56 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/65.txt b/maze/task3/maps/level6/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..814340f6efd2b551e4d3d36df64dcae4a42a8f21 --- /dev/null +++ b/maze/task3/maps/level6/answer/65.txt @@ -0,0 +1,5 @@ +3-12 +6-65 +6-49 +8-68 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/66.txt b/maze/task3/maps/level6/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..00fbfadc1011174cc70f1e7f0741008a3989b9f0 --- /dev/null +++ b/maze/task3/maps/level6/answer/66.txt @@ -0,0 +1,5 @@ +6-66 +7-60 +4-57 +6-67 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/67.txt b/maze/task3/maps/level6/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..f68bc8e4dda30a96db0b58af2937da523dfadd77 --- /dev/null +++ b/maze/task3/maps/level6/answer/67.txt @@ -0,0 +1,5 @@ +6-37 +4-62 +6-67 +7-49 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/68.txt b/maze/task3/maps/level6/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..689530ac5475e48d458232a4219b612e63ba57d4 --- /dev/null +++ b/maze/task3/maps/level6/answer/68.txt @@ -0,0 +1,5 @@ +6-68 +8-23 +5-99 +6-3 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/69.txt b/maze/task3/maps/level6/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..860fa68b0296bcbcd6f216337a9de357af7c0e96 --- /dev/null +++ b/maze/task3/maps/level6/answer/69.txt @@ -0,0 +1,5 @@ +3-57 +4-40 +6-69 +6-56 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/7.txt b/maze/task3/maps/level6/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea3471fe9b2c50f7716ad06da6c34f5bd3e3e111 --- /dev/null +++ b/maze/task3/maps/level6/answer/7.txt @@ -0,0 +1,5 @@ +6-7 +5-8 +6-0 +3-27 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/70.txt b/maze/task3/maps/level6/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7a51f3b6506de2224ed950655a160d9374f0a7f --- /dev/null +++ b/maze/task3/maps/level6/answer/70.txt @@ -0,0 +1,5 @@ +3-6 +6-59 +6-70 +7-95 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/71.txt b/maze/task3/maps/level6/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..05b0804b990a9f724c1d9b2105d831980d410633 --- /dev/null +++ b/maze/task3/maps/level6/answer/71.txt @@ -0,0 +1,5 @@ +7-64 +5-12 +6-21 +6-71 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/72.txt b/maze/task3/maps/level6/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9e6ef388dff52c56930bfef63636b3463845d7d --- /dev/null +++ b/maze/task3/maps/level6/answer/72.txt @@ -0,0 +1,5 @@ +7-64 +6-72 +6-40 +8-19 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/73.txt b/maze/task3/maps/level6/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5c6126feaeddbaf2500a1f1f23ef6b0469e81bd --- /dev/null +++ b/maze/task3/maps/level6/answer/73.txt @@ -0,0 +1,5 @@ +6-58 +6-73 +4-28 +8-27 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/74.txt b/maze/task3/maps/level6/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f21014d3e73240537df926740f2ae258cb42889 --- /dev/null +++ b/maze/task3/maps/level6/answer/74.txt @@ -0,0 +1,5 @@ +3-6 +7-58 +6-74 +6-19 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/75.txt b/maze/task3/maps/level6/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..f25c25190d693a91f0c1a0c7ae15b1caf2d93101 --- /dev/null +++ b/maze/task3/maps/level6/answer/75.txt @@ -0,0 +1,5 @@ +5-50 +8-1 +6-49 +6-75 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/76.txt b/maze/task3/maps/level6/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..a416a3feac807fa021eaa01363862b68dd93cba2 --- /dev/null +++ b/maze/task3/maps/level6/answer/76.txt @@ -0,0 +1,5 @@ +7-94 +6-38 +5-91 +6-76 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/77.txt b/maze/task3/maps/level6/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..98ff5cbfa3a1a98bb525b0edf221a5e6355064e2 --- /dev/null +++ b/maze/task3/maps/level6/answer/77.txt @@ -0,0 +1,5 @@ +6-23 +5-12 +4-62 +6-77 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/78.txt b/maze/task3/maps/level6/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..61b08aa7f26b775b98c1da7665cd70d7f0728641 --- /dev/null +++ b/maze/task3/maps/level6/answer/78.txt @@ -0,0 +1,5 @@ +7-68 +6-68 +6-78 +3-15 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/79.txt b/maze/task3/maps/level6/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..18543e8e5711f6624b73813b75fb48b128a8e44c --- /dev/null +++ b/maze/task3/maps/level6/answer/79.txt @@ -0,0 +1,5 @@ +7-92 +6-40 +5-74 +6-79 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/8.txt b/maze/task3/maps/level6/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d6535982612f0dcf1badedf5975cb5393ddbfc0 --- /dev/null +++ b/maze/task3/maps/level6/answer/8.txt @@ -0,0 +1,5 @@ +3-7 +6-4 +6-8 +8-1 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/80.txt b/maze/task3/maps/level6/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..e153a987098afdb9c823e5d8c328c33be43dfc87 --- /dev/null +++ b/maze/task3/maps/level6/answer/80.txt @@ -0,0 +1,5 @@ +7-68 +6-80 +8-27 +6-21 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/81.txt b/maze/task3/maps/level6/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ca028e39b1345f3b47984c420db7eb3345acb93 --- /dev/null +++ b/maze/task3/maps/level6/answer/81.txt @@ -0,0 +1,5 @@ +6-81 +4-6 +6-41 +8-99 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/82.txt b/maze/task3/maps/level6/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..81379632f1a76ed270f0dd4d7994c05bef8da98b --- /dev/null +++ b/maze/task3/maps/level6/answer/82.txt @@ -0,0 +1,5 @@ +6-46 +7-44 +3-46 +6-82 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/83.txt b/maze/task3/maps/level6/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..d562aa12c43023d4f412d3a9a9d16a6cd059003f --- /dev/null +++ b/maze/task3/maps/level6/answer/83.txt @@ -0,0 +1,5 @@ +5-40 +4-50 +6-90 +6-83 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/84.txt b/maze/task3/maps/level6/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..e40c2564ce4ccb5203d93951730f034612571003 --- /dev/null +++ b/maze/task3/maps/level6/answer/84.txt @@ -0,0 +1,5 @@ +6-44 +6-84 +4-49 +3-83 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/85.txt b/maze/task3/maps/level6/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb8db2e9f9161e230fe7475aa8c5fa5085604cc3 --- /dev/null +++ b/maze/task3/maps/level6/answer/85.txt @@ -0,0 +1,5 @@ +6-91 +3-49 +6-85 +5-26 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/86.txt b/maze/task3/maps/level6/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5cb318eb5eb0fa71abd3f51c842da5b54c6e794 --- /dev/null +++ b/maze/task3/maps/level6/answer/86.txt @@ -0,0 +1,5 @@ +6-52 +6-86 +7-44 +3-11 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/87.txt b/maze/task3/maps/level6/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f037ac3e92ab5c1662f0b5541730eb9c2805b69 --- /dev/null +++ b/maze/task3/maps/level6/answer/87.txt @@ -0,0 +1,5 @@ +8-96 +6-18 +4-43 +6-87 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/88.txt b/maze/task3/maps/level6/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a24f3da0f16ce356a48758964017104204f62695 --- /dev/null +++ b/maze/task3/maps/level6/answer/88.txt @@ -0,0 +1,5 @@ +5-26 +6-88 +8-24 +6-20 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/89.txt b/maze/task3/maps/level6/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd1a52c5c51ac91e78846d27124ac91d18ec2de0 --- /dev/null +++ b/maze/task3/maps/level6/answer/89.txt @@ -0,0 +1,5 @@ +4-15 +6-89 +6-74 +8-56 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/9.txt b/maze/task3/maps/level6/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..c19e7e16990036d1c7afa5efabd46357d9ce06da --- /dev/null +++ b/maze/task3/maps/level6/answer/9.txt @@ -0,0 +1,5 @@ +3-71 +6-9 +6-61 +8-27 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/90.txt b/maze/task3/maps/level6/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..d76eefc1d64df5025f44e5bf35aa4d476be134f9 --- /dev/null +++ b/maze/task3/maps/level6/answer/90.txt @@ -0,0 +1,5 @@ +4-77 +5-93 +6-90 +6-89 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/91.txt b/maze/task3/maps/level6/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..044e6fbb846a97ea8ba06fc0c698d87eed7f5fdd --- /dev/null +++ b/maze/task3/maps/level6/answer/91.txt @@ -0,0 +1,5 @@ +6-22 +6-91 +4-45 +3-99 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/92.txt b/maze/task3/maps/level6/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd19446273c3ff656b5bf34e2c76fb90da50a180 --- /dev/null +++ b/maze/task3/maps/level6/answer/92.txt @@ -0,0 +1,5 @@ +7-4 +6-92 +8-83 +6-11 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/93.txt b/maze/task3/maps/level6/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..725ae6d4b14f2e0ff00227bc7cbd3b20509fa5c2 --- /dev/null +++ b/maze/task3/maps/level6/answer/93.txt @@ -0,0 +1,5 @@ +7-26 +6-93 +6-90 +4-46 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/94.txt b/maze/task3/maps/level6/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..a64576f08de3a2fea556376bac4707af4e6583f4 --- /dev/null +++ b/maze/task3/maps/level6/answer/94.txt @@ -0,0 +1,5 @@ +6-3 +5-49 +3-60 +6-94 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/95.txt b/maze/task3/maps/level6/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce57f2fc03c2dbd1e017054c223707c4aa293052 --- /dev/null +++ b/maze/task3/maps/level6/answer/95.txt @@ -0,0 +1,5 @@ +6-92 +4-88 +6-95 +8-0 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/96.txt b/maze/task3/maps/level6/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..26350da0a661c72783791ffa84e34a687b5f917a --- /dev/null +++ b/maze/task3/maps/level6/answer/96.txt @@ -0,0 +1,5 @@ +6-96 +5-9 +6-99 +4-13 +0 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/97.txt b/maze/task3/maps/level6/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d611df56d640403546310e8bfce4c8f100fd246 --- /dev/null +++ b/maze/task3/maps/level6/answer/97.txt @@ -0,0 +1,5 @@ +5-57 +3-91 +6-73 +6-97 +3 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/98.txt b/maze/task3/maps/level6/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d8ea22588afada1c9a245dc6dfcf5ee8e242697 --- /dev/null +++ b/maze/task3/maps/level6/answer/98.txt @@ -0,0 +1,5 @@ +5-55 +6-82 +6-98 +4-47 +2 \ No newline at end of file diff --git a/maze/task3/maps/level6/answer/99.txt b/maze/task3/maps/level6/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8baf67ff937c9d8c20a027cd460c5ccc6a940c2 --- /dev/null +++ b/maze/task3/maps/level6/answer/99.txt @@ -0,0 +1,5 @@ +6-26 +6-99 +7-47 +8-70 +1 \ No newline at end of file diff --git a/maze/task3/maps/level6/img/0.png b/maze/task3/maps/level6/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6ce6b0616b8a8822fd29a0b16ef557647dd1a278 --- /dev/null +++ b/maze/task3/maps/level6/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7cf5f68f30117e9be92cfd1cfd618e573b337d330ff07293e9214cf2163a39 +size 13142 diff --git a/maze/task3/maps/level6/img/1.png b/maze/task3/maps/level6/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cccb347239f041d67a44ea4212cb86f63c92505d --- /dev/null +++ b/maze/task3/maps/level6/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8af474044334f018253e83212b7f1722f431363771a93011f57ef59ab4433a0f +size 12833 diff --git a/maze/task3/maps/level6/img/10.png b/maze/task3/maps/level6/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ad317fc42fcfdc0b38aa39983dd132f2f2a8b0e9 --- /dev/null +++ b/maze/task3/maps/level6/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6c90f70489fb8d6691a2f1e0c076320e5bf58dbdaadd4513850309c3ed74e3 +size 11362 diff --git a/maze/task3/maps/level6/img/11.png b/maze/task3/maps/level6/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..787bb1470069d5fec582dca64f33e94261bd15cc --- /dev/null +++ b/maze/task3/maps/level6/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb20950e3eade98502495e3864e6e544e4f3dcd64ec012e7a87b85f18dffac9 +size 12084 diff --git a/maze/task3/maps/level6/img/12.png b/maze/task3/maps/level6/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..662f1b9750d8b1181c573c29d6fff8583bae577d --- /dev/null +++ b/maze/task3/maps/level6/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e24158bd3e44791c9dc08db302871293dd8017ff9ad60a170255301b7ac082f +size 13001 diff --git a/maze/task3/maps/level6/img/13.png b/maze/task3/maps/level6/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e8478d158cb0937c291a8bb1fc7bfda471deed --- /dev/null +++ b/maze/task3/maps/level6/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf75dd4c390ac34674c1d6853775fa03d7d79c9204fc15934bafa0db11eb8e45 +size 12069 diff --git a/maze/task3/maps/level6/img/14.png b/maze/task3/maps/level6/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4c611b3a4faa66ee1be03f5e222c44f8b214b7b0 --- /dev/null +++ b/maze/task3/maps/level6/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09764a311ab1a7d583c14683bef2d76dd04ead47d8061e7514484ce996732ab +size 13176 diff --git a/maze/task3/maps/level6/img/15.png b/maze/task3/maps/level6/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca2773dde9225b8b274878a4f2ef90e099b5946 --- /dev/null +++ b/maze/task3/maps/level6/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5386ac909638fcf3dabea3ef63c6f5a007553a99c49a78f4a0e009d7ad36c399 +size 11348 diff --git a/maze/task3/maps/level6/img/16.png b/maze/task3/maps/level6/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..51e4a102340046c70fdf5cdc8ecc771016ba2631 --- /dev/null +++ b/maze/task3/maps/level6/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:280f85497359355dd4421b18fc1bfd1b0b84e466c262fa01c3ef16f87b749b39 +size 13050 diff --git a/maze/task3/maps/level6/img/17.png b/maze/task3/maps/level6/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..54cd853d45678313764898260e6ab149a477713b --- /dev/null +++ b/maze/task3/maps/level6/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ebcdac8617a09127a1b3205d63b534ed9c3c20563b871387bfe117a6838294 +size 13023 diff --git a/maze/task3/maps/level6/img/18.png b/maze/task3/maps/level6/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..919d42f870c1cacb83662458d3a610d09afebda8 --- /dev/null +++ b/maze/task3/maps/level6/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20f7a9dc58fb94b2dc59c754a42101a3d73abedaa67c332320fba93abcfe78a +size 12380 diff --git a/maze/task3/maps/level6/img/19.png b/maze/task3/maps/level6/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..c010437230ac06eb797d3d1fd0b5700d98aa946c --- /dev/null +++ b/maze/task3/maps/level6/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f732126ef840e7d4ab4abf053af9340767f6b1e20187e116a1291bba4b2e2b3 +size 12290 diff --git a/maze/task3/maps/level6/img/2.png b/maze/task3/maps/level6/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..22c94c7e222fb0e8345902ac4c0d0a1adb278193 --- /dev/null +++ b/maze/task3/maps/level6/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3741ed4312e5c3563f26d483cd4d2effaba0bf0c924e4ad324a32882c7ac48 +size 12373 diff --git a/maze/task3/maps/level6/img/20.png b/maze/task3/maps/level6/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..e4526b9c90ad9c8e8e0ffe585bef84f13afc9073 --- /dev/null +++ b/maze/task3/maps/level6/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5e67bc3aee15111e4d358a59e76d94358c9092837cfc982f7d14a647d758e6 +size 13093 diff --git a/maze/task3/maps/level6/img/21.png b/maze/task3/maps/level6/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..9fe590ca3a0832eae7a5b3146e098b373ea36d24 --- /dev/null +++ b/maze/task3/maps/level6/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64090f5ba7eddbac010117de5dda1336f2a248b76820160020c45977e375d4bd +size 11247 diff --git a/maze/task3/maps/level6/img/22.png b/maze/task3/maps/level6/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..c24e11b6539bbb7384451582399d746cd1d2f914 --- /dev/null +++ b/maze/task3/maps/level6/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0cdc3e03c557b4fe82936dc9fee3af8b49269652013031060412c01e25ea5f +size 12858 diff --git a/maze/task3/maps/level6/img/23.png b/maze/task3/maps/level6/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..15679316a40a4d400ae233f61db4b18b5aea85c6 --- /dev/null +++ b/maze/task3/maps/level6/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46f3728bd3f61289a5dcec3c08dc80762fc8b77332741fcdb9d0d0021ab6ed9 +size 12237 diff --git a/maze/task3/maps/level6/img/24.png b/maze/task3/maps/level6/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..d513e02acadc743ba3dbfa085edcb0a737076a73 --- /dev/null +++ b/maze/task3/maps/level6/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686390842f6d81617e7058b401ed2f03b08459f1f5fd2ce33bca966c00ca9666 +size 12917 diff --git a/maze/task3/maps/level6/img/25.png b/maze/task3/maps/level6/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..c9ac4dfb7deb00b1a947f5ff83892ba54233bea2 --- /dev/null +++ b/maze/task3/maps/level6/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e3905f875a22250bb8ae5d794f54ae010773eb0569d1229e4e04b4bfc47e56 +size 13035 diff --git a/maze/task3/maps/level6/img/26.png b/maze/task3/maps/level6/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..2788ad465e8c206b92326d59f08ee66be3b1abc3 --- /dev/null +++ b/maze/task3/maps/level6/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a252201fc4ec045b14d21a7ee8248288a86537341af4ebfd2d3ceeaab4be8f64 +size 13146 diff --git a/maze/task3/maps/level6/img/27.png b/maze/task3/maps/level6/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..430c756a9840d04b2ab6be555b6d51105f78856d --- /dev/null +++ b/maze/task3/maps/level6/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2decf00a05901a9bb258b59f3ad709402e4efc861da52b8fe6aa0115e8a928 +size 11314 diff --git a/maze/task3/maps/level6/img/28.png b/maze/task3/maps/level6/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..8c0419257ca3ba81baa4a372472189e1f724bedc --- /dev/null +++ b/maze/task3/maps/level6/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45f53aa09bd68a307b970ceda1b409e9f841607f6102783aa19d92909fc1a51 +size 10504 diff --git a/maze/task3/maps/level6/img/29.png b/maze/task3/maps/level6/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..aecd246f3f44d010dc52edad877cb1794cc8381b --- /dev/null +++ b/maze/task3/maps/level6/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ef5c388df3de63f9af71ba14e1932519aa0dd8f03ad21114de58828139251c +size 11269 diff --git a/maze/task3/maps/level6/img/3.png b/maze/task3/maps/level6/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..655d9482b22ba184453ebfc4388606bde0ba2ada --- /dev/null +++ b/maze/task3/maps/level6/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e26501e633b3ac07abd93890cddc88173afbf30d7b94725610115ac198e8d7f +size 12417 diff --git a/maze/task3/maps/level6/img/30.png b/maze/task3/maps/level6/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..c6585f035bccdd8daf6418a13bb5582b117fdbf3 --- /dev/null +++ b/maze/task3/maps/level6/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0b908c0815fb8d44c0e14070dd6b35ee515f7153d382b4b8ac83787ee62010 +size 13976 diff --git a/maze/task3/maps/level6/img/31.png b/maze/task3/maps/level6/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8772c26d68c142572a3840486fdb366cdba9a00b --- /dev/null +++ b/maze/task3/maps/level6/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f24dfcb35c43781fa249ebe66b1254ddc5e4e2cafc0bebd02b03f371361bd7f1 +size 13106 diff --git a/maze/task3/maps/level6/img/32.png b/maze/task3/maps/level6/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ae7737f299906d74e9ecf1b50374b5f4b769db --- /dev/null +++ b/maze/task3/maps/level6/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14bbc674cb87f3ab7cc83227ea1e332d109f42b2f303e331362b8bfd3b7229d +size 13070 diff --git a/maze/task3/maps/level6/img/33.png b/maze/task3/maps/level6/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..d3e19eb7f921d20aacb796cd806bc93e60ad5718 --- /dev/null +++ b/maze/task3/maps/level6/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a9f056d0609827c07e4c22c220e233e8a1dfa174bfa7178344d811f0fd6e26 +size 13150 diff --git a/maze/task3/maps/level6/img/34.png b/maze/task3/maps/level6/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..21c282d2f3aa3113a08f2e8ca70559836889fb78 --- /dev/null +++ b/maze/task3/maps/level6/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cebe3a8a52a1a1ed89675545abd8eb2c8ab4ee35133ded2dd2c89ccaad8e11 +size 13065 diff --git a/maze/task3/maps/level6/img/35.png b/maze/task3/maps/level6/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..f1ccbbc4a1207dd013506b561696f0b9bc0b6842 --- /dev/null +++ b/maze/task3/maps/level6/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4eb63f3c3649624f170da52a1abd7b9b254d74077b8ebbbda022c059bd3a29f +size 12193 diff --git a/maze/task3/maps/level6/img/36.png b/maze/task3/maps/level6/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..a25240fdfa0b6c213e473b85e64935059da37d76 --- /dev/null +++ b/maze/task3/maps/level6/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953a15f194008b4b96cb0387c58d8d9a022388ea76d8a170d9664212675c541c +size 11440 diff --git a/maze/task3/maps/level6/img/37.png b/maze/task3/maps/level6/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..a03e968a14a970357eb8a7d77ebc10e2a3104b11 --- /dev/null +++ b/maze/task3/maps/level6/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ed6c6975e3367eb17d83cef67734d14dca6c100afe64005f6889a8c193a84c +size 13913 diff --git a/maze/task3/maps/level6/img/38.png b/maze/task3/maps/level6/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..1cf9db57394ff2fc1ba76f3996f98aeac3c83df1 --- /dev/null +++ b/maze/task3/maps/level6/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84060f1d8526be933005b8a016598526a0a2928b215dc9f2fe8bdd7d6deceb5 +size 12987 diff --git a/maze/task3/maps/level6/img/39.png b/maze/task3/maps/level6/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..9dec12f5390cad105ca6430fae7dc1d25595220f --- /dev/null +++ b/maze/task3/maps/level6/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ca1235566c28f8b70ff0d01de93e01f1cf1db8ca65ff2825c1da1b99cf09e4 +size 12185 diff --git a/maze/task3/maps/level6/img/4.png b/maze/task3/maps/level6/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..be5176ee40b195a18aea9d1cb302fefe535e9fa3 --- /dev/null +++ b/maze/task3/maps/level6/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ea46b5bfbe13ecd93a53def1fc3f28a1cd76cbbaa1a9e7e415e35e03504f27 +size 12205 diff --git a/maze/task3/maps/level6/img/40.png b/maze/task3/maps/level6/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..14fe6719a01c217dd9992d5268ac18af9bb3d7e0 --- /dev/null +++ b/maze/task3/maps/level6/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dc61c6a99d89a2085be687609dc968f92cbac4935d5cb2e99a60e04233bfe3 +size 12976 diff --git a/maze/task3/maps/level6/img/41.png b/maze/task3/maps/level6/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..76098cc733d601d1f5346674aad4b698ba150037 --- /dev/null +++ b/maze/task3/maps/level6/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5095109a55300ca1e009cecc4b3115f1fc8f3320a758de8688a94e30fc5012d3 +size 12774 diff --git a/maze/task3/maps/level6/img/42.png b/maze/task3/maps/level6/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..980323f734dae8d2aa2216286a2b13b9eb888514 --- /dev/null +++ b/maze/task3/maps/level6/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fe71241facbb224d23448c0b7c0a58a55b731f498d385b0fc8cc99509f90307 +size 13054 diff --git a/maze/task3/maps/level6/img/43.png b/maze/task3/maps/level6/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..61efcae60cd06d393679b3891cea5a42286ca400 --- /dev/null +++ b/maze/task3/maps/level6/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6c16cf0749c5994549b95064f7e97d3ecc5645838441468b44a4fdd7574c92 +size 12270 diff --git a/maze/task3/maps/level6/img/44.png b/maze/task3/maps/level6/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..72449924e5fdd4bed20220cd3d9a09161546be1f --- /dev/null +++ b/maze/task3/maps/level6/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213a2ef2d5eb04fab02403d1b359c9fcda5a6a4a5c339127cb31093d3ce9df4b +size 13885 diff --git a/maze/task3/maps/level6/img/45.png b/maze/task3/maps/level6/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..c287be7f39d76b030f514e968dd417391aff5a1d --- /dev/null +++ b/maze/task3/maps/level6/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9890730ee54865c50f157b45ccf589671d5f569c876ada77544d17e47d82198f +size 12406 diff --git a/maze/task3/maps/level6/img/46.png b/maze/task3/maps/level6/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..10b1b9b438784b4f2bb968626cd23e01189a8fe4 --- /dev/null +++ b/maze/task3/maps/level6/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbfd54d3a852270c7556aeed32a88ac911b9c2724292e95a2d1eafe633a8cd5 +size 12247 diff --git a/maze/task3/maps/level6/img/47.png b/maze/task3/maps/level6/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..39615090f31df6781b3d64eef36937e8ce3d9851 --- /dev/null +++ b/maze/task3/maps/level6/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2352a619a6e49a908e70feffaee37dbd700f6d5c55aad49b30eb5812e9307b +size 12916 diff --git a/maze/task3/maps/level6/img/48.png b/maze/task3/maps/level6/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..e8369e701cafcd2291abc6fcb1ff00a40ad663a4 --- /dev/null +++ b/maze/task3/maps/level6/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:117a20eaa9f6156b127385e3a858846b8c7c522dc64b169ef6b46a2a3f572c2a +size 11382 diff --git a/maze/task3/maps/level6/img/49.png b/maze/task3/maps/level6/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..b00741a6d71537ef50bfdf8d80ac02d6c4671229 --- /dev/null +++ b/maze/task3/maps/level6/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a8c34b88947218c12e76f8aed6d1fae7a485cbef76d5decc024acc2847e022 +size 10399 diff --git a/maze/task3/maps/level6/img/5.png b/maze/task3/maps/level6/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6cd31184401c8617eb9d30560adc402be0a5f7e2 --- /dev/null +++ b/maze/task3/maps/level6/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937700fbbacd6f1d41ab7b37439b776947c420c7767c3f825ce373549a84d16 +size 11311 diff --git a/maze/task3/maps/level6/img/50.png b/maze/task3/maps/level6/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..123fea792fde193abcfff5ee0d6d13230aef3dbc --- /dev/null +++ b/maze/task3/maps/level6/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974b7f5f15d665520352c384205c402e1d2f461d64739bd5d84411e50de1f6e0 +size 12198 diff --git a/maze/task3/maps/level6/img/51.png b/maze/task3/maps/level6/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..b4664700b36d0607890dcdbbaf24fdf050d4a932 --- /dev/null +++ b/maze/task3/maps/level6/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f074889e290c045792cfe25c99c3a052f3a853e609d742c17339ce033f29a52c +size 12827 diff --git a/maze/task3/maps/level6/img/52.png b/maze/task3/maps/level6/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..e5aeeefc2ab32ccfc5881a9193e0f36352d5cc25 --- /dev/null +++ b/maze/task3/maps/level6/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec6978f69d4329a99bf7042a5fcd870051b966ebf6d3c6b7ef4efcb3c2c287c +size 12283 diff --git a/maze/task3/maps/level6/img/53.png b/maze/task3/maps/level6/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..81929f9d924e4018788e84181e1e7a9ed1660f06 --- /dev/null +++ b/maze/task3/maps/level6/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c331d8749a853f94e30dd0062dc83a928dff1c83856ebdf7c2e72fa8abb8ccf8 +size 11361 diff --git a/maze/task3/maps/level6/img/54.png b/maze/task3/maps/level6/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..e877eba2d7c961f3fd4e4f57577d87e10cbba6f7 --- /dev/null +++ b/maze/task3/maps/level6/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de5d50dfcab66ecc3f9915b1cf8dbe09edd78d16fca8936b978c8fa9619543c +size 11376 diff --git a/maze/task3/maps/level6/img/55.png b/maze/task3/maps/level6/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..5a72ea42c60184c964f17a14609c1a90f9e4889f --- /dev/null +++ b/maze/task3/maps/level6/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e6cdfeedcef155e024771057027532052c3e7a414c71c14ed1dccac601b8a3 +size 13909 diff --git a/maze/task3/maps/level6/img/56.png b/maze/task3/maps/level6/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c389257aee1d00429763988374ef19fc73bbdc --- /dev/null +++ b/maze/task3/maps/level6/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3956557d740cc23a5f7b5d36878f542f24c91b1d66dde1934a320fbfcff484 +size 12994 diff --git a/maze/task3/maps/level6/img/57.png b/maze/task3/maps/level6/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..4db43b4192e0365216782dd75be627d54f1f7d10 --- /dev/null +++ b/maze/task3/maps/level6/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b9317e7ee29540e917e6939ff810a66488741f4a3989b83653a7347a18bfb26 +size 14051 diff --git a/maze/task3/maps/level6/img/58.png b/maze/task3/maps/level6/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..05086ad78b90557c989a9eb6ff7c162111b782e5 --- /dev/null +++ b/maze/task3/maps/level6/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22570d82bb019075215faf051442187c2564af5ef8b03cbc24e4815b8e9ecb18 +size 13183 diff --git a/maze/task3/maps/level6/img/59.png b/maze/task3/maps/level6/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..e3cfd6488489707eaa73cf85f7f1be22523acc60 --- /dev/null +++ b/maze/task3/maps/level6/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261b0ead6661aedd4dd8e9b26d3fb89b4bc06ca67d2b2928db970de9472770f6 +size 13158 diff --git a/maze/task3/maps/level6/img/6.png b/maze/task3/maps/level6/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..afded9d325779428d17341f09c15426f1cf2fb5c --- /dev/null +++ b/maze/task3/maps/level6/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc059cbd716c76abd945250926a5f026a611216bb33d54a4851336b400f963aa +size 13081 diff --git a/maze/task3/maps/level6/img/60.png b/maze/task3/maps/level6/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..35397cd1c4f90825a421de8e71fb8e9ff5b6480b --- /dev/null +++ b/maze/task3/maps/level6/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862474b989637fd0ab6630b0d6143aca7bbc4b0505aa7d6d17ad2dd73cb68c89 +size 12014 diff --git a/maze/task3/maps/level6/img/61.png b/maze/task3/maps/level6/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..d175e3c5646e8339d03e46e70c9f6e20b2917053 --- /dev/null +++ b/maze/task3/maps/level6/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672a6bd59622e7b0b3a85c63eb00c0e4a2ef39be6b713fae301f837a1af90da1 +size 12279 diff --git a/maze/task3/maps/level6/img/62.png b/maze/task3/maps/level6/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc972e540a9fd469925c2dd5c317decf49f201e --- /dev/null +++ b/maze/task3/maps/level6/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04819a2fc2cd71e18acafc216666e69d93e33ef1b4620ad9ce41c1c5c387f147 +size 11384 diff --git a/maze/task3/maps/level6/img/63.png b/maze/task3/maps/level6/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..ea10d477561bca71e0c426cafeb3dab2c7d894a3 --- /dev/null +++ b/maze/task3/maps/level6/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d246f0cf79995e63f846dbe23a9dce738207b89c0ccdf0be6e9d783123e88b +size 10322 diff --git a/maze/task3/maps/level6/img/64.png b/maze/task3/maps/level6/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..b0213d8533dc960079494a65739f0816ccbd4992 --- /dev/null +++ b/maze/task3/maps/level6/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a0ddf6d9100018d95a6eed35376303e99a45214ea02a6b2dfc078b8990ce9b +size 12177 diff --git a/maze/task3/maps/level6/img/65.png b/maze/task3/maps/level6/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..eb26d6f3dd79ae3fe123f862cd45aa515c52e40c --- /dev/null +++ b/maze/task3/maps/level6/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694caad80889c0c79b942ebe5da49edd156b7862bd515820df89240287340f09 +size 12214 diff --git a/maze/task3/maps/level6/img/66.png b/maze/task3/maps/level6/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..67c8ec24e358c001eab843025c34597d54ec5c97 --- /dev/null +++ b/maze/task3/maps/level6/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92107639167e93ca7e755f460644b060bee0ba16c77e622f46edd0497d266412 +size 13109 diff --git a/maze/task3/maps/level6/img/67.png b/maze/task3/maps/level6/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..537eaec52ffb35a1ac5ee41a34489a11e23ade0b --- /dev/null +++ b/maze/task3/maps/level6/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1d0ecf74803e9569a63c3eca79e2e0e5c07a7b9ddb6e8bbf9565d5363f0dae +size 10392 diff --git a/maze/task3/maps/level6/img/68.png b/maze/task3/maps/level6/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..af5190560802e8e0ee1de9d4946315e5a0b046a6 --- /dev/null +++ b/maze/task3/maps/level6/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63af23106c483415c0c6a0b4e127203b1fcbfd37a6aadec75d18787becc8b26e +size 12132 diff --git a/maze/task3/maps/level6/img/69.png b/maze/task3/maps/level6/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..11c7470ef37301fa4eea158bbbe3d7475bd35e39 --- /dev/null +++ b/maze/task3/maps/level6/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a55c55bb2ab6a35257fc2de219fdd0be0160726f41dc26e9ad6f81a09f3d197 +size 13980 diff --git a/maze/task3/maps/level6/img/7.png b/maze/task3/maps/level6/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0b26670e339545fce94a2af911eba819d87fb251 --- /dev/null +++ b/maze/task3/maps/level6/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e60267d289132707be7230e080456e666f1d9c2f1d44e63226ced010fedc44 +size 13100 diff --git a/maze/task3/maps/level6/img/70.png b/maze/task3/maps/level6/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..271cf5e58659a5cf226845359d294c0880e92f1b --- /dev/null +++ b/maze/task3/maps/level6/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3739e6b1900887efe09d0b23c532eb8055e3604bb6e4c15324a2d15bf6f14c98 +size 13885 diff --git a/maze/task3/maps/level6/img/71.png b/maze/task3/maps/level6/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..298e7732e2eeb3a20a9af2dcd8f4f255a80feeb7 --- /dev/null +++ b/maze/task3/maps/level6/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7a8ac90867b7d5a1a62fe6d6966d4bfe2b82a72b237f95ac63eea3c6e48508 +size 12148 diff --git a/maze/task3/maps/level6/img/72.png b/maze/task3/maps/level6/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..26111e6fa3559822748144aa849cea2b9dd38118 --- /dev/null +++ b/maze/task3/maps/level6/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8822ac3b141e7598bc53f9c5edd6e59b0727165bc865fc5d446037e172adf7 +size 12119 diff --git a/maze/task3/maps/level6/img/73.png b/maze/task3/maps/level6/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..28cb70b71eb02d4bde7a607c5f238d25a93c9444 --- /dev/null +++ b/maze/task3/maps/level6/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89427ec919d3e1b2de42b4aed648421753c6f793a4f6c03103fce67c500d06a +size 13120 diff --git a/maze/task3/maps/level6/img/74.png b/maze/task3/maps/level6/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2300a6531c5349ae0517a0d96a13e9e07b7703 --- /dev/null +++ b/maze/task3/maps/level6/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6250e03c7ae4fc7b20c56e7ce8f0eebfa031d2ed5b210b552808453316507dff +size 12248 diff --git a/maze/task3/maps/level6/img/75.png b/maze/task3/maps/level6/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..2846ef786ca790cbe163647bc5bd77b3079e7b66 --- /dev/null +++ b/maze/task3/maps/level6/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea066004a27706e8bada0555624f371aed3061ae52eb7fe642b9fd8c86a3841 +size 12139 diff --git a/maze/task3/maps/level6/img/76.png b/maze/task3/maps/level6/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..40d3726d4d7a7ae3cd5d27d4985a75891bb9a300 --- /dev/null +++ b/maze/task3/maps/level6/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984debb25c6da9b5c892afc4264f58238370df8ecea8138c3f5b21a975b61f16 +size 12171 diff --git a/maze/task3/maps/level6/img/77.png b/maze/task3/maps/level6/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..2d311472d6b9ed03b14ea133eb7cd7c3918df152 --- /dev/null +++ b/maze/task3/maps/level6/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e85c78619b3787ad0efd744c8b274e6328cd3e63f966d8283f788071915d5fe +size 14060 diff --git a/maze/task3/maps/level6/img/78.png b/maze/task3/maps/level6/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..99f0e104c248433040862ba173e066eee05d6467 --- /dev/null +++ b/maze/task3/maps/level6/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f62da16b91d3167e7f7b8c304fb5a10b4d553038280ffdb37f611157eb8cf6 +size 11392 diff --git a/maze/task3/maps/level6/img/79.png b/maze/task3/maps/level6/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..f6e73fa282c52b3184d0050274b58ff48c9474df --- /dev/null +++ b/maze/task3/maps/level6/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91778daccf1106d86246eeb52937444e9f09f28f44adffcd05f434d5687d5da6 +size 12981 diff --git a/maze/task3/maps/level6/img/8.png b/maze/task3/maps/level6/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..659918a14120f6ba882f0f96d696a6a85fee7c2c --- /dev/null +++ b/maze/task3/maps/level6/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52966406a78c8aae4b999eb8cd3b063804d2d45f94dcb6386e83005667c03b83 +size 12113 diff --git a/maze/task3/maps/level6/img/80.png b/maze/task3/maps/level6/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..e616221167ccbf855bd5b7d70c1d1d5ed767901c --- /dev/null +++ b/maze/task3/maps/level6/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc7e9dc4e68e12344c1bcd6435d9ab9a8c8a017ced43a666e5a80c98badebdb +size 10400 diff --git a/maze/task3/maps/level6/img/81.png b/maze/task3/maps/level6/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..921857e773dfe2780ff34e681e89a3aa72c7b70d --- /dev/null +++ b/maze/task3/maps/level6/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725d7ff6ff02569f0d466ffc31f946731e9f21fd5eb2cd0dbff2670283301d5a +size 12965 diff --git a/maze/task3/maps/level6/img/82.png b/maze/task3/maps/level6/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e147b0f7dbfc7c6e7b35774ad33301f150598ab4 --- /dev/null +++ b/maze/task3/maps/level6/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c8ca31b6660af9232cc15001a7a011b38ea15987ea17180724ae7b36caa4a4 +size 12977 diff --git a/maze/task3/maps/level6/img/83.png b/maze/task3/maps/level6/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..a69c76cdcf9c6b6b69f9447c657fe4b8bcc85ba2 --- /dev/null +++ b/maze/task3/maps/level6/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1a835286aa28e382972ceb96134ca488bc7eb1bf02f2c7b1f9be48e1f2a673 +size 10474 diff --git a/maze/task3/maps/level6/img/84.png b/maze/task3/maps/level6/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..b73a7b59508c51d0aa76e1f6adaa421bb16c4670 --- /dev/null +++ b/maze/task3/maps/level6/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31aa1166d1f30cc5a29e6667d3c13d10ad49f13d50959070a133fb0cc88d45f +size 11337 diff --git a/maze/task3/maps/level6/img/85.png b/maze/task3/maps/level6/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..72c996b248dc13bad78642de91fb81aa45d11b0e --- /dev/null +++ b/maze/task3/maps/level6/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498144531c8481ecfe300db91a9d5153869d5f0ee6d3dba96a76155ccd5e0463 +size 11283 diff --git a/maze/task3/maps/level6/img/86.png b/maze/task3/maps/level6/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..1fc334dca86f543b5f3abf29ebe7a1c0b6d42d01 --- /dev/null +++ b/maze/task3/maps/level6/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0280431ac6986b4cb5cca20422646cdde2992f47694a91e2515aa1a66d9940db +size 12163 diff --git a/maze/task3/maps/level6/img/87.png b/maze/task3/maps/level6/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..f21902434e86abff435732cfccd37c78cf2de4ec --- /dev/null +++ b/maze/task3/maps/level6/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce4d77108c52df183bc2c7ad723d83048465f91d15518527f3b0fd7ee27fc4a +size 12141 diff --git a/maze/task3/maps/level6/img/88.png b/maze/task3/maps/level6/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..f61ce46130882ed7f0e69802804df0358041f45b --- /dev/null +++ b/maze/task3/maps/level6/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef9c0f931634a2d7408f0ffcd4b4f0d62c563f8321609dbc5726f5e3ae7d4f8 +size 11268 diff --git a/maze/task3/maps/level6/img/89.png b/maze/task3/maps/level6/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..cf3c11b2256e41ba8283395a2f1d6c744d816e6f --- /dev/null +++ b/maze/task3/maps/level6/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ba948575eded0b80864733466863f62d748779b161967176da1edc8f7bd27b +size 13762 diff --git a/maze/task3/maps/level6/img/9.png b/maze/task3/maps/level6/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ac79a4f95aa84e60a0354200384d4ae2451be3e7 --- /dev/null +++ b/maze/task3/maps/level6/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbe91419d58d9af569c6dd6eedd709900e099c1b3ba21a7c4b8dc1549e30cc2 +size 11406 diff --git a/maze/task3/maps/level6/img/90.png b/maze/task3/maps/level6/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..66e80cce1c48cd7cb7ebe1435dfb6fb935b9f4ee --- /dev/null +++ b/maze/task3/maps/level6/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0409adde66a90fc0186857f4ce073c3b4c7ec48e2de5c7d1696f43ff46283785 +size 12004 diff --git a/maze/task3/maps/level6/img/91.png b/maze/task3/maps/level6/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..1458609391b78f226462ffa4634b8273bfad2b1d --- /dev/null +++ b/maze/task3/maps/level6/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658301b72b2e1ba14e9c05208214ba03e7517658369591307ed4755c18da9e9a +size 12229 diff --git a/maze/task3/maps/level6/img/92.png b/maze/task3/maps/level6/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..e4a1857459c1f6aa915d42a85040a21ced25b27b --- /dev/null +++ b/maze/task3/maps/level6/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92aa78868af3d620bb439519afce387ada3c705f51833d8e792b627f2f85f3c +size 12299 diff --git a/maze/task3/maps/level6/img/93.png b/maze/task3/maps/level6/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..013a5d40f4e496ab5dbc40a79facc8a4847ab2ec --- /dev/null +++ b/maze/task3/maps/level6/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a28315cbd0a823af26ae8d4587b853d8437a750a2702478c3b8e5afbae5dad +size 11369 diff --git a/maze/task3/maps/level6/img/94.png b/maze/task3/maps/level6/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..50316b6e0bb97fdf61d5931db6bed0a8d4ce7202 --- /dev/null +++ b/maze/task3/maps/level6/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cedcced00ce0458ccf06e426665d241cab17c072eeaf0c158c3595bc91b0d3e +size 11308 diff --git a/maze/task3/maps/level6/img/95.png b/maze/task3/maps/level6/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..b0bc4affef736422485cfb9cc196fdf6e01e1e62 --- /dev/null +++ b/maze/task3/maps/level6/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f633a7fc20594863dc8990baad5b9a697919a3df17f1133bb5aaab14b9e2ee89 +size 12090 diff --git a/maze/task3/maps/level6/img/96.png b/maze/task3/maps/level6/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..b42a2ff21f09ab7d1250e2058531ace802ed60ef --- /dev/null +++ b/maze/task3/maps/level6/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ded45183d7ff9280556eeefb0c760c25140bf3c026d84bfaa7a1770aa577ec0 +size 10429 diff --git a/maze/task3/maps/level6/img/97.png b/maze/task3/maps/level6/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..26094ad83fc593a3137c2743282c49c2c98d6140 --- /dev/null +++ b/maze/task3/maps/level6/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2962b4d0e16131adc7764c758456b440a6663d63476e8575e2a46f0f2205f5 +size 13125 diff --git a/maze/task3/maps/level6/img/98.png b/maze/task3/maps/level6/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..ebae2fb5e574fe2d9487564f31ef0056b088e72c --- /dev/null +++ b/maze/task3/maps/level6/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36f8d632c2d825f000cf2df9619b57357ce929457796128b4d14bd7c89bf323 +size 11348 diff --git a/maze/task3/maps/level6/img/99.png b/maze/task3/maps/level6/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..b963884b391ed08c69205dd889958401a1fb3bd1 --- /dev/null +++ b/maze/task3/maps/level6/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942a638cb9ac97faf4c11fa290b8560c42c1a18466bb3eac74e68caf4f8bfd71 +size 13277 diff --git a/maze/task3/maps/level6/question/0.txt b/maze/task3/maps/level6/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..578cb9da56bc104ae03d2efe0f612533b4ea5350 --- /dev/null +++ b/maze/task3/maps/level6/question/0.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | _ | # | +| Row 5 | _ | _ | _ | # | _ | @ | +| Row 6 | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/1.txt b/maze/task3/maps/level6/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3863a4b7fbed3a3b2948c61675ced0d25760180e --- /dev/null +++ b/maze/task3/maps/level6/question/1.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | # | @ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | @ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/10.txt b/maze/task3/maps/level6/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..3228b10faa68f7cd247322917297d92d04bc7857 --- /dev/null +++ b/maze/task3/maps/level6/question/10.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/11.txt b/maze/task3/maps/level6/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8111178c627ccdc6ab1e9d207bdc9b41f9f0773 --- /dev/null +++ b/maze/task3/maps/level6/question/11.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | +| Row 6 | # | _ | _ | # | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/12.txt b/maze/task3/maps/level6/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..31e4dbab0aa070febd80708ae778f9d01f9ab5d7 --- /dev/null +++ b/maze/task3/maps/level6/question/12.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | * | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | * | _ | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task3/maps/level6/question/13.txt b/maze/task3/maps/level6/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..87165cbfc6a27d4ce0058f9beb4132cf4c91ec78 --- /dev/null +++ b/maze/task3/maps/level6/question/13.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | # | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | * | # | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/14.txt b/maze/task3/maps/level6/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..581e194a25af8db1e1499005b6e9d8b00dc2ab8a --- /dev/null +++ b/maze/task3/maps/level6/question/14.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | * | +| Row 4 | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | @ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | # | _ | @ | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | * | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | * | # | +| Row 3 | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | * | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | # | _ | +| Row 5 | # | # | _ | _ | # | _ | +| Row 6 | # | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/15.txt b/maze/task3/maps/level6/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..544e9bddd18e5505d1fe7538e0d713186713cd14 --- /dev/null +++ b/maze/task3/maps/level6/question/15.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | # | +| Row 3 | # | _ | # | _ | _ | _ | +| Row 4 | * | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/16.txt b/maze/task3/maps/level6/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a40bde6a20bade1b6db6294be4a63e2be3c3d9 --- /dev/null +++ b/maze/task3/maps/level6/question/16.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | # | _ | _ | # | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | _ | _ | _ | # | _ | _ | +| Row 8 | * | _ | _ | @ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/17.txt b/maze/task3/maps/level6/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..e71a91b7cb1dd63b67a501110f3fcd7613ade297 --- /dev/null +++ b/maze/task3/maps/level6/question/17.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | * | @ | +| Row 3 | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | * | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | @ | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | * | _ | diff --git a/maze/task3/maps/level6/question/18.txt b/maze/task3/maps/level6/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b1bb79401dc2f5a98ed6fe890854ad42e359842 --- /dev/null +++ b/maze/task3/maps/level6/question/18.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | * | # | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | # | # | +| Row 7 | # | _ | _ | * | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | @ | _ | _ | # | _ | +| Row 6 | _ | * | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task3/maps/level6/question/19.txt b/maze/task3/maps/level6/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..909899f6818f1d27c3cdbbe5265a5ea0c492c6ce --- /dev/null +++ b/maze/task3/maps/level6/question/19.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | # | +| Row 2 | @ | _ | _ | * | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | _ | # | _ | # | # | +| Row 5 | _ | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | * | # | # | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | _ | @ | # | _ | +| Row 6 | _ | _ | _ | * | _ | _ | diff --git a/maze/task3/maps/level6/question/2.txt b/maze/task3/maps/level6/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc19656e7e445f700c4a5de46f23619cb22765b0 --- /dev/null +++ b/maze/task3/maps/level6/question/2.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | _ | +| Row 6 | _ | _ | # | # | @ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/20.txt b/maze/task3/maps/level6/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc8016469c7a3d935be6356f9c7e3f744b608a91 --- /dev/null +++ b/maze/task3/maps/level6/question/20.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | * | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | * | +| Row 2 | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/21.txt b/maze/task3/maps/level6/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..9abe914b8a8f457151f1fa956dfbe0231b3903bd --- /dev/null +++ b/maze/task3/maps/level6/question/21.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | @ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | @ | +| Row 4 | _ | # | _ | _ | # | _ | +| Row 5 | _ | _ | # | _ | _ | # | +| Row 6 | _ | * | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | _ | _ | +| Row 3 | @ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/22.txt b/maze/task3/maps/level6/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..d67792a0d93ac68a65399c8027851df96abff534 --- /dev/null +++ b/maze/task3/maps/level6/question/22.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | @ | _ | # | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | # | _ | _ | * | _ | # | _ | _ | +| Row 8 | _ | # | # | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | * | _ | _ | +| Row 5 | _ | _ | _ | # | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/23.txt b/maze/task3/maps/level6/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5895e0ca218377b6e609fc026d538396fdce7ab --- /dev/null +++ b/maze/task3/maps/level6/question/23.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | diff --git a/maze/task3/maps/level6/question/24.txt b/maze/task3/maps/level6/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ca9ee682ad1ef2ac994d1165999ece97a928255 --- /dev/null +++ b/maze/task3/maps/level6/question/24.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | @ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | # | @ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | * | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | _ | * | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | @ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/25.txt b/maze/task3/maps/level6/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..15b75ecdc426af95b15b2947354223534a5a6b63 --- /dev/null +++ b/maze/task3/maps/level6/question/25.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | _ | @ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | * | _ | +| Row 4 | _ | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | @ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/26.txt b/maze/task3/maps/level6/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..af57014becc0ab9646b54f78bf818a27e95bf7ea --- /dev/null +++ b/maze/task3/maps/level6/question/26.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | # | +| Row 5 | _ | # | _ | _ | * | # | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/27.txt b/maze/task3/maps/level6/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..848d07572fef6683dae18dbae0e1291fd5e85adf --- /dev/null +++ b/maze/task3/maps/level6/question/27.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | @ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | # | * | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/28.txt b/maze/task3/maps/level6/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2ecf6c1b0741f885e4d97629d383460da114d82 --- /dev/null +++ b/maze/task3/maps/level6/question/28.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | _ | @ | # | _ | +| Row 6 | _ | _ | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | @ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/29.txt b/maze/task3/maps/level6/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff734d88e0ff980b98df682efda4e8d9a7ef4d63 --- /dev/null +++ b/maze/task3/maps/level6/question/29.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | @ | _ | +| Row 4 | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | @ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | @ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/3.txt b/maze/task3/maps/level6/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..20cef7fd746a2b81182aeb801efbdd8f5535ddcd --- /dev/null +++ b/maze/task3/maps/level6/question/3.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | # | _ | # | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | # | +| Row 6 | # | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | @ | _ | # | _ | +| Row 6 | # | * | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | # | * | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task3/maps/level6/question/30.txt b/maze/task3/maps/level6/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..96c93a09dba1b32b874240b1ac9588537a2096ee --- /dev/null +++ b/maze/task3/maps/level6/question/30.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | * | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | # | _ | +| Row 5 | # | # | _ | _ | # | _ | +| Row 6 | # | # | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | # | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | _ | _ | +| Row 7 | _ | _ | @ | _ | # | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/31.txt b/maze/task3/maps/level6/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..e255f29918f08c9187d21a7790799587928888b9 --- /dev/null +++ b/maze/task3/maps/level6/question/31.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | @ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | # | +| Row 5 | _ | # | _ | _ | * | # | +| Row 6 | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task3/maps/level6/question/32.txt b/maze/task3/maps/level6/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..21dff9904ed361f8057850fbd65ed9ebdfa1c6ef --- /dev/null +++ b/maze/task3/maps/level6/question/32.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | diff --git a/maze/task3/maps/level6/question/33.txt b/maze/task3/maps/level6/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..1392fc964f06edd36f4e1316edc7959de42e0ff9 --- /dev/null +++ b/maze/task3/maps/level6/question/33.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | @ | _ | +| Row 5 | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | _ | * | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | @ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | # | +| Row 3 | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | * | @ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/34.txt b/maze/task3/maps/level6/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa886d963b09a06b19ef426a59de6b866686d78c --- /dev/null +++ b/maze/task3/maps/level6/question/34.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | # | _ | +| Row 5 | _ | _ | _ | # | @ | # | +| Row 6 | _ | _ | * | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/35.txt b/maze/task3/maps/level6/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b739b04aebe3a29d40ac1994327c6a96a257864 --- /dev/null +++ b/maze/task3/maps/level6/question/35.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | @ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/36.txt b/maze/task3/maps/level6/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dfffba56a2817101f3a9b53d70d10d9b5bec8c3 --- /dev/null +++ b/maze/task3/maps/level6/question/36.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | # | +| Row 5 | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | # | _ | _ | * | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | * | +| Row 6 | # | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | # | _ | # | diff --git a/maze/task3/maps/level6/question/37.txt b/maze/task3/maps/level6/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e99c820c6498c7f40240b8afb8f4744dd57cfae --- /dev/null +++ b/maze/task3/maps/level6/question/37.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | * | # | # | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | @ | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/38.txt b/maze/task3/maps/level6/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e82cf0b40612fc52fd4cad247085bf8c3933846 --- /dev/null +++ b/maze/task3/maps/level6/question/38.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | # | +| Row 6 | # | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | @ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | # | _ | _ | diff --git a/maze/task3/maps/level6/question/39.txt b/maze/task3/maps/level6/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..50dec78c7cabc56d25f895922902bfbe4a26c829 --- /dev/null +++ b/maze/task3/maps/level6/question/39.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | * | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task3/maps/level6/question/4.txt b/maze/task3/maps/level6/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..0848e1a0480e63dd7651296025cd9bf498f42bdb --- /dev/null +++ b/maze/task3/maps/level6/question/4.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | @ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/40.txt b/maze/task3/maps/level6/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3240bbff446216cae17cb5eb4759c9a36d52aa2 --- /dev/null +++ b/maze/task3/maps/level6/question/40.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | @ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/41.txt b/maze/task3/maps/level6/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae47590653726ef13c1f593dffd6b1d8075ed670 --- /dev/null +++ b/maze/task3/maps/level6/question/41.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | # | @ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | @ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/42.txt b/maze/task3/maps/level6/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..62dbf9f5b8f5d0aee15996034ba96e74bd3d0cc3 --- /dev/null +++ b/maze/task3/maps/level6/question/42.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | * | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | @ | _ | +| Row 7 | # | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | +| Row 6 | # | _ | _ | # | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | diff --git a/maze/task3/maps/level6/question/43.txt b/maze/task3/maps/level6/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b95603ac2b3e84748b3e0a091e89a882c33a741 --- /dev/null +++ b/maze/task3/maps/level6/question/43.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | _ | # | _ | * | _ | +| Row 7 | _ | _ | _ | # | _ | # | # | _ | +| Row 8 | _ | # | # | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/44.txt b/maze/task3/maps/level6/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cd3ce8a632d65ecf130f87dedc22faf22277824 --- /dev/null +++ b/maze/task3/maps/level6/question/44.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | * | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | * | # | _ | +| Row 3 | @ | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/45.txt b/maze/task3/maps/level6/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..95011dd97b4ca5d9e7c3825a2b4d89b12d0dca70 --- /dev/null +++ b/maze/task3/maps/level6/question/45.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | * | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | @ | _ | +| Row 5 | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/46.txt b/maze/task3/maps/level6/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3b16e2a7705d0525a9ee7e35c04ba36a4a0b3b2 --- /dev/null +++ b/maze/task3/maps/level6/question/46.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | * | +| Row 2 | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | # | _ | _ | * | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | # | _ | _ | # | _ | +| Row 7 | @ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task3/maps/level6/question/47.txt b/maze/task3/maps/level6/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..20800ff10e6eb02a2fa5624fed0bf01dd0a14c01 --- /dev/null +++ b/maze/task3/maps/level6/question/47.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level6/question/48.txt b/maze/task3/maps/level6/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5591c45a59a4ff7d95f257aefede2852e882747f --- /dev/null +++ b/maze/task3/maps/level6/question/48.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | * | @ | # | _ | +| Row 6 | # | _ | # | _ | _ | _ | # | +| Row 7 | # | # | # | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | * | _ | _ | +| Row 5 | _ | _ | _ | # | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/49.txt b/maze/task3/maps/level6/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8bc87c655a9cb8d07879a35cc7b553729a7b845 --- /dev/null +++ b/maze/task3/maps/level6/question/49.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/5.txt b/maze/task3/maps/level6/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dff8f13bf7d4cea137e51e72a64a2619c91e80a --- /dev/null +++ b/maze/task3/maps/level6/question/5.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | _ | # | _ | * | _ | +| Row 7 | _ | _ | _ | # | _ | # | # | _ | +| Row 8 | _ | # | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | @ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task3/maps/level6/question/50.txt b/maze/task3/maps/level6/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b3efc2b91a00782e66aa1143e82a01b3fe74482 --- /dev/null +++ b/maze/task3/maps/level6/question/50.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | _ | @ | # | _ | +| Row 6 | _ | _ | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | @ | _ | # | +| Row 6 | # | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level6/question/51.txt b/maze/task3/maps/level6/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ab532e03aa9f606f3dc958441da14999001459a --- /dev/null +++ b/maze/task3/maps/level6/question/51.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | @ | * | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | # | +| Row 5 | _ | # | _ | _ | * | # | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/52.txt b/maze/task3/maps/level6/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a1a19222250a146871e9e3d88d3a9d701735420 --- /dev/null +++ b/maze/task3/maps/level6/question/52.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | # | @ | +| Row 3 | # | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | * | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/53.txt b/maze/task3/maps/level6/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..7606e85e142ad18d921378229443c3cb5beed072 --- /dev/null +++ b/maze/task3/maps/level6/question/53.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | _ | _ | # | * | _ | diff --git a/maze/task3/maps/level6/question/54.txt b/maze/task3/maps/level6/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fd246ba24ab0488ee419694656d678f2d3c075b --- /dev/null +++ b/maze/task3/maps/level6/question/54.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | * | _ | +| Row 6 | _ | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | @ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/55.txt b/maze/task3/maps/level6/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8f1d13db25e36e580a4f5a3c2302d7ff27e969c --- /dev/null +++ b/maze/task3/maps/level6/question/55.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | * | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | @ | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | * | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | @ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task3/maps/level6/question/56.txt b/maze/task3/maps/level6/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..f251f07fa10840bd01b2a92b4e042b5911015c97 --- /dev/null +++ b/maze/task3/maps/level6/question/56.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | * | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | @ | _ | # | _ | _ | _ | +| Row 4 | # | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | # | +| Row 3 | # | _ | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | # | diff --git a/maze/task3/maps/level6/question/57.txt b/maze/task3/maps/level6/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..71e7b90b745f488ef94b12e5d9b71f3d53be1c5c --- /dev/null +++ b/maze/task3/maps/level6/question/57.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | * | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | +| Row 6 | * | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/58.txt b/maze/task3/maps/level6/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..35463710e7d5a8883ac1714e7abd58379c1274df --- /dev/null +++ b/maze/task3/maps/level6/question/58.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | # | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | # | * | @ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | # | +| Row 3 | # | _ | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | # | diff --git a/maze/task3/maps/level6/question/59.txt b/maze/task3/maps/level6/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..93bbda1bf23341de83ee09c1d6d74e3aa4b6353d --- /dev/null +++ b/maze/task3/maps/level6/question/59.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | @ | # | * | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | +| Row 5 | _ | # | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | * | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/6.txt b/maze/task3/maps/level6/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..01c3544ad741c0e404e8ebf3a952e858a9422c0d --- /dev/null +++ b/maze/task3/maps/level6/question/6.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | # | +| Row 3 | _ | # | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | # | @ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | # | @ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/60.txt b/maze/task3/maps/level6/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2afaf6471cdfc416c492c5531fc72e4638bb689 --- /dev/null +++ b/maze/task3/maps/level6/question/60.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task3/maps/level6/question/61.txt b/maze/task3/maps/level6/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..029b34508243af3f025ec947d6554c2bc93d186e --- /dev/null +++ b/maze/task3/maps/level6/question/61.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | _ | +| Row 6 | _ | _ | # | # | @ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | @ | * | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/62.txt b/maze/task3/maps/level6/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..40a35ffd3fbb4c2bac5dc121a0e4711e7b055e11 --- /dev/null +++ b/maze/task3/maps/level6/question/62.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | _ | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | # | +| Row 5 | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/63.txt b/maze/task3/maps/level6/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..f50f29980ef1e0f843aaf46e8e123fa13f2c34e6 --- /dev/null +++ b/maze/task3/maps/level6/question/63.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | _ | _ | +| Row 3 | # | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | * | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | * | _ | _ | +| Row 5 | _ | _ | _ | # | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/64.txt b/maze/task3/maps/level6/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f1b48ef9dd818c5cf2c95f74c31040c770ffd03 --- /dev/null +++ b/maze/task3/maps/level6/question/64.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | # | _ | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | # | _ | _ | # | _ | +| Row 2 | # | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/65.txt b/maze/task3/maps/level6/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1d31042d7dd07e63c7ad2064c3c3a95ac9dfde3 --- /dev/null +++ b/maze/task3/maps/level6/question/65.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level6/question/66.txt b/maze/task3/maps/level6/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..c70dc7d3c3f01f3abde4838869be58ff6f2bf276 --- /dev/null +++ b/maze/task3/maps/level6/question/66.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | _ | +| Row 6 | _ | _ | # | # | @ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | @ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | * | +| Row 7 | _ | _ | # | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/67.txt b/maze/task3/maps/level6/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..d883a040a5a7ac51895e749ccca6738c2ba1d57f --- /dev/null +++ b/maze/task3/maps/level6/question/67.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | @ | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | # | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | # | # | _ | _ | # | _ | * | diff --git a/maze/task3/maps/level6/question/68.txt b/maze/task3/maps/level6/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..86ab41c06d8203a1bc8a4581c8d0ed9f9a16f5d4 --- /dev/null +++ b/maze/task3/maps/level6/question/68.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | # | _ | +| Row 3 | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | @ | _ | # | _ | +| Row 6 | # | * | _ | # | _ | _ | diff --git a/maze/task3/maps/level6/question/69.txt b/maze/task3/maps/level6/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..0471208f860bb162c023e1a1753e75dfa7cad42a --- /dev/null +++ b/maze/task3/maps/level6/question/69.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | # | * | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | # | +| Row 3 | # | _ | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | # | diff --git a/maze/task3/maps/level6/question/7.txt b/maze/task3/maps/level6/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..36bdced339b07fcb69971b886ad762d2813dce65 --- /dev/null +++ b/maze/task3/maps/level6/question/7.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | _ | # | +| Row 5 | _ | _ | _ | # | _ | @ | +| Row 6 | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/70.txt b/maze/task3/maps/level6/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..65ce7776f5558b0c4fd2993493bf4a360192f761 --- /dev/null +++ b/maze/task3/maps/level6/question/70.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | @ | # | * | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | +| Row 5 | _ | # | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | _ | _ | +| Row 2 | * | _ | # | _ | _ | @ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level6/question/71.txt b/maze/task3/maps/level6/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3a92a6dda7489624b88835c35909ebc18de21b8 --- /dev/null +++ b/maze/task3/maps/level6/question/71.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level6/question/72.txt b/maze/task3/maps/level6/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c2f81171bfd5d1087e419978529d50cc565cb08 --- /dev/null +++ b/maze/task3/maps/level6/question/72.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | @ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | # | +| Row 7 | * | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/73.txt b/maze/task3/maps/level6/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..e72b7b428701ec7f38e86e49b536599148c6c7e1 --- /dev/null +++ b/maze/task3/maps/level6/question/73.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | # | * | @ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | _ | * | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | @ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | * | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level6/question/74.txt b/maze/task3/maps/level6/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc4e276d6ab5b5d050fd3be46da39ba950ab416a --- /dev/null +++ b/maze/task3/maps/level6/question/74.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | _ | @ | # | _ | +| Row 6 | _ | _ | _ | * | _ | _ | diff --git a/maze/task3/maps/level6/question/75.txt b/maze/task3/maps/level6/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2ff6a2b9ce77f7724bc334c4429750ca649df9f --- /dev/null +++ b/maze/task3/maps/level6/question/75.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | @ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | # | _ | # | _ | # | # | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | # | _ | @ | +| Row 6 | _ | _ | * | _ | # | # | diff --git a/maze/task3/maps/level6/question/76.txt b/maze/task3/maps/level6/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ddc75ef2c407c6ae60375be370133c6fa51bedb --- /dev/null +++ b/maze/task3/maps/level6/question/76.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | * | # | # | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | # | +| Row 6 | # | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | * | _ | +| Row 6 | _ | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/77.txt b/maze/task3/maps/level6/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..71c9cc9158c0dc801c5f2f4eab991749f2847e91 --- /dev/null +++ b/maze/task3/maps/level6/question/77.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | # | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | # | +| Row 3 | _ | # | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/78.txt b/maze/task3/maps/level6/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4ccfe66a0a278f896e90d6dd400c83945c65f6f --- /dev/null +++ b/maze/task3/maps/level6/question/78.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | # | _ | +| Row 3 | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | _ | _ | +| Row 3 | # | _ | * | diff --git a/maze/task3/maps/level6/question/79.txt b/maze/task3/maps/level6/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf78cfcb41ee66724e77e47475d00d40b754ba1a --- /dev/null +++ b/maze/task3/maps/level6/question/79.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | # | # | +| Row 7 | # | _ | _ | * | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | _ | * | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level6/question/8.txt b/maze/task3/maps/level6/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..07e47738ab3b5049483ab6457da83961b88f2f3a --- /dev/null +++ b/maze/task3/maps/level6/question/8.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | @ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | # | _ | # | _ | # | # | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task3/maps/level6/question/80.txt b/maze/task3/maps/level6/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb3246fb9c36d06a7a70b743914bd2906b306150 --- /dev/null +++ b/maze/task3/maps/level6/question/80.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/81.txt b/maze/task3/maps/level6/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbf728ae6e1bb6468606e36880c025f82a899484 --- /dev/null +++ b/maze/task3/maps/level6/question/81.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | @ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | @ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/82.txt b/maze/task3/maps/level6/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..f62947d877a3dd58b048d541a96312446f30b713 --- /dev/null +++ b/maze/task3/maps/level6/question/82.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | # | _ | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | # | _ | _ | # | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | @ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level6/question/83.txt b/maze/task3/maps/level6/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1fffcc9c4dbdc3722c66f801afdacb89e562e4b --- /dev/null +++ b/maze/task3/maps/level6/question/83.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level6/question/84.txt b/maze/task3/maps/level6/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..c262b033ab4b7d8ae048b067100f9465cb7bc824 --- /dev/null +++ b/maze/task3/maps/level6/question/84.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | * | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task3/maps/level6/question/85.txt b/maze/task3/maps/level6/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..549ad2e05e78cfbcc5fb4239a4056c6d5700deb9 --- /dev/null +++ b/maze/task3/maps/level6/question/85.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | # | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | @ | +| Row 2 | * | _ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/86.txt b/maze/task3/maps/level6/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..86a944021004e66a8395e16694bb3112cec85674 --- /dev/null +++ b/maze/task3/maps/level6/question/86.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | # | _ | _ | # | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | _ | * | diff --git a/maze/task3/maps/level6/question/87.txt b/maze/task3/maps/level6/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..74fc1f55440e85c4dc60b1bf1ce451121f8ca2f6 --- /dev/null +++ b/maze/task3/maps/level6/question/87.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | @ | _ | _ | # | _ | +| Row 6 | _ | * | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | diff --git a/maze/task3/maps/level6/question/88.txt b/maze/task3/maps/level6/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d707dd5815ad35a2bbdb5aa8ff5bd2508ec3785 --- /dev/null +++ b/maze/task3/maps/level6/question/88.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | _ | @ | _ | _ | _ | _ | +| Row 4 | # | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | # | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | * | +| Row 2 | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/89.txt b/maze/task3/maps/level6/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b0379263fda2101c9215c303edcfbdb001f9d99 --- /dev/null +++ b/maze/task3/maps/level6/question/89.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | * | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | @ | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | # | _ | _ | # | _ | +| Row 2 | # | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/9.txt b/maze/task3/maps/level6/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..417331ffe682d6f1f0fa408c683ae3c8bb5daeac --- /dev/null +++ b/maze/task3/maps/level6/question/9.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level6/question/90.txt b/maze/task3/maps/level6/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..e291440040499ceecc006ffc89287f06d426a3c5 --- /dev/null +++ b/maze/task3/maps/level6/question/90.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | * | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | @ | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level6/question/91.txt b/maze/task3/maps/level6/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..853b8698f84e8f43b698b503c850ba375eb0cfc3 --- /dev/null +++ b/maze/task3/maps/level6/question/91.txt @@ -0,0 +1,31 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | # | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | * | _ | # | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | @ | +| Row 3 | # | _ | _ | diff --git a/maze/task3/maps/level6/question/92.txt b/maze/task3/maps/level6/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..e19b46037e7924d92ed49b21d7d6857a6d433bdf --- /dev/null +++ b/maze/task3/maps/level6/question/92.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | @ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | # | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/93.txt b/maze/task3/maps/level6/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6fbe420a56947b3af746862456ea0cdda46a278 --- /dev/null +++ b/maze/task3/maps/level6/question/93.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | * | # | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | # | * | _ | _ | diff --git a/maze/task3/maps/level6/question/94.txt b/maze/task3/maps/level6/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c49b16803ca692b39169ccc44d5c009debb0f94 --- /dev/null +++ b/maze/task3/maps/level6/question/94.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | @ | _ | # | _ | +| Row 6 | # | * | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | * | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/95.txt b/maze/task3/maps/level6/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f3594d51f96f19fffd9a80f222fb5a3dcb32dac --- /dev/null +++ b/maze/task3/maps/level6/question/95.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | # | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | # | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/96.txt b/maze/task3/maps/level6/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecedb4cdd57aed482f4f9085d22c6f5e6bc72c7c --- /dev/null +++ b/maze/task3/maps/level6/question/96.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | @ | +| Row 4 | _ | # | _ | _ | # | _ | +| Row 5 | _ | _ | # | _ | _ | # | +| Row 6 | _ | * | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | # | @ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level6/question/97.txt b/maze/task3/maps/level6/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fdb64fee3f1d6078a6d774d5d0a4da944c11f8e --- /dev/null +++ b/maze/task3/maps/level6/question/97.txt @@ -0,0 +1,32 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | _ | * | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | @ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | * | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | diff --git a/maze/task3/maps/level6/question/98.txt b/maze/task3/maps/level6/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fc5e89254820adce9d1282e694fad7b36f03941 --- /dev/null +++ b/maze/task3/maps/level6/question/98.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | @ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | * | # | # | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task3/maps/level6/question/99.txt b/maze/task3/maps/level6/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6f8e12fc408df4a0920a4328e00919a3d567bf1 --- /dev/null +++ b/maze/task3/maps/level6/question/99.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | @ | +| Row 4 | _ | # | _ | _ | # | _ | +| Row 5 | _ | _ | # | _ | _ | # | +| Row 6 | _ | * | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | * | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | _ | @ | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | * | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/answer/0.txt b/maze/task3/maps/level7/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..c101ba7eb74520557c3f19b4394178ccb5f0cc1d --- /dev/null +++ b/maze/task3/maps/level7/answer/0.txt @@ -0,0 +1,5 @@ +4-30 +7-31 +8-2 +7-0 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/1.txt b/maze/task3/maps/level7/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4b521765cdcb9745358f5d02fba39fd8b5920c4 --- /dev/null +++ b/maze/task3/maps/level7/answer/1.txt @@ -0,0 +1,5 @@ +8-72 +7-1 +6-12 +7-7 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/10.txt b/maze/task3/maps/level7/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c6f980fe17ca65a45b7d7fb7f1e4087efac7230 --- /dev/null +++ b/maze/task3/maps/level7/answer/10.txt @@ -0,0 +1,5 @@ +7-27 +5-14 +7-10 +6-8 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/11.txt b/maze/task3/maps/level7/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..034c2ddf1a6a386e6edf9217f13f4ea727f3a390 --- /dev/null +++ b/maze/task3/maps/level7/answer/11.txt @@ -0,0 +1,5 @@ +7-11 +7-15 +3-13 +5-25 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/12.txt b/maze/task3/maps/level7/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc218fd230922642df4c26bdef92a51d081bd666 --- /dev/null +++ b/maze/task3/maps/level7/answer/12.txt @@ -0,0 +1,5 @@ +8-30 +6-11 +7-40 +7-12 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/13.txt b/maze/task3/maps/level7/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..38c8d7b55c9602c67c730571ad0bc4aec73c8088 --- /dev/null +++ b/maze/task3/maps/level7/answer/13.txt @@ -0,0 +1,5 @@ +7-13 +3-71 +6-38 +7-51 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/14.txt b/maze/task3/maps/level7/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..030b1ceee40a81c9dc09b4c9f4499144428fb175 --- /dev/null +++ b/maze/task3/maps/level7/answer/14.txt @@ -0,0 +1,5 @@ +7-62 +8-35 +3-79 +7-14 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/15.txt b/maze/task3/maps/level7/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..1802cdd6b4af1346cb2b004c97d3d66b2a33de0b --- /dev/null +++ b/maze/task3/maps/level7/answer/15.txt @@ -0,0 +1,5 @@ +7-15 +5-99 +7-57 +8-61 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/16.txt b/maze/task3/maps/level7/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..43db5816ea4350cef21412b801e461b3214aa6f1 --- /dev/null +++ b/maze/task3/maps/level7/answer/16.txt @@ -0,0 +1,5 @@ +8-95 +7-57 +4-90 +7-16 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/17.txt b/maze/task3/maps/level7/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..69d341f2c6194f2f55da25cdbfafac8604405c5a --- /dev/null +++ b/maze/task3/maps/level7/answer/17.txt @@ -0,0 +1,5 @@ +8-41 +4-65 +7-85 +7-17 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/18.txt b/maze/task3/maps/level7/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8bfd4ddc5dcbddc58784e073f99d6d1145e7829 --- /dev/null +++ b/maze/task3/maps/level7/answer/18.txt @@ -0,0 +1,5 @@ +6-61 +7-18 +7-81 +8-96 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/19.txt b/maze/task3/maps/level7/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..079e9821a8e086d9c5c4e040d0521fe019375fbd --- /dev/null +++ b/maze/task3/maps/level7/answer/19.txt @@ -0,0 +1,5 @@ +3-18 +7-14 +7-19 +8-63 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/2.txt b/maze/task3/maps/level7/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eb97c8ef3fed4ee2fd0afe7204bb5e92235e36b --- /dev/null +++ b/maze/task3/maps/level7/answer/2.txt @@ -0,0 +1,5 @@ +7-54 +7-2 +3-55 +8-35 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/20.txt b/maze/task3/maps/level7/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..76bb7a12857beaf0e460738c8699ded84eec02e5 --- /dev/null +++ b/maze/task3/maps/level7/answer/20.txt @@ -0,0 +1,5 @@ +5-17 +7-20 +7-65 +8-13 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/21.txt b/maze/task3/maps/level7/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..e89a6753f1d5c028fc2ad569be44b6f687198ab2 --- /dev/null +++ b/maze/task3/maps/level7/answer/21.txt @@ -0,0 +1,5 @@ +3-60 +6-93 +7-21 +7-73 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/22.txt b/maze/task3/maps/level7/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..b23ad48d753dbabf498a3e10699af80a9a4ce583 --- /dev/null +++ b/maze/task3/maps/level7/answer/22.txt @@ -0,0 +1,5 @@ +5-91 +7-22 +7-69 +4-1 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/23.txt b/maze/task3/maps/level7/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b734adb30be616c710bde3268139feb0dd4d7cb --- /dev/null +++ b/maze/task3/maps/level7/answer/23.txt @@ -0,0 +1,5 @@ +8-59 +3-36 +7-23 +7-1 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/24.txt b/maze/task3/maps/level7/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba6a1204149c451592c29c6ccb1b6cecec39a547 --- /dev/null +++ b/maze/task3/maps/level7/answer/24.txt @@ -0,0 +1,5 @@ +7-24 +8-72 +3-51 +7-14 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/25.txt b/maze/task3/maps/level7/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..07ddf428b9883e9bd323a8771f35196f0ab8c00f --- /dev/null +++ b/maze/task3/maps/level7/answer/25.txt @@ -0,0 +1,5 @@ +5-11 +6-78 +7-25 +7-64 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/26.txt b/maze/task3/maps/level7/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c8aeefc0e2e78a1d362803bc86f9b221582a717 --- /dev/null +++ b/maze/task3/maps/level7/answer/26.txt @@ -0,0 +1,5 @@ +7-26 +7-79 +3-21 +4-7 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/27.txt b/maze/task3/maps/level7/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..138cb5c3c5e4ea883b0154ed0d6b935a52646653 --- /dev/null +++ b/maze/task3/maps/level7/answer/27.txt @@ -0,0 +1,5 @@ +7-20 +7-27 +3-96 +5-25 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/28.txt b/maze/task3/maps/level7/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..6174c4f1c29711e5d72d1dccc4d850a799faa0ac --- /dev/null +++ b/maze/task3/maps/level7/answer/28.txt @@ -0,0 +1,5 @@ +4-64 +7-89 +3-45 +7-28 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/29.txt b/maze/task3/maps/level7/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f4251121f4a2ab89ab79e30edaca1db056882e1 --- /dev/null +++ b/maze/task3/maps/level7/answer/29.txt @@ -0,0 +1,5 @@ +7-29 +8-36 +4-73 +7-32 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/3.txt b/maze/task3/maps/level7/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..08e5e859d3b9a33cef0985160810f7e962504a28 --- /dev/null +++ b/maze/task3/maps/level7/answer/3.txt @@ -0,0 +1,5 @@ +7-3 +5-99 +6-43 +7-75 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/30.txt b/maze/task3/maps/level7/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..7731dbf2a8ce1584fcc212755315dbe38311d192 --- /dev/null +++ b/maze/task3/maps/level7/answer/30.txt @@ -0,0 +1,5 @@ +5-2 +7-79 +7-30 +3-55 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/31.txt b/maze/task3/maps/level7/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..36e2ff373db5bbbff2d7cbb0910a22616a1d9803 --- /dev/null +++ b/maze/task3/maps/level7/answer/31.txt @@ -0,0 +1,5 @@ +7-31 +6-8 +8-23 +7-27 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/32.txt b/maze/task3/maps/level7/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe3e66b76a2b6c9d4c743249555144668f1df441 --- /dev/null +++ b/maze/task3/maps/level7/answer/32.txt @@ -0,0 +1,5 @@ +7-66 +7-32 +6-45 +8-45 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/33.txt b/maze/task3/maps/level7/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..754ae0ca81a92087130621290b3e67f7cd6c5368 --- /dev/null +++ b/maze/task3/maps/level7/answer/33.txt @@ -0,0 +1,5 @@ +4-7 +7-8 +8-46 +7-33 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/34.txt b/maze/task3/maps/level7/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa9811ead7cb84c459d660b6c511a26a8c108f41 --- /dev/null +++ b/maze/task3/maps/level7/answer/34.txt @@ -0,0 +1,5 @@ +7-89 +4-32 +8-19 +7-34 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/35.txt b/maze/task3/maps/level7/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9d38b070c0de732715a59fa6db8a150ccec30aa --- /dev/null +++ b/maze/task3/maps/level7/answer/35.txt @@ -0,0 +1,5 @@ +7-33 +6-60 +7-35 +3-39 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/36.txt b/maze/task3/maps/level7/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..38fb8dce629ca494622d10dcf66bffc697df8a0b --- /dev/null +++ b/maze/task3/maps/level7/answer/36.txt @@ -0,0 +1,5 @@ +4-84 +7-99 +6-4 +7-36 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/37.txt b/maze/task3/maps/level7/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..053596ebf28ad644c20c65e4f0f4bc1cc16293d3 --- /dev/null +++ b/maze/task3/maps/level7/answer/37.txt @@ -0,0 +1,5 @@ +7-37 +8-16 +7-64 +3-29 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/38.txt b/maze/task3/maps/level7/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..0037f0510f1dc9f93b358cbb7a8a81eeffaf2406 --- /dev/null +++ b/maze/task3/maps/level7/answer/38.txt @@ -0,0 +1,5 @@ +7-38 +7-43 +8-25 +6-66 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/39.txt b/maze/task3/maps/level7/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..a857774d87dfef86145648eb96782f43b2159387 --- /dev/null +++ b/maze/task3/maps/level7/answer/39.txt @@ -0,0 +1,5 @@ +4-73 +7-22 +6-14 +7-39 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/4.txt b/maze/task3/maps/level7/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4576b556fce763612d02b89bef6044bfeb0ef51 --- /dev/null +++ b/maze/task3/maps/level7/answer/4.txt @@ -0,0 +1,5 @@ +7-4 +6-88 +7-47 +4-66 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/40.txt b/maze/task3/maps/level7/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..94f7a5c03267a817365cf77f12ba65eef8eb3a8a --- /dev/null +++ b/maze/task3/maps/level7/answer/40.txt @@ -0,0 +1,5 @@ +7-40 +8-51 +6-70 +7-54 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/41.txt b/maze/task3/maps/level7/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..debef1fa99119d2541f2c346f042682990a9b989 --- /dev/null +++ b/maze/task3/maps/level7/answer/41.txt @@ -0,0 +1,5 @@ +6-54 +7-7 +7-41 +4-16 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/42.txt b/maze/task3/maps/level7/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d89e624bf9013bfd32e8cfdde500ae8831ed684 --- /dev/null +++ b/maze/task3/maps/level7/answer/42.txt @@ -0,0 +1,5 @@ +8-81 +7-25 +7-42 +6-12 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/43.txt b/maze/task3/maps/level7/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..effc9865ba9e8fd114815b3a8bf0521aa6236e47 --- /dev/null +++ b/maze/task3/maps/level7/answer/43.txt @@ -0,0 +1,5 @@ +7-43 +8-33 +7-99 +6-65 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/44.txt b/maze/task3/maps/level7/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2f3503fe4e0b7d85f668354b9da1716d3ae0b65 --- /dev/null +++ b/maze/task3/maps/level7/answer/44.txt @@ -0,0 +1,5 @@ +7-44 +4-86 +7-3 +5-86 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/45.txt b/maze/task3/maps/level7/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..cca76b353467cc7a0741c99f0c1e3e6fee6e1bf6 --- /dev/null +++ b/maze/task3/maps/level7/answer/45.txt @@ -0,0 +1,5 @@ +7-36 +7-45 +6-96 +5-12 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/46.txt b/maze/task3/maps/level7/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..42e92d421ebe4fd4538560e986472a7b52e48ea2 --- /dev/null +++ b/maze/task3/maps/level7/answer/46.txt @@ -0,0 +1,5 @@ +6-3 +7-46 +8-61 +7-75 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/47.txt b/maze/task3/maps/level7/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..3337f843aafc20f50170cc9f33a77fb3083025d0 --- /dev/null +++ b/maze/task3/maps/level7/answer/47.txt @@ -0,0 +1,5 @@ +7-47 +6-98 +7-66 +8-29 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/48.txt b/maze/task3/maps/level7/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5d335109f111c9d0f697539a28f99f250e2260f --- /dev/null +++ b/maze/task3/maps/level7/answer/48.txt @@ -0,0 +1,5 @@ +7-48 +3-76 +7-31 +6-10 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/49.txt b/maze/task3/maps/level7/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..452e157b79607e8d2dc39a95b10635ee65e57fd3 --- /dev/null +++ b/maze/task3/maps/level7/answer/49.txt @@ -0,0 +1,5 @@ +7-49 +7-44 +3-78 +5-5 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/5.txt b/maze/task3/maps/level7/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..83ea5ae85e2c4186c22ab79b6f6b77dce00fb7d3 --- /dev/null +++ b/maze/task3/maps/level7/answer/5.txt @@ -0,0 +1,5 @@ +7-16 +3-81 +4-81 +7-5 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/50.txt b/maze/task3/maps/level7/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..a671868d8a0266968d25a6644e22d1d402dd8b2a --- /dev/null +++ b/maze/task3/maps/level7/answer/50.txt @@ -0,0 +1,5 @@ +7-45 +3-74 +7-50 +8-39 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/51.txt b/maze/task3/maps/level7/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f3be7e1be47c6b1a83433f290f8887ba27a3dcd --- /dev/null +++ b/maze/task3/maps/level7/answer/51.txt @@ -0,0 +1,5 @@ +8-79 +7-51 +6-45 +7-41 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/52.txt b/maze/task3/maps/level7/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdc40b310087dee1ad65f0135223b482699c9244 --- /dev/null +++ b/maze/task3/maps/level7/answer/52.txt @@ -0,0 +1,5 @@ +5-41 +7-52 +4-77 +7-29 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/53.txt b/maze/task3/maps/level7/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..a631cb5cddc6f8bb1673cd3e90bfafeb0e0cc536 --- /dev/null +++ b/maze/task3/maps/level7/answer/53.txt @@ -0,0 +1,5 @@ +4-39 +5-68 +7-53 +7-41 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/54.txt b/maze/task3/maps/level7/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..008c563a9b467f25fe23208d419c82514c78f407 --- /dev/null +++ b/maze/task3/maps/level7/answer/54.txt @@ -0,0 +1,5 @@ +7-29 +7-54 +3-32 +6-84 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/55.txt b/maze/task3/maps/level7/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..7acfc28b445ce645f87b5f2a159d001a35ad9ee2 --- /dev/null +++ b/maze/task3/maps/level7/answer/55.txt @@ -0,0 +1,5 @@ +7-25 +7-55 +4-33 +3-51 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/56.txt b/maze/task3/maps/level7/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..a54191f92d647193dfa288ca747dbeeb5ac40910 --- /dev/null +++ b/maze/task3/maps/level7/answer/56.txt @@ -0,0 +1,5 @@ +7-91 +7-56 +8-40 +3-49 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/57.txt b/maze/task3/maps/level7/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2bbc3991d3e1a16a6cfce4840257e79b4b14399 --- /dev/null +++ b/maze/task3/maps/level7/answer/57.txt @@ -0,0 +1,5 @@ +7-14 +3-27 +7-57 +6-51 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/58.txt b/maze/task3/maps/level7/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5e91d3ec7cfbe17b86d8c328d3aefdee3f18c69 --- /dev/null +++ b/maze/task3/maps/level7/answer/58.txt @@ -0,0 +1,5 @@ +7-58 +7-8 +5-43 +6-10 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/59.txt b/maze/task3/maps/level7/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..93a4108a11fa074a8de95e5d69617cf57e009940 --- /dev/null +++ b/maze/task3/maps/level7/answer/59.txt @@ -0,0 +1,5 @@ +7-59 +3-91 +6-71 +7-58 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/6.txt b/maze/task3/maps/level7/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0bbbf091fc10960a69ff64a54be0a5a01420505 --- /dev/null +++ b/maze/task3/maps/level7/answer/6.txt @@ -0,0 +1,5 @@ +7-6 +3-16 +7-37 +5-19 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/60.txt b/maze/task3/maps/level7/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a1bc2d3f38bfa60e4297a8db25ed3d7ef5765dc --- /dev/null +++ b/maze/task3/maps/level7/answer/60.txt @@ -0,0 +1,5 @@ +7-14 +7-60 +4-55 +6-69 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/61.txt b/maze/task3/maps/level7/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..63964858cf765af137616fff8fa02b47a6bc7cf4 --- /dev/null +++ b/maze/task3/maps/level7/answer/61.txt @@ -0,0 +1,5 @@ +4-27 +7-78 +7-61 +5-66 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/62.txt b/maze/task3/maps/level7/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c12ba50746aeb31e731c79527157e263d4974fb --- /dev/null +++ b/maze/task3/maps/level7/answer/62.txt @@ -0,0 +1,5 @@ +7-62 +7-6 +5-34 +8-36 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/63.txt b/maze/task3/maps/level7/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbe778bbcb14e648d7d243f75a026afd306806a7 --- /dev/null +++ b/maze/task3/maps/level7/answer/63.txt @@ -0,0 +1,5 @@ +6-26 +3-9 +7-40 +7-63 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/64.txt b/maze/task3/maps/level7/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..81ff5e38d740a3f028263e273954a9bf2d9f0b62 --- /dev/null +++ b/maze/task3/maps/level7/answer/64.txt @@ -0,0 +1,5 @@ +7-14 +7-64 +5-31 +3-86 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/65.txt b/maze/task3/maps/level7/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..92f3d82de033a7429d8466cd672e51bd177517cb --- /dev/null +++ b/maze/task3/maps/level7/answer/65.txt @@ -0,0 +1,5 @@ +7-65 +4-79 +7-88 +8-76 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/66.txt b/maze/task3/maps/level7/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fa8b5f0fa1a9e63c325ef090d639378d13ba9c8 --- /dev/null +++ b/maze/task3/maps/level7/answer/66.txt @@ -0,0 +1,5 @@ +7-66 +7-69 +3-60 +4-22 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/67.txt b/maze/task3/maps/level7/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff16f1cd5b8847fbe6565353f80705e3b15957b7 --- /dev/null +++ b/maze/task3/maps/level7/answer/67.txt @@ -0,0 +1,5 @@ +7-67 +4-2 +3-17 +7-41 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/68.txt b/maze/task3/maps/level7/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..e961396b96dbc32da807ce17bd3a2e654d069bfb --- /dev/null +++ b/maze/task3/maps/level7/answer/68.txt @@ -0,0 +1,5 @@ +8-24 +7-1 +7-68 +5-50 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/69.txt b/maze/task3/maps/level7/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..234400763a7acd5c4f6c36ee2ddf2ca15920c083 --- /dev/null +++ b/maze/task3/maps/level7/answer/69.txt @@ -0,0 +1,5 @@ +5-51 +7-67 +6-67 +7-69 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/7.txt b/maze/task3/maps/level7/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdca4bdc88412379396352eec5768b7864f9c786 --- /dev/null +++ b/maze/task3/maps/level7/answer/7.txt @@ -0,0 +1,5 @@ +7-76 +3-8 +6-96 +7-7 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/70.txt b/maze/task3/maps/level7/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c362a978e1e8f082869fb5d0f24a49608d4ae48 --- /dev/null +++ b/maze/task3/maps/level7/answer/70.txt @@ -0,0 +1,5 @@ +7-73 +3-97 +4-61 +7-70 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/71.txt b/maze/task3/maps/level7/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..1db91ac3f427b3678e341f18e099142879470e5f --- /dev/null +++ b/maze/task3/maps/level7/answer/71.txt @@ -0,0 +1,5 @@ +7-71 +8-67 +7-66 +4-3 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/72.txt b/maze/task3/maps/level7/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..e72b1c5c7cba1ea0e59c6ae07aab771065b9180b --- /dev/null +++ b/maze/task3/maps/level7/answer/72.txt @@ -0,0 +1,5 @@ +4-40 +8-50 +7-5 +7-72 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/73.txt b/maze/task3/maps/level7/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..8baf91b26706b3474ecb1af6a47fb97659410223 --- /dev/null +++ b/maze/task3/maps/level7/answer/73.txt @@ -0,0 +1,5 @@ +7-73 +7-89 +8-64 +6-8 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/74.txt b/maze/task3/maps/level7/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..dffbcea7b4e2f78401586325631e9d7718eb68f4 --- /dev/null +++ b/maze/task3/maps/level7/answer/74.txt @@ -0,0 +1,5 @@ +8-69 +6-49 +7-74 +7-69 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/75.txt b/maze/task3/maps/level7/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..af28075387d05e1bad74d388279c1801c3ede3b5 --- /dev/null +++ b/maze/task3/maps/level7/answer/75.txt @@ -0,0 +1,5 @@ +3-24 +7-91 +4-38 +7-75 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/76.txt b/maze/task3/maps/level7/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd87e190526d4971df58966ea804def035e48b1a --- /dev/null +++ b/maze/task3/maps/level7/answer/76.txt @@ -0,0 +1,5 @@ +7-24 +7-76 +8-72 +3-34 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/77.txt b/maze/task3/maps/level7/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f2ec994909d19f5cd2f04b2d71fdaa44c358e9c --- /dev/null +++ b/maze/task3/maps/level7/answer/77.txt @@ -0,0 +1,5 @@ +3-61 +7-6 +4-21 +7-77 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/78.txt b/maze/task3/maps/level7/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c1cb66bf6a9e408bb800518db393594ac430e2f --- /dev/null +++ b/maze/task3/maps/level7/answer/78.txt @@ -0,0 +1,5 @@ +3-12 +7-91 +4-5 +7-78 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/79.txt b/maze/task3/maps/level7/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c08e70f045b1c5356c94b939cf031fe405ef587 --- /dev/null +++ b/maze/task3/maps/level7/answer/79.txt @@ -0,0 +1,5 @@ +7-79 +4-72 +8-59 +7-85 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/8.txt b/maze/task3/maps/level7/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..153b20c7e7e3c75e3bb9be5d35fab4f49a50b296 --- /dev/null +++ b/maze/task3/maps/level7/answer/8.txt @@ -0,0 +1,5 @@ +6-16 +3-68 +7-87 +7-8 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/80.txt b/maze/task3/maps/level7/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..088373e1d105b442ec5f97ef6dcc57ae46b5b60c --- /dev/null +++ b/maze/task3/maps/level7/answer/80.txt @@ -0,0 +1,5 @@ +6-8 +7-43 +4-16 +7-80 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/81.txt b/maze/task3/maps/level7/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ae42b42d892a8eeff24ed6b1b9e0bfddf768bd2 --- /dev/null +++ b/maze/task3/maps/level7/answer/81.txt @@ -0,0 +1,5 @@ +8-55 +7-31 +5-74 +7-81 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/82.txt b/maze/task3/maps/level7/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..99b816103e922df4d9f4225ed77c102fb5400363 --- /dev/null +++ b/maze/task3/maps/level7/answer/82.txt @@ -0,0 +1,5 @@ +6-49 +5-72 +7-29 +7-82 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/83.txt b/maze/task3/maps/level7/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..190169084d8e950dd279eb7f24e3516f3b2bcdf0 --- /dev/null +++ b/maze/task3/maps/level7/answer/83.txt @@ -0,0 +1,5 @@ +7-80 +3-87 +7-83 +4-76 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/84.txt b/maze/task3/maps/level7/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..5759a17559bdd2cf486e4c75b3dfbbb0a1be6f42 --- /dev/null +++ b/maze/task3/maps/level7/answer/84.txt @@ -0,0 +1,5 @@ +7-7 +3-75 +6-63 +7-84 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/85.txt b/maze/task3/maps/level7/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..c79a9bade6c8377df6c7494f00e5b0d7306ea6af --- /dev/null +++ b/maze/task3/maps/level7/answer/85.txt @@ -0,0 +1,5 @@ +4-44 +6-65 +7-85 +7-11 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/86.txt b/maze/task3/maps/level7/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..4456120d2cd52c998c7e04505fe5a327fe8e94ae --- /dev/null +++ b/maze/task3/maps/level7/answer/86.txt @@ -0,0 +1,5 @@ +7-99 +3-75 +7-86 +5-67 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/87.txt b/maze/task3/maps/level7/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..6370c878108e1eb38e36b83ff7678196804c5e79 --- /dev/null +++ b/maze/task3/maps/level7/answer/87.txt @@ -0,0 +1,5 @@ +8-55 +4-87 +7-39 +7-87 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/88.txt b/maze/task3/maps/level7/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..5caae11894bcd1961593c3ba18b62aa2bbc3e156 --- /dev/null +++ b/maze/task3/maps/level7/answer/88.txt @@ -0,0 +1,5 @@ +7-3 +4-95 +7-88 +6-49 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/89.txt b/maze/task3/maps/level7/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a65a00f62f821da3d4bef3ba01e366a3a26e317 --- /dev/null +++ b/maze/task3/maps/level7/answer/89.txt @@ -0,0 +1,5 @@ +5-3 +8-72 +7-89 +7-10 +2 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/9.txt b/maze/task3/maps/level7/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..351cc2a8cf53ca58dc62a0cde68ab104eea39f5b --- /dev/null +++ b/maze/task3/maps/level7/answer/9.txt @@ -0,0 +1,5 @@ +8-30 +6-66 +7-49 +7-9 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/90.txt b/maze/task3/maps/level7/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..993d0625c5d81280860927561efa7ebd8e9f5c7e --- /dev/null +++ b/maze/task3/maps/level7/answer/90.txt @@ -0,0 +1,5 @@ +7-90 +7-95 +8-28 +4-37 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/91.txt b/maze/task3/maps/level7/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9b6e996bf9b050c9a8059b575e5f20fbef0de62 --- /dev/null +++ b/maze/task3/maps/level7/answer/91.txt @@ -0,0 +1,5 @@ +6-51 +5-81 +7-57 +7-91 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/92.txt b/maze/task3/maps/level7/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..1201c3024e13c083f443f922605221e041efae80 --- /dev/null +++ b/maze/task3/maps/level7/answer/92.txt @@ -0,0 +1,5 @@ +7-92 +7-85 +3-72 +6-10 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/93.txt b/maze/task3/maps/level7/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bdb77d2784ba55b8704679775d9c1556a03b1e9 --- /dev/null +++ b/maze/task3/maps/level7/answer/93.txt @@ -0,0 +1,5 @@ +3-4 +7-93 +5-34 +7-39 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/94.txt b/maze/task3/maps/level7/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..3fe5620da672d522133f4d77c4a4c36cdd7e397f --- /dev/null +++ b/maze/task3/maps/level7/answer/94.txt @@ -0,0 +1,5 @@ +7-43 +7-94 +6-2 +5-58 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/95.txt b/maze/task3/maps/level7/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..651d2855cc2a7e4b04c3019d387ab8db6b640cb5 --- /dev/null +++ b/maze/task3/maps/level7/answer/95.txt @@ -0,0 +1,5 @@ +5-2 +7-95 +7-65 +3-56 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/96.txt b/maze/task3/maps/level7/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d3764960d5a785e1cca75c2449c739e107dd3d4 --- /dev/null +++ b/maze/task3/maps/level7/answer/96.txt @@ -0,0 +1,5 @@ +7-96 +7-50 +4-29 +8-10 +0 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/97.txt b/maze/task3/maps/level7/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d1564716de8d27c00c3b9a6f66fd32d54d1ed1d --- /dev/null +++ b/maze/task3/maps/level7/answer/97.txt @@ -0,0 +1,5 @@ +7-79 +7-97 +5-58 +3-68 +1 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/98.txt b/maze/task3/maps/level7/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..417de1735e11b6113c75aaf8170d8247a32b31d6 --- /dev/null +++ b/maze/task3/maps/level7/answer/98.txt @@ -0,0 +1,5 @@ +7-66 +6-32 +4-86 +7-98 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/answer/99.txt b/maze/task3/maps/level7/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..26492443197f5338d7c2c7c464f7d9ca183dfda5 --- /dev/null +++ b/maze/task3/maps/level7/answer/99.txt @@ -0,0 +1,5 @@ +3-52 +7-65 +6-51 +7-99 +3 \ No newline at end of file diff --git a/maze/task3/maps/level7/img/0.png b/maze/task3/maps/level7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7cdf5342c15b189c80ef2c63518cad4d410a0932 --- /dev/null +++ b/maze/task3/maps/level7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a98ae61b479f23858c3793337e2c6e0d825a199f0461cdac32f3daedc147153 +size 15793 diff --git a/maze/task3/maps/level7/img/1.png b/maze/task3/maps/level7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bd028b6761b6ca5a42d1c150a4e23d31369979b8 --- /dev/null +++ b/maze/task3/maps/level7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3914995c27e4c03d136598689379cffc1abc4a189c231ded00955979207faf27 +size 14995 diff --git a/maze/task3/maps/level7/img/10.png b/maze/task3/maps/level7/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6d57315db888d53ce58d81d8b27f335178c0edb1 --- /dev/null +++ b/maze/task3/maps/level7/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf972cf71e39a1d99eb17745da9aa5db1187904ea4fd08eb4c98c32bee49593e +size 16764 diff --git a/maze/task3/maps/level7/img/11.png b/maze/task3/maps/level7/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..68ccbe646836988938cb756b958bf55c25f3a1a6 --- /dev/null +++ b/maze/task3/maps/level7/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0c1488e28d342d1f888c7343ddccdd7da1b64bd010d20895de91d03988dc09 +size 14882 diff --git a/maze/task3/maps/level7/img/12.png b/maze/task3/maps/level7/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..74c13c2cf55263c29daf1b92e341416b429d6940 --- /dev/null +++ b/maze/task3/maps/level7/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331eaa7cec6acd5f43a93a68da3fafc83023ce592ea209407f839deabe9d9f16 +size 14804 diff --git a/maze/task3/maps/level7/img/13.png b/maze/task3/maps/level7/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6f5cce943f26d567cd51a54591d3891ca745a011 --- /dev/null +++ b/maze/task3/maps/level7/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64921c615a99fe341fbb03762df5be9684d1632bc4bff78463e4126942e5c54c +size 15852 diff --git a/maze/task3/maps/level7/img/14.png b/maze/task3/maps/level7/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4ef033e0270d347745f7ee968ab0bceaa244826f --- /dev/null +++ b/maze/task3/maps/level7/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcba9849b0ede0164c06f01ceb1134eb64bcc11fa4c89dbc6c1c1bc210ff4091 +size 15962 diff --git a/maze/task3/maps/level7/img/15.png b/maze/task3/maps/level7/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..65533cfd78862f538d3ab80db7e5479bb6985ea1 --- /dev/null +++ b/maze/task3/maps/level7/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c34396f886480fafbb7f4c11375a57fa85fb659f89ebbe7d2185e7e289509d4 +size 14800 diff --git a/maze/task3/maps/level7/img/16.png b/maze/task3/maps/level7/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8264456ae565c30375756c3ff28cc54e052a9ff5 --- /dev/null +++ b/maze/task3/maps/level7/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5124fefde6b773fc04417540e89b20b9911d0ba4a3602976c60a2d6363d99a5 +size 16670 diff --git a/maze/task3/maps/level7/img/17.png b/maze/task3/maps/level7/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..cc6728273c350d8c49a5feab46137fcc5d545170 --- /dev/null +++ b/maze/task3/maps/level7/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eae43e86f2986de6b1d555d97cc02610e9543a8a87577999571ed2220c70770 +size 16692 diff --git a/maze/task3/maps/level7/img/18.png b/maze/task3/maps/level7/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..bfc3d7c2223ce85a574adfb98f4112d5e3972b62 --- /dev/null +++ b/maze/task3/maps/level7/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edcb72a67c5ac5a72efe7fffcb7d679ba612676b402ad4ef6a86bd9ca218e46f +size 15912 diff --git a/maze/task3/maps/level7/img/19.png b/maze/task3/maps/level7/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..743416a03f152eb9a385da8b48f3e186979bff30 --- /dev/null +++ b/maze/task3/maps/level7/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b62af239c380ece96461143b0ae2ffdcf3be6f68e552b62948c0dab56a2a738 +size 15824 diff --git a/maze/task3/maps/level7/img/2.png b/maze/task3/maps/level7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..af01bd2f791ef0592cec539da878903a3cced753 --- /dev/null +++ b/maze/task3/maps/level7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcaaacf017ca50eb72e7d578531c891472bbed301837c84e57a159e3ad490bcc +size 14862 diff --git a/maze/task3/maps/level7/img/20.png b/maze/task3/maps/level7/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..52aca6464d734a9c730fa756bd8144ec02b49190 --- /dev/null +++ b/maze/task3/maps/level7/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd37b36a1d555672bcce2a857ea09af9fa3aecf898faa0099e4bc669fd4db737 +size 15795 diff --git a/maze/task3/maps/level7/img/21.png b/maze/task3/maps/level7/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..c7ca689ed6729b3c3a5db6e42538132ddf222b9c --- /dev/null +++ b/maze/task3/maps/level7/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d59be7497bd16fa558b70d29f9feca86a86464f9ade67d340a75914b9f268c +size 14128 diff --git a/maze/task3/maps/level7/img/22.png b/maze/task3/maps/level7/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..561670b52965d45d9bfcce9e777e6a42b43ba89d --- /dev/null +++ b/maze/task3/maps/level7/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159e4f1a1052931e5c4e23085c6ea09cef4392b5ffa8bb7e7633aed5bacf858d +size 15878 diff --git a/maze/task3/maps/level7/img/23.png b/maze/task3/maps/level7/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..0aa1bcddf4506754c3bcf49fec81c39331cabfa6 --- /dev/null +++ b/maze/task3/maps/level7/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4462015daf34f13fd67688c97d1ab3903b61cfe1344fa1e9473d75b41f3298bf +size 16959 diff --git a/maze/task3/maps/level7/img/24.png b/maze/task3/maps/level7/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..3ed76607325da8c29ef4acb77fe9b6dd4e6262ab --- /dev/null +++ b/maze/task3/maps/level7/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad959945a6bb18216518cbdfe776cf952a62a586f0fdb2aae7effae4bbcef49 +size 16114 diff --git a/maze/task3/maps/level7/img/25.png b/maze/task3/maps/level7/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..6c77bf3a368ae39c03a7c03aa96fdfc2ea9dea28 --- /dev/null +++ b/maze/task3/maps/level7/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00e8ca7e5b2e83c9e3399e78678054fd01103f094139b21ce0adada72e9c5c2 +size 14954 diff --git a/maze/task3/maps/level7/img/26.png b/maze/task3/maps/level7/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..c2e65c38f4d03f3d7ffcfe4d678533b4fc8907c9 --- /dev/null +++ b/maze/task3/maps/level7/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1bb13ebc40413ddfb8f53a20a3379c61068039f96836534d163acd84f33ef3 +size 16668 diff --git a/maze/task3/maps/level7/img/27.png b/maze/task3/maps/level7/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..6478cb1c9f932283f11c83b3c6f20e6a766f60f0 --- /dev/null +++ b/maze/task3/maps/level7/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998f82bd5396ac2810a7c7873c1f1c554d4182aa39b9df554b503719557352f2 +size 13979 diff --git a/maze/task3/maps/level7/img/28.png b/maze/task3/maps/level7/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..997c7d2b1c48b16403a477404da07daf217a0f92 --- /dev/null +++ b/maze/task3/maps/level7/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b797d240f19afcf5ff72ac0ccda8c2f58754c3ac7d0f8c1818d1dbab735376 +size 15811 diff --git a/maze/task3/maps/level7/img/29.png b/maze/task3/maps/level7/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..2428299c6d8edd439eca2ab18a45160adb0f8527 --- /dev/null +++ b/maze/task3/maps/level7/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bebe2bd09d99f5a573145e6e7a8d7bd554a22ae448bf39b36d0cd5ba622d4ba +size 16646 diff --git a/maze/task3/maps/level7/img/3.png b/maze/task3/maps/level7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b050868b341763d86cd18a546ed0fa8d55040442 --- /dev/null +++ b/maze/task3/maps/level7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df04dee2563233e9d8ea0f3792511efd22e5d9fea5ea9c4b1feb7de86ae96f6 +size 13038 diff --git a/maze/task3/maps/level7/img/30.png b/maze/task3/maps/level7/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..f637198b4a43407345f80325022db5ccceb263a4 --- /dev/null +++ b/maze/task3/maps/level7/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f6abc08c1246442db82a4a35ef4bd296b3bd5091d6de6676b658229074387c +size 15860 diff --git a/maze/task3/maps/level7/img/31.png b/maze/task3/maps/level7/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..fce5e6e8aba58ab673a725d7168e9b6b3f42dbb7 --- /dev/null +++ b/maze/task3/maps/level7/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1906aeb9fe790f2b6fbfc26985f0ea0eb02360403e4604e7bab5eb31abff81c7 +size 15801 diff --git a/maze/task3/maps/level7/img/32.png b/maze/task3/maps/level7/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..33674651409565eccd2da547c81428dd5a1664f7 --- /dev/null +++ b/maze/task3/maps/level7/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6423daeb6dbad16aa4321898179158ec34ea05106f380682455a14dfcc8d1d +size 15767 diff --git a/maze/task3/maps/level7/img/33.png b/maze/task3/maps/level7/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..74ce891738f33dac9543afd9c292fd319f4beeb9 --- /dev/null +++ b/maze/task3/maps/level7/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73bb40e9d7fec87ff4a5e7a443ecb6c391ed3451427ff59d75bdf5cc333ecdfb +size 16041 diff --git a/maze/task3/maps/level7/img/34.png b/maze/task3/maps/level7/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..52aa7b27e803c9729118c1e10547316307f81f68 --- /dev/null +++ b/maze/task3/maps/level7/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09c96681a45579cb12b8895329518cb45a9854d675d583a0dc93722d9ae533ae +size 14994 diff --git a/maze/task3/maps/level7/img/35.png b/maze/task3/maps/level7/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..124190a7d1aca1230ef15d8b890a076c58e3fe4d --- /dev/null +++ b/maze/task3/maps/level7/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72b195d41a8c00f8e09f04672364201510257890f8562ddf4667600c16f469e +size 14799 diff --git a/maze/task3/maps/level7/img/36.png b/maze/task3/maps/level7/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..e7362cf6843b196b6a1c93c70d5d18b7c78cf936 --- /dev/null +++ b/maze/task3/maps/level7/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d9fa87cd6f1da2dda7b056eab559886da115595349e68f9747c9ff735ec34f +size 15888 diff --git a/maze/task3/maps/level7/img/37.png b/maze/task3/maps/level7/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..bae032cbc08c17b543a484e68592c69eace51a71 --- /dev/null +++ b/maze/task3/maps/level7/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcc8a5eac503d2473ba7f2a4d69a399bd029daacc37acd22273360a8b8a034d +size 14006 diff --git a/maze/task3/maps/level7/img/38.png b/maze/task3/maps/level7/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..147cc6c293244edf5b62e8dd5ff1d38589de142f --- /dev/null +++ b/maze/task3/maps/level7/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f89e131c82e27da5c1638c8970f3f25fd22a3e043ee979f9b25a4b5c69b669d0 +size 14075 diff --git a/maze/task3/maps/level7/img/39.png b/maze/task3/maps/level7/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..51f23233f3ff43e371cd0d5b1eb68ec1f2fbb254 --- /dev/null +++ b/maze/task3/maps/level7/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923c3545caf3696b459dc6dd1c43012b23c3e6b0cb8b275c033ab9273ea7c316 +size 15769 diff --git a/maze/task3/maps/level7/img/4.png b/maze/task3/maps/level7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..71acd2b7540d1f2c6fee59eadd129b285c7479ce --- /dev/null +++ b/maze/task3/maps/level7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab6813dccdff319a1cdf0594189825178fee74a594199bb2e8ec1e92664b69a +size 14795 diff --git a/maze/task3/maps/level7/img/40.png b/maze/task3/maps/level7/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..5e83bef146824cb7ce0283ef271b0779bfd43fa7 --- /dev/null +++ b/maze/task3/maps/level7/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:077f2853e316ba58383dfc3ed79233e84f6df5d31ca133ba36cedda6a3ae4c83 +size 15892 diff --git a/maze/task3/maps/level7/img/41.png b/maze/task3/maps/level7/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..95f17b8f36f4b036496ba150d02a25e869a969d9 --- /dev/null +++ b/maze/task3/maps/level7/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14af66922c5498e2d3dbf68b7ff019e7c315ac0b68f4bbd92a9ed27898318eae +size 15836 diff --git a/maze/task3/maps/level7/img/42.png b/maze/task3/maps/level7/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..4d297adbcfcdc8ee36662c8259d06f4b9a4e6eb5 --- /dev/null +++ b/maze/task3/maps/level7/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3153a009d9e391f951b1146a6465f9cb0c79cc322ec91bfd3fd4ce1bd3a2ef8 +size 15054 diff --git a/maze/task3/maps/level7/img/43.png b/maze/task3/maps/level7/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..db8bf51b9001c983a5f41bf41b63ecb8d4075b42 --- /dev/null +++ b/maze/task3/maps/level7/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13a90f232e601dcbde4c9e57f5fb283d900c8e32da93299b0d423bb6b4f9112 +size 14820 diff --git a/maze/task3/maps/level7/img/44.png b/maze/task3/maps/level7/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..f72e34f97f17bf9a026bfcb97be1cddda1eb60ff --- /dev/null +++ b/maze/task3/maps/level7/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93bc38a7f4330e790900bbc713ff022bf14ff7c1a29e2ab7c5486a5fdf6b0535 +size 15818 diff --git a/maze/task3/maps/level7/img/45.png b/maze/task3/maps/level7/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..ed0be9dfa21a48ec93852136c02a915621ce2ecb --- /dev/null +++ b/maze/task3/maps/level7/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f93e7095016bd15b14221f7227e26ed853e041b947fca11ee3b68531ea7d7b +size 14881 diff --git a/maze/task3/maps/level7/img/46.png b/maze/task3/maps/level7/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..8102fa1f2b0aa54c91c1eb18b881b064c7b1f652 --- /dev/null +++ b/maze/task3/maps/level7/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd93e095fae10e3ad415675d008b4055fab97c9bf8f29c8e9f87d48455a9a85d +size 14017 diff --git a/maze/task3/maps/level7/img/47.png b/maze/task3/maps/level7/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..5531ce9e1af6d5a1bb16df26f51d9e31c474d8bb --- /dev/null +++ b/maze/task3/maps/level7/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afdffef70b02a5495ab922ae8b9fad639897fcecf0320a85690b64ac87953ee9 +size 14879 diff --git a/maze/task3/maps/level7/img/48.png b/maze/task3/maps/level7/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..0e1da4730a1436c7415e86f61d447a3504fd8bdc --- /dev/null +++ b/maze/task3/maps/level7/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85da61d77646a02b5835e3bf32ccdf680b441b798c1701c9478769e0da45e941 +size 14007 diff --git a/maze/task3/maps/level7/img/49.png b/maze/task3/maps/level7/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..4bbc09f2b973e875430faa26b58cd0f03bc50c46 --- /dev/null +++ b/maze/task3/maps/level7/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37e8f12d419049879dd2382acc952e5b845027c115acf5ab901711b1c855d8c +size 16497 diff --git a/maze/task3/maps/level7/img/5.png b/maze/task3/maps/level7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b331dd9df5de4d6ccce64d4f00762b59cd3ae2dc --- /dev/null +++ b/maze/task3/maps/level7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b831f9b39190b681c966c3bc25343c5ba999f8f2b185050487f0be2f4095df +size 16642 diff --git a/maze/task3/maps/level7/img/50.png b/maze/task3/maps/level7/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..0847348c498629f70c05b5be3960ec5fbf483254 --- /dev/null +++ b/maze/task3/maps/level7/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446874c4227ea35c3644bc1b92006625ba37c2023491d344fccd3bcd9ffb07b1 +size 16567 diff --git a/maze/task3/maps/level7/img/51.png b/maze/task3/maps/level7/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..af90f267729e59db583275f0bdbd20e5c2c39e7c --- /dev/null +++ b/maze/task3/maps/level7/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc1180afa8380ec3d96aac33c5806136f06382da43022928cc84d82e9c1efe03 +size 15665 diff --git a/maze/task3/maps/level7/img/52.png b/maze/task3/maps/level7/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..5117d601b75cd4aec722f1330e0f4a2c74e587ee --- /dev/null +++ b/maze/task3/maps/level7/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d17ea7fb21c1adeb931181e7fef775de5a356fa6f997d75e8e8cdf574fb2035 +size 14835 diff --git a/maze/task3/maps/level7/img/53.png b/maze/task3/maps/level7/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..50a9aeff923e08f16722a11437d1345a24bf9923 --- /dev/null +++ b/maze/task3/maps/level7/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a553bc8f58e9d47e156c5af62de3c1157d139c9a129377649fdcc727e6f1ee42 +size 15607 diff --git a/maze/task3/maps/level7/img/54.png b/maze/task3/maps/level7/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..f89a4a2fa21269393a071d7992704f9963661207 --- /dev/null +++ b/maze/task3/maps/level7/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4e88137cdcf4ed252acdeb7f4716a3c5bed1d0bdcfbe2a7d39ae0a59634325 +size 14878 diff --git a/maze/task3/maps/level7/img/55.png b/maze/task3/maps/level7/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..658ee13fc295fbb12628a59b3f531e9eb9da0290 --- /dev/null +++ b/maze/task3/maps/level7/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af18ef58f60f597b0bfe74453933a6a1a2c6fed3b05f27f86f0e256f16bc7534 +size 16111 diff --git a/maze/task3/maps/level7/img/56.png b/maze/task3/maps/level7/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..119764aa9bd636d96cc2612171e6ce1be9e49c0b --- /dev/null +++ b/maze/task3/maps/level7/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8405b447d19a0047ade8f332ccc6934a5d84447f127d1e2f2959510bf768f87f +size 13330 diff --git a/maze/task3/maps/level7/img/57.png b/maze/task3/maps/level7/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..90921c75aad18bfab52e8eaccbef8d8083e4a301 --- /dev/null +++ b/maze/task3/maps/level7/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abea35c20b22f72f827bcf070ea3bfdd0fbb96fe7f20d4b03975afda0e4bb4c1 +size 14833 diff --git a/maze/task3/maps/level7/img/58.png b/maze/task3/maps/level7/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9458ac0dbc9d9288f19cb116b31bf81e7bbd1a --- /dev/null +++ b/maze/task3/maps/level7/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59fd9e758e450bc04c781911ef23df50cd7542f439eb6be9a1498974d00f601d +size 15078 diff --git a/maze/task3/maps/level7/img/59.png b/maze/task3/maps/level7/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..113da7c6c9e7c598e6500af5826d3a450dee7561 --- /dev/null +++ b/maze/task3/maps/level7/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73775a6d70306fb2eebd1bbd6b08619e410e1f66786a1f7c7536c793d3eb6211 +size 14064 diff --git a/maze/task3/maps/level7/img/6.png b/maze/task3/maps/level7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1c5d934b637f81d62172c216edf8ece2ced92514 --- /dev/null +++ b/maze/task3/maps/level7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581a48d5f089561cabd01d786fd5934a03f7bb7e98faa1aefacd7d0285a55016 +size 15913 diff --git a/maze/task3/maps/level7/img/60.png b/maze/task3/maps/level7/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..487176131466b03a73dcee77230e4e3db9d4a184 --- /dev/null +++ b/maze/task3/maps/level7/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f48d134435261a0e15f2298798a65c377829075af27852ac4e19772b803ed4 +size 15797 diff --git a/maze/task3/maps/level7/img/61.png b/maze/task3/maps/level7/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..485a7a2a8cd9106df8599b794d7ebbfe4cf29fcb --- /dev/null +++ b/maze/task3/maps/level7/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4933fced12c237fa1c288aeee782af69258623b8a41578f23484befb8aef0e1 +size 16161 diff --git a/maze/task3/maps/level7/img/62.png b/maze/task3/maps/level7/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..d56aa180aa3c52bec2b388c1887d9ade19ddaf88 --- /dev/null +++ b/maze/task3/maps/level7/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbae10840cf23b07f94d06e0d6a086668472d806eeb3971e32ca5107725f463a +size 15795 diff --git a/maze/task3/maps/level7/img/63.png b/maze/task3/maps/level7/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..9800a6c611bd072b10d9815d65adb89ff83279f1 --- /dev/null +++ b/maze/task3/maps/level7/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f63df2f488f9706c0dc24f7a51fec5eee30367001f5a3a30ffbd02bd9a52bdf +size 15802 diff --git a/maze/task3/maps/level7/img/64.png b/maze/task3/maps/level7/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..12bc19d9e8c0c094f07bd47476454f1d044236fa --- /dev/null +++ b/maze/task3/maps/level7/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2567510c3d4c108781b349ae12afbfe03b1aac3edea199f53a22572de29f1f94 +size 14983 diff --git a/maze/task3/maps/level7/img/65.png b/maze/task3/maps/level7/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..adf3f97b0fbe862b9e8d698c9619f00f0405e78c --- /dev/null +++ b/maze/task3/maps/level7/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf54c812c8544c73f8a2df942d6cd9b4c6ec8a38ff1bb417741cf5a274fa788 +size 15792 diff --git a/maze/task3/maps/level7/img/66.png b/maze/task3/maps/level7/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..bf6f995fd13a46c272d40dec29c6446507a42cdc --- /dev/null +++ b/maze/task3/maps/level7/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64062d937b30142a39054b68f9d9926e816c86ff692c05fce7150136e9e18436 +size 14076 diff --git a/maze/task3/maps/level7/img/67.png b/maze/task3/maps/level7/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..2afb93335f7b7d14051d150f133d7c206c3d7a18 --- /dev/null +++ b/maze/task3/maps/level7/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b46b75b472d57405383637df7291287fee6afd78b9f679c5377e910cfc55409 +size 15675 diff --git a/maze/task3/maps/level7/img/68.png b/maze/task3/maps/level7/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..bbd61b6ca6487cfb3ff7ae535367967ad13cfe3d --- /dev/null +++ b/maze/task3/maps/level7/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc996a4e9b6b0e5ce5add3c83a3a275907de3130cda6d7f2e542887615201a71 +size 16551 diff --git a/maze/task3/maps/level7/img/69.png b/maze/task3/maps/level7/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..6360e189028b836aa6a754d4be2846cd7a1970da --- /dev/null +++ b/maze/task3/maps/level7/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf5ed0daa4bfe8dc3d5c5c919823d3d9f7ffcb33136ccdc21106f330c9671d54 +size 16814 diff --git a/maze/task3/maps/level7/img/7.png b/maze/task3/maps/level7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..42ac4349eeb6b210452a75629775086d668e5361 --- /dev/null +++ b/maze/task3/maps/level7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254054584ef2b28a85430ca80f0da169f10b7890ffa93205ec4321b338602af0 +size 13923 diff --git a/maze/task3/maps/level7/img/70.png b/maze/task3/maps/level7/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..c175c269fa0d8b476cf744c8166024fe66160efe --- /dev/null +++ b/maze/task3/maps/level7/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d942b99599f218ae7d9d3c8477fd25683d859cd8c0578ee7d2c6ac990570d630 +size 16646 diff --git a/maze/task3/maps/level7/img/71.png b/maze/task3/maps/level7/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..172977fbd548790ba8abe307f78d1ac36a874c31 --- /dev/null +++ b/maze/task3/maps/level7/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3a8a4c04ccff8d028370a2601f3e93c7966451596c9e320389aa83a3cd4692 +size 14049 diff --git a/maze/task3/maps/level7/img/72.png b/maze/task3/maps/level7/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..77193faf902a69c7537fdfe6882a62ffa75d2ed7 --- /dev/null +++ b/maze/task3/maps/level7/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2de716b19f84981f47d77dce1147fa268087b5f3415e5dcfcbc164569268ea +size 15827 diff --git a/maze/task3/maps/level7/img/73.png b/maze/task3/maps/level7/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..110301b6357ee63a07f8806ff2748287e437ab9f --- /dev/null +++ b/maze/task3/maps/level7/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2311954139350513ba8c5a1a45eba0dbc85a0dc740320e815dffc9bfd5470251 +size 13918 diff --git a/maze/task3/maps/level7/img/74.png b/maze/task3/maps/level7/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..4f436a4f03b8b77d28e145f1022cdec521634adb --- /dev/null +++ b/maze/task3/maps/level7/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ec4c72c4ff0451341b61809fda692869d318c2a081d1dfd03b2d825776941a +size 15768 diff --git a/maze/task3/maps/level7/img/75.png b/maze/task3/maps/level7/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..429f2c4632829c310dbddf40b6a4e43e3697bba0 --- /dev/null +++ b/maze/task3/maps/level7/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c2587d3e2cae9caad3fcc85ae3be400baee340d6915ff1725b69fa7329132e +size 15980 diff --git a/maze/task3/maps/level7/img/76.png b/maze/task3/maps/level7/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..9d118f8e97c0c294667ec510a866f06cc958a922 --- /dev/null +++ b/maze/task3/maps/level7/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bf019a877ec1d84b2bd2770720089ff983eef5d7ff1a35d6d36cd99ba016ab +size 15746 diff --git a/maze/task3/maps/level7/img/77.png b/maze/task3/maps/level7/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..2b38e3ff8160efe714d0da501ea6734a8112cb66 --- /dev/null +++ b/maze/task3/maps/level7/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21206556b34996392c28fe6c8ff95ccbbb28e2ed206c502cd3df5d8ebaf7e26b +size 14808 diff --git a/maze/task3/maps/level7/img/78.png b/maze/task3/maps/level7/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..fd84788ec293a6533826490679a5df2355aed247 --- /dev/null +++ b/maze/task3/maps/level7/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7d34306c5370407d87327e78587d927e1aaff13c3cd4aabaf9d0069ec5b4dc +size 15899 diff --git a/maze/task3/maps/level7/img/79.png b/maze/task3/maps/level7/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d395314e29a89b78930dcc14ed8013e115975e --- /dev/null +++ b/maze/task3/maps/level7/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb151784f499f44908a79ccb6b1cbcee2570fc1dcf9ec78ed85c4b4a417689c +size 16602 diff --git a/maze/task3/maps/level7/img/8.png b/maze/task3/maps/level7/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..808984f0e0ea66e8807354cc23ce4d2d8464e4d3 --- /dev/null +++ b/maze/task3/maps/level7/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:507c56c9b671f27e4e4345764f1816e71a802b2c46c1c1a578ae1702f0364768 +size 13078 diff --git a/maze/task3/maps/level7/img/80.png b/maze/task3/maps/level7/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..b0a0d51b0ef037cdc73ab067a5de98ce5c6a7e38 --- /dev/null +++ b/maze/task3/maps/level7/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e08e9c346c9e504e152f62e9879e90ca69238fae008d3b839cd92b5f8e3eb5 +size 15980 diff --git a/maze/task3/maps/level7/img/81.png b/maze/task3/maps/level7/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..73da5230a7f11a8b3f28341123d62507689881e7 --- /dev/null +++ b/maze/task3/maps/level7/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231e4a1cf15e1872890a23392001702e77ef8c030e62a90f438aa84ce9d6f404 +size 14827 diff --git a/maze/task3/maps/level7/img/82.png b/maze/task3/maps/level7/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..66343c575952eb61bdaa9d59c9c8f27f5b1178f4 --- /dev/null +++ b/maze/task3/maps/level7/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b701d593c649a9397e41c7e05472f1445711a3abd6c77cf2fd09329940fb120c +size 14918 diff --git a/maze/task3/maps/level7/img/83.png b/maze/task3/maps/level7/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..b17f24dd13421498c3f45d90f5fb987afb6c7c28 --- /dev/null +++ b/maze/task3/maps/level7/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6226129f1cd3313a55b5da6d9e06d44e7f25f417a17e446048b08623998f72a6 +size 15048 diff --git a/maze/task3/maps/level7/img/84.png b/maze/task3/maps/level7/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..b984a001e9ae5bba483624e4d0df525093f88ac5 --- /dev/null +++ b/maze/task3/maps/level7/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b3176ea4cc7f4eb2d077b629e87dc0f055f7cde1ccae09eef8c68dc2619f41 +size 16705 diff --git a/maze/task3/maps/level7/img/85.png b/maze/task3/maps/level7/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..db392dcf49ce165b9bbbed8948b878287dde84bf --- /dev/null +++ b/maze/task3/maps/level7/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c1b6afd8ca996884e340e203a81036bae7712b4335361107a23c638b447d66 +size 14942 diff --git a/maze/task3/maps/level7/img/86.png b/maze/task3/maps/level7/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..dd0cd3e30ea27fb77a3fd1057fee5772122dc87f --- /dev/null +++ b/maze/task3/maps/level7/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555f86a212be77d2e24262cfaf87d24796188ba2c39a896278a9ec813e139b58 +size 14061 diff --git a/maze/task3/maps/level7/img/87.png b/maze/task3/maps/level7/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..3abf0ddf14fab3e72038a3f62d3e1508e54d679f --- /dev/null +++ b/maze/task3/maps/level7/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e16ec1d7bc8109489f9d10178469c1d871e0dd22aa5c3fa183d5a28c7af514 +size 14794 diff --git a/maze/task3/maps/level7/img/88.png b/maze/task3/maps/level7/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..0406319714e8128e4e1a9072fb6bdcae003f782a --- /dev/null +++ b/maze/task3/maps/level7/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8563d101ad7479a58484d118a27a3971e324c63775eb48425dcbbfe5e34a9df8 +size 15949 diff --git a/maze/task3/maps/level7/img/89.png b/maze/task3/maps/level7/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..fa615d763d9bac0f0f3038a0f11a7ab3a4b9db40 --- /dev/null +++ b/maze/task3/maps/level7/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d385dec059b7bf573e1ae8b61766422c0fa567535e0c52f48830559fd3b0ecf +size 16690 diff --git a/maze/task3/maps/level7/img/9.png b/maze/task3/maps/level7/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ae3bd5028862401b8c120de342c1906c7b9b77e7 --- /dev/null +++ b/maze/task3/maps/level7/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d2ef6fe8c4763f0d22ae59defdb3e11e83d7f7f1db520cd596a21082101445 +size 15609 diff --git a/maze/task3/maps/level7/img/90.png b/maze/task3/maps/level7/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..922abe61a9f48135adbe70497d3b3ceb648f1e41 --- /dev/null +++ b/maze/task3/maps/level7/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1380456c0121541d007ba16c9ec728ee25d9017fb16ae2d798d9788e34016977 +size 14241 diff --git a/maze/task3/maps/level7/img/91.png b/maze/task3/maps/level7/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..0d4eedeb68504d142cb10abf436351aeb370cb42 --- /dev/null +++ b/maze/task3/maps/level7/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94e8454330a83abb54d04d75229a22c2d508115c6f1717bff209ac80c008278f +size 13939 diff --git a/maze/task3/maps/level7/img/92.png b/maze/task3/maps/level7/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..74ae0031ce00d1af5be1207558c04458b8d55035 --- /dev/null +++ b/maze/task3/maps/level7/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e874d6c43e710ea427e6d830ce5d2f791cff6a40e2d27f00bb87c49efcd1d267 +size 14899 diff --git a/maze/task3/maps/level7/img/93.png b/maze/task3/maps/level7/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9c3692f7721791f7e6567df9cf529f08ba11e7 --- /dev/null +++ b/maze/task3/maps/level7/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3550b127318fab4c292621a43b11254673e62a64999ccc784ae2d99ae17236fe +size 15021 diff --git a/maze/task3/maps/level7/img/94.png b/maze/task3/maps/level7/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..55cbed290cee8b559f47e1306c20a986ac2ca13e --- /dev/null +++ b/maze/task3/maps/level7/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5434e8f0212cbd4b269795ebda07d079021babb51beb4a1d0c96582821b2fee1 +size 15951 diff --git a/maze/task3/maps/level7/img/95.png b/maze/task3/maps/level7/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..aed9c8d3ae83017ad054d67bbe397c71a614dda9 --- /dev/null +++ b/maze/task3/maps/level7/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1347eb2cae5d30b7f3c33bf9a1764727435541a62b54752b4d2f3a34eb32db50 +size 14115 diff --git a/maze/task3/maps/level7/img/96.png b/maze/task3/maps/level7/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..9138fe79460a986295a8c62abbdad1e108c54519 --- /dev/null +++ b/maze/task3/maps/level7/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b54713877784d5f1ceaf8a59ae0069a5f087ec12a9d2a4823d08f96792d57d +size 15823 diff --git a/maze/task3/maps/level7/img/97.png b/maze/task3/maps/level7/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..ba416518206e11aa57e90638f1802715fda69e0c --- /dev/null +++ b/maze/task3/maps/level7/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dade278ab3ed9c864059003cea55950cfd22ac2a5f7af7e15b98b8170c4fba2 +size 13020 diff --git a/maze/task3/maps/level7/img/98.png b/maze/task3/maps/level7/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..ebc2c3e810fff8aacf7c3461a2ed78582e3e15bc --- /dev/null +++ b/maze/task3/maps/level7/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3f3033bef618e0c00007972a39c8bad106543044abdd1bc6cdf810590b0589 +size 15827 diff --git a/maze/task3/maps/level7/img/99.png b/maze/task3/maps/level7/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..c0e452ffe758e4ae2e77965c4cded140b4a61a99 --- /dev/null +++ b/maze/task3/maps/level7/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e7889dd8297f3ecb31e1bb9a9cfba43771b2ffe6469896b5e6ffa2d0ff55ec +size 15933 diff --git a/maze/task3/maps/level7/question/0.txt b/maze/task3/maps/level7/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..729791aba4d36b12007f70958d123c03ee42a7be --- /dev/null +++ b/maze/task3/maps/level7/question/0.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | * | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | * | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | * | @ | # | _ | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/1.txt b/maze/task3/maps/level7/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c00e25d8f51b250f3e5514ac09d11921df052be --- /dev/null +++ b/maze/task3/maps/level7/question/1.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/10.txt b/maze/task3/maps/level7/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd19828add5914412851ad1fe7876ed457f7b2f3 --- /dev/null +++ b/maze/task3/maps/level7/question/10.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | * | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | diff --git a/maze/task3/maps/level7/question/11.txt b/maze/task3/maps/level7/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2de292217f161b80a15ca35077bea91131021165 --- /dev/null +++ b/maze/task3/maps/level7/question/11.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | # | +| Row 7 | _ | @ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | * | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level7/question/12.txt b/maze/task3/maps/level7/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..55ac7db173402820ec732a7fe3843e063bc86bf0 --- /dev/null +++ b/maze/task3/maps/level7/question/12.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | @ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | @ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | # | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/13.txt b/maze/task3/maps/level7/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..56f369366ffef4af0c62216661a97d3957597146 --- /dev/null +++ b/maze/task3/maps/level7/question/13.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | # | _ | +| Row 4 | @ | _ | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | # | +| Row 7 | # | _ | # | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | # | +| Row 6 | # | _ | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | # | _ | _ | * | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | diff --git a/maze/task3/maps/level7/question/14.txt b/maze/task3/maps/level7/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..a188ad00e803f921aedd848c2f567adfa8edffc8 --- /dev/null +++ b/maze/task3/maps/level7/question/14.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | # | # | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | # | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/15.txt b/maze/task3/maps/level7/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..8df61e9dd4fd54d0dff70c5f53c5b106e648d018 --- /dev/null +++ b/maze/task3/maps/level7/question/15.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | * | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | @ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task3/maps/level7/question/16.txt b/maze/task3/maps/level7/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..8102fd5339b9170f0d42329604401236a1f475fb --- /dev/null +++ b/maze/task3/maps/level7/question/16.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | * | # | # | _ | # | +| Row 7 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | @ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | # | _ | # | diff --git a/maze/task3/maps/level7/question/17.txt b/maze/task3/maps/level7/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..884b80204a352bde4bdb07bdc267386d9d66c243 --- /dev/null +++ b/maze/task3/maps/level7/question/17.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | * | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level7/question/18.txt b/maze/task3/maps/level7/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7267882fc45a8253ad895ea0ae796f3371270af --- /dev/null +++ b/maze/task3/maps/level7/question/18.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | # | _ | +| Row 5 | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | # | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | @ | _ | +| Row 2 | # | * | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | * | diff --git a/maze/task3/maps/level7/question/19.txt b/maze/task3/maps/level7/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..950ba7318a8466b0412d49f3b7fe90a79a84652a --- /dev/null +++ b/maze/task3/maps/level7/question/19.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | * | _ | _ | @ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | @ | _ | * | diff --git a/maze/task3/maps/level7/question/2.txt b/maze/task3/maps/level7/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..8640b2546c4036e4b4157bc721c798563ff459a7 --- /dev/null +++ b/maze/task3/maps/level7/question/2.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | # | +| Row 6 | * | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | # | # | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | # | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level7/question/20.txt b/maze/task3/maps/level7/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..50a29ff0a48bffa8c8d8d8bd16e6f21392109343 --- /dev/null +++ b/maze/task3/maps/level7/question/20.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | _ | # | +| Row 3 | * | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | * | +| Row 6 | # | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | * | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/21.txt b/maze/task3/maps/level7/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddf358612193fc164a365cb208468c4ac8ff1033 --- /dev/null +++ b/maze/task3/maps/level7/question/21.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | * | # | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | @ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | @ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/22.txt b/maze/task3/maps/level7/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..32bccc79de9121dc6d9c3e0954ad9a5759bdcde5 --- /dev/null +++ b/maze/task3/maps/level7/question/22.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | _ | +| Row 6 | _ | # | _ | # | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | _ | @ | diff --git a/maze/task3/maps/level7/question/23.txt b/maze/task3/maps/level7/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..70f949ea8ccb6f4c0e956b659ff0ac3a781d372b --- /dev/null +++ b/maze/task3/maps/level7/question/23.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | @ | * | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | _ | _ | * | +| Row 3 | @ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | +| Row 5 | # | @ | * | _ | _ | # | _ | +| Row 6 | # | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/24.txt b/maze/task3/maps/level7/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd726136f73041c0eee58a62353cf85a97499ca3 --- /dev/null +++ b/maze/task3/maps/level7/question/24.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | @ | _ | # | _ | _ | _ | +| Row 4 | # | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | _ | * | _ | +| Row 3 | # | # | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/25.txt b/maze/task3/maps/level7/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bcaf3977ebc45c3f05271e2ecdda52f84fe8eec --- /dev/null +++ b/maze/task3/maps/level7/question/25.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/26.txt b/maze/task3/maps/level7/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb72b2a0d22402150e0112929982a7a308c21d58 --- /dev/null +++ b/maze/task3/maps/level7/question/26.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | @ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | # | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | * | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/27.txt b/maze/task3/maps/level7/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..f82519c9ce27123b45d0d14e60a5539b8f9a00a5 --- /dev/null +++ b/maze/task3/maps/level7/question/27.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | _ | # | +| Row 3 | * | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level7/question/28.txt b/maze/task3/maps/level7/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5f993f9ca4f2fe30bd31f0160e3bb8024e31fac --- /dev/null +++ b/maze/task3/maps/level7/question/28.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | # | _ | _ | +| Row 6 | # | _ | _ | @ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/29.txt b/maze/task3/maps/level7/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..aeb3309960b19ce3e24660281f3970cfe5fed221 --- /dev/null +++ b/maze/task3/maps/level7/question/29.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | # | _ | _ | * | +| Row 7 | # | # | _ | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | * | _ | _ | # | @ | _ | diff --git a/maze/task3/maps/level7/question/3.txt b/maze/task3/maps/level7/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7fc8ce11010487f5f429e5aa0fd65b7f80a1d06 --- /dev/null +++ b/maze/task3/maps/level7/question/3.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | # | _ | * | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/30.txt b/maze/task3/maps/level7/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4eb96e6882e3717a7570a10fb1bc83754dddefc --- /dev/null +++ b/maze/task3/maps/level7/question/30.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | @ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | # | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | * | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | # | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | # | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/31.txt b/maze/task3/maps/level7/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a51aec4f5758c2e0e5673695c176ff025f92ff0 --- /dev/null +++ b/maze/task3/maps/level7/question/31.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/32.txt b/maze/task3/maps/level7/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..547e826e97c75e951b8a170ddcef6a0ea86e5b47 --- /dev/null +++ b/maze/task3/maps/level7/question/32.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | * | _ | _ | # | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | # | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | _ | _ | +| Row 7 | _ | _ | @ | _ | # | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/33.txt b/maze/task3/maps/level7/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..98f04a94a8b43ef7030957406b4ad5048c99a863 --- /dev/null +++ b/maze/task3/maps/level7/question/33.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | * | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | * | # | _ | +| Row 3 | @ | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/34.txt b/maze/task3/maps/level7/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..18d79427d525bf5262816a956996e1159465cbbd --- /dev/null +++ b/maze/task3/maps/level7/question/34.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | @ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | # | +| Row 7 | * | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task3/maps/level7/question/35.txt b/maze/task3/maps/level7/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e49138d1558eae9176da8693e879c305db9d485 --- /dev/null +++ b/maze/task3/maps/level7/question/35.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | * | # | _ | +| Row 3 | @ | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | # | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task3/maps/level7/question/36.txt b/maze/task3/maps/level7/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..615caec7e7aad78deaaae5e49e0cd80c2e4ce0e6 --- /dev/null +++ b/maze/task3/maps/level7/question/36.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | @ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | * | @ | # | _ | +| Row 6 | # | _ | # | _ | _ | _ | # | +| Row 7 | # | # | # | _ | # | # | _ | diff --git a/maze/task3/maps/level7/question/37.txt b/maze/task3/maps/level7/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7dc9db9cf2e4eeb2fdbd3c3ec5ca1fccd9a67b7 --- /dev/null +++ b/maze/task3/maps/level7/question/37.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | * | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | _ | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | @ | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task3/maps/level7/question/38.txt b/maze/task3/maps/level7/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..c020a38cbdaf30142938eb639e1bc629f68863fd --- /dev/null +++ b/maze/task3/maps/level7/question/38.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | _ | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | # | _ | * | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | _ | +| Row 6 | _ | _ | # | # | @ | # | diff --git a/maze/task3/maps/level7/question/39.txt b/maze/task3/maps/level7/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad22359334e882124e05521c794fafe31d03558c --- /dev/null +++ b/maze/task3/maps/level7/question/39.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | _ | +| Row 6 | _ | # | _ | # | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | * | +| Row 4 | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | @ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | * | _ | +| Row 4 | _ | @ | _ | _ | # | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/4.txt b/maze/task3/maps/level7/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3bf26c56ec354ec17d00a99b9b243f686ec8c1a --- /dev/null +++ b/maze/task3/maps/level7/question/4.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | @ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | _ | @ | _ | _ | _ | _ | +| Row 4 | # | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | * | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/40.txt b/maze/task3/maps/level7/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..d31e0f0432aaf3ec55adf4ae8914188313e155ae --- /dev/null +++ b/maze/task3/maps/level7/question/40.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | @ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | # | * | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | _ | _ | +| Row 2 | * | _ | # | _ | _ | @ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level7/question/41.txt b/maze/task3/maps/level7/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..146249e20c1e411eabdc276e2cc195f09c9b603c --- /dev/null +++ b/maze/task3/maps/level7/question/41.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | @ | _ | diff --git a/maze/task3/maps/level7/question/42.txt b/maze/task3/maps/level7/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..13ede24c0cc4d4ffba2ad42aa330627f255f5789 --- /dev/null +++ b/maze/task3/maps/level7/question/42.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level7/question/43.txt b/maze/task3/maps/level7/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d9a869f8922b43ee3e3d55f7ebe16f1cf757745 --- /dev/null +++ b/maze/task3/maps/level7/question/43.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | # | # | +| Row 3 | # | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | # | _ | +| Row 7 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | @ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/44.txt b/maze/task3/maps/level7/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7155e0570c36454bde2ff849b9299ab83e64e79 --- /dev/null +++ b/maze/task3/maps/level7/question/44.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | # | _ | _ | # | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/45.txt b/maze/task3/maps/level7/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f420fd387997822ac5d98c4d3466829a715730d --- /dev/null +++ b/maze/task3/maps/level7/question/45.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | * | @ | # | _ | +| Row 6 | # | _ | # | _ | _ | _ | # | +| Row 7 | # | # | # | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | * | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/46.txt b/maze/task3/maps/level7/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..80db853974fd12dfac71c0e4e1351f8eee96732c --- /dev/null +++ b/maze/task3/maps/level7/question/46.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | @ | _ | # | _ | +| Row 6 | # | * | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | * | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | # | _ | * | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/47.txt b/maze/task3/maps/level7/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d7db901ab484d829ec9e497f8b5ad3c1321e21b --- /dev/null +++ b/maze/task3/maps/level7/question/47.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | * | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | * | # | # | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | * | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task3/maps/level7/question/48.txt b/maze/task3/maps/level7/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a6c289a4c56f646454ddac11144f806b2964bfa --- /dev/null +++ b/maze/task3/maps/level7/question/48.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | * | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | @ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/49.txt b/maze/task3/maps/level7/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..7247cdd990c7dc44f8b5d17172504826f86bb339 --- /dev/null +++ b/maze/task3/maps/level7/question/49.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | # | # | _ | _ | # | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | # | _ | _ | # | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | # | +| Row 3 | @ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task3/maps/level7/question/5.txt b/maze/task3/maps/level7/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1d5cd40d34a939f566c0a7a100d3af30bce8807 --- /dev/null +++ b/maze/task3/maps/level7/question/5.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | * | _ | +| Row 4 | _ | @ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | _ | # | # | +| Row 3 | * | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | # | _ | # | _ | diff --git a/maze/task3/maps/level7/question/50.txt b/maze/task3/maps/level7/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..41125e03359ad24cce3338c5349baaff421bdf3d --- /dev/null +++ b/maze/task3/maps/level7/question/50.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | * | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | * | +| Row 6 | _ | # | _ | _ | _ | _ | @ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/51.txt b/maze/task3/maps/level7/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..90c352444b437cc185e979cfeea2c50e95321c99 --- /dev/null +++ b/maze/task3/maps/level7/question/51.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | # | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | @ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | # | _ | _ | * | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | diff --git a/maze/task3/maps/level7/question/52.txt b/maze/task3/maps/level7/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..9220e4329e4a19116884a59348fe450ae10c93a3 --- /dev/null +++ b/maze/task3/maps/level7/question/52.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | * | _ | # | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | # | _ | _ | * | +| Row 7 | # | # | _ | # | _ | # | _ | diff --git a/maze/task3/maps/level7/question/53.txt b/maze/task3/maps/level7/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..248ea36509c7859aeda7686988938051d3f24582 --- /dev/null +++ b/maze/task3/maps/level7/question/53.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | # | * | @ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | diff --git a/maze/task3/maps/level7/question/54.txt b/maze/task3/maps/level7/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0f4a679b08fac13f20b93d5fd6165c02e3f1746 --- /dev/null +++ b/maze/task3/maps/level7/question/54.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | # | _ | _ | * | +| Row 7 | # | # | _ | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/55.txt b/maze/task3/maps/level7/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..45a73aa09baca0dbef91cfe78e89bc4be2d8ed96 --- /dev/null +++ b/maze/task3/maps/level7/question/55.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | @ | # | _ | _ | # | _ | +| Row 4 | _ | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | # | # | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | _ | * | _ | +| Row 3 | # | # | @ | diff --git a/maze/task3/maps/level7/question/56.txt b/maze/task3/maps/level7/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f01b070e87c5c4aae92abbceeace92fc61c6365 --- /dev/null +++ b/maze/task3/maps/level7/question/56.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | * | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | # | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | * | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | # | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | @ | +| Row 2 | * | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/57.txt b/maze/task3/maps/level7/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cd3ed9fcba8471731da1b925b8149cee0df9196 --- /dev/null +++ b/maze/task3/maps/level7/question/57.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | @ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | @ | * | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/58.txt b/maze/task3/maps/level7/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7b7ae1c2e4553c64772c29c256edc26f28661cf --- /dev/null +++ b/maze/task3/maps/level7/question/58.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/59.txt b/maze/task3/maps/level7/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..baddd4b450664295f2137e6998d65aeb19456c07 --- /dev/null +++ b/maze/task3/maps/level7/question/59.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/6.txt b/maze/task3/maps/level7/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0011004181675ccec6b0317c0fd67363b051240 --- /dev/null +++ b/maze/task3/maps/level7/question/6.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | @ | # | +| Row 6 | # | _ | # | # | # | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | _ | +| Row 3 | # | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | * | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level7/question/60.txt b/maze/task3/maps/level7/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..c46472af43d81da6c55709c53caed523f266eaac --- /dev/null +++ b/maze/task3/maps/level7/question/60.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | @ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | * | +| Row 7 | _ | _ | # | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | # | * | _ | _ | _ | # | diff --git a/maze/task3/maps/level7/question/61.txt b/maze/task3/maps/level7/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f0513ff1d3d5da35c304e3ae1252a8e50d4a137 --- /dev/null +++ b/maze/task3/maps/level7/question/61.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | # | _ | @ | +| Row 4 | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | # | # | _ | # | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | @ | * | # | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/62.txt b/maze/task3/maps/level7/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a8b55d4bf08809ab2f4d8b34c78d45bb7b44232 --- /dev/null +++ b/maze/task3/maps/level7/question/62.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | @ | # | +| Row 6 | # | _ | # | # | # | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task3/maps/level7/question/63.txt b/maze/task3/maps/level7/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b40d8b21ac1a305e483cdc416544e2efd8865226 --- /dev/null +++ b/maze/task3/maps/level7/question/63.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | _ | _ | +| Row 3 | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | @ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level7/question/64.txt b/maze/task3/maps/level7/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7661a9640c4fdb79b76970d602f716bfaf871ad --- /dev/null +++ b/maze/task3/maps/level7/question/64.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | @ | +| Row 2 | _ | _ | # | +| Row 3 | # | _ | _ | diff --git a/maze/task3/maps/level7/question/65.txt b/maze/task3/maps/level7/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..444b88ec4a9edadc56900a8c0f829d46827b80e0 --- /dev/null +++ b/maze/task3/maps/level7/question/65.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | * | +| Row 6 | # | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | # | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | # | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | @ | _ | # | _ | _ | _ | +| Row 7 | # | _ | # | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | * | _ | _ | # | # | _ | _ | +| Row 8 | # | _ | # | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/66.txt b/maze/task3/maps/level7/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..5afed2f644fb7af70f18898fc7ba82270c31ab4e --- /dev/null +++ b/maze/task3/maps/level7/question/66.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | _ | * | # | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task3/maps/level7/question/67.txt b/maze/task3/maps/level7/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..bddb347d2b5205a3468b6573e68e44995f8c0322 --- /dev/null +++ b/maze/task3/maps/level7/question/67.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | # | # | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | @ | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | diff --git a/maze/task3/maps/level7/question/68.txt b/maze/task3/maps/level7/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab8c954a936e61815420f0373ea3d4fc1b2086e6 --- /dev/null +++ b/maze/task3/maps/level7/question/68.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | # | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | diff --git a/maze/task3/maps/level7/question/69.txt b/maze/task3/maps/level7/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..f984eeacc67b16d21fcd77d533260f96bcd68e14 --- /dev/null +++ b/maze/task3/maps/level7/question/69.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | # | # | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | @ | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | diff --git a/maze/task3/maps/level7/question/7.txt b/maze/task3/maps/level7/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..88ae4913bf1079da6079d3578280920097021605 --- /dev/null +++ b/maze/task3/maps/level7/question/7.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | # | +| Row 3 | _ | * | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/70.txt b/maze/task3/maps/level7/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..e07d97660b7cde916ff94d809b0ea4319f13985d --- /dev/null +++ b/maze/task3/maps/level7/question/70.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | @ | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | * | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | # | _ | diff --git a/maze/task3/maps/level7/question/71.txt b/maze/task3/maps/level7/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..c30c94fdb7e249d49b1aa1ce895f2699e2e65b33 --- /dev/null +++ b/maze/task3/maps/level7/question/71.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | # | # | # | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | # | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | * | _ | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | # | _ | * | diff --git a/maze/task3/maps/level7/question/72.txt b/maze/task3/maps/level7/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7c4f2ee852c584d48e604a6393c367b56a7d1c6 --- /dev/null +++ b/maze/task3/maps/level7/question/72.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | _ | # | # | +| Row 3 | * | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | # | +| Row 2 | _ | # | * | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | # | _ | _ | diff --git a/maze/task3/maps/level7/question/73.txt b/maze/task3/maps/level7/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..59e2dc100c855621b7971e92a23bbf44724e4908 --- /dev/null +++ b/maze/task3/maps/level7/question/73.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | # | @ | +| Row 3 | # | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | * | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | diff --git a/maze/task3/maps/level7/question/74.txt b/maze/task3/maps/level7/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..656605af1d37810d171aada312e172ecffe2bb1f --- /dev/null +++ b/maze/task3/maps/level7/question/74.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | @ | # | +| Row 8 | _ | # | _ | _ | _ | # | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | * | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | diff --git a/maze/task3/maps/level7/question/75.txt b/maze/task3/maps/level7/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..50681f379ff1fdd07a282319b07c675ee3fe10f0 --- /dev/null +++ b/maze/task3/maps/level7/question/75.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | * | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | # | _ | * | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/76.txt b/maze/task3/maps/level7/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa095e53bdf02586097296dfa94e53877136cb27 --- /dev/null +++ b/maze/task3/maps/level7/question/76.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | @ | _ | # | _ | _ | _ | +| Row 4 | # | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task3/maps/level7/question/77.txt b/maze/task3/maps/level7/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..961df22b6af27529e74ffd037ec32d6257197363 --- /dev/null +++ b/maze/task3/maps/level7/question/77.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | @ | # | +| Row 6 | # | _ | # | # | # | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | @ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | @ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/78.txt b/maze/task3/maps/level7/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ff2e47438110006ea924d32566c892bbff6f45f --- /dev/null +++ b/maze/task3/maps/level7/question/78.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | * | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | diff --git a/maze/task3/maps/level7/question/79.txt b/maze/task3/maps/level7/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..64e188a9127f7ea0a17ee8a5c88e4d43a5969371 --- /dev/null +++ b/maze/task3/maps/level7/question/79.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | @ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | # | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | @ | * | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/8.txt b/maze/task3/maps/level7/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..4edfd450883c0d3ed20b3d2acc30f2d7e239fbb3 --- /dev/null +++ b/maze/task3/maps/level7/question/8.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | # | _ | @ | +| Row 3 | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | * | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/80.txt b/maze/task3/maps/level7/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a57427d1d35c94b54cfe5e8fd70331092d04fe8 --- /dev/null +++ b/maze/task3/maps/level7/question/80.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | @ | _ | +| Row 2 | # | # | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | # | _ | # | _ | # | _ | diff --git a/maze/task3/maps/level7/question/81.txt b/maze/task3/maps/level7/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..850a11d5124ff353dbca73f40b83c48fc95e1364 --- /dev/null +++ b/maze/task3/maps/level7/question/81.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | # | +| Row 8 | # | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | @ | _ | +| Row 2 | # | * | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/82.txt b/maze/task3/maps/level7/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..b691fa174b75238e9846160e6b21e9f7de068ae2 --- /dev/null +++ b/maze/task3/maps/level7/question/82.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | # | _ | _ | * | +| Row 7 | # | # | _ | # | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | @ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | * | _ | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/83.txt b/maze/task3/maps/level7/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..7531cc3918919563431e65480aa9b8dfc0e41e9e --- /dev/null +++ b/maze/task3/maps/level7/question/83.txt @@ -0,0 +1,33 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | @ | _ | +| Row 2 | # | # | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | # | _ | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/84.txt b/maze/task3/maps/level7/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a0c47acf8acdf55ced6af1205f4d6889e2df3f1 --- /dev/null +++ b/maze/task3/maps/level7/question/84.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | * | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | # | +| Row 7 | _ | _ | # | _ | * | # | _ | diff --git a/maze/task3/maps/level7/question/85.txt b/maze/task3/maps/level7/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..9501254fc25095fe8b37976f82d3a23d7fe36e08 --- /dev/null +++ b/maze/task3/maps/level7/question/85.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | # | +| Row 7 | _ | @ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/86.txt b/maze/task3/maps/level7/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc615aa4f8ea8cf0c3a5a0c0d9f5cd624c3c720e --- /dev/null +++ b/maze/task3/maps/level7/question/86.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | @ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | * | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | @ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/87.txt b/maze/task3/maps/level7/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..20cfb5b5fbb85c5c8332e597e31ef99ef4ca347a --- /dev/null +++ b/maze/task3/maps/level7/question/87.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | # | +| Row 8 | # | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | * | _ | +| Row 4 | _ | @ | _ | _ | # | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | * | # | diff --git a/maze/task3/maps/level7/question/88.txt b/maze/task3/maps/level7/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d42845f81730134b3fc50184bc1de66ca502ba4 --- /dev/null +++ b/maze/task3/maps/level7/question/88.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | # | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | @ | _ | # | _ | _ | _ | +| Row 7 | # | _ | # | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/89.txt b/maze/task3/maps/level7/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..0333792f2cb71704948a863279e3139ac675aef7 --- /dev/null +++ b/maze/task3/maps/level7/question/89.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | * | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/9.txt b/maze/task3/maps/level7/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bcbef59c54581e84a9562ba8520edad89224d29 --- /dev/null +++ b/maze/task3/maps/level7/question/9.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | @ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | _ | +| Row 6 | _ | _ | # | # | @ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | # | # | _ | _ | # | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | * | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level7/question/90.txt b/maze/task3/maps/level7/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..505e69dbb0fca9da5cbd15e458bbd33dd4f9e574 --- /dev/null +++ b/maze/task3/maps/level7/question/90.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | * | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | @ | # | _ | _ | diff --git a/maze/task3/maps/level7/question/91.txt b/maze/task3/maps/level7/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ac5dfaf0be186e320e9ddc8c3416ffaf82d806f --- /dev/null +++ b/maze/task3/maps/level7/question/91.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | @ | * | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | @ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | * | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/92.txt b/maze/task3/maps/level7/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..80642e7c1606158c1622daef8c2cc369d6095cf3 --- /dev/null +++ b/maze/task3/maps/level7/question/92.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | # | # | +| Row 7 | # | _ | _ | * | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | _ | +| Row 3 | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/93.txt b/maze/task3/maps/level7/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c82848a582fb7e57c1b2ac0e28c7072258910165 --- /dev/null +++ b/maze/task3/maps/level7/question/93.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | @ | _ | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | # | +| Row 7 | _ | # | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | * | _ | +| Row 4 | _ | @ | _ | _ | # | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/94.txt b/maze/task3/maps/level7/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb31bfd98c05e5fc1778d649345a497a402007f0 --- /dev/null +++ b/maze/task3/maps/level7/question/94.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | * | # | # | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level7/question/95.txt b/maze/task3/maps/level7/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..124e6ee135bda5e3375ad1fbfced74c065e95447 --- /dev/null +++ b/maze/task3/maps/level7/question/95.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | * | +| Row 6 | # | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | @ | _ | diff --git a/maze/task3/maps/level7/question/96.txt b/maze/task3/maps/level7/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..a69b08047574b4506e8747373fe63cad47e2444b --- /dev/null +++ b/maze/task3/maps/level7/question/96.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | * | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | * | +| Row 6 | _ | # | _ | _ | _ | _ | @ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | * | +| Row 6 | _ | # | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | _ | # | diff --git a/maze/task3/maps/level7/question/97.txt b/maze/task3/maps/level7/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..499fee2547f5638fc6f2172761736244eb8430d8 --- /dev/null +++ b/maze/task3/maps/level7/question/97.txt @@ -0,0 +1,34 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | @ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | # | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | * | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | * | # | +| Row 7 | _ | # | _ | _ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | # | _ | @ | +| Row 3 | # | # | _ | diff --git a/maze/task3/maps/level7/question/98.txt b/maze/task3/maps/level7/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..628936d53f930c4b5f63e582fd6738055bc40c73 --- /dev/null +++ b/maze/task3/maps/level7/question/98.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | # | # | +| Row 2 | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | # | +| Row 5 | @ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | * | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level7/question/99.txt b/maze/task3/maps/level7/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..49e52772b788977c5541486a815da446369ac250 --- /dev/null +++ b/maze/task3/maps/level7/question/99.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | @ | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | * | +| Row 6 | # | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | @ | * | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | @ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task3/maps/level8/answer/0.txt b/maze/task3/maps/level8/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..657f3b89c5d8f5a211196db8bc40545e993cdaea --- /dev/null +++ b/maze/task3/maps/level8/answer/0.txt @@ -0,0 +1,5 @@ +6-72 +5-3 +8-11 +8-0 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/1.txt b/maze/task3/maps/level8/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9afdb4b4ff1bd4ba4f10eb9300cc414a228c9332 --- /dev/null +++ b/maze/task3/maps/level8/answer/1.txt @@ -0,0 +1,5 @@ +6-55 +8-1 +8-70 +4-20 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/10.txt b/maze/task3/maps/level8/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..be56fa5666f26dd29330576f26b82a8fc28432d8 --- /dev/null +++ b/maze/task3/maps/level8/answer/10.txt @@ -0,0 +1,5 @@ +6-10 +5-29 +8-93 +8-10 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/11.txt b/maze/task3/maps/level8/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..b074a72dcdbede84aedd91d2064bea50a92142a7 --- /dev/null +++ b/maze/task3/maps/level8/answer/11.txt @@ -0,0 +1,5 @@ +5-55 +6-90 +8-94 +8-11 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/12.txt b/maze/task3/maps/level8/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..e62a5bd6c4f9f34d6a73283081c208ef4036b6f8 --- /dev/null +++ b/maze/task3/maps/level8/answer/12.txt @@ -0,0 +1,5 @@ +5-19 +8-43 +8-12 +4-6 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/13.txt b/maze/task3/maps/level8/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..1faeccf5c8c7b0c336a7410ac69c6bda7441eafc --- /dev/null +++ b/maze/task3/maps/level8/answer/13.txt @@ -0,0 +1,5 @@ +8-13 +3-73 +5-22 +8-19 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/14.txt b/maze/task3/maps/level8/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..1eef5e9bef3a7df31851ceb77d0dc211110ef75f --- /dev/null +++ b/maze/task3/maps/level8/answer/14.txt @@ -0,0 +1,5 @@ +8-46 +8-14 +4-90 +6-29 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/15.txt b/maze/task3/maps/level8/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..aafc301d2e3438c19b4ec609f43eac06baaaea90 --- /dev/null +++ b/maze/task3/maps/level8/answer/15.txt @@ -0,0 +1,5 @@ +5-95 +8-83 +4-17 +8-15 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/16.txt b/maze/task3/maps/level8/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..1726b80457ed4d484e1eb1887a5d2b2644d1fe8e --- /dev/null +++ b/maze/task3/maps/level8/answer/16.txt @@ -0,0 +1,5 @@ +8-16 +8-4 +6-90 +5-99 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/17.txt b/maze/task3/maps/level8/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..338f9949a0d3c0b75825829203acaa520ca4d27b --- /dev/null +++ b/maze/task3/maps/level8/answer/17.txt @@ -0,0 +1,5 @@ +5-19 +4-27 +8-51 +8-17 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/18.txt b/maze/task3/maps/level8/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e3ed978044c7666322f2d51f101211e42739398 --- /dev/null +++ b/maze/task3/maps/level8/answer/18.txt @@ -0,0 +1,5 @@ +7-54 +8-44 +5-76 +8-18 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/19.txt b/maze/task3/maps/level8/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdc33f267014eeeff7c9e99a1fa2a8bca7510f2d --- /dev/null +++ b/maze/task3/maps/level8/answer/19.txt @@ -0,0 +1,5 @@ +8-72 +3-99 +7-17 +8-19 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/2.txt b/maze/task3/maps/level8/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed6e4bc9d90352f2b53c70965751535a4a980441 --- /dev/null +++ b/maze/task3/maps/level8/answer/2.txt @@ -0,0 +1,5 @@ +6-36 +8-91 +7-44 +8-2 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/20.txt b/maze/task3/maps/level8/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1a034e719503c11f15bf8237bb570b1976e15eb --- /dev/null +++ b/maze/task3/maps/level8/answer/20.txt @@ -0,0 +1,5 @@ +8-24 +3-8 +8-20 +7-3 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/21.txt b/maze/task3/maps/level8/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cc36b37386a93dab07bbc9b4fb1412ebf8e4692 --- /dev/null +++ b/maze/task3/maps/level8/answer/21.txt @@ -0,0 +1,5 @@ +6-91 +7-69 +8-21 +8-66 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/22.txt b/maze/task3/maps/level8/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4cf98ad23064ae6391638291a9458e6e2170463 --- /dev/null +++ b/maze/task3/maps/level8/answer/22.txt @@ -0,0 +1,5 @@ +8-51 +5-13 +6-90 +8-22 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/23.txt b/maze/task3/maps/level8/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4d662b27828b05058ee1fc74f850eeb2fadee2a --- /dev/null +++ b/maze/task3/maps/level8/answer/23.txt @@ -0,0 +1,5 @@ +8-23 +3-17 +5-87 +8-78 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/24.txt b/maze/task3/maps/level8/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b1c63f06c7788528f9d00b70a9a02c260058908 --- /dev/null +++ b/maze/task3/maps/level8/answer/24.txt @@ -0,0 +1,5 @@ +8-24 +6-37 +3-44 +8-99 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/25.txt b/maze/task3/maps/level8/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..a65e0b5cb134dafe906eebdd60e45d6252acdae5 --- /dev/null +++ b/maze/task3/maps/level8/answer/25.txt @@ -0,0 +1,5 @@ +7-40 +6-74 +8-25 +8-1 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/26.txt b/maze/task3/maps/level8/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..c676b3d1dd068fc6d5b9932575ded337238bd531 --- /dev/null +++ b/maze/task3/maps/level8/answer/26.txt @@ -0,0 +1,5 @@ +8-26 +6-74 +8-58 +3-87 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/27.txt b/maze/task3/maps/level8/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..39574d46f0ce14ac9c4c714a77c59f2a4fb73c8e --- /dev/null +++ b/maze/task3/maps/level8/answer/27.txt @@ -0,0 +1,5 @@ +6-72 +8-1 +3-2 +8-27 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/28.txt b/maze/task3/maps/level8/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..640d7e43f456f12a54b411fd348541b9ab07248f --- /dev/null +++ b/maze/task3/maps/level8/answer/28.txt @@ -0,0 +1,5 @@ +4-94 +6-5 +8-28 +8-18 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/29.txt b/maze/task3/maps/level8/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6a2a009f8f278a84ef8e876d40d92cdf81af1b0 --- /dev/null +++ b/maze/task3/maps/level8/answer/29.txt @@ -0,0 +1,5 @@ +7-82 +6-21 +8-73 +8-29 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/3.txt b/maze/task3/maps/level8/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ff0277dd281e8f4c5255a03bd55705b827ef875 --- /dev/null +++ b/maze/task3/maps/level8/answer/3.txt @@ -0,0 +1,5 @@ +7-36 +8-3 +8-46 +6-30 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/30.txt b/maze/task3/maps/level8/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..a133f5414f01eb47fa945896e4dc30c76dfbadc5 --- /dev/null +++ b/maze/task3/maps/level8/answer/30.txt @@ -0,0 +1,5 @@ +5-94 +7-86 +8-4 +8-30 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/31.txt b/maze/task3/maps/level8/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..85d1bfc80e667d6e8a7246b50689ad78a35775d7 --- /dev/null +++ b/maze/task3/maps/level8/answer/31.txt @@ -0,0 +1,5 @@ +7-18 +8-21 +6-41 +8-31 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/32.txt b/maze/task3/maps/level8/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f6c8925dcc93e51ea32d10677437f09c89f4b47 --- /dev/null +++ b/maze/task3/maps/level8/answer/32.txt @@ -0,0 +1,5 @@ +7-64 +8-10 +4-82 +8-32 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/33.txt b/maze/task3/maps/level8/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..47c6e8b187ba26770593a381eeb1860fb368fae9 --- /dev/null +++ b/maze/task3/maps/level8/answer/33.txt @@ -0,0 +1,5 @@ +8-81 +6-93 +8-33 +7-4 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/34.txt b/maze/task3/maps/level8/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3b76656f513d168ced5bde43c8076a50c8ad92c --- /dev/null +++ b/maze/task3/maps/level8/answer/34.txt @@ -0,0 +1,5 @@ +8-34 +8-32 +5-35 +6-15 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/35.txt b/maze/task3/maps/level8/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..173e2d5165858ed8e55c93ba35bb6b1ec1a0bf41 --- /dev/null +++ b/maze/task3/maps/level8/answer/35.txt @@ -0,0 +1,5 @@ +8-30 +8-35 +3-19 +6-59 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/36.txt b/maze/task3/maps/level8/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fba37b97ef3be80f86575b102bc5394305ecec2 --- /dev/null +++ b/maze/task3/maps/level8/answer/36.txt @@ -0,0 +1,5 @@ +8-36 +4-13 +3-12 +8-94 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/37.txt b/maze/task3/maps/level8/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4afaa8be802036f08a565cf8443f4266d4119f0 --- /dev/null +++ b/maze/task3/maps/level8/answer/37.txt @@ -0,0 +1,5 @@ +8-18 +3-32 +8-37 +7-53 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/38.txt b/maze/task3/maps/level8/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6e8217aecd92223aa757f283ba11fb09a2dcee4 --- /dev/null +++ b/maze/task3/maps/level8/answer/38.txt @@ -0,0 +1,5 @@ +3-78 +8-38 +6-79 +8-28 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/39.txt b/maze/task3/maps/level8/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..8221b816c1aade5b19f32d2c0bfeb752b520bb55 --- /dev/null +++ b/maze/task3/maps/level8/answer/39.txt @@ -0,0 +1,5 @@ +7-21 +6-45 +8-78 +8-39 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/4.txt b/maze/task3/maps/level8/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..31397b2e8db7db9029535a12572b795399b9b06a --- /dev/null +++ b/maze/task3/maps/level8/answer/4.txt @@ -0,0 +1,5 @@ +3-33 +8-4 +8-50 +7-90 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/40.txt b/maze/task3/maps/level8/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..130951ff9eb7e60d14348c67150eb0ee3a6da64c --- /dev/null +++ b/maze/task3/maps/level8/answer/40.txt @@ -0,0 +1,5 @@ +8-40 +8-9 +7-41 +4-67 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/41.txt b/maze/task3/maps/level8/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..10fdf8df409335ff6ce67619ddc3e6dd599b909a --- /dev/null +++ b/maze/task3/maps/level8/answer/41.txt @@ -0,0 +1,5 @@ +8-41 +7-12 +5-57 +8-11 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/42.txt b/maze/task3/maps/level8/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..61a9924f2408c1af4efd6c475b74b5b2eec5159e --- /dev/null +++ b/maze/task3/maps/level8/answer/42.txt @@ -0,0 +1,5 @@ +3-70 +8-76 +8-42 +5-39 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/43.txt b/maze/task3/maps/level8/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..d11cf2e866205e05b13d5d92b8bc4e94e9f4fcc6 --- /dev/null +++ b/maze/task3/maps/level8/answer/43.txt @@ -0,0 +1,5 @@ +6-82 +8-43 +3-28 +8-39 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/44.txt b/maze/task3/maps/level8/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e4cc98483eec9f3fb845a8c5019fb10c045465f --- /dev/null +++ b/maze/task3/maps/level8/answer/44.txt @@ -0,0 +1,5 @@ +8-44 +7-46 +8-58 +3-90 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/45.txt b/maze/task3/maps/level8/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d80d1e1e40a710b00ebc16a0dd9885407346379 --- /dev/null +++ b/maze/task3/maps/level8/answer/45.txt @@ -0,0 +1,5 @@ +4-14 +8-45 +8-32 +5-47 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/46.txt b/maze/task3/maps/level8/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba72fbc57a42c70085f1bea9227f8d361b5f3edd --- /dev/null +++ b/maze/task3/maps/level8/answer/46.txt @@ -0,0 +1,5 @@ +8-46 +8-79 +7-71 +4-28 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/47.txt b/maze/task3/maps/level8/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca3b50062b8bba9ee73e43d94af32052209314da --- /dev/null +++ b/maze/task3/maps/level8/answer/47.txt @@ -0,0 +1,5 @@ +6-82 +8-53 +8-47 +5-16 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/48.txt b/maze/task3/maps/level8/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..251c0bcd0dd64109da6fd6fd5e0c3967811a0df0 --- /dev/null +++ b/maze/task3/maps/level8/answer/48.txt @@ -0,0 +1,5 @@ +7-14 +6-32 +8-48 +8-6 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/49.txt b/maze/task3/maps/level8/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..67e1a1ee4b36bf0321531c4bb022f4c5462cd5e1 --- /dev/null +++ b/maze/task3/maps/level8/answer/49.txt @@ -0,0 +1,5 @@ +7-25 +8-49 +8-29 +5-26 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/5.txt b/maze/task3/maps/level8/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e34f9a7f98e7e960fbb514214382568c882b7dbe --- /dev/null +++ b/maze/task3/maps/level8/answer/5.txt @@ -0,0 +1,5 @@ +8-21 +7-62 +5-2 +8-5 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/50.txt b/maze/task3/maps/level8/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cff0bcb0316c4e99c58983c4315a7ed1d71411c --- /dev/null +++ b/maze/task3/maps/level8/answer/50.txt @@ -0,0 +1,5 @@ +5-0 +8-50 +8-99 +7-62 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/51.txt b/maze/task3/maps/level8/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcb9755cba811dfa29a90a8ea18f3926b3070208 --- /dev/null +++ b/maze/task3/maps/level8/answer/51.txt @@ -0,0 +1,5 @@ +8-12 +8-51 +6-66 +3-35 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/52.txt b/maze/task3/maps/level8/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..91b681598ec6ce7b6a5ddfa3e2c8b88379ed0c87 --- /dev/null +++ b/maze/task3/maps/level8/answer/52.txt @@ -0,0 +1,5 @@ +6-18 +7-14 +8-86 +8-52 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/53.txt b/maze/task3/maps/level8/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a6bc6d64156a38cffff80b0005a7dbb9f041bf3 --- /dev/null +++ b/maze/task3/maps/level8/answer/53.txt @@ -0,0 +1,5 @@ +4-27 +8-46 +8-53 +7-34 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/54.txt b/maze/task3/maps/level8/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9694388f71ee3479f076824dc2b58d8456f9a8b --- /dev/null +++ b/maze/task3/maps/level8/answer/54.txt @@ -0,0 +1,5 @@ +5-3 +4-28 +8-32 +8-54 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/55.txt b/maze/task3/maps/level8/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d996afc99d25ca1cac41b6ba82395e32d1eac16 --- /dev/null +++ b/maze/task3/maps/level8/answer/55.txt @@ -0,0 +1,5 @@ +7-43 +8-55 +8-22 +3-2 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/56.txt b/maze/task3/maps/level8/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..70f47157301a1d4957d17f5a0b0e9f532e9efd08 --- /dev/null +++ b/maze/task3/maps/level8/answer/56.txt @@ -0,0 +1,5 @@ +8-47 +4-54 +8-56 +3-88 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/57.txt b/maze/task3/maps/level8/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f82f748dd3fad03cdea9470bcd5930994827c4a --- /dev/null +++ b/maze/task3/maps/level8/answer/57.txt @@ -0,0 +1,5 @@ +3-50 +7-43 +8-57 +8-74 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/58.txt b/maze/task3/maps/level8/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd312b717b31b816388586f120f0dea95e359e11 --- /dev/null +++ b/maze/task3/maps/level8/answer/58.txt @@ -0,0 +1,5 @@ +6-75 +5-88 +8-32 +8-58 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/59.txt b/maze/task3/maps/level8/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce4e477ba7847733b9703a495146edd5f726d10d --- /dev/null +++ b/maze/task3/maps/level8/answer/59.txt @@ -0,0 +1,5 @@ +5-78 +8-59 +7-9 +8-55 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/6.txt b/maze/task3/maps/level8/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb0cdf0455fc9fd73486e4810d94687e600b003a --- /dev/null +++ b/maze/task3/maps/level8/answer/6.txt @@ -0,0 +1,5 @@ +8-8 +8-6 +4-14 +7-49 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/60.txt b/maze/task3/maps/level8/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..85a8d83eebb67e71ba38bdff7ca593b1627a7f93 --- /dev/null +++ b/maze/task3/maps/level8/answer/60.txt @@ -0,0 +1,5 @@ +8-60 +8-92 +6-98 +5-36 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/61.txt b/maze/task3/maps/level8/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..592911ba9e26c38433e46daa2a765dd4989635a0 --- /dev/null +++ b/maze/task3/maps/level8/answer/61.txt @@ -0,0 +1,5 @@ +7-21 +8-61 +3-79 +8-97 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/62.txt b/maze/task3/maps/level8/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c5217cd8d9175cd64d743c8f14c630278af4743 --- /dev/null +++ b/maze/task3/maps/level8/answer/62.txt @@ -0,0 +1,5 @@ +8-62 +8-80 +6-54 +5-51 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/63.txt b/maze/task3/maps/level8/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac59e0becbb61f535c6c552696e4402b30066dca --- /dev/null +++ b/maze/task3/maps/level8/answer/63.txt @@ -0,0 +1,5 @@ +6-93 +4-75 +8-26 +8-63 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/64.txt b/maze/task3/maps/level8/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..7aa0474ecb8e9cdfbb4fc76c42eebb3af622521a --- /dev/null +++ b/maze/task3/maps/level8/answer/64.txt @@ -0,0 +1,5 @@ +6-12 +8-64 +7-52 +8-83 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/65.txt b/maze/task3/maps/level8/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..b788cfe9b4416bbabdf0f18a35aff0a679b8ff2e --- /dev/null +++ b/maze/task3/maps/level8/answer/65.txt @@ -0,0 +1,5 @@ +8-65 +6-83 +8-72 +4-39 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/66.txt b/maze/task3/maps/level8/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3ff4792de1cd0db60a87b9b6cfa6f6173a617ae --- /dev/null +++ b/maze/task3/maps/level8/answer/66.txt @@ -0,0 +1,5 @@ +5-32 +8-65 +8-66 +4-82 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/67.txt b/maze/task3/maps/level8/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..db8b024f61003341046a7405585d7bd9ffecfe31 --- /dev/null +++ b/maze/task3/maps/level8/answer/67.txt @@ -0,0 +1,5 @@ +4-42 +8-67 +8-41 +6-66 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/68.txt b/maze/task3/maps/level8/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..545cea08a9d81672e2d62f31c9c016b9898554dd --- /dev/null +++ b/maze/task3/maps/level8/answer/68.txt @@ -0,0 +1,5 @@ +3-64 +8-37 +5-73 +8-68 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/69.txt b/maze/task3/maps/level8/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab84821cfc9d8be969d30e3babe841625e224001 --- /dev/null +++ b/maze/task3/maps/level8/answer/69.txt @@ -0,0 +1,5 @@ +5-37 +8-69 +8-42 +4-33 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/7.txt b/maze/task3/maps/level8/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f64e2c1683ea78f912e222569165f90f47194cc --- /dev/null +++ b/maze/task3/maps/level8/answer/7.txt @@ -0,0 +1,5 @@ +8-84 +3-70 +6-93 +8-7 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/70.txt b/maze/task3/maps/level8/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e0d88d5f297e50b4ba81b36db33f14804165fc6 --- /dev/null +++ b/maze/task3/maps/level8/answer/70.txt @@ -0,0 +1,5 @@ +6-84 +8-70 +8-93 +7-63 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/71.txt b/maze/task3/maps/level8/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..12f849c0a02e5c0a8e9848087897b5f5e2fe4a53 --- /dev/null +++ b/maze/task3/maps/level8/answer/71.txt @@ -0,0 +1,5 @@ +8-71 +3-74 +7-26 +8-40 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/72.txt b/maze/task3/maps/level8/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..d597d0879f230a36a2f8d30d13b82019eeac9dfd --- /dev/null +++ b/maze/task3/maps/level8/answer/72.txt @@ -0,0 +1,5 @@ +8-80 +5-53 +8-72 +3-13 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/73.txt b/maze/task3/maps/level8/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..f408eb8283b113875e8fcc531e3cc76cf36ee507 --- /dev/null +++ b/maze/task3/maps/level8/answer/73.txt @@ -0,0 +1,5 @@ +3-30 +5-79 +8-45 +8-73 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/74.txt b/maze/task3/maps/level8/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a7930f2a4a201e0cf2f5003f28f59811741bc25 --- /dev/null +++ b/maze/task3/maps/level8/answer/74.txt @@ -0,0 +1,5 @@ +8-2 +4-4 +3-42 +8-74 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/75.txt b/maze/task3/maps/level8/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9ca6630dc3eab26a4ebb0e5cfe4a2fbeb9b55d4 --- /dev/null +++ b/maze/task3/maps/level8/answer/75.txt @@ -0,0 +1,5 @@ +4-85 +8-26 +5-78 +8-75 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/76.txt b/maze/task3/maps/level8/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..76233eb42c33b08f1abc2e7efc6f043e60168a5d --- /dev/null +++ b/maze/task3/maps/level8/answer/76.txt @@ -0,0 +1,5 @@ +8-76 +4-4 +8-49 +3-63 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/77.txt b/maze/task3/maps/level8/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a421f54e894cf6be309c72f13bede191035003e --- /dev/null +++ b/maze/task3/maps/level8/answer/77.txt @@ -0,0 +1,5 @@ +5-6 +6-29 +8-42 +8-77 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/78.txt b/maze/task3/maps/level8/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce8859d9b6bcf5adb8d788298ec679706d2f4647 --- /dev/null +++ b/maze/task3/maps/level8/answer/78.txt @@ -0,0 +1,5 @@ +8-78 +7-76 +8-74 +6-26 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/79.txt b/maze/task3/maps/level8/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfb7d2c85dd584592d36577a1e59d8c990b33249 --- /dev/null +++ b/maze/task3/maps/level8/answer/79.txt @@ -0,0 +1,5 @@ +8-66 +6-99 +4-30 +8-79 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/8.txt b/maze/task3/maps/level8/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..afc5148344500a5b9d0eef9fe3712b0aebaff48c --- /dev/null +++ b/maze/task3/maps/level8/answer/8.txt @@ -0,0 +1,5 @@ +3-6 +8-8 +8-61 +5-67 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/80.txt b/maze/task3/maps/level8/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..205d0e598cb21ffce086ddf7bbf61c1da7c6e6f0 --- /dev/null +++ b/maze/task3/maps/level8/answer/80.txt @@ -0,0 +1,5 @@ +8-0 +6-27 +8-80 +7-32 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/81.txt b/maze/task3/maps/level8/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..02d5b49e916cfe142872e3838c53325952be5cc7 --- /dev/null +++ b/maze/task3/maps/level8/answer/81.txt @@ -0,0 +1,5 @@ +5-23 +3-79 +8-32 +8-81 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/82.txt b/maze/task3/maps/level8/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..211f50d83cf55125d3e1f32ee1fed9da5e1c1316 --- /dev/null +++ b/maze/task3/maps/level8/answer/82.txt @@ -0,0 +1,5 @@ +8-6 +6-12 +5-38 +8-82 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/83.txt b/maze/task3/maps/level8/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef7999c0678ab2e8feea20a4ab113420c3625471 --- /dev/null +++ b/maze/task3/maps/level8/answer/83.txt @@ -0,0 +1,5 @@ +5-16 +4-5 +8-87 +8-83 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/84.txt b/maze/task3/maps/level8/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f40ea508d5ccf653a81ae23b92a2e15221fa881 --- /dev/null +++ b/maze/task3/maps/level8/answer/84.txt @@ -0,0 +1,5 @@ +8-48 +3-0 +8-84 +5-93 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/85.txt b/maze/task3/maps/level8/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..8132ac550013a1a5289b2cfd0cd89ff9f5841942 --- /dev/null +++ b/maze/task3/maps/level8/answer/85.txt @@ -0,0 +1,5 @@ +8-85 +8-25 +5-76 +4-89 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/86.txt b/maze/task3/maps/level8/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a553ed21b9c86bcb836247a91e1fcab3acce82 --- /dev/null +++ b/maze/task3/maps/level8/answer/86.txt @@ -0,0 +1,5 @@ +8-86 +8-93 +7-67 +6-72 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/87.txt b/maze/task3/maps/level8/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f66d82761131f1c47afddc25bc84ba5eaa4f1a57 --- /dev/null +++ b/maze/task3/maps/level8/answer/87.txt @@ -0,0 +1,5 @@ +6-85 +3-0 +8-67 +8-87 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/88.txt b/maze/task3/maps/level8/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..36da1ebdafb6a1adb0aeb2353c8f3bc53e7616ad --- /dev/null +++ b/maze/task3/maps/level8/answer/88.txt @@ -0,0 +1,5 @@ +8-50 +4-94 +3-99 +8-88 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/89.txt b/maze/task3/maps/level8/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..eeb59629a060196e03a6ca3cd6134d3d6c2a271c --- /dev/null +++ b/maze/task3/maps/level8/answer/89.txt @@ -0,0 +1,5 @@ +4-11 +7-78 +8-89 +8-57 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/9.txt b/maze/task3/maps/level8/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..5142e3d07c998c791a8d7d0cdda8d8459ee88b55 --- /dev/null +++ b/maze/task3/maps/level8/answer/9.txt @@ -0,0 +1,5 @@ +7-14 +6-43 +8-41 +8-9 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/90.txt b/maze/task3/maps/level8/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..856564cbd3bbe22d8af52d533563817b3872c5b4 --- /dev/null +++ b/maze/task3/maps/level8/answer/90.txt @@ -0,0 +1,5 @@ +8-32 +5-64 +4-76 +8-90 +3 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/91.txt b/maze/task3/maps/level8/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..062fc9fd4ec7b5ba13face1a1f32c40ff03eefc0 --- /dev/null +++ b/maze/task3/maps/level8/answer/91.txt @@ -0,0 +1,5 @@ +5-91 +8-92 +8-91 +7-18 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/92.txt b/maze/task3/maps/level8/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..36f13545ac75ec378f30efb847d438e57d2f28f2 --- /dev/null +++ b/maze/task3/maps/level8/answer/92.txt @@ -0,0 +1,5 @@ +7-64 +8-92 +5-82 +8-28 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/93.txt b/maze/task3/maps/level8/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..db0204dccb767a4665b4a95452048e6f915fdccc --- /dev/null +++ b/maze/task3/maps/level8/answer/93.txt @@ -0,0 +1,5 @@ +8-21 +3-27 +8-93 +7-35 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/94.txt b/maze/task3/maps/level8/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..aebc8a31ada46d65857864d3a333ee91b19f7108 --- /dev/null +++ b/maze/task3/maps/level8/answer/94.txt @@ -0,0 +1,5 @@ +4-77 +8-49 +8-94 +3-28 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/95.txt b/maze/task3/maps/level8/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..b36f2e8692bf165e70197e47437d0096389c49d4 --- /dev/null +++ b/maze/task3/maps/level8/answer/95.txt @@ -0,0 +1,5 @@ +8-95 +8-99 +4-48 +5-5 +0 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/96.txt b/maze/task3/maps/level8/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd175c094a2a04d00c8ff5edd65db6da5b155651 --- /dev/null +++ b/maze/task3/maps/level8/answer/96.txt @@ -0,0 +1,5 @@ +6-38 +7-46 +8-96 +8-51 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/97.txt b/maze/task3/maps/level8/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dd30d378282e83e0738be6d0f596a14499cbce1 --- /dev/null +++ b/maze/task3/maps/level8/answer/97.txt @@ -0,0 +1,5 @@ +4-35 +8-97 +5-33 +8-61 +1 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/98.txt b/maze/task3/maps/level8/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..dca09cf81dca012f0b2706bea6da98d047cf0447 --- /dev/null +++ b/maze/task3/maps/level8/answer/98.txt @@ -0,0 +1,5 @@ +8-9 +5-49 +8-98 +4-7 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/answer/99.txt b/maze/task3/maps/level8/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..39d78967c92ff068cac323a3be1657cf3d0ee2a7 --- /dev/null +++ b/maze/task3/maps/level8/answer/99.txt @@ -0,0 +1,5 @@ +6-58 +8-5 +8-99 +4-39 +2 \ No newline at end of file diff --git a/maze/task3/maps/level8/img/0.png b/maze/task3/maps/level8/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dc2d5e2065e439b3760908bfc2a852ee1601b2f7 --- /dev/null +++ b/maze/task3/maps/level8/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681ad7c23411bf1faf946ae85062aeeb559f5e44c2cba5651fa427f972f6b7e2 +size 17927 diff --git a/maze/task3/maps/level8/img/1.png b/maze/task3/maps/level8/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3698572e5d937e9db755cf6d13d6b8a8b957e752 --- /dev/null +++ b/maze/task3/maps/level8/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e73184153f9d023e2b27f7fba691e6a7ce71023e6bf3d4d06bcb4c1ae84a379 +size 18565 diff --git a/maze/task3/maps/level8/img/10.png b/maze/task3/maps/level8/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1f99a1b5a76d9cde5e6970cba6e033bc19897f18 --- /dev/null +++ b/maze/task3/maps/level8/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58e4918bfc6d0ef3003610ca0662944f3a4649670819022636b69d8ff1e2060 +size 17915 diff --git a/maze/task3/maps/level8/img/11.png b/maze/task3/maps/level8/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..40ab5afe04bb7e9cf54bc58575a36df3d9b5db83 --- /dev/null +++ b/maze/task3/maps/level8/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83e5a8aadbad90c777e3d2c28adb7946f29fa96c3b7b870d13e6336e8e5276a +size 19637 diff --git a/maze/task3/maps/level8/img/12.png b/maze/task3/maps/level8/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ca4eb3be0217febaf91bc083400385806782c651 --- /dev/null +++ b/maze/task3/maps/level8/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad1b9ba61e87839708343a95f60ff62ce676a610a5e81781a85821de3094394 +size 16778 diff --git a/maze/task3/maps/level8/img/13.png b/maze/task3/maps/level8/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..901f58d80e826858bbca79870f3775481b342af3 --- /dev/null +++ b/maze/task3/maps/level8/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c23c4fa8f44abc4556cf126bb76c74e63b03988abfee34eeb540d4a0393d2b +size 16810 diff --git a/maze/task3/maps/level8/img/14.png b/maze/task3/maps/level8/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3d21aab929a24742358501dd0cb99dd28db14188 --- /dev/null +++ b/maze/task3/maps/level8/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945db2b9eb5e9ec748b4f37b82f4c5f0ed64ac11e054ef15a5367846ec07eea5 +size 18691 diff --git a/maze/task3/maps/level8/img/15.png b/maze/task3/maps/level8/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f43aa69f08f078e32fccf9a94453b95aa2c27c04 --- /dev/null +++ b/maze/task3/maps/level8/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c411324e332dd42522e47fac499336ce24dddc16c6cf77c2fa72fcc41f5959e7 +size 18790 diff --git a/maze/task3/maps/level8/img/16.png b/maze/task3/maps/level8/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1c1214bda3bbb412552350122618839fadbd2435 --- /dev/null +++ b/maze/task3/maps/level8/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2f778f2bb7b4f4f7cc22db2478166ca291e4bc5e81e53a0db10b5566e0b770 +size 19627 diff --git a/maze/task3/maps/level8/img/17.png b/maze/task3/maps/level8/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..794dfe26d673d53df2fc2099a383eeb58737f144 --- /dev/null +++ b/maze/task3/maps/level8/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abcf5c12d0e22df1e147e5a056d41dec6eae00554363987eb9a8443648fe9ae +size 18648 diff --git a/maze/task3/maps/level8/img/18.png b/maze/task3/maps/level8/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..6448ad2cde372bc21f11a52319fc4065d00859a8 --- /dev/null +++ b/maze/task3/maps/level8/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13d037323b28288839585127c19da42b5afa95e7a802ec77ff322527c3c6bc9 +size 15891 diff --git a/maze/task3/maps/level8/img/19.png b/maze/task3/maps/level8/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac0b81d475b82cadd25ce6de90e5173ced03cd1 --- /dev/null +++ b/maze/task3/maps/level8/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701ada7573ca467b9f3f6e0f6f1a0dd4520e2200d891322a15a0ee652212a09c +size 19571 diff --git a/maze/task3/maps/level8/img/2.png b/maze/task3/maps/level8/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..20805a40616e5457f2329fcf6814f8397be8427f --- /dev/null +++ b/maze/task3/maps/level8/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d8fa1babc8c3be56bf04f9be34d436a52a3632525ec20d203b560ca9e04c79 +size 18803 diff --git a/maze/task3/maps/level8/img/20.png b/maze/task3/maps/level8/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..96f22bf9d89107f036ba7364c9266b8afc08d9bf --- /dev/null +++ b/maze/task3/maps/level8/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7bd8e24bd7adfdf1bef6fe6ebec840a3210d29edb5bbb1155d3600b9129968 +size 18865 diff --git a/maze/task3/maps/level8/img/21.png b/maze/task3/maps/level8/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..4ec6879f3569a880a795cb1a16f9b5b1384398e3 --- /dev/null +++ b/maze/task3/maps/level8/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c46235f04304dfd29b4c3b6b8067ca84b698b2214de0ec14db3802ae616ab2 +size 17785 diff --git a/maze/task3/maps/level8/img/22.png b/maze/task3/maps/level8/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..a00a86d056b3f97b608203bdccf5f613d1e89b27 --- /dev/null +++ b/maze/task3/maps/level8/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7c37eae6aa7f038bf33fec62b080d2d43745d94c213d7bb6c55db481ffcf25 +size 17780 diff --git a/maze/task3/maps/level8/img/23.png b/maze/task3/maps/level8/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..2da9db6cfac0886876ef8a2d61ce7975c6959a7b --- /dev/null +++ b/maze/task3/maps/level8/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8c88e2a0916ccee47af66c152e58abde796d0e59f4d922be099ad74dd01a78 +size 18629 diff --git a/maze/task3/maps/level8/img/24.png b/maze/task3/maps/level8/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..a1785c9d654de6f5f23152cd6d2e20e9bf79e469 --- /dev/null +++ b/maze/task3/maps/level8/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b2de19905cc0cd1cad05c7ab030708800c1b0aa499808cc8c4ec4dca8b52017 +size 18569 diff --git a/maze/task3/maps/level8/img/25.png b/maze/task3/maps/level8/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..68ae7a4c77dba24a63e1ebe73497ab01b52f6887 --- /dev/null +++ b/maze/task3/maps/level8/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385258333b63bb8e2340f04544c2f50414b4fd6e5a6d8225c25245cfc020cf64 +size 17941 diff --git a/maze/task3/maps/level8/img/26.png b/maze/task3/maps/level8/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..234c5e060b35cc0d7142dcbdb90e4412e3f31810 --- /dev/null +++ b/maze/task3/maps/level8/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80668308ff3957c26ee47a4c61026e264b727709a1eff5d286b41de00912b98a +size 17879 diff --git a/maze/task3/maps/level8/img/27.png b/maze/task3/maps/level8/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..3210a9a4ddfaf5b04a35c6724a3b206c85e30fd8 --- /dev/null +++ b/maze/task3/maps/level8/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8b76e7138f7799a32936e3ae45f7aca759a33406115f8cc1ccb777b8350346 +size 16779 diff --git a/maze/task3/maps/level8/img/28.png b/maze/task3/maps/level8/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..b4391e1cc90ec9cba1975273c5b10161c003212c --- /dev/null +++ b/maze/task3/maps/level8/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3419c21d5174da791eefa034788dae23fb2b9abe699f6cc92a7dc7a9af06fe9b +size 17845 diff --git a/maze/task3/maps/level8/img/29.png b/maze/task3/maps/level8/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..22614abf3fb78ef0ddb9c101edc2e4cfc5d7433f --- /dev/null +++ b/maze/task3/maps/level8/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81a67896e732e18ccbe69e95e99bb65f6bb59323fc9bb46c8e83eb510247ae3 +size 19550 diff --git a/maze/task3/maps/level8/img/3.png b/maze/task3/maps/level8/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..03902673ba5d2ed99f2adf299fa11c1443a38909 --- /dev/null +++ b/maze/task3/maps/level8/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a314eac76e015edf11575e143578dd5ed85a7c6bc8cd73d52f4336de9a0118a +size 18023 diff --git a/maze/task3/maps/level8/img/30.png b/maze/task3/maps/level8/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..efbf9942ad9e2b9d315bd8be6661ba94d6d07670 --- /dev/null +++ b/maze/task3/maps/level8/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3354c04191d98deba38d65efb0ecc5ead29f665d6fb4f8b202817d08d28a6bfa +size 19691 diff --git a/maze/task3/maps/level8/img/31.png b/maze/task3/maps/level8/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..68ef23656d48a941305a8e26e21d08df7ce57465 --- /dev/null +++ b/maze/task3/maps/level8/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b019eb7cfbcb62925a5dd98c2e41f7c11c09ec1761ce257f83813449e9a35a +size 19540 diff --git a/maze/task3/maps/level8/img/32.png b/maze/task3/maps/level8/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..dd115f00253a3d0bab6ee4460e14aefcfce133fa --- /dev/null +++ b/maze/task3/maps/level8/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b8b82978fdf515826fffd5f72c9565bebd2b8bce4e968cf80a6b4b6cf55950 +size 16792 diff --git a/maze/task3/maps/level8/img/33.png b/maze/task3/maps/level8/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..dea54f07654247e6835b05a3ebe49d3ee043992b --- /dev/null +++ b/maze/task3/maps/level8/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46bb34ec60a621a58e7d5417cea97f3940b34128a6ea49b43786ffe489439e8f +size 17899 diff --git a/maze/task3/maps/level8/img/34.png b/maze/task3/maps/level8/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..6e8f1dac026a45ab43063c8e879d7f508ffe99c0 --- /dev/null +++ b/maze/task3/maps/level8/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99061181f7eacff632aaa4b2a3faba566009f678b91c1b241a27ba6c3cf3c80f +size 16859 diff --git a/maze/task3/maps/level8/img/35.png b/maze/task3/maps/level8/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..00d0955fd8325877646a34ba6d7190c3a6721e50 --- /dev/null +++ b/maze/task3/maps/level8/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb68bc29bbf88bcf8eca7e8d80e8f7e81e2de792b5f1a5358ed3304eb12a2bce +size 19627 diff --git a/maze/task3/maps/level8/img/36.png b/maze/task3/maps/level8/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..8c020337b9d33ea012d11fd77d3a0ec7522a7918 --- /dev/null +++ b/maze/task3/maps/level8/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8332ce2e33363147510e600582b4adf5b16bf278a3d08ec64cda2553ccbde3de +size 17894 diff --git a/maze/task3/maps/level8/img/37.png b/maze/task3/maps/level8/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..65d2178b10a0d3eb5516bc657f8574bf488bc0bc --- /dev/null +++ b/maze/task3/maps/level8/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b054b6ccc6f726373ecb401312ace549d85ab275c949461f969800eae41803 +size 18664 diff --git a/maze/task3/maps/level8/img/38.png b/maze/task3/maps/level8/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..9d9dd74966c078a40aa321ba2aa769d03d5da6cb --- /dev/null +++ b/maze/task3/maps/level8/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c865c3a2e8afb455322e965c4879b1caf573deae644a1fe7481674a5e77def +size 17753 diff --git a/maze/task3/maps/level8/img/39.png b/maze/task3/maps/level8/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c3bc9349f2fbd5e89bec6969e1208b18f43e90 --- /dev/null +++ b/maze/task3/maps/level8/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6d6d7cadb8d4c36e63d22a9753de2f6778a4c54224d9c84ce8467d530890e7 +size 16905 diff --git a/maze/task3/maps/level8/img/4.png b/maze/task3/maps/level8/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..84dc57fa7131fefa912d865cc59c5dd8bc55c5a5 --- /dev/null +++ b/maze/task3/maps/level8/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e84a678942465fcb643477658c9ee06d624f00ae99830a7e70937d19944d03e +size 18791 diff --git a/maze/task3/maps/level8/img/40.png b/maze/task3/maps/level8/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..1550c2298eb3431b0e4e575e23152d764ee48b22 --- /dev/null +++ b/maze/task3/maps/level8/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ee042957a624567b9d70665e62536fb8155b51b76e769e66adc2ac43c8596e1 +size 18636 diff --git a/maze/task3/maps/level8/img/41.png b/maze/task3/maps/level8/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..c979d93f1ec3840e105d6f0edba50e33869551f6 --- /dev/null +++ b/maze/task3/maps/level8/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bf0277140f0125e4171af1d46b71ec2dd9dbc174b6e56986337e18446734ab +size 17737 diff --git a/maze/task3/maps/level8/img/42.png b/maze/task3/maps/level8/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..802af52eacf356257d7aad774fe22026f02ea322 --- /dev/null +++ b/maze/task3/maps/level8/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54105bd9af61a318ad2a3339a46687145c08a65dc54b237aa9a7ca73bcae726b +size 18858 diff --git a/maze/task3/maps/level8/img/43.png b/maze/task3/maps/level8/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..095f1868131833534289025d3bbb51b39e827b87 --- /dev/null +++ b/maze/task3/maps/level8/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7899bc5987c4fee5397059aa5249a7a6bbc185939d0574220d4ce59eddc79359 +size 17702 diff --git a/maze/task3/maps/level8/img/44.png b/maze/task3/maps/level8/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..1368a10cf3534bde6bcf101afb2ff996f028e90b --- /dev/null +++ b/maze/task3/maps/level8/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a27953b0a215c20c36ed9aee700535f4f716ec7250c39453286cc2f4753582ae +size 18634 diff --git a/maze/task3/maps/level8/img/45.png b/maze/task3/maps/level8/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..3884ef2628c729b6e4e151de6f4fc4c97ab62983 --- /dev/null +++ b/maze/task3/maps/level8/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48733a4b86a0e8642af2d1ecbaddd32ef1d7d5648b9ea0a1fefcf249c0e50a35 +size 17637 diff --git a/maze/task3/maps/level8/img/46.png b/maze/task3/maps/level8/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..208a99108bcd16d323d7da9bc4300c6c9af287fd --- /dev/null +++ b/maze/task3/maps/level8/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da207d136b088051f44a057563d4cd11b4e786eb4c1bba218403886dcb2f781 +size 17732 diff --git a/maze/task3/maps/level8/img/47.png b/maze/task3/maps/level8/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..285ae9513fd3130149c431e21d1aaa20176a528f --- /dev/null +++ b/maze/task3/maps/level8/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0609fcb166afbf7a5b95643f60c02190458403453e009b6e72df6f4e2436f77e +size 18708 diff --git a/maze/task3/maps/level8/img/48.png b/maze/task3/maps/level8/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..b18c5b1cc221cf305613a24c45967cec674cc733 --- /dev/null +++ b/maze/task3/maps/level8/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a04db77ebb28dc02d947c0f3a847cf7ec5f03b0cc4b5306a64b2edc00feef3dc +size 16842 diff --git a/maze/task3/maps/level8/img/49.png b/maze/task3/maps/level8/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..22028d664cc98b8f82c12d7e6f6d13fa8b226e5b --- /dev/null +++ b/maze/task3/maps/level8/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87297e71c2ae0002fe09b6977dd548ecbb910c547146f374e5817347620c46d7 +size 16993 diff --git a/maze/task3/maps/level8/img/5.png b/maze/task3/maps/level8/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..98dc449fceac63bec948eb26800d79a6934e2f37 --- /dev/null +++ b/maze/task3/maps/level8/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55119da1e56efb846194b295292772a2aef9ee8cf3e4d1302f1d3dc48adaf13d +size 18613 diff --git a/maze/task3/maps/level8/img/50.png b/maze/task3/maps/level8/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..1f432b116c97e3c4df75fb5a45f998b5a488fca8 --- /dev/null +++ b/maze/task3/maps/level8/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11037638ae2e192cd9405b8ff937edae0b40c47f3f8eb8300bbac5410dcfb640 +size 18716 diff --git a/maze/task3/maps/level8/img/51.png b/maze/task3/maps/level8/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..f97f4d4ab9758e8787479ee9e4d3e7c65b2d0b30 --- /dev/null +++ b/maze/task3/maps/level8/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20159c1f05f6d0823c6a99b4dcc7f18700ed5b5727a2ea6ac64f2c902b956385 +size 18831 diff --git a/maze/task3/maps/level8/img/52.png b/maze/task3/maps/level8/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..ab90e754c48d8fdc96597b75a26ade38cff8f062 --- /dev/null +++ b/maze/task3/maps/level8/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a1a0298aaa8e7d6d230d6156c0b5b6f9f2fae01c753f0cba4e15bb3143a792 +size 19582 diff --git a/maze/task3/maps/level8/img/53.png b/maze/task3/maps/level8/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..07459fe91084a54fbf633b6587fbc65bfc463932 --- /dev/null +++ b/maze/task3/maps/level8/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260fa96402d5b4bbeff16a5947f00d5e8359d2bde16c19cc433573d2d6e71322 +size 19689 diff --git a/maze/task3/maps/level8/img/54.png b/maze/task3/maps/level8/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..eaed6e9f3d5e10281116193b67db7e100c37e2e5 --- /dev/null +++ b/maze/task3/maps/level8/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847d616194063c9c3feb35f7f37cd6fce1cd057aabafcd03bd5097476f4494ea +size 19602 diff --git a/maze/task3/maps/level8/img/55.png b/maze/task3/maps/level8/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..94542f9a36d78c3f09e6a37d04e30559481c4e6f --- /dev/null +++ b/maze/task3/maps/level8/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd5413e189a3eca044786d733f3363ab52b4b3dd00f0143b916ba1613029f74 +size 18726 diff --git a/maze/task3/maps/level8/img/56.png b/maze/task3/maps/level8/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..21a32de04fc0aae5ccbfd793f71ff08369c18fa4 --- /dev/null +++ b/maze/task3/maps/level8/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff245f941c9444696462a595c268d67523046de02b73c6a4675d971f9012eb9 +size 19685 diff --git a/maze/task3/maps/level8/img/57.png b/maze/task3/maps/level8/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..2c1c1a2dbf3ce8db96c82b478843be150944ad8e --- /dev/null +++ b/maze/task3/maps/level8/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea9ebf242680be471785311043ba652655f96e0ca181ecba183ebc690a01801 +size 17768 diff --git a/maze/task3/maps/level8/img/58.png b/maze/task3/maps/level8/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..264aeb65bc1b9c7d2128215385f4cd92c97a770c --- /dev/null +++ b/maze/task3/maps/level8/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a8558c63524f1efd18a16bb595ce8e21a3f2473f890e1b48b5c4ca20c4f238 +size 18751 diff --git a/maze/task3/maps/level8/img/59.png b/maze/task3/maps/level8/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..6920305444ff56d7ac78ba5c469735866be7a009 --- /dev/null +++ b/maze/task3/maps/level8/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a11afde854931813174c07f848c32bac8faee03028886e0a4a2b274e0f03745 +size 17587 diff --git a/maze/task3/maps/level8/img/6.png b/maze/task3/maps/level8/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b476a87e8f861e1be069f0ab0e9be23cdc2e6d5b --- /dev/null +++ b/maze/task3/maps/level8/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd14257ada4b7b8d158b6055be7f6a20b4914d3e4721081e138b8f1ac52d8f08 +size 19836 diff --git a/maze/task3/maps/level8/img/60.png b/maze/task3/maps/level8/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..eba869229a7edccc691357f159d55b1beb018f9b --- /dev/null +++ b/maze/task3/maps/level8/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8feea8129af273c3243c30d340ad604f8d7b011bd7253d27bfcae9a04d87ffc +size 17745 diff --git a/maze/task3/maps/level8/img/61.png b/maze/task3/maps/level8/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..56d7b9a7db856a2d22225548c4f672c702321f01 --- /dev/null +++ b/maze/task3/maps/level8/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd0f8bf6475c3e9a92285f827a3582644e5fa378bf862105e2063b49b68bb79 +size 17788 diff --git a/maze/task3/maps/level8/img/62.png b/maze/task3/maps/level8/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..2f3b2de3fa41b5cb73f80b552dfee96df35a6fea --- /dev/null +++ b/maze/task3/maps/level8/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a0e157431a787003deb6501a03da44abfb46b2652f9711dc611b0cb95acecb +size 19706 diff --git a/maze/task3/maps/level8/img/63.png b/maze/task3/maps/level8/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..b32513bb15fa8f42c699aca0014b0e076eaf8472 --- /dev/null +++ b/maze/task3/maps/level8/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7840449e9040dfa3b5a3d8f1cb821c9c7adfe148f0cc33445a7372d18f1ecf +size 16793 diff --git a/maze/task3/maps/level8/img/64.png b/maze/task3/maps/level8/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..43cf534c79249808d634539211a9bc8d6319d2f0 --- /dev/null +++ b/maze/task3/maps/level8/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8b27aba132c7977b7c96d029502ed49342b45cc5017c1aecd2450c70cded66 +size 16788 diff --git a/maze/task3/maps/level8/img/65.png b/maze/task3/maps/level8/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..547bd7afc5df4fe7049a8d8a464ecf6de384f4c5 --- /dev/null +++ b/maze/task3/maps/level8/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570ba937607f86eccfe05d90d2e65f53ce44eb961f54164db7ed77256d27ec8e +size 17007 diff --git a/maze/task3/maps/level8/img/66.png b/maze/task3/maps/level8/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..3d37a26963f2ba8300d5855e555edd5f2d5d805b --- /dev/null +++ b/maze/task3/maps/level8/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8227afc97a1baca2569cff85b781d90c810c3271ebf08b719c1a26baf86acb97 +size 18922 diff --git a/maze/task3/maps/level8/img/67.png b/maze/task3/maps/level8/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..ea92f85c469eb04254866c8768e8985aa27aff97 --- /dev/null +++ b/maze/task3/maps/level8/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b6b77db6d1e89a6ee7f7cf67b2220cf3d2a19930c2f0d2dcd067217140c8a6 +size 19627 diff --git a/maze/task3/maps/level8/img/68.png b/maze/task3/maps/level8/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..5666d3cd9d5cc1d8ded6876e55cd4cabd71f8a10 --- /dev/null +++ b/maze/task3/maps/level8/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a6b4c47b3de2404e1cf8359133c31ca44e3dbc409ff03dce7c98442149302d +size 19423 diff --git a/maze/task3/maps/level8/img/69.png b/maze/task3/maps/level8/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..114f6958223ab4e28dfd8d59367e4504eebd4bbf --- /dev/null +++ b/maze/task3/maps/level8/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b0409b9e447202f3ff6da0d89c8afe94bc169d87f99c9cfd4236efd9b3f6cc +size 18037 diff --git a/maze/task3/maps/level8/img/7.png b/maze/task3/maps/level8/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f72ab06d175db6011aeef26e24f4ac8ed5063a12 --- /dev/null +++ b/maze/task3/maps/level8/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ddcf453b7cc8d0dd80d7deb275f081feb90aab8f441f078f7ddccf22a95af2 +size 17787 diff --git a/maze/task3/maps/level8/img/70.png b/maze/task3/maps/level8/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..0b3b1b50b2bec64b5814291bde8901a9b5ad82d8 --- /dev/null +++ b/maze/task3/maps/level8/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9b4a74dad5a294638b394c36f8ce18d0493011e3065bb3410f6359e243a386 +size 17881 diff --git a/maze/task3/maps/level8/img/71.png b/maze/task3/maps/level8/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..0c05efe3b7c008aeb82f997d0383559dab41211e --- /dev/null +++ b/maze/task3/maps/level8/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787a25ad0b24d39f6f48f1116242b34edb12441e00e90058dde0246dc4fe6692 +size 18873 diff --git a/maze/task3/maps/level8/img/72.png b/maze/task3/maps/level8/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..636fe12c8af7bafcf6de4f963423ba524c3944c8 --- /dev/null +++ b/maze/task3/maps/level8/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da93dbe0354ea0bd83ac8eed98ebd1a43bd569c9540d347c6ba61c0627f36eb +size 17783 diff --git a/maze/task3/maps/level8/img/73.png b/maze/task3/maps/level8/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..5a78a4b4afb52ed6a485487fadfcd9ca4a8a855a --- /dev/null +++ b/maze/task3/maps/level8/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1971b9440337eb1b7b6e96c7ebb7167ca54ca8714b8de458f5e3c8d83c2eacd8 +size 16840 diff --git a/maze/task3/maps/level8/img/74.png b/maze/task3/maps/level8/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..6f70c245b1e223b29a5ca1c9c43130bc08af3c20 --- /dev/null +++ b/maze/task3/maps/level8/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc32844e299f20b3f901002184f30b7e2e7bede9b6575d7b4f0558c834ecf19c +size 18845 diff --git a/maze/task3/maps/level8/img/75.png b/maze/task3/maps/level8/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..d907c9ae85afa045dceb08b0136077e373a3c305 --- /dev/null +++ b/maze/task3/maps/level8/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82aa588d3a29a84a4623635237f711d541f52255a2cc3b09138bf81bfa4b0377 +size 17852 diff --git a/maze/task3/maps/level8/img/76.png b/maze/task3/maps/level8/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..db860eabb44de2b209ea3a7e95d00d9da05d5b57 --- /dev/null +++ b/maze/task3/maps/level8/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d82a8cd4e3a9af30e16119c149a333033f7089348d0e6bd91a18056b2164dc2 +size 19164 diff --git a/maze/task3/maps/level8/img/77.png b/maze/task3/maps/level8/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..f86c4ea8675dd51a44627e3978ec6f14e82ca562 --- /dev/null +++ b/maze/task3/maps/level8/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08db4bf4325c26f228df3b344e4e0e28fe65a823dba07e3a03965c8619aa9637 +size 19576 diff --git a/maze/task3/maps/level8/img/78.png b/maze/task3/maps/level8/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..7c7b556bd5a323d4547b9e714a14ca2b42c45c1d --- /dev/null +++ b/maze/task3/maps/level8/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ba708ead386a77ba0826ef25c8d139f89fa5b3f12eb4f3fe8bd072c2ca077 +size 16797 diff --git a/maze/task3/maps/level8/img/79.png b/maze/task3/maps/level8/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..d55bdda293cfe83cb15d831479e4ebd78066a770 --- /dev/null +++ b/maze/task3/maps/level8/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308d15f69f93a8ff4c1e2cd5b4df675fa167f25af70f113f75f50a84653f059c +size 18638 diff --git a/maze/task3/maps/level8/img/8.png b/maze/task3/maps/level8/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..41f4ce61961caacc51f3359192abed60609d4c7d --- /dev/null +++ b/maze/task3/maps/level8/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dcb999d5852bf4771ef543f4263476f2cb3c06ec051928bc355bdbffd2745b3 +size 16757 diff --git a/maze/task3/maps/level8/img/80.png b/maze/task3/maps/level8/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..85fdd47dcff6ac2eab20e242a8c056d272f857b4 --- /dev/null +++ b/maze/task3/maps/level8/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a99cf5dafe1e7b1834751ea28c8a48cfded232aa1205f520dbebfd3a6279cb3 +size 18685 diff --git a/maze/task3/maps/level8/img/81.png b/maze/task3/maps/level8/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..3f23aca01092c314b3205b1085b4c759060d7c96 --- /dev/null +++ b/maze/task3/maps/level8/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2cdeecb514a2895878ab47291a7ee1bfbbed5687fad1bf360b7d162ce52d6c +size 17884 diff --git a/maze/task3/maps/level8/img/82.png b/maze/task3/maps/level8/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..729821acb44941102f7e586a25ded86c1776dba7 --- /dev/null +++ b/maze/task3/maps/level8/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13e1c969db6f58a8293c964be47eb1a6eb26a1baa7cd8e28c9c743367de23a6 +size 18781 diff --git a/maze/task3/maps/level8/img/83.png b/maze/task3/maps/level8/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..dce69a7284da2abdeacd8f0cb65752368818b369 --- /dev/null +++ b/maze/task3/maps/level8/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25ba75a1cb200a569f34215b08ca6191a8ab129e9e6be7da252e24c333d8bd4 +size 18612 diff --git a/maze/task3/maps/level8/img/84.png b/maze/task3/maps/level8/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..7058efa5c3c100a0f17b9c8ab0c8785369f4d5de --- /dev/null +++ b/maze/task3/maps/level8/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e893344141c5ecb6b9e46644ca19d35ac441b3dbf0398fe1d8bb3d2c8d60f0d4 +size 18739 diff --git a/maze/task3/maps/level8/img/85.png b/maze/task3/maps/level8/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..c992e8abd629bcb4593bd4d2a6947fa423087d8b --- /dev/null +++ b/maze/task3/maps/level8/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dad47fe91abf2da36d065d893ffdd24858ff915e64de8bc0aa20261ed508e93 +size 17109 diff --git a/maze/task3/maps/level8/img/86.png b/maze/task3/maps/level8/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..fe716c60315cd70d2cad845fc223135d6765bd0c --- /dev/null +++ b/maze/task3/maps/level8/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdb273c3f7574e21ddd1df8603945836010b818a726bb715bc45290734b4ff8 +size 18708 diff --git a/maze/task3/maps/level8/img/87.png b/maze/task3/maps/level8/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..6b8745ac906d3553301edfa84b312df796e48bd1 --- /dev/null +++ b/maze/task3/maps/level8/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973839c531def7ad1eb261660d86971c3adead999a2faef31a0fa881712bed97 +size 18610 diff --git a/maze/task3/maps/level8/img/88.png b/maze/task3/maps/level8/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..86c9ea49c728ffa54ad84b33d78e321076b134f3 --- /dev/null +++ b/maze/task3/maps/level8/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2285035728e567d7cfb3fa6ef2e5baa5596aaae38b675635ead52ea9aa39ec4 +size 17914 diff --git a/maze/task3/maps/level8/img/89.png b/maze/task3/maps/level8/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..c56e477e08ad778044a9c5353b283d0ecae62dec --- /dev/null +++ b/maze/task3/maps/level8/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00547202b522c513eb5012589eebe2861c2fb0f11b9dbdc4f08320b1f76158e7 +size 17869 diff --git a/maze/task3/maps/level8/img/9.png b/maze/task3/maps/level8/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ca66f9d0b956005d9deafef2c15b08014c8f8a4a --- /dev/null +++ b/maze/task3/maps/level8/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2ee0d4ca489ecfcc47effd4e137bed71bd6c29dd514fca1244ad802033b578 +size 18615 diff --git a/maze/task3/maps/level8/img/90.png b/maze/task3/maps/level8/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac7ccbf0ab8d96187a39ccb46021e8317486da5 --- /dev/null +++ b/maze/task3/maps/level8/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d30ffcde1c157ce971bbb1913295497727092c8eabfb137110b8bc5d572b94 +size 17820 diff --git a/maze/task3/maps/level8/img/91.png b/maze/task3/maps/level8/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..c3301a7935c67a4c939aaba44f1570344307c940 --- /dev/null +++ b/maze/task3/maps/level8/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49055fd559ba684762bf0d6a8162d6b10c762057c6335988c302bf5738513e15 +size 17755 diff --git a/maze/task3/maps/level8/img/92.png b/maze/task3/maps/level8/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..6d5708285cab7405bf5504cc4ca99ae8fa14e4a0 --- /dev/null +++ b/maze/task3/maps/level8/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5ac6ca877d4d06a0197a768d011e68b8264aa11a8d03399b0a159080d4d893 +size 18769 diff --git a/maze/task3/maps/level8/img/93.png b/maze/task3/maps/level8/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..157427830c176ffa3cb675825bda01b4a19f0c00 --- /dev/null +++ b/maze/task3/maps/level8/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2662f3e314b3d8abc22615aa45f9ac722255bc0aab40f345cdc341dd1cffbe +size 18724 diff --git a/maze/task3/maps/level8/img/94.png b/maze/task3/maps/level8/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..0df761883c14a4e28121ab9baf5125f3235dfd6c --- /dev/null +++ b/maze/task3/maps/level8/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9d91ed3104bcd9d8a26ccd79d8da2058d60bf731d3e86a4e748eda4f27918db +size 16930 diff --git a/maze/task3/maps/level8/img/95.png b/maze/task3/maps/level8/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..3a02502ec36854319e67abe93e82d86907aebf44 --- /dev/null +++ b/maze/task3/maps/level8/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e98d0ba1b283a33bbf8ec5088d09e84a59eb45c172a2b0ce518233a4d5589ca +size 19622 diff --git a/maze/task3/maps/level8/img/96.png b/maze/task3/maps/level8/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..ab84e8103a465f803975dcff6822f997d234a3b6 --- /dev/null +++ b/maze/task3/maps/level8/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209161fa2ab0a89538fa690b095ce5dd0506690f6f1122207e15e2a3efc4f2ec +size 18798 diff --git a/maze/task3/maps/level8/img/97.png b/maze/task3/maps/level8/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..d4e8c8979cc54f4390dd6a1c3d1670882c36d9b4 --- /dev/null +++ b/maze/task3/maps/level8/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9f7e0b69a389eec5692585882268e1a8b285e50805a2efa899ef72ecd38b92 +size 19877 diff --git a/maze/task3/maps/level8/img/98.png b/maze/task3/maps/level8/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..de6caae508393409406c601cd5f403aa4f6148bb --- /dev/null +++ b/maze/task3/maps/level8/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039f87ff576798a523081cc824bd93bd27d1a26a72ca9ef82fae9568f958f0b9 +size 17976 diff --git a/maze/task3/maps/level8/img/99.png b/maze/task3/maps/level8/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..bacebac2a699f713248cc0d0edae76ec8668c670 --- /dev/null +++ b/maze/task3/maps/level8/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f30fd058068421b7b1d78d24762afce32703c469b93777b0a5513e944c2110 +size 18059 diff --git a/maze/task3/maps/level8/question/0.txt b/maze/task3/maps/level8/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b46146dda4cd198449e486c6d60c718780f5f8f --- /dev/null +++ b/maze/task3/maps/level8/question/0.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | * | +| Row 7 | _ | _ | _ | # | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | # | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/1.txt b/maze/task3/maps/level8/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3e5ea94e131f0f77959fc2949200605cfda166b --- /dev/null +++ b/maze/task3/maps/level8/question/1.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | * | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | @ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | # | _ | # | _ | # | # | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | _ | @ | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | * | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | @ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/10.txt b/maze/task3/maps/level8/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d39c5f8f6a40c4914e6d729e4f7048b3fc665b --- /dev/null +++ b/maze/task3/maps/level8/question/10.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | _ | +| Row 7 | @ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | # | _ | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | * | +| Row 6 | _ | # | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | _ | # | diff --git a/maze/task3/maps/level8/question/11.txt b/maze/task3/maps/level8/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d897a0a8e7c9ca802c0f98f422245435e018d6b --- /dev/null +++ b/maze/task3/maps/level8/question/11.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | @ | # | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | _ | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | * | +| Row 7 | _ | _ | _ | # | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/12.txt b/maze/task3/maps/level8/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..b09dac8420fe8c70017b3177b27c48d795e8381e --- /dev/null +++ b/maze/task3/maps/level8/question/12.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | * | +| Row 2 | @ | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | # | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | @ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/13.txt b/maze/task3/maps/level8/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..aeb5d03de5b24cb11441a2ce00ee09218ca8f46f --- /dev/null +++ b/maze/task3/maps/level8/question/13.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | * | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | @ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | # | +| Row 7 | * | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/14.txt b/maze/task3/maps/level8/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..82b3131c052571e221ef54d76b246091cec46d93 --- /dev/null +++ b/maze/task3/maps/level8/question/14.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | * | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | # | _ | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | @ | # | _ | +| Row 8 | _ | _ | # | _ | # | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/15.txt b/maze/task3/maps/level8/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d35ed69de6254747aea3eb448f8bf7a7f8301ed --- /dev/null +++ b/maze/task3/maps/level8/question/15.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | @ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | # | +| Row 7 | # | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/16.txt b/maze/task3/maps/level8/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ee3e3cb60613d32d5e2e616f7409cc7ba2c083d --- /dev/null +++ b/maze/task3/maps/level8/question/16.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | _ | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | @ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | # | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/17.txt b/maze/task3/maps/level8/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..78f264ad131e1e15c6bd7c76a9997c6eb578a092 --- /dev/null +++ b/maze/task3/maps/level8/question/17.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | # | _ | @ | +| Row 4 | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | # | * | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | * | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | @ | _ | +| Row 7 | # | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/18.txt b/maze/task3/maps/level8/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..535d4e79a8fde3171adb71b30f7fa3275c0ca777 --- /dev/null +++ b/maze/task3/maps/level8/question/18.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | * | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | _ | # | _ | # | +| Row 8 | _ | # | _ | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/19.txt b/maze/task3/maps/level8/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..7518755f82fd02f86958a28fbc331bc81a6b6fe6 --- /dev/null +++ b/maze/task3/maps/level8/question/19.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | @ | +| Row 3 | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | * | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | @ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | # | +| Row 7 | * | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/2.txt b/maze/task3/maps/level8/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb98acf8704aa8b4d0ff0795062af337346aa51e --- /dev/null +++ b/maze/task3/maps/level8/question/2.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | # | +| Row 5 | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | @ | # | # | _ | _ | _ | # | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | # | _ | _ | # | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | * | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | @ | diff --git a/maze/task3/maps/level8/question/20.txt b/maze/task3/maps/level8/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..17869b60362537570aaacb201e873513e204a760 --- /dev/null +++ b/maze/task3/maps/level8/question/20.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | # | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | # | +| Row 3 | _ | * | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | # | _ | _ | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | diff --git a/maze/task3/maps/level8/question/21.txt b/maze/task3/maps/level8/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ccd8a68b2a96e5e73f9af944a27c98c871e45e6 --- /dev/null +++ b/maze/task3/maps/level8/question/21.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | # | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | # | _ | +| Row 2 | _ | # | _ | * | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | # | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task3/maps/level8/question/22.txt b/maze/task3/maps/level8/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..d197ae48d4664b046a35c4c4124755c4bf2f3d3d --- /dev/null +++ b/maze/task3/maps/level8/question/22.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | # | * | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | @ | _ | # | # | _ | _ | _ | _ | +| Row 6 | * | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/23.txt b/maze/task3/maps/level8/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..b20cd178f991f00641ce17de144a0e474a0470ad --- /dev/null +++ b/maze/task3/maps/level8/question/23.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | * | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | * | @ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | # | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/24.txt b/maze/task3/maps/level8/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..690a00908e6a335d5b5eba0d1ddc81558a94d38a --- /dev/null +++ b/maze/task3/maps/level8/question/24.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | # | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | @ | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | * | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | @ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/25.txt b/maze/task3/maps/level8/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..554d03343e22b6ccf6c5adfc1994afcf5f46ed90 --- /dev/null +++ b/maze/task3/maps/level8/question/25.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | @ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | # | _ | * | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | @ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | # | _ | # | _ | # | # | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task3/maps/level8/question/26.txt b/maze/task3/maps/level8/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..c92ce991e12eac6f07401d2413f26782e2e4761d --- /dev/null +++ b/maze/task3/maps/level8/question/26.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | * | _ | +| Row 5 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | # | +| Row 2 | @ | _ | _ | * | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | _ | # | _ | # | # | +| Row 5 | _ | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task3/maps/level8/question/27.txt b/maze/task3/maps/level8/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..469a5b8a6f3bc9376a9f90de08bd49dfde0a9f29 --- /dev/null +++ b/maze/task3/maps/level8/question/27.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | @ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | # | _ | # | _ | # | # | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/28.txt b/maze/task3/maps/level8/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..fabf104b857183c63e398d803d89c7520fe8e5a5 --- /dev/null +++ b/maze/task3/maps/level8/question/28.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | @ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | _ | # | _ | # | +| Row 8 | _ | # | _ | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/29.txt b/maze/task3/maps/level8/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..f835962302729dd1a103af4446c0d9f4399bf8ca --- /dev/null +++ b/maze/task3/maps/level8/question/29.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | @ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | * | _ | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | * | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task3/maps/level8/question/3.txt b/maze/task3/maps/level8/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e9781c62a6bbcd43267ea2479f4a86b491a9d98 --- /dev/null +++ b/maze/task3/maps/level8/question/3.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | * | @ | # | _ | +| Row 6 | # | _ | # | _ | _ | _ | # | +| Row 7 | # | # | # | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | # | _ | _ | # | +| Row 7 | _ | # | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | * | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | * | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | # | _ | +| Row 5 | # | # | _ | _ | # | _ | +| Row 6 | # | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/30.txt b/maze/task3/maps/level8/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..377f6c8c7f8f80459fc202036617be4e9b6d1c8f --- /dev/null +++ b/maze/task3/maps/level8/question/30.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | * | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | @ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | # | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | @ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task3/maps/level8/question/31.txt b/maze/task3/maps/level8/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f69bcc74a4b77132deb50ef26b85d2800391ae92 --- /dev/null +++ b/maze/task3/maps/level8/question/31.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | # | _ | +| Row 5 | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | # | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | # | _ | _ | * | _ | _ | diff --git a/maze/task3/maps/level8/question/32.txt b/maze/task3/maps/level8/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7f5e9185c27ffb49dc926528b4c4e7aa5d9960d --- /dev/null +++ b/maze/task3/maps/level8/question/32.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | * | +| Row 6 | _ | # | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | @ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | @ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/33.txt b/maze/task3/maps/level8/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcb31a1ff08c2a10bb53c5cd843f3ea0e416146c --- /dev/null +++ b/maze/task3/maps/level8/question/33.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | * | # | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | # | # | +| Row 3 | # | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | # | _ | +| Row 7 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | @ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/34.txt b/maze/task3/maps/level8/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cb0d215edaa22a23ec3cccf8734adc0d9821e40 --- /dev/null +++ b/maze/task3/maps/level8/question/34.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | @ | # | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | # | _ | # | _ | # | +| Row 8 | # | _ | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | @ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | # | +| Row 3 | # | _ | # | _ | _ | _ | +| Row 4 | * | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/35.txt b/maze/task3/maps/level8/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ccfc5beffef78d3368a9f7696499e73a5e15058 --- /dev/null +++ b/maze/task3/maps/level8/question/35.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | @ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | # | # | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | # | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | * | # | +| Row 3 | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | @ | # | * | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | +| Row 5 | _ | # | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/36.txt b/maze/task3/maps/level8/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..54be0960b04b03162a0a41d354f4e5dd8170e779 --- /dev/null +++ b/maze/task3/maps/level8/question/36.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | # | @ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | @ | # | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | _ | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/37.txt b/maze/task3/maps/level8/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..57c816c2966c3e1b260310a640445cfef56a7013 --- /dev/null +++ b/maze/task3/maps/level8/question/37.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | _ | # | _ | # | +| Row 8 | _ | # | _ | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | # | _ | _ | # | _ | +| Row 7 | @ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | # | * | @ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/38.txt b/maze/task3/maps/level8/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..f892260195b17f96011485fe851e3bd9f583e1e1 --- /dev/null +++ b/maze/task3/maps/level8/question/38.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | # | +| Row 3 | @ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | _ | * | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/39.txt b/maze/task3/maps/level8/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..26d018845874f78b321397dcadc97a040211fb42 --- /dev/null +++ b/maze/task3/maps/level8/question/39.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | @ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | # | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/4.txt b/maze/task3/maps/level8/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b58b138e9acf21ac401fbff3476bdeeb3f5ffded --- /dev/null +++ b/maze/task3/maps/level8/question/4.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | # | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | * | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/40.txt b/maze/task3/maps/level8/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..170cadce6a64bbef29c8118b66fc5d92018bd10a --- /dev/null +++ b/maze/task3/maps/level8/question/40.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | * | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | # | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | # | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | # | _ | _ | * | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/41.txt b/maze/task3/maps/level8/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..06d2cbdb8323d9924caba11c69d83015e2f0344b --- /dev/null +++ b/maze/task3/maps/level8/question/41.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | # | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | * | +| Row 7 | _ | _ | _ | # | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/42.txt b/maze/task3/maps/level8/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cc41e2802bbf4c6169a14a9638541a35c83fcf6 --- /dev/null +++ b/maze/task3/maps/level8/question/42.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | * | # | +| Row 3 | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | * | _ | _ | # | # | _ | _ | +| Row 8 | # | _ | # | # | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | @ | _ | # | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | # | _ | _ | * | _ | # | _ | _ | +| Row 8 | _ | # | # | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task3/maps/level8/question/43.txt b/maze/task3/maps/level8/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..30d9f48c9417aee170d9542b94df3c32bf7f02fb --- /dev/null +++ b/maze/task3/maps/level8/question/43.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | @ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | * | +| Row 2 | @ | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/44.txt b/maze/task3/maps/level8/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..650b73d6cddf61b12e5190b243f2e14eefaf6b66 --- /dev/null +++ b/maze/task3/maps/level8/question/44.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | * | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | * | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | # | +| Row 2 | @ | _ | _ | * | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | _ | # | _ | # | # | +| Row 5 | _ | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | # | _ | _ | +| Row 3 | _ | # | * | diff --git a/maze/task3/maps/level8/question/45.txt b/maze/task3/maps/level8/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..535ef105dcb5c2e153287de9ddf3653b97c86f65 --- /dev/null +++ b/maze/task3/maps/level8/question/45.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | _ | @ | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | # | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | _ | _ | +| Row 7 | _ | _ | @ | _ | # | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | @ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/46.txt b/maze/task3/maps/level8/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7dbd0414425ad725dec68159dffbb0a929d71c7 --- /dev/null +++ b/maze/task3/maps/level8/question/46.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | * | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | # | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | @ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | # | # | # | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | * | _ | _ | @ | diff --git a/maze/task3/maps/level8/question/47.txt b/maze/task3/maps/level8/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd74e453065b02b74085923048b4532275069532 --- /dev/null +++ b/maze/task3/maps/level8/question/47.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | @ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | @ | _ | # | # | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | @ | # | _ | _ | # | +| Row 8 | _ | _ | # | _ | * | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/48.txt b/maze/task3/maps/level8/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1985d531733a31cde37629fc9d34bfb65c8d3f2 --- /dev/null +++ b/maze/task3/maps/level8/question/48.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | # | * | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | * | # | _ | # | +| Row 2 | _ | # | _ | # | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | @ | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | # | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | # | +| Row 8 | # | _ | _ | _ | # | # | # | _ | diff --git a/maze/task3/maps/level8/question/49.txt b/maze/task3/maps/level8/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..db871b81cd3a6b0757bc08f818edf8f9cb7bcf95 --- /dev/null +++ b/maze/task3/maps/level8/question/49.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | * | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/5.txt b/maze/task3/maps/level8/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7b323d700037ba31c8d97bc2cb919c966637e83 --- /dev/null +++ b/maze/task3/maps/level8/question/5.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | * | # | +| Row 2 | _ | # | _ | _ | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/50.txt b/maze/task3/maps/level8/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0f09d68c3c830a4df74c1f6defc1ff71322d87d --- /dev/null +++ b/maze/task3/maps/level8/question/50.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | @ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/51.txt b/maze/task3/maps/level8/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc8e16964ae1da373efdeb2109a35bf5e9fbc945 --- /dev/null +++ b/maze/task3/maps/level8/question/51.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | # | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | * | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | # | * | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | _ | +| Row 6 | _ | _ | # | # | @ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task3/maps/level8/question/52.txt b/maze/task3/maps/level8/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..23a5ee7cfa31533bc95f7bd0bbceace16b61f714 --- /dev/null +++ b/maze/task3/maps/level8/question/52.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | @ | _ | _ | # | _ | +| Row 6 | _ | * | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | # | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | * | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/53.txt b/maze/task3/maps/level8/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..363174f63114601777f61e429e253c51eb410061 --- /dev/null +++ b/maze/task3/maps/level8/question/53.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | # | _ | @ | +| Row 4 | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | * | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | @ | _ | # | # | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task3/maps/level8/question/54.txt b/maze/task3/maps/level8/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..f19169ec241fa1e14caf0f79a1f909ee2da6a810 --- /dev/null +++ b/maze/task3/maps/level8/question/54.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | * | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | @ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | @ | _ | _ | * | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/55.txt b/maze/task3/maps/level8/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ec707b41d854cb24099a39a8a46e149a7e7a881 --- /dev/null +++ b/maze/task3/maps/level8/question/55.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | # | +| Row 8 | # | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | @ | _ | # | # | _ | _ | _ | _ | +| Row 6 | * | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | diff --git a/maze/task3/maps/level8/question/56.txt b/maze/task3/maps/level8/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..56f08d1b3b0b89da50839a5a3e19ab1e9e9a36da --- /dev/null +++ b/maze/task3/maps/level8/question/56.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | @ | # | _ | _ | # | +| Row 8 | _ | _ | # | _ | * | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | @ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | # | _ | _ | # | _ | +| Row 2 | # | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | _ | # | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/57.txt b/maze/task3/maps/level8/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6349dac8bd5ff32363913e79de3042eb752a2ab3 --- /dev/null +++ b/maze/task3/maps/level8/question/57.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | * | @ | +| Row 3 | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | # | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | # | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/58.txt b/maze/task3/maps/level8/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a6b97dfb36c45a04b04dcc1818fa8cd7ebe0d34 --- /dev/null +++ b/maze/task3/maps/level8/question/58.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | # | _ | @ | +| Row 6 | _ | _ | * | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | @ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | # | +| Row 2 | @ | _ | _ | * | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | _ | # | _ | # | # | +| Row 5 | _ | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/59.txt b/maze/task3/maps/level8/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..6577b21862ab6cbd4f2c211a76101788165ca705 --- /dev/null +++ b/maze/task3/maps/level8/question/59.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | @ | * | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | * | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | # | +| Row 8 | # | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/6.txt b/maze/task3/maps/level8/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..10363bcf4c8b39575ecb38c3f9a2b9e4d5b73b5d --- /dev/null +++ b/maze/task3/maps/level8/question/6.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | * | # | _ | # | +| Row 2 | _ | # | _ | # | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | @ | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | # | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | # | +| Row 8 | # | _ | _ | _ | # | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | _ | @ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | # | # | _ | _ | # | _ | * | diff --git a/maze/task3/maps/level8/question/60.txt b/maze/task3/maps/level8/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..9606f97187764909a7771ffd2fe51126ccfddfcc --- /dev/null +++ b/maze/task3/maps/level8/question/60.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | # | # | +| Row 3 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | * | # | # | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/61.txt b/maze/task3/maps/level8/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..e89e43bd95b2e5521180065af94b3577569ea31d --- /dev/null +++ b/maze/task3/maps/level8/question/61.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | @ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | # | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/62.txt b/maze/task3/maps/level8/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..abf1f26930908955fa6f408a73c209019f5b5044 --- /dev/null +++ b/maze/task3/maps/level8/question/62.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | # | # | _ | +| Row 4 | _ | _ | @ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | # | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | * | _ | # | # | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | # | # | +| Row 4 | # | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | @ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/63.txt b/maze/task3/maps/level8/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..79dabd3bb73d64f3a1f2af7cb7c2ac5f26e6bc1b --- /dev/null +++ b/maze/task3/maps/level8/question/63.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | * | # | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | * | @ | _ | # | +| Row 3 | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | * | _ | +| Row 5 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | @ | _ | * | diff --git a/maze/task3/maps/level8/question/64.txt b/maze/task3/maps/level8/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..537ed4a0c90eaba6bcd5edf51bd24d318ab499e8 --- /dev/null +++ b/maze/task3/maps/level8/question/64.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | # | @ | +| Row 3 | # | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | * | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | * | _ | # | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level8/question/65.txt b/maze/task3/maps/level8/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..caa2f41347ffe9470de837b6f2510f99b6199a5d --- /dev/null +++ b/maze/task3/maps/level8/question/65.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/66.txt b/maze/task3/maps/level8/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..02d337742593526d82d4016bcbe4e3e21c233352 --- /dev/null +++ b/maze/task3/maps/level8/question/66.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | # | _ | +| Row 2 | _ | # | _ | * | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | # | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | @ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/67.txt b/maze/task3/maps/level8/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0a424f8e35b37340b7166469a9a921ae199b1a4 --- /dev/null +++ b/maze/task3/maps/level8/question/67.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | @ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | # | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | * | _ | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | _ | +| Row 6 | _ | _ | # | # | @ | # | diff --git a/maze/task3/maps/level8/question/68.txt b/maze/task3/maps/level8/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..59a8b939683ce956b10dc7d382f33e3f70a3ccb9 --- /dev/null +++ b/maze/task3/maps/level8/question/68.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | * | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | # | _ | _ | # | _ | +| Row 7 | @ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/69.txt b/maze/task3/maps/level8/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff3fa06279d38f9e43faf175fde2ed5bd98c9558 --- /dev/null +++ b/maze/task3/maps/level8/question/69.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | @ | # | +| Row 8 | _ | # | _ | _ | _ | # | # | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | @ | _ | # | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | # | _ | _ | * | _ | # | _ | _ | +| Row 8 | _ | # | # | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | # | # | * | _ | diff --git a/maze/task3/maps/level8/question/7.txt b/maze/task3/maps/level8/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..27c50861ea4b647007ab07705bd174815505c73b --- /dev/null +++ b/maze/task3/maps/level8/question/7.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | * | # | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | * | # | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | # | _ | _ | # | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | _ | _ | _ | # | _ | _ | +| Row 8 | * | _ | _ | @ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/70.txt b/maze/task3/maps/level8/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d2c31287e303b37120454d291088779ea741862 --- /dev/null +++ b/maze/task3/maps/level8/question/70.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | _ | @ | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | * | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | _ | +| Row 7 | @ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | # | _ | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/71.txt b/maze/task3/maps/level8/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd44d8e4a4e88877533659fd7df00e23a551cf66 --- /dev/null +++ b/maze/task3/maps/level8/question/71.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | _ | +| Row 6 | @ | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | _ | +| Row 8 | # | _ | _ | # | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | * | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | # | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | # | _ | diff --git a/maze/task3/maps/level8/question/72.txt b/maze/task3/maps/level8/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3bbbe0f70a55d86153b74a39a45dec6dc9e217d --- /dev/null +++ b/maze/task3/maps/level8/question/72.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | # | # | +| Row 4 | # | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | @ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | _ | _ | +| Row 2 | # | @ | # | _ | _ | +| Row 3 | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task3/maps/level8/question/73.txt b/maze/task3/maps/level8/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..346f50781d20c840ab98187b80dd1d7402b18881 --- /dev/null +++ b/maze/task3/maps/level8/question/73.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | # | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | _ | _ | +| Row 7 | _ | _ | @ | _ | # | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task3/maps/level8/question/74.txt b/maze/task3/maps/level8/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8e7b14941244efe7caa17a3faff3ea75717e180 --- /dev/null +++ b/maze/task3/maps/level8/question/74.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | * | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | # | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/75.txt b/maze/task3/maps/level8/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..06356556e44b62499499dbbfe5bf0a0f9fd9ec8d --- /dev/null +++ b/maze/task3/maps/level8/question/75.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | * | _ | +| Row 5 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/76.txt b/maze/task3/maps/level8/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..636aefe6839fc151bb27dc4c5b06b6cfcbbfc41a --- /dev/null +++ b/maze/task3/maps/level8/question/76.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | * | _ | _ | # | # | _ | _ | +| Row 8 | # | _ | # | # | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | # | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | diff --git a/maze/task3/maps/level8/question/77.txt b/maze/task3/maps/level8/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..54d1e79b90bb7bb26fe6865996bccade25e0796a --- /dev/null +++ b/maze/task3/maps/level8/question/77.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | @ | _ | # | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | # | _ | _ | * | _ | # | _ | _ | +| Row 8 | _ | # | # | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | _ | # | _ | * | _ | +| Row 7 | _ | _ | _ | # | _ | # | # | _ | +| Row 8 | _ | # | # | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/78.txt b/maze/task3/maps/level8/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc8059858ccf80323f899a51dd510deae038fc38 --- /dev/null +++ b/maze/task3/maps/level8/question/78.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | # | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | # | _ | # | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/79.txt b/maze/task3/maps/level8/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..994eb45bd737d8652e58b1856f52eb6a59d924be --- /dev/null +++ b/maze/task3/maps/level8/question/79.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | # | _ | +| Row 2 | _ | # | _ | * | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | # | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | @ | +| Row 4 | _ | # | _ | _ | # | _ | +| Row 5 | _ | _ | # | _ | _ | # | +| Row 6 | _ | * | _ | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | * | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | # | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | @ | _ | # | # | diff --git a/maze/task3/maps/level8/question/8.txt b/maze/task3/maps/level8/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..804eda47af8c4282ff63babbd99253e05f0cc526 --- /dev/null +++ b/maze/task3/maps/level8/question/8.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | @ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/80.txt b/maze/task3/maps/level8/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc57257d92c18a6327826cce8963b498c28a9433 --- /dev/null +++ b/maze/task3/maps/level8/question/80.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | # | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | # | # | +| Row 4 | # | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | @ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | * | _ | _ | # | @ | _ | diff --git a/maze/task3/maps/level8/question/81.txt b/maze/task3/maps/level8/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..58cb9232706c79dd39343ee3fd554a7a24a09b64 --- /dev/null +++ b/maze/task3/maps/level8/question/81.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | @ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/82.txt b/maze/task3/maps/level8/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..86e5b297ac2fb3ffef9c277b5de17ce34d6de75d --- /dev/null +++ b/maze/task3/maps/level8/question/82.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | * | # | _ | # | +| Row 2 | _ | # | _ | # | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | @ | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | # | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | # | +| Row 8 | # | _ | _ | _ | # | # | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | @ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/83.txt b/maze/task3/maps/level8/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae2021f6f6a4553e2283fb5471d20e0be573a908 --- /dev/null +++ b/maze/task3/maps/level8/question/83.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level8/question/84.txt b/maze/task3/maps/level8/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..30ddf25744a5d07df57f359e21af4ebd127c8c04 --- /dev/null +++ b/maze/task3/maps/level8/question/84.txt @@ -0,0 +1,36 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | # | * | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task3/maps/level8/question/85.txt b/maze/task3/maps/level8/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..260b0e0e026007f48e6328c6b51525051d24f326 --- /dev/null +++ b/maze/task3/maps/level8/question/85.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | # | # | _ | @ | # | # | +| Row 5 | _ | * | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | # | _ | * | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | * | @ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/86.txt b/maze/task3/maps/level8/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..74252b724b3b0aad226e573053e984a3f8c6e596 --- /dev/null +++ b/maze/task3/maps/level8/question/86.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | # | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | _ | +| Row 7 | @ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | # | _ | # | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | # | # | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | @ | _ | * | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/87.txt b/maze/task3/maps/level8/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..80a54649dd6a35ce5bcbb9ccd089fddcd023ab27 --- /dev/null +++ b/maze/task3/maps/level8/question/87.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | # | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | * | _ | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | @ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task3/maps/level8/question/88.txt b/maze/task3/maps/level8/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..481e6e22f9f1f2965eb271002b1bdae9342d7ace --- /dev/null +++ b/maze/task3/maps/level8/question/88.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | # | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | @ | +| Row 3 | # | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task3/maps/level8/question/89.txt b/maze/task3/maps/level8/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..20c3b3463828f8bb34de332321443ef3525b96c3 --- /dev/null +++ b/maze/task3/maps/level8/question/89.txt @@ -0,0 +1,39 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | # | # | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | # | +| Row 8 | _ | # | # | _ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | # | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task3/maps/level8/question/9.txt b/maze/task3/maps/level8/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..c90e9e9bc2effdf79dbe575671d8877762460b0b --- /dev/null +++ b/maze/task3/maps/level8/question/9.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | # | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | # | _ | _ | * | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/90.txt b/maze/task3/maps/level8/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e6253344c8aca889e9d6ae99597e5971b0ce3ac --- /dev/null +++ b/maze/task3/maps/level8/question/90.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | @ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | @ | _ | _ | _ | _ | * | _ | _ | diff --git a/maze/task3/maps/level8/question/91.txt b/maze/task3/maps/level8/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..89488dbc45b9b74cf5992b6839f06449995963f6 --- /dev/null +++ b/maze/task3/maps/level8/question/91.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | @ | # | # | _ | _ | _ | # | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | # | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | # | _ | +| Row 5 | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | # | * | _ | diff --git a/maze/task3/maps/level8/question/92.txt b/maze/task3/maps/level8/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..84ee2c951083401fdff0d281fa0c7f42d315e860 --- /dev/null +++ b/maze/task3/maps/level8/question/92.txt @@ -0,0 +1,40 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/93.txt b/maze/task3/maps/level8/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..47d73974534f6420524f0feeec75e425256019ca --- /dev/null +++ b/maze/task3/maps/level8/question/93.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | _ | +| Row 7 | @ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | # | _ | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | diff --git a/maze/task3/maps/level8/question/94.txt b/maze/task3/maps/level8/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e292f04339f535618f1607512a5ce3d51593503 --- /dev/null +++ b/maze/task3/maps/level8/question/94.txt @@ -0,0 +1,35 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | # | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | # | _ | _ | # | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | @ | # | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | _ | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task3/maps/level8/question/95.txt b/maze/task3/maps/level8/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e3ca95f88888dc5a71594a1075b338efcf57057 --- /dev/null +++ b/maze/task3/maps/level8/question/95.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | * | # | # | _ | # | +| Row 7 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | @ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | # | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task3/maps/level8/question/96.txt b/maze/task3/maps/level8/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b66e6dd9141e480f0fd008ce9ae58f95ac40cbd --- /dev/null +++ b/maze/task3/maps/level8/question/96.txt @@ -0,0 +1,41 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | # | +| Row 6 | # | _ | _ | * | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | * | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | # | * | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | diff --git a/maze/task3/maps/level8/question/97.txt b/maze/task3/maps/level8/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..e466ec5af8575fda031f11eadd6e60f4613facea --- /dev/null +++ b/maze/task3/maps/level8/question/97.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | # | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task3/maps/level8/question/98.txt b/maze/task3/maps/level8/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..34e1f3bfa4b6fd8677cbd94b5a8edac5848fa1d9 --- /dev/null +++ b/maze/task3/maps/level8/question/98.txt @@ -0,0 +1,37 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | # | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | # | _ | _ | * | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | * | _ | +| Row 8 | _ | _ | # | _ | _ | # | # | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/maps/level8/question/99.txt b/maze/task3/maps/level8/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ff3420dc1c0b134294aee6ef7777b84bb9820e2 --- /dev/null +++ b/maze/task3/maps/level8/question/99.txt @@ -0,0 +1,38 @@ + +(A) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | # | * | @ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | * | # | +| Row 2 | _ | # | _ | _ | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | @ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task3/prompt-text/prompt-text.txt b/maze/task3/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..91d2a6a29826b23fb7828b8f20ddc2e06fff1861 --- /dev/null +++ b/maze/task3/prompt-text/prompt-text.txt @@ -0,0 +1,67 @@ +In this task, you will analyze a maze presented in an image. Later, you will be presented with four choices, each offering a textual representation of a candidate maze. You will need to choose the representation that exactly reflects the contents of the given image. +The following figure illustrates the appearances of the player, holes, lands, and the goal within the maze in the image. + + + +This is how the player, the holes (non-safe grid), the lands (safe grids), and the goals look like in a map: +- The player is represented as "@" +- The hole is represented as "#" +- The safe grid is represented as "_" +- The goal is represented as "*" +- If the player is at the goal (at this case the game is solved), that grid is represented as "%" + +We provide an example to illustrate how to interpret the input, candidates, and answer the question. Here is the image input: + + + +Here are the textual candidates: + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | # | @ | # | +| Row 3 | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | # | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | _ | # | + +Here is an example of how to analyze and answer the question: +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. Candidate A is a 3-by-3 maze. Therefore, it is not the correct answer. Similarly, Candidate B is a 5-by-5 maze, which also cannot be correct. Both Candidate C and Candidate D are 4-by-4 mazes. Now we only need to choose from them. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 1. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 1, column 1, matching the input image. For Candidate D, the player is located at row 3, column 1. Hence, Candidate D is not the correct answer. +- We double check the remaining Candidate C, and it correctly shows the position of the player, holes, and the goal. It is therefore the correct answer. + C + +Your output should consist of two parts: +1. First, analysis the input image and candidates similar to the reasoning process above. +2. Following the reasoning process, output answer as " ", where "" is one of {A,B,C,D}. +Important: Note that there will be only one correct answer. If you find no answer or multiple answers, you must go back and recheck your reasoning process. You are not allowed to provide 0 or more than 1 answer. + +Now answer the question below. Here is the image input: + + + +Here are the textual candidates: + + + diff --git a/maze/task3/prompt-visual-images/system-figure-1.png b/maze/task3/prompt-visual-images/system-figure-1.png new file mode 100644 index 0000000000000000000000000000000000000000..3ea294f723f08b14abfe02349587a8bcfde5fe2d --- /dev/null +++ b/maze/task3/prompt-visual-images/system-figure-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7321fc3f75b4a763f4c2e5965a513c281bd8542cec31bb90b9f60eff63035b08 +size 159667 diff --git a/maze/task3/prompt-visual-images/system-figure-2.png b/maze/task3/prompt-visual-images/system-figure-2.png new file mode 100644 index 0000000000000000000000000000000000000000..b453ba1a67610367a9480fa7ab711530aaabd58a --- /dev/null +++ b/maze/task3/prompt-visual-images/system-figure-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc4ae6e6474849687801599ffa7b112ce7044ae74bbd612fa01c8619afff9c1 +size 7099 diff --git a/maze/task3/test.py b/maze/task3/test.py new file mode 100644 index 0000000000000000000000000000000000000000..a0d11ec4211de67bbbcadaecf8597ed61f3d2a5c --- /dev/null +++ b/maze/task3/test.py @@ -0,0 +1,247 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) + # torch.manual_seed(seed) + # torch.cuda.manual_seed(seed) + # torch.backends.cudnn.deterministic = True + # env.seed(seed) +seed_everything(1) + +levels = [3,4,5,6,7,8] +in_context_example_num = 0 # 0, 1, 2, 4, 8 + + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +loop_time = 0 + +EXAMPLE_DICT = { + 3: [], + 4: [], + 5: [], + 6: [], + 7: [], + 8: [] +} + +# Prepare examples +for level in levels: + for example_id in range(8): + example_path = "example/level%d/img/"%(level) + img_input = PIL.Image.open(example_path + "%d.png"%(example_id)) + with open("example/level%d/question/%d.txt"%(level, example_id), "r") as f: + example_candidates = f.read() + with open("example/level%d/analysis/%d.txt"%(level, example_id), "r") as f: + text_input = f.read() + this_example = (img_input, example_candidates, text_input) + EXAMPLE_DICT[level].append(this_example) + +import ipdb; ipdb.set_trace() +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + map_path = "maps/level%d/img/"%(level) + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + img_input = PIL.Image.open(map_path + "%d.png"%(curr_id)) + prompt_input_1 = ''' +In this task, you will analyze a maze presented in an image. Later, you will be presented with four choices, each offering a textual representation of a candidate maze. You will need to choose the representation that exactly reflects the contents of the given image. +The following figure illustrates the appearances of the player, holes, lands, and the goal within the maze in the image. +''' + prompt_input_2 = ''' +This is how the player, the holes (non-safe grid), the lands (safe grids), and the goals look like in a map: +- The player is represented as "@" +- The hole is represented as "#" +- The safe grid is represented as "_" +- The goal is represented as "*" +- If the player is at the goal (at this case the game is solved), that grid is represented as "%" + +We provide an example to illustrate how to interpret the input, candidates, and answer the question. Here is the image input: +''' + prompt_input_3 = ''' +Here are the textual candidates: + +(A) +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | # | @ | # | +| Row 3 | _ | * | _ | + +(B) +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | # | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | + +(C) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | * | + +(D) +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | _ | # | + +Here is an example of how to analyze and answer the question: +- First, we focus on the difference of the maze shape betweeen the candidates and the input image. +- We begin by examining the input image. It is a 4-by-4 maze. We then review the candidates. Candidate A is a 3-by-3 maze. Therefore, it is not the correct answer. Similarly, Candidate B is a 5-by-5 maze, which also cannot be correct. Both Candidate C and Candidate D are 4-by-4 mazes. Now we only need to choose from them. +- For the remaining candidates, we compare the positions of the players, goals, and the holes in the maze. +- We first check the input image. What is the position of the player in the image? The player is in row 1, column 1. We then check the remaining candidates. For Candidate C, the textual representation indicates the player is also at row 1, column 1, matching the input image. For Candidate D, the player is located at row 3, column 1. Hence, Candidate D is not the correct answer. +- We double check the remaining Candidate C, and it correctly shows the position of the player, holes, and the goal. It is therefore the correct answer. + C + +Your output should consist of two parts: +1. First, analysis the input image and candidates similar to the reasoning process above. +2. Following the reasoning process, output answer as " ", where "" is one of {A,B,C,D}. +Important: Note that there will be only one correct answer. If you find no answer or multiple answers, you must go back and recheck your reasoning process. You are not allowed to provide 0 or more than 1 answer. +''' + candidate_examples = [] + prompt_examples = [] + image_examples = [] + if in_context_example_num > 0: + prompt_examples.append("## Example:\n") + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + image_examples.append(this_example[0]) + candidate_examples.append(this_example[1]) + prompt_examples.append(this_example[2] + "\n") + prompt_input_4 = "\nNow answer the question below. Here is the image input:" + prompt_input_5 = "\nHere are the textual candidates:" + prompt_img_1 = PIL.Image.open('prompt-visual-images/system-figure-1.png') + prompt_img_2 = PIL.Image.open('prompt-visual-images/system-figure-2.png') + model_input_seq = [prompt_input_1, prompt_img_1, prompt_input_2, prompt_img_2, prompt_input_3] + if in_context_example_num > 0: + assert len(prompt_examples) == len(image_examples) + 1 + assert len(prompt_examples) == in_context_example_num + 1 + model_input_seq.append(prompt_examples[0]) + for example_index in range(in_context_example_num): + model_input_seq.append(image_examples[example_index]) + model_input_seq.append(candidate_examples[example_index]) + model_input_seq.append(prompt_examples[example_index+1]) + with open("maps/level%d/question/%d.txt"%(level, curr_id), 'r') as f: + candidates_str = f.read() + # candidates_str = "" + # # build candidates strings + # wrong_choices = [] + # wrong_sizes = [3,4,5,6,7,8] + # wrong_sizes.remove(level) + # picked_choice = random.sample(wrong_sizes,2) + # # candidate with wrong size: 2 + # used_candidates = [] + # for select_level in picked_choice: + # select_map = random.sample(range(100), 1)[0] + # with open("../maps/level%d_table/%d.txt"%(select_level, select_map), "r") as f: + # select_content = f.read() + # wrong_choices.append(select_content) + # used_candidates.append("%d-%d"%(select_level, select_map)) + # # candidate with correct size: 1 + # select_map = random.sample([t for t in range(100) if t != curr_id], 1)[0] + # with open("../maps/level%d_table/%d.txt"%(level, select_map), "r") as f: + # select_content = f.read() + # wrong_choices.append(select_content) + # used_candidates.append("%d-%d"%(level, select_map)) + # # correct candidate + # with open("../maps/level%d_table/%d.txt"%(level, curr_id), "r") as f: + # correct_candidate = f.read() + # # build candidate order + # correct_candidate_id = random.sample(range(4), 1)[0] + # correct_size_candidate_id = random.sample([x for x in range(4) if x != correct_candidate_id], 1)[0] + # candidate_order_list = [] + # used_candidates_order_list = [] + # wrong_size_index = 0 # This is to go through two incorrect caniddates with incorrect size + # for candidate_index in range(4): + # if candidate_index == correct_candidate_id: + # candidate_order_list.append(correct_candidate) + # used_candidates_order_list.append("%d-%d"%(level, curr_id)) + # elif candidate_index == correct_size_candidate_id: + # candidate_order_list.append(wrong_choices[-1]) + # used_candidates_order_list.append(used_candidates[-1]) + # else: + # candidate_order_list.append(wrong_choices[wrong_size_index]) + # used_candidates_order_list.append(used_candidates[wrong_size_index]) + # wrong_size_index += 1 + ## save input maps, and correct answer + # with open("answer-key-whole-map-9/level%d/%d.txt"%(level,curr_id), 'w') as f: + # solutions_txt = "" + # for each_used_candidate in used_candidates_order_list: + # solutions_txt += each_used_candidate + # solutions_txt += "\n" + # solutions_txt += "%s"%(correct_candidate_id) + # f.write(solutions_txt) + ## build candidate string + # candidates_str = "\n(A)\n" + candidate_order_list[0] + "\n(B)\n" + candidate_order_list[1] + "\n(C)\n" + candidate_order_list[2] + "\n(D)\n" + candidate_order_list[3] + model_input_seq += [prompt_input_4, img_input, prompt_input_5, candidates_str] + response = model.generate_content(model_input_seq) + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + # import ipdb; ipdb.set_trace() + # pass + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass + + + + + + +# pass + + + +# cookie_picture = [{ +# 'mime_type': 'image/png', +# 'data': Path('cookie.png').read_bytes() +# }] +# prompt = "Do these look store-bought or homemade?" + +# response = model.generate_content( +# model="gemini-pro-vision", +# content=[prompt, cookie_picture] +# ) +# print(response.text) \ No newline at end of file diff --git a/maze/task4/.DS_Store b/maze/task4/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..3d9f9e6882f74f75053a50b03b9792177e100fde Binary files /dev/null and b/maze/task4/.DS_Store differ diff --git a/maze/task4/eval.py b/maze/task4/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..224ad5ff76347d6fa93efd2c10852bd9d0cb6db1 --- /dev/null +++ b/maze/task4/eval.py @@ -0,0 +1,56 @@ +import csv +import os + +count_corr = [0,0,0,0,0] +invalid = [0,0,0,0,0] + +for level in [1,3,5,7,9]: + for test_id in range(100): + with open("../maps/level_step%d/answer/%d.txt"%(level, test_id), "r") as f: + gt_records = f.read() + try: + with open("output/output_img/level%d/%d.txt"%(level, test_id), "r") as f: + # import ipdb; ipdb.set_trace() + answer = f.read() + plan_answer_index = answer.find("") + if plan_answer_index != -1: + answer = answer[plan_answer_index+len(""):plan_answer_index+len("")+10] + else: + plan_answer_index = answer.find("**Output**") + if plan_answer_index != -1: + answer = answer[plan_answer_index+len("**Output**"):plan_answer_index+len("**Output**")+10] + else: + plan_answer_index = answer.find("Output") + answer = answer[plan_answer_index+len("Output"):plan_answer_index+len("Output")+10] + if plan_answer_index == -1: + invalid[level//2] += 1 + + # import ipdb; ipdb.set_trace() + answer = answer.replace('"', '') + answer = answer.replace("'", '') + answer = answer.replace("\n", '') + answer = answer.replace(".", '') + answer = answer.replace(":", '') + answer = answer.replace("-", '') + answer = answer.replace("*", '') + answer = answer.lstrip() + answer = answer.rstrip() + answer = answer.lower() + # if test_id == 99: + # import ipdb; ipdb.set_trace() + if "yes" in answer.lower() and "no" not in answer.lower() and gt_records == "Y": + count_corr[level//2] += 1 + # print(test_id) + elif "no" in answer.lower() and "yes" not in answer.lower() and gt_records == "N": + count_corr[level//2] += 1 + # print(test_id) + else: + print(answer, test_id) + # else: + # print(answer, test_id) + except: + invalid[level//2] += 1 +print(count_corr) +print(invalid) +# import ipdb; ipdb.set_trace() +# pass diff --git a/maze/task4/example/level_step1/analysis/0.txt b/maze/task4/example/level_step1/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..35481db94b12dec5a0425696c337352b2f64618c --- /dev/null +++ b/maze/task4/example/level_step1/analysis/0.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 4, Column 3; +- There are 2 holes, and they are at: Row 2, Column 2; Row 3, Column 5; +The current action is: Right +After this action, the player is now at Row 4, Column 4. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step1/analysis/1.txt b/maze/task4/example/level_step1/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f90eb132f4f3ed4bf2f55194ed2acbf235343a1 --- /dev/null +++ b/maze/task4/example/level_step1/analysis/1.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 1, Column 3; +- There are 3 holes, and they are at: Row 2, Column 4; Row 4, Column 5; Row 1, Column 4; +The current action is: Right +After this action, the player is now at Row 1, Column 4. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step1/analysis/2.txt b/maze/task4/example/level_step1/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d6198f749768655753201f32bef0f3d3ab9da85 --- /dev/null +++ b/maze/task4/example/level_step1/analysis/2.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 4, Column 1; +- There are 8 holes, and they are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 3, Column 1; +The current action is: Up +After this action, the player is now at Row 3, Column 1. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step1/analysis/3.txt b/maze/task4/example/level_step1/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..79ca94db13a9d07a3b003f348a2dae5efa6b3681 --- /dev/null +++ b/maze/task4/example/level_step1/analysis/3.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 1, Column 4; +- There are 5 holes, and they are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The current action is: Left +After this action, the player is now at Row 1, Column 3. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step1/analysis/4.txt b/maze/task4/example/level_step1/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e126f05a4c3e82f2783269bf7765d5b7d2c9949 --- /dev/null +++ b/maze/task4/example/level_step1/analysis/4.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 1, Column 5; +- There are 2 holes, and they are at: Row 4, Column 3; Row 2, Column 5; +The current action is: Down +After this action, the player is now at Row 2, Column 5. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step1/analysis/5.txt b/maze/task4/example/level_step1/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7eebd01b18b58864af3a28131690adbf0ae427c --- /dev/null +++ b/maze/task4/example/level_step1/analysis/5.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 4, Column 2; +- There are 4 holes, and they are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; Row 3, Column 2; +The current action is: Up +After this action, the player is now at Row 3, Column 2. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step1/analysis/6.txt b/maze/task4/example/level_step1/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5ca514223a1fe67e5f74959727c2e4a18ef66ab --- /dev/null +++ b/maze/task4/example/level_step1/analysis/6.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 3, Column 3; +- There are 4 holes, and they are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The current action is: Down +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step1/analysis/7.txt b/maze/task4/example/level_step1/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9be6d0974ebeb2e56feb732281f55c90c825407 --- /dev/null +++ b/maze/task4/example/level_step1/analysis/7.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 2, Column 3; +- There are 7 holes, and they are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The current action is: Right +After this action, the player is now at Row 2, Column 4. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step1/answer/0.txt b/maze/task4/example/level_step1/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step1/answer/0.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step1/answer/1.txt b/maze/task4/example/level_step1/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step1/answer/1.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step1/answer/2.txt b/maze/task4/example/level_step1/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step1/answer/2.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step1/answer/3.txt b/maze/task4/example/level_step1/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step1/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step1/answer/4.txt b/maze/task4/example/level_step1/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step1/answer/4.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step1/answer/5.txt b/maze/task4/example/level_step1/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step1/answer/5.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step1/answer/6.txt b/maze/task4/example/level_step1/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step1/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step1/answer/7.txt b/maze/task4/example/level_step1/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step1/answer/7.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step1/img/0.png b/maze/task4/example/level_step1/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..53c675225cb4557b1697e4fa4871f0aa14c579b0 --- /dev/null +++ b/maze/task4/example/level_step1/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9cd3f0abed81e2b2317756e97906f959f6838129cb8e4d8cdbade95400af2d +size 8586 diff --git a/maze/task4/example/level_step1/img/1.png b/maze/task4/example/level_step1/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9063b0bf77f7b4f62b98237d78921db2fb122d73 --- /dev/null +++ b/maze/task4/example/level_step1/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f081477f0d2b01fed3034d43fd57f23b7756ff68a8db413db59702d1248da3 +size 9416 diff --git a/maze/task4/example/level_step1/img/2.png b/maze/task4/example/level_step1/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ccaeef1f8564cf69ea2f9ebf84d4c19569861597 --- /dev/null +++ b/maze/task4/example/level_step1/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9895f0615d1dde99f89d41fa2b43ddbc89a513b325c8eb54b4de3cee4382a1 +size 10418 diff --git a/maze/task4/example/level_step1/img/3.png b/maze/task4/example/level_step1/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task4/example/level_step1/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task4/example/level_step1/img/4.png b/maze/task4/example/level_step1/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..049630bfe1048f0d6eff121717eee2e1e450ea56 --- /dev/null +++ b/maze/task4/example/level_step1/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4e02d691acb0b5f76dec94a16a24229bb2bb907a8dbb1de76b80874bb35d7d +size 8625 diff --git a/maze/task4/example/level_step1/img/5.png b/maze/task4/example/level_step1/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9dbce7d0893d107c2db6e5125efeb57b0625ffb9 --- /dev/null +++ b/maze/task4/example/level_step1/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7354e61c51ea857c8eb2d52735cf1a36bb75d7c26878db0bce3092b12aa1a8 +size 9548 diff --git a/maze/task4/example/level_step1/img/6.png b/maze/task4/example/level_step1/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task4/example/level_step1/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task4/example/level_step1/img/7.png b/maze/task4/example/level_step1/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f814f3af4a4514eea937c4425d373246a0eddf97 --- /dev/null +++ b/maze/task4/example/level_step1/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7524981f599a7d73e4d8fbec30dfe5b20a4391ecea7e63082541a4fb06ee3bfb +size 9570 diff --git a/maze/task4/example/level_step1/pure_text/0.txt b/maze/task4/example/level_step1/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d7462603221ecb6cb543a980d631f78a9a66620 --- /dev/null +++ b/maze/task4/example/level_step1/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/example/level_step1/pure_text/1.txt b/maze/task4/example/level_step1/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..5195b67e7d4f9746c687184bcdbbd8f1ec39460a --- /dev/null +++ b/maze/task4/example/level_step1/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/example/level_step1/pure_text/2.txt b/maze/task4/example/level_step1/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..49bc6446d2ac52d3a84f728f7d87c864e3e3fb21 --- /dev/null +++ b/maze/task4/example/level_step1/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step1/pure_text/3.txt b/maze/task4/example/level_step1/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..69e73a8c23f7d57f3e51e58b7901e281cad0f7a0 --- /dev/null +++ b/maze/task4/example/level_step1/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step1/pure_text/4.txt b/maze/task4/example/level_step1/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..47fc39ca6523d4918d7f99c326cab54a3baa2fa7 --- /dev/null +++ b/maze/task4/example/level_step1/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 2, Column 5; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step1/pure_text/5.txt b/maze/task4/example/level_step1/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fcffd9626d1512f1d47b51f6f517a0de70cff9c --- /dev/null +++ b/maze/task4/example/level_step1/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step1/pure_text/6.txt b/maze/task4/example/level_step1/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..090e9c1d826401003433a544b5a036f1e691e749 --- /dev/null +++ b/maze/task4/example/level_step1/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step1/pure_text/7.txt b/maze/task4/example/level_step1/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cad32fd2f3808ab35f15942baa29e28b809de924 --- /dev/null +++ b/maze/task4/example/level_step1/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step1/question/0.txt b/maze/task4/example/level_step1/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/example/level_step1/question/0.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/example/level_step1/question/1.txt b/maze/task4/example/level_step1/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/example/level_step1/question/1.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/example/level_step1/question/2.txt b/maze/task4/example/level_step1/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/example/level_step1/question/2.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/example/level_step1/question/3.txt b/maze/task4/example/level_step1/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/example/level_step1/question/3.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/example/level_step1/question/4.txt b/maze/task4/example/level_step1/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/example/level_step1/question/4.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/example/level_step1/question/5.txt b/maze/task4/example/level_step1/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/example/level_step1/question/5.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/example/level_step1/question/6.txt b/maze/task4/example/level_step1/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/example/level_step1/question/6.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/example/level_step1/question/7.txt b/maze/task4/example/level_step1/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/example/level_step1/question/7.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/example/level_step1/special_text/0.txt b/maze/task4/example/level_step1/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..85d88b849a1bc24f810062fe9bed19b90331a9fc --- /dev/null +++ b/maze/task4/example/level_step1/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +____# +__@__ +*____ \ No newline at end of file diff --git a/maze/task4/example/level_step1/special_text/1.txt b/maze/task4/example/level_step1/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d5bf2b77192732b544e3a38863c72e59964fb46 --- /dev/null +++ b/maze/task4/example/level_step1/special_text/1.txt @@ -0,0 +1,5 @@ +__@#_ +___#_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/example/level_step1/special_text/2.txt b/maze/task4/example/level_step1/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b7b7bfe0f9216bbc36e128f67d680a26ddae49d --- /dev/null +++ b/maze/task4/example/level_step1/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +__### +#____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/example/level_step1/special_text/3.txt b/maze/task4/example/level_step1/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..db97ae9d4b28569612d83923a1d3d5a271c0f04b --- /dev/null +++ b/maze/task4/example/level_step1/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_#___ +_____ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/example/level_step1/special_text/4.txt b/maze/task4/example/level_step1/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d0dd655621a4d7305738e2eef827e00f103f45d --- /dev/null +++ b/maze/task4/example/level_step1/special_text/4.txt @@ -0,0 +1,5 @@ +____@ +____# +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/example/level_step1/special_text/5.txt b/maze/task4/example/level_step1/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fa32162de1dc0864330a28474aedc933b0ca158 --- /dev/null +++ b/maze/task4/example/level_step1/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +_#_#_ +_@___ +___*_ \ No newline at end of file diff --git a/maze/task4/example/level_step1/special_text/6.txt b/maze/task4/example/level_step1/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..06ac61b196846a33b6224efe7ab1f762ac624cf4 --- /dev/null +++ b/maze/task4/example/level_step1/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +____# +_____ \ No newline at end of file diff --git a/maze/task4/example/level_step1/special_text/7.txt b/maze/task4/example/level_step1/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..16c288d9912871111553377ec177e0645df42889 --- /dev/null +++ b/maze/task4/example/level_step1/special_text/7.txt @@ -0,0 +1,5 @@ +___*_ +__@__ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/example/level_step1/table/0.txt b/maze/task4/example/level_step1/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..71a2cd22e79422b7d477a4141c2e19b05c3bd1f5 --- /dev/null +++ b/maze/task4/example/level_step1/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step1/table/1.txt b/maze/task4/example/level_step1/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8397c919ba0fb3529bc2166db321e77965f68d4a --- /dev/null +++ b/maze/task4/example/level_step1/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | # | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/example/level_step1/table/2.txt b/maze/task4/example/level_step1/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..865f55161e58318ea8c7e59d94f25eaccdd79a4c --- /dev/null +++ b/maze/task4/example/level_step1/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/example/level_step1/table/3.txt b/maze/task4/example/level_step1/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9afb12ea5b879f7d3d1aee81db7632744fe5e1 --- /dev/null +++ b/maze/task4/example/level_step1/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step1/table/4.txt b/maze/task4/example/level_step1/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..6675854261f977a35f7706bea9bff3ac900bd2b0 --- /dev/null +++ b/maze/task4/example/level_step1/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step1/table/5.txt b/maze/task4/example/level_step1/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a566ecde3aa1eff8adf090908a2d0d7033b80e4b --- /dev/null +++ b/maze/task4/example/level_step1/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/example/level_step1/table/6.txt b/maze/task4/example/level_step1/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2521dc5a2e4b78cd93244c384377b6d6b0823192 --- /dev/null +++ b/maze/task4/example/level_step1/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step1/table/7.txt b/maze/task4/example/level_step1/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc02ca1df883fa37a50dfdd0cd46b7626d287d31 --- /dev/null +++ b/maze/task4/example/level_step1/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/example/level_step1/text/0.txt b/maze/task4/example/level_step1/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed46ff986eabcbfa5704583f5402f52a9c0c483 --- /dev/null +++ b/maze/task4/example/level_step1/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFFH +FFSFF +GFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step1/text/1.txt b/maze/task4/example/level_step1/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9de8b211a14f99974579042bf2fb30a02b9f539e --- /dev/null +++ b/maze/task4/example/level_step1/text/1.txt @@ -0,0 +1,5 @@ +FFSHF +FFFHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/example/level_step1/text/2.txt b/maze/task4/example/level_step1/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e973fc0924396bbbf2db4392b69e967111daf699 --- /dev/null +++ b/maze/task4/example/level_step1/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +FFHHH +HFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/example/level_step1/text/3.txt b/maze/task4/example/level_step1/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a9e740bd78265bf06ae44f5e44d9c50f1f66bb --- /dev/null +++ b/maze/task4/example/level_step1/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHFFF +FFFFF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step1/text/4.txt b/maze/task4/example/level_step1/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..87f1664a02ab663fedfb675c0cacd19f152cd798 --- /dev/null +++ b/maze/task4/example/level_step1/text/4.txt @@ -0,0 +1,5 @@ +FFFFS +FFFFH +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step1/text/5.txt b/maze/task4/example/level_step1/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cd08f3f69fdb6113d240b7699454b0bbe3ebc86 --- /dev/null +++ b/maze/task4/example/level_step1/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FHFHF +FSFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/example/level_step1/text/6.txt b/maze/task4/example/level_step1/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9277db9448443fe0cc50e301886dbfa02862ff92 --- /dev/null +++ b/maze/task4/example/level_step1/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FFFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step1/text/7.txt b/maze/task4/example/level_step1/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1cd6ef21cd427b57e3ed724a1df59f577d2dc96 --- /dev/null +++ b/maze/task4/example/level_step1/text/7.txt @@ -0,0 +1,5 @@ +FFFGF +FFSFF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/example/level_step3/analysis/0.txt b/maze/task4/example/level_step3/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee91b9326bf3a110031e6228febbcc1dac148196 --- /dev/null +++ b/maze/task4/example/level_step3/analysis/0.txt @@ -0,0 +1,12 @@ + At the beginning: +- The player is at Row 4, Column 3; +- There are 2 holes, and they are at: Row 2, Column 2; Row 3, Column 5; +The current action is: Right +After this action, the player is now at Row 4, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 3. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step3/analysis/1.txt b/maze/task4/example/level_step3/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6352524892f39c8cf881aa1b7de3f48f0447decf --- /dev/null +++ b/maze/task4/example/level_step3/analysis/1.txt @@ -0,0 +1,9 @@ + At the beginning: +- The player is at Row 1, Column 3; +- There are 3 holes, and they are at: Row 2, Column 4; Row 4, Column 5; Row 1, Column 5; +The current action is: Right +After this action, the player is now at Row 1, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 1, Column 5. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step3/analysis/2.txt b/maze/task4/example/level_step3/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b7f85267c20a7c55fd2660a4299828a3237ca11 --- /dev/null +++ b/maze/task4/example/level_step3/analysis/2.txt @@ -0,0 +1,12 @@ + At the beginning: +- The player is at Row 4, Column 1; +- There are 7 holes, and they are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The current action is: Up +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 2, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 2, Column 2. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step3/analysis/3.txt b/maze/task4/example/level_step3/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..029483c2cde33fb47d0fdda8a7e194abd3659127 --- /dev/null +++ b/maze/task4/example/level_step3/analysis/3.txt @@ -0,0 +1,9 @@ + At the beginning: +- The player is at Row 1, Column 4; +- There are 6 holes, and they are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 2, Column 3; +The current action is: Down +After this action, the player is now at Row 2, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 2, Column 3. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step3/analysis/4.txt b/maze/task4/example/level_step3/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..40b069164b940e715da604fed03c1bac1e35ff9b --- /dev/null +++ b/maze/task4/example/level_step3/analysis/4.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 1, Column 5; +- There are 2 holes, and they are at: Row 4, Column 3; Row 1, Column 4; +The current action is: Left +After this action, the player is now at Row 1, Column 4. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step3/analysis/5.txt b/maze/task4/example/level_step3/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c099fb51e34ed15fdd96a9e4592e881faf9cc017 --- /dev/null +++ b/maze/task4/example/level_step3/analysis/5.txt @@ -0,0 +1,12 @@ + At the beginning: +- The player is at Row 4, Column 2; +- There are 3 holes, and they are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The current action is: Down +After this action, the player is now at Row 5, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 5, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 5, Column 2. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step3/analysis/6.txt b/maze/task4/example/level_step3/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ff18e05bfb0152089a1e06a03434a6db7437e22 --- /dev/null +++ b/maze/task4/example/level_step3/analysis/6.txt @@ -0,0 +1,9 @@ + At the beginning: +- The player is at Row 3, Column 3; +- There are 5 holes, and they are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; Row 4, Column 2; +The current action is: Down +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 4, Column 2. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step3/analysis/7.txt b/maze/task4/example/level_step3/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..51eb285238c89a169405343fae2c6bd20fe45ce3 --- /dev/null +++ b/maze/task4/example/level_step3/analysis/7.txt @@ -0,0 +1,12 @@ + At the beginning: +- The player is at Row 2, Column 3; +- There are 7 holes, and they are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The current action is: Down +After this action, the player is now at Row 3, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 3. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step3/answer/0.txt b/maze/task4/example/level_step3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step3/answer/0.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step3/answer/1.txt b/maze/task4/example/level_step3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step3/answer/1.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step3/answer/2.txt b/maze/task4/example/level_step3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step3/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step3/answer/3.txt b/maze/task4/example/level_step3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step3/answer/3.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step3/answer/4.txt b/maze/task4/example/level_step3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step3/answer/4.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step3/answer/5.txt b/maze/task4/example/level_step3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step3/answer/5.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step3/answer/6.txt b/maze/task4/example/level_step3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step3/answer/6.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step3/answer/7.txt b/maze/task4/example/level_step3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step3/answer/7.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step3/img/0.png b/maze/task4/example/level_step3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..53c675225cb4557b1697e4fa4871f0aa14c579b0 --- /dev/null +++ b/maze/task4/example/level_step3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9cd3f0abed81e2b2317756e97906f959f6838129cb8e4d8cdbade95400af2d +size 8586 diff --git a/maze/task4/example/level_step3/img/1.png b/maze/task4/example/level_step3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4a0903120ced4f1435f2bb0639a6269e6cc4af0c --- /dev/null +++ b/maze/task4/example/level_step3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74af2dd35494e7ad36b0f64e762d05cb3c97dd356bee2ec1181c8288dfe08e3 +size 9376 diff --git a/maze/task4/example/level_step3/img/2.png b/maze/task4/example/level_step3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task4/example/level_step3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task4/example/level_step3/img/3.png b/maze/task4/example/level_step3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8ebffed4486e9132bdafc90a08b1c76caac23fa4 --- /dev/null +++ b/maze/task4/example/level_step3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86a19ab1070ac6055aa98646ce298bd4f0e1d629669a776a07fd559e6d38617 +size 10310 diff --git a/maze/task4/example/level_step3/img/4.png b/maze/task4/example/level_step3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1c325a3f7fbdf475d64bdba3acef2d4a128bb799 --- /dev/null +++ b/maze/task4/example/level_step3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f798564eccf88c5ee4b37adc08b819fa80a506b4f407e1868e4a26e8c477c +size 8728 diff --git a/maze/task4/example/level_step3/img/5.png b/maze/task4/example/level_step3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task4/example/level_step3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task4/example/level_step3/img/6.png b/maze/task4/example/level_step3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d678de716d7d8dca8fe4c28274c1c3190c3a5daf --- /dev/null +++ b/maze/task4/example/level_step3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede0146f1fedfc9db87a11940d3be1d697e543403e34821afea5e6e877608aa5 +size 10274 diff --git a/maze/task4/example/level_step3/img/7.png b/maze/task4/example/level_step3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f814f3af4a4514eea937c4425d373246a0eddf97 --- /dev/null +++ b/maze/task4/example/level_step3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7524981f599a7d73e4d8fbec30dfe5b20a4391ecea7e63082541a4fb06ee3bfb +size 9570 diff --git a/maze/task4/example/level_step3/pure_text/0.txt b/maze/task4/example/level_step3/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d7462603221ecb6cb543a980d631f78a9a66620 --- /dev/null +++ b/maze/task4/example/level_step3/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/example/level_step3/pure_text/1.txt b/maze/task4/example/level_step3/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..47f6f1a366f55cbdf81b9704b6b980947cf8c972 --- /dev/null +++ b/maze/task4/example/level_step3/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/example/level_step3/pure_text/2.txt b/maze/task4/example/level_step3/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task4/example/level_step3/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step3/pure_text/3.txt b/maze/task4/example/level_step3/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..18e310e4422438223d029090d1d3f0a0a01c79b3 --- /dev/null +++ b/maze/task4/example/level_step3/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step3/pure_text/4.txt b/maze/task4/example/level_step3/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5f803c8feeb4b7e12d1fbd83b67916b7b2e4704 --- /dev/null +++ b/maze/task4/example/level_step3/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 4; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step3/pure_text/5.txt b/maze/task4/example/level_step3/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5a7c360f4d2a91544cb3423491ca285c9a175d1 --- /dev/null +++ b/maze/task4/example/level_step3/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step3/pure_text/6.txt b/maze/task4/example/level_step3/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..5369515948ccf892c5aba7bc76c453ebd421112c --- /dev/null +++ b/maze/task4/example/level_step3/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 2; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step3/pure_text/7.txt b/maze/task4/example/level_step3/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cad32fd2f3808ab35f15942baa29e28b809de924 --- /dev/null +++ b/maze/task4/example/level_step3/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step3/question/0.txt b/maze/task4/example/level_step3/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..36762a075411aab257ab00d010bdce814ff0c6ac --- /dev/null +++ b/maze/task4/example/level_step3/question/0.txt @@ -0,0 +1 @@ +RLD \ No newline at end of file diff --git a/maze/task4/example/level_step3/question/1.txt b/maze/task4/example/level_step3/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..eba0db94c7db2c7b9c9d25eef41db0ac80250446 --- /dev/null +++ b/maze/task4/example/level_step3/question/1.txt @@ -0,0 +1 @@ +RRD \ No newline at end of file diff --git a/maze/task4/example/level_step3/question/2.txt b/maze/task4/example/level_step3/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bcd4d06532095c11e03bb5f6c7f80f7c4b5828 --- /dev/null +++ b/maze/task4/example/level_step3/question/2.txt @@ -0,0 +1 @@ +UUR \ No newline at end of file diff --git a/maze/task4/example/level_step3/question/3.txt b/maze/task4/example/level_step3/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dbf8e623033724a9f903eba076b9e91a913fe29 --- /dev/null +++ b/maze/task4/example/level_step3/question/3.txt @@ -0,0 +1 @@ +DLD \ No newline at end of file diff --git a/maze/task4/example/level_step3/question/4.txt b/maze/task4/example/level_step3/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..932d1edb6769e843d1ec8bf745716136d741772c --- /dev/null +++ b/maze/task4/example/level_step3/question/4.txt @@ -0,0 +1 @@ +LLL \ No newline at end of file diff --git a/maze/task4/example/level_step3/question/5.txt b/maze/task4/example/level_step3/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9b6f39ee719c4bdef5f26b73fd6c1b20d718e03 --- /dev/null +++ b/maze/task4/example/level_step3/question/5.txt @@ -0,0 +1 @@ +DLR \ No newline at end of file diff --git a/maze/task4/example/level_step3/question/6.txt b/maze/task4/example/level_step3/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9b6f39ee719c4bdef5f26b73fd6c1b20d718e03 --- /dev/null +++ b/maze/task4/example/level_step3/question/6.txt @@ -0,0 +1 @@ +DLR \ No newline at end of file diff --git a/maze/task4/example/level_step3/question/7.txt b/maze/task4/example/level_step3/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..92d2df3117ff0126bf35fa1730ceefad60a1e92b --- /dev/null +++ b/maze/task4/example/level_step3/question/7.txt @@ -0,0 +1 @@ +DDD \ No newline at end of file diff --git a/maze/task4/example/level_step3/special_text/0.txt b/maze/task4/example/level_step3/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..85d88b849a1bc24f810062fe9bed19b90331a9fc --- /dev/null +++ b/maze/task4/example/level_step3/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +____# +__@__ +*____ \ No newline at end of file diff --git a/maze/task4/example/level_step3/special_text/1.txt b/maze/task4/example/level_step3/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a7a8822c96a024247dd4483212cecfea577df13 --- /dev/null +++ b/maze/task4/example/level_step3/special_text/1.txt @@ -0,0 +1,5 @@ +__@_# +___#_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/example/level_step3/special_text/2.txt b/maze/task4/example/level_step3/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..048936f4edf772d59f702bd13490217b5ce9d207 --- /dev/null +++ b/maze/task4/example/level_step3/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +__### +_____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/example/level_step3/special_text/3.txt b/maze/task4/example/level_step3/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..73375055227474deb8c95d3758132c192511f0b1 --- /dev/null +++ b/maze/task4/example/level_step3/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_##__ +_____ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/example/level_step3/special_text/4.txt b/maze/task4/example/level_step3/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..82d398c2cfdddb18597c4da661949dbe06363355 --- /dev/null +++ b/maze/task4/example/level_step3/special_text/4.txt @@ -0,0 +1,5 @@ +___#@ +_____ +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/example/level_step3/special_text/5.txt b/maze/task4/example/level_step3/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da829c21a8c7e84d7331b0713ca8ff4103eb23a --- /dev/null +++ b/maze/task4/example/level_step3/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +___#_ +_@___ +___*_ \ No newline at end of file diff --git a/maze/task4/example/level_step3/special_text/6.txt b/maze/task4/example/level_step3/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..225fdfeb428b46d61f1fadaff0859cbadae704e8 --- /dev/null +++ b/maze/task4/example/level_step3/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +_#__# +_____ \ No newline at end of file diff --git a/maze/task4/example/level_step3/special_text/7.txt b/maze/task4/example/level_step3/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..16c288d9912871111553377ec177e0645df42889 --- /dev/null +++ b/maze/task4/example/level_step3/special_text/7.txt @@ -0,0 +1,5 @@ +___*_ +__@__ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/example/level_step3/table/0.txt b/maze/task4/example/level_step3/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..71a2cd22e79422b7d477a4141c2e19b05c3bd1f5 --- /dev/null +++ b/maze/task4/example/level_step3/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step3/table/1.txt b/maze/task4/example/level_step3/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad86e0c1a7c3ae43ea01845957a463b72301eb89 --- /dev/null +++ b/maze/task4/example/level_step3/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/example/level_step3/table/2.txt b/maze/task4/example/level_step3/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task4/example/level_step3/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/example/level_step3/table/3.txt b/maze/task4/example/level_step3/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..32bafd8b961690ed487a6261e5c474a0aa3b794e --- /dev/null +++ b/maze/task4/example/level_step3/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step3/table/4.txt b/maze/task4/example/level_step3/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a474fb8a8e938050dc0da78e1c81f89398e2ee57 --- /dev/null +++ b/maze/task4/example/level_step3/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step3/table/5.txt b/maze/task4/example/level_step3/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da45b1e61a5685cb46325f1a7c0f88321df2ae --- /dev/null +++ b/maze/task4/example/level_step3/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/example/level_step3/table/6.txt b/maze/task4/example/level_step3/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1aeda26c84be239ca56c671c14106ee0b63b1a2 --- /dev/null +++ b/maze/task4/example/level_step3/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step3/table/7.txt b/maze/task4/example/level_step3/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc02ca1df883fa37a50dfdd0cd46b7626d287d31 --- /dev/null +++ b/maze/task4/example/level_step3/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/example/level_step3/text/0.txt b/maze/task4/example/level_step3/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed46ff986eabcbfa5704583f5402f52a9c0c483 --- /dev/null +++ b/maze/task4/example/level_step3/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFFH +FFSFF +GFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step3/text/1.txt b/maze/task4/example/level_step3/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a5b92c581c127a5187f95646a38c068bfd772b6 --- /dev/null +++ b/maze/task4/example/level_step3/text/1.txt @@ -0,0 +1,5 @@ +FFSFH +FFFHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/example/level_step3/text/2.txt b/maze/task4/example/level_step3/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cb13026072ba0623bbd69f829f69e99a8eebd14 --- /dev/null +++ b/maze/task4/example/level_step3/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +FFHHH +FFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/example/level_step3/text/3.txt b/maze/task4/example/level_step3/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba8a6510b89d0a56ec3bef12f1a30e7a370fb0fa --- /dev/null +++ b/maze/task4/example/level_step3/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHHFF +FFFFF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step3/text/4.txt b/maze/task4/example/level_step3/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..705355f3c5454f749c04f5707f23ebd4b80e3869 --- /dev/null +++ b/maze/task4/example/level_step3/text/4.txt @@ -0,0 +1,5 @@ +FFFHS +FFFFF +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step3/text/5.txt b/maze/task4/example/level_step3/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6a477a19a0ceaa1810c7ba9b9493628e24f6350 --- /dev/null +++ b/maze/task4/example/level_step3/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FFFHF +FSFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/example/level_step3/text/6.txt b/maze/task4/example/level_step3/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3511f809b044105421a14246d429ca9de64e2cf --- /dev/null +++ b/maze/task4/example/level_step3/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FHFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step3/text/7.txt b/maze/task4/example/level_step3/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1cd6ef21cd427b57e3ed724a1df59f577d2dc96 --- /dev/null +++ b/maze/task4/example/level_step3/text/7.txt @@ -0,0 +1,5 @@ +FFFGF +FFSFF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/example/level_step5/analysis/0.txt b/maze/task4/example/level_step5/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d33c22e9c9b59b0f9a846332448e72b816d52ac6 --- /dev/null +++ b/maze/task4/example/level_step5/analysis/0.txt @@ -0,0 +1,15 @@ + At the beginning: +- The player is at Row 4, Column 3; +- There are 3 holes, and they are at: Row 2, Column 2; Row 3, Column 5; Row 4, Column 5; +The current action is: Down +After this action, the player is now at Row 5, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 4, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 4, Column 5. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step5/analysis/1.txt b/maze/task4/example/level_step5/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c51ad3b0bab0cdee10cd42a279098f034b125f59 --- /dev/null +++ b/maze/task4/example/level_step5/analysis/1.txt @@ -0,0 +1,18 @@ + At the beginning: +- The player is at Row 1, Column 3; +- There are 2 holes, and they are at: Row 2, Column 4; Row 4, Column 5; +The current action is: Down +After this action, the player is now at Row 2, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 1, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 1, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 1, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 1, Column 2. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step5/analysis/2.txt b/maze/task4/example/level_step5/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..776863c6257be566326420b6b1056ad922173187 --- /dev/null +++ b/maze/task4/example/level_step5/analysis/2.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 4, Column 1; +- There are 8 holes, and they are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 4, Column 2; +The current action is: Right +After this action, the player is now at Row 4, Column 2. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step5/analysis/3.txt b/maze/task4/example/level_step5/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..eba68e27b2639c60b65292167331433a2c766c4a --- /dev/null +++ b/maze/task4/example/level_step5/analysis/3.txt @@ -0,0 +1,18 @@ + At the beginning: +- The player is at Row 1, Column 4; +- There are 5 holes, and they are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The current action is: Down +After this action, the player is now at Row 2, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 2, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 1, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 1, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 1, Column 3. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step5/analysis/4.txt b/maze/task4/example/level_step5/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ccd2c6b3ff181e1c528e7211618e8e346d6177f --- /dev/null +++ b/maze/task4/example/level_step5/analysis/4.txt @@ -0,0 +1,18 @@ + At the beginning: +- The player is at Row 1, Column 5; +- There are 1 holes, and they are at: Row 4, Column 3; +The current action is: Left +After this action, the player is now at Row 1, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 2, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 1, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 2, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 3, Column 4. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step5/analysis/5.txt b/maze/task4/example/level_step5/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..284eafda3112d50591fa8812cc1c8f028904a279 --- /dev/null +++ b/maze/task4/example/level_step5/analysis/5.txt @@ -0,0 +1,18 @@ + At the beginning: +- The player is at Row 4, Column 2; +- There are 4 holes, and they are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; Row 3, Column 2; +The current action is: Right +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 4, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 4, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 3, Column 2. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step5/analysis/6.txt b/maze/task4/example/level_step5/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..c76b4844f0a0b0be60837bc23fd00e25fb165a25 --- /dev/null +++ b/maze/task4/example/level_step5/analysis/6.txt @@ -0,0 +1,18 @@ + At the beginning: +- The player is at Row 3, Column 3; +- There are 4 holes, and they are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The current action is: Down +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 4, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step5/analysis/7.txt b/maze/task4/example/level_step5/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0262fc1d4d883ce9a86bd69ad27ef282d096856 --- /dev/null +++ b/maze/task4/example/level_step5/analysis/7.txt @@ -0,0 +1,18 @@ + At the beginning: +- The player is at Row 2, Column 3; +- There are 8 holes, and they are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; Row 1, Column 1; +The current action is: Up +After this action, the player is now at Row 1, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 2, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 2, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 2, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 1, Column 1. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step5/answer/0.txt b/maze/task4/example/level_step5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step5/answer/0.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step5/answer/1.txt b/maze/task4/example/level_step5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step5/answer/1.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step5/answer/2.txt b/maze/task4/example/level_step5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step5/answer/2.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step5/answer/3.txt b/maze/task4/example/level_step5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step5/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step5/answer/4.txt b/maze/task4/example/level_step5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step5/answer/4.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step5/answer/5.txt b/maze/task4/example/level_step5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step5/answer/5.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step5/answer/6.txt b/maze/task4/example/level_step5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step5/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step5/answer/7.txt b/maze/task4/example/level_step5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step5/answer/7.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step5/img/0.png b/maze/task4/example/level_step5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3fae12f1855e3e9ffd89c19e4d0517037245ff16 --- /dev/null +++ b/maze/task4/example/level_step5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296547052ccf666a126db382786807ab5fb12a4b330e04e371b8f181d17e95b3 +size 9377 diff --git a/maze/task4/example/level_step5/img/1.png b/maze/task4/example/level_step5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f343446822ebf94b71b14c3eeb39c63926ce1b75 --- /dev/null +++ b/maze/task4/example/level_step5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662a2be0231567d54a9bb941372aa13dba653e840e108fc5bd67999b9808970b +size 8576 diff --git a/maze/task4/example/level_step5/img/2.png b/maze/task4/example/level_step5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task4/example/level_step5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task4/example/level_step5/img/3.png b/maze/task4/example/level_step5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task4/example/level_step5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task4/example/level_step5/img/4.png b/maze/task4/example/level_step5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcf17753a14d717d70601f1726efa48591720d2 --- /dev/null +++ b/maze/task4/example/level_step5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1527826071149f7d3fe78db8c909ec14d40d7ac2ff90cad4f018091251dbf8c2 +size 7791 diff --git a/maze/task4/example/level_step5/img/5.png b/maze/task4/example/level_step5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9dbce7d0893d107c2db6e5125efeb57b0625ffb9 --- /dev/null +++ b/maze/task4/example/level_step5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7354e61c51ea857c8eb2d52735cf1a36bb75d7c26878db0bce3092b12aa1a8 +size 9548 diff --git a/maze/task4/example/level_step5/img/6.png b/maze/task4/example/level_step5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task4/example/level_step5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task4/example/level_step5/img/7.png b/maze/task4/example/level_step5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a951a57207c37c5a7d0fef95fc2cdc8d9284f638 --- /dev/null +++ b/maze/task4/example/level_step5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce574b68c3409e66b489c391cec7ff3e8e1a26c11488a6fedc42a37cb034daa2 +size 10397 diff --git a/maze/task4/example/level_step5/pure_text/0.txt b/maze/task4/example/level_step5/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..58cf85de68a6d5e8fc5fb6651142f5b2ed2e0967 --- /dev/null +++ b/maze/task4/example/level_step5/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; Row 4, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/example/level_step5/pure_text/1.txt b/maze/task4/example/level_step5/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d0c98b9c25646ad5073a63739579f3fdeea190 --- /dev/null +++ b/maze/task4/example/level_step5/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/example/level_step5/pure_text/2.txt b/maze/task4/example/level_step5/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task4/example/level_step5/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step5/pure_text/3.txt b/maze/task4/example/level_step5/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..69e73a8c23f7d57f3e51e58b7901e281cad0f7a0 --- /dev/null +++ b/maze/task4/example/level_step5/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step5/pure_text/4.txt b/maze/task4/example/level_step5/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59ffc168cdb8212ad7ec3dbc639e372f3d7db13 --- /dev/null +++ b/maze/task4/example/level_step5/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step5/pure_text/5.txt b/maze/task4/example/level_step5/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fcffd9626d1512f1d47b51f6f517a0de70cff9c --- /dev/null +++ b/maze/task4/example/level_step5/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step5/pure_text/6.txt b/maze/task4/example/level_step5/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..090e9c1d826401003433a544b5a036f1e691e749 --- /dev/null +++ b/maze/task4/example/level_step5/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step5/pure_text/7.txt b/maze/task4/example/level_step5/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b5bcdacff62c926a0196612fab151d9236a8058 --- /dev/null +++ b/maze/task4/example/level_step5/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step5/question/0.txt b/maze/task4/example/level_step5/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..40a86ff4bc1817787d9025f1985a5528dbaedca9 --- /dev/null +++ b/maze/task4/example/level_step5/question/0.txt @@ -0,0 +1 @@ +DURRU \ No newline at end of file diff --git a/maze/task4/example/level_step5/question/1.txt b/maze/task4/example/level_step5/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe341f62bb6997cc3541356e5ce5792e79b47423 --- /dev/null +++ b/maze/task4/example/level_step5/question/1.txt @@ -0,0 +1 @@ +DULRL \ No newline at end of file diff --git a/maze/task4/example/level_step5/question/2.txt b/maze/task4/example/level_step5/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfcda4114901ebfee9c824f6e276a05aab571b2e --- /dev/null +++ b/maze/task4/example/level_step5/question/2.txt @@ -0,0 +1 @@ +RRURL \ No newline at end of file diff --git a/maze/task4/example/level_step5/question/3.txt b/maze/task4/example/level_step5/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e0b18e43e667ece7af905873f9e92a74081bb65 --- /dev/null +++ b/maze/task4/example/level_step5/question/3.txt @@ -0,0 +1 @@ +DLULR \ No newline at end of file diff --git a/maze/task4/example/level_step5/question/4.txt b/maze/task4/example/level_step5/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..82b48fe502b2be019f3d355c252f67fac7f69470 --- /dev/null +++ b/maze/task4/example/level_step5/question/4.txt @@ -0,0 +1 @@ +LDUDD \ No newline at end of file diff --git a/maze/task4/example/level_step5/question/5.txt b/maze/task4/example/level_step5/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2525215bcc801abcf5c19d1a75539fe46ba1da0a --- /dev/null +++ b/maze/task4/example/level_step5/question/5.txt @@ -0,0 +1 @@ +RLDUU \ No newline at end of file diff --git a/maze/task4/example/level_step5/question/6.txt b/maze/task4/example/level_step5/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce3129965a4db82deaa785855470df326bcc1fc5 --- /dev/null +++ b/maze/task4/example/level_step5/question/6.txt @@ -0,0 +1 @@ +DDULR \ No newline at end of file diff --git a/maze/task4/example/level_step5/question/7.txt b/maze/task4/example/level_step5/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8187afcb11a85adbb80980beb46fe3d80d13e3b --- /dev/null +++ b/maze/task4/example/level_step5/question/7.txt @@ -0,0 +1 @@ +UDLLU \ No newline at end of file diff --git a/maze/task4/example/level_step5/special_text/0.txt b/maze/task4/example/level_step5/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4b996986a96b141b2b709dbe7bf399d85d1999e --- /dev/null +++ b/maze/task4/example/level_step5/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +____# +__@_# +*____ \ No newline at end of file diff --git a/maze/task4/example/level_step5/special_text/1.txt b/maze/task4/example/level_step5/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..36493eafb5edfef8d172c61adcf5ca23b3a51a87 --- /dev/null +++ b/maze/task4/example/level_step5/special_text/1.txt @@ -0,0 +1,5 @@ +__@__ +___#_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/example/level_step5/special_text/2.txt b/maze/task4/example/level_step5/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..048936f4edf772d59f702bd13490217b5ce9d207 --- /dev/null +++ b/maze/task4/example/level_step5/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +__### +_____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/example/level_step5/special_text/3.txt b/maze/task4/example/level_step5/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..db97ae9d4b28569612d83923a1d3d5a271c0f04b --- /dev/null +++ b/maze/task4/example/level_step5/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_#___ +_____ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/example/level_step5/special_text/4.txt b/maze/task4/example/level_step5/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..502e775fe3e2fca70814b0024f0c4843bcb1d419 --- /dev/null +++ b/maze/task4/example/level_step5/special_text/4.txt @@ -0,0 +1,5 @@ +____@ +_____ +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/example/level_step5/special_text/5.txt b/maze/task4/example/level_step5/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fa32162de1dc0864330a28474aedc933b0ca158 --- /dev/null +++ b/maze/task4/example/level_step5/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +_#_#_ +_@___ +___*_ \ No newline at end of file diff --git a/maze/task4/example/level_step5/special_text/6.txt b/maze/task4/example/level_step5/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..06ac61b196846a33b6224efe7ab1f762ac624cf4 --- /dev/null +++ b/maze/task4/example/level_step5/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +____# +_____ \ No newline at end of file diff --git a/maze/task4/example/level_step5/special_text/7.txt b/maze/task4/example/level_step5/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6d702903206fbb4548fb38c4408ed6f4397938a --- /dev/null +++ b/maze/task4/example/level_step5/special_text/7.txt @@ -0,0 +1,5 @@ +#__*_ +__@__ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/example/level_step5/table/0.txt b/maze/task4/example/level_step5/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..132fe7a5436b82e6c17e6e6c0a0fe3c8ae6acb9e --- /dev/null +++ b/maze/task4/example/level_step5/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | # | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step5/table/1.txt b/maze/task4/example/level_step5/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9644ba4395c19da791aa1dca093cacf7aa2e64e1 --- /dev/null +++ b/maze/task4/example/level_step5/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/example/level_step5/table/2.txt b/maze/task4/example/level_step5/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task4/example/level_step5/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/example/level_step5/table/3.txt b/maze/task4/example/level_step5/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9afb12ea5b879f7d3d1aee81db7632744fe5e1 --- /dev/null +++ b/maze/task4/example/level_step5/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step5/table/4.txt b/maze/task4/example/level_step5/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a319701482090faefd8ce684edd4b3d512e35984 --- /dev/null +++ b/maze/task4/example/level_step5/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step5/table/5.txt b/maze/task4/example/level_step5/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..a566ecde3aa1eff8adf090908a2d0d7033b80e4b --- /dev/null +++ b/maze/task4/example/level_step5/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/example/level_step5/table/6.txt b/maze/task4/example/level_step5/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2521dc5a2e4b78cd93244c384377b6d6b0823192 --- /dev/null +++ b/maze/task4/example/level_step5/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step5/table/7.txt b/maze/task4/example/level_step5/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..e38650972e6760e0300f57bad6a5feddae0b369f --- /dev/null +++ b/maze/task4/example/level_step5/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/example/level_step5/text/0.txt b/maze/task4/example/level_step5/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1905284b4274477e0ab3f3a56daf42ca455b3b0b --- /dev/null +++ b/maze/task4/example/level_step5/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFFH +FFSFH +GFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step5/text/1.txt b/maze/task4/example/level_step5/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a34c55c2e4e951fa6e13cb32e1e733d6fe05eb24 --- /dev/null +++ b/maze/task4/example/level_step5/text/1.txt @@ -0,0 +1,5 @@ +FFSFF +FFFHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/example/level_step5/text/2.txt b/maze/task4/example/level_step5/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cb13026072ba0623bbd69f829f69e99a8eebd14 --- /dev/null +++ b/maze/task4/example/level_step5/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +FFHHH +FFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/example/level_step5/text/3.txt b/maze/task4/example/level_step5/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a9e740bd78265bf06ae44f5e44d9c50f1f66bb --- /dev/null +++ b/maze/task4/example/level_step5/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHFFF +FFFFF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step5/text/4.txt b/maze/task4/example/level_step5/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3cf6eeb8bc7ed068008471ec53393fad67964e0 --- /dev/null +++ b/maze/task4/example/level_step5/text/4.txt @@ -0,0 +1,5 @@ +FFFFS +FFFFF +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step5/text/5.txt b/maze/task4/example/level_step5/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cd08f3f69fdb6113d240b7699454b0bbe3ebc86 --- /dev/null +++ b/maze/task4/example/level_step5/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FHFHF +FSFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/example/level_step5/text/6.txt b/maze/task4/example/level_step5/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9277db9448443fe0cc50e301886dbfa02862ff92 --- /dev/null +++ b/maze/task4/example/level_step5/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FFFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step5/text/7.txt b/maze/task4/example/level_step5/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..c862715a330b5f4cec34bf92872cd23ad6d257c8 --- /dev/null +++ b/maze/task4/example/level_step5/text/7.txt @@ -0,0 +1,5 @@ +HFFGF +FFSFF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/example/level_step7/analysis/0.txt b/maze/task4/example/level_step7/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff53067ba731a323e9d5c576e7fd385c6f4882d8 --- /dev/null +++ b/maze/task4/example/level_step7/analysis/0.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 4, Column 3; +- There are 3 holes, and they are at: Row 2, Column 2; Row 3, Column 5; Row 4, Column 4; +The current action is: Right +After this action, the player is now at Row 4, Column 4. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step7/analysis/1.txt b/maze/task4/example/level_step7/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6352524892f39c8cf881aa1b7de3f48f0447decf --- /dev/null +++ b/maze/task4/example/level_step7/analysis/1.txt @@ -0,0 +1,9 @@ + At the beginning: +- The player is at Row 1, Column 3; +- There are 3 holes, and they are at: Row 2, Column 4; Row 4, Column 5; Row 1, Column 5; +The current action is: Right +After this action, the player is now at Row 1, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 1, Column 5. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step7/analysis/2.txt b/maze/task4/example/level_step7/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e40c3158fa64cf0c4577f1a7472f1ab510795281 --- /dev/null +++ b/maze/task4/example/level_step7/analysis/2.txt @@ -0,0 +1,24 @@ + At the beginning: +- The player is at Row 4, Column 1; +- There are 7 holes, and they are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The current action is: Up +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 4, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 3, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 2, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 3, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step7/analysis/3.txt b/maze/task4/example/level_step7/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d9f4debcd4c690efec01d8de06a9255ce51d0dd --- /dev/null +++ b/maze/task4/example/level_step7/analysis/3.txt @@ -0,0 +1,24 @@ + At the beginning: +- The player is at Row 1, Column 4; +- There are 5 holes, and they are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The current action is: Down +After this action, the player is now at Row 2, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 3, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 4, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 5, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 5, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 5, Column 5. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step7/analysis/4.txt b/maze/task4/example/level_step7/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..40b069164b940e715da604fed03c1bac1e35ff9b --- /dev/null +++ b/maze/task4/example/level_step7/analysis/4.txt @@ -0,0 +1,6 @@ + At the beginning: +- The player is at Row 1, Column 5; +- There are 2 holes, and they are at: Row 4, Column 3; Row 1, Column 4; +The current action is: Left +After this action, the player is now at Row 1, Column 4. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step7/analysis/5.txt b/maze/task4/example/level_step7/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ab1cf810311590086e990093fd7fdc5b22ad457 --- /dev/null +++ b/maze/task4/example/level_step7/analysis/5.txt @@ -0,0 +1,24 @@ + At the beginning: +- The player is at Row 4, Column 2; +- There are 3 holes, and they are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The current action is: Left +After this action, the player is now at Row 4, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 4, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 4, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 5, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 5, Column 2. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step7/analysis/6.txt b/maze/task4/example/level_step7/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..479612d203552d6143c052ff8a07482ef8dfc3ef --- /dev/null +++ b/maze/task4/example/level_step7/analysis/6.txt @@ -0,0 +1,12 @@ + At the beginning: +- The player is at Row 3, Column 3; +- There are 5 holes, and they are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; Row 5, Column 4; +The current action is: Down +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 4, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 4. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step7/analysis/7.txt b/maze/task4/example/level_step7/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe85d42d1996f541f69b3ebdc15342edf9cb9cd8 --- /dev/null +++ b/maze/task4/example/level_step7/analysis/7.txt @@ -0,0 +1,24 @@ + At the beginning: +- The player is at Row 2, Column 3; +- There are 7 holes, and they are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The current action is: Right +After this action, the player is now at Row 2, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 2, Column 5. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 3, Column 5. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 4, Column 5. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 3, Column 5. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 4, Column 5. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 3, Column 5. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step7/answer/0.txt b/maze/task4/example/level_step7/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step7/answer/0.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step7/answer/1.txt b/maze/task4/example/level_step7/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step7/answer/1.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step7/answer/2.txt b/maze/task4/example/level_step7/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step7/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step7/answer/3.txt b/maze/task4/example/level_step7/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step7/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step7/answer/4.txt b/maze/task4/example/level_step7/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step7/answer/4.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step7/answer/5.txt b/maze/task4/example/level_step7/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step7/answer/5.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step7/answer/6.txt b/maze/task4/example/level_step7/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step7/answer/6.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step7/answer/7.txt b/maze/task4/example/level_step7/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step7/answer/7.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step7/img/0.png b/maze/task4/example/level_step7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6195220149d9ce3c9afc4063ecb0f86746d4f131 --- /dev/null +++ b/maze/task4/example/level_step7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055c62b0e5e129a78fbc976865181d3f214d71d16edbe8785027209f28523c58 +size 9421 diff --git a/maze/task4/example/level_step7/img/1.png b/maze/task4/example/level_step7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4a0903120ced4f1435f2bb0639a6269e6cc4af0c --- /dev/null +++ b/maze/task4/example/level_step7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74af2dd35494e7ad36b0f64e762d05cb3c97dd356bee2ec1181c8288dfe08e3 +size 9376 diff --git a/maze/task4/example/level_step7/img/2.png b/maze/task4/example/level_step7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task4/example/level_step7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task4/example/level_step7/img/3.png b/maze/task4/example/level_step7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task4/example/level_step7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task4/example/level_step7/img/4.png b/maze/task4/example/level_step7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1c325a3f7fbdf475d64bdba3acef2d4a128bb799 --- /dev/null +++ b/maze/task4/example/level_step7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f798564eccf88c5ee4b37adc08b819fa80a506b4f407e1868e4a26e8c477c +size 8728 diff --git a/maze/task4/example/level_step7/img/5.png b/maze/task4/example/level_step7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task4/example/level_step7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task4/example/level_step7/img/6.png b/maze/task4/example/level_step7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e7756c9be5ffca2dccab6bdeeb54ea73a646aecf --- /dev/null +++ b/maze/task4/example/level_step7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b739d3632779bfdc86ce3195a4f699b6eac588b400a69d10691f2c557c66ea +size 11031 diff --git a/maze/task4/example/level_step7/img/7.png b/maze/task4/example/level_step7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f814f3af4a4514eea937c4425d373246a0eddf97 --- /dev/null +++ b/maze/task4/example/level_step7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7524981f599a7d73e4d8fbec30dfe5b20a4391ecea7e63082541a4fb06ee3bfb +size 9570 diff --git a/maze/task4/example/level_step7/pure_text/0.txt b/maze/task4/example/level_step7/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2688bc91a8e5fee53f33b9534e821b2e5aa72211 --- /dev/null +++ b/maze/task4/example/level_step7/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; Row 4, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/example/level_step7/pure_text/1.txt b/maze/task4/example/level_step7/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..47f6f1a366f55cbdf81b9704b6b980947cf8c972 --- /dev/null +++ b/maze/task4/example/level_step7/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/example/level_step7/pure_text/2.txt b/maze/task4/example/level_step7/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task4/example/level_step7/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step7/pure_text/3.txt b/maze/task4/example/level_step7/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..69e73a8c23f7d57f3e51e58b7901e281cad0f7a0 --- /dev/null +++ b/maze/task4/example/level_step7/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step7/pure_text/4.txt b/maze/task4/example/level_step7/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5f803c8feeb4b7e12d1fbd83b67916b7b2e4704 --- /dev/null +++ b/maze/task4/example/level_step7/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 4; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step7/pure_text/5.txt b/maze/task4/example/level_step7/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5a7c360f4d2a91544cb3423491ca285c9a175d1 --- /dev/null +++ b/maze/task4/example/level_step7/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step7/pure_text/6.txt b/maze/task4/example/level_step7/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8387f6d30deb2c6ab62b4907e45f9e3f633f828 --- /dev/null +++ b/maze/task4/example/level_step7/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step7/pure_text/7.txt b/maze/task4/example/level_step7/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cad32fd2f3808ab35f15942baa29e28b809de924 --- /dev/null +++ b/maze/task4/example/level_step7/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step7/question/0.txt b/maze/task4/example/level_step7/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..b843d32c69b91b4620fe06445d28c25f28167408 --- /dev/null +++ b/maze/task4/example/level_step7/question/0.txt @@ -0,0 +1 @@ +RDRLUUD \ No newline at end of file diff --git a/maze/task4/example/level_step7/question/1.txt b/maze/task4/example/level_step7/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc65ad12034be709ff3c715de5eef144f3ea9cd1 --- /dev/null +++ b/maze/task4/example/level_step7/question/1.txt @@ -0,0 +1 @@ +RRDUDUL \ No newline at end of file diff --git a/maze/task4/example/level_step7/question/2.txt b/maze/task4/example/level_step7/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6a0931b8d0d611f986fa5b3c9cf61980e9a7ce2 --- /dev/null +++ b/maze/task4/example/level_step7/question/2.txt @@ -0,0 +1 @@ +UDURUDL \ No newline at end of file diff --git a/maze/task4/example/level_step7/question/3.txt b/maze/task4/example/level_step7/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..0590f2a8d4449b3be9e7eac8b70745411ceb8cbe --- /dev/null +++ b/maze/task4/example/level_step7/question/3.txt @@ -0,0 +1 @@ +DDDDLRR \ No newline at end of file diff --git a/maze/task4/example/level_step7/question/4.txt b/maze/task4/example/level_step7/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ada748a6d3f01248e69db46897b4ccda674660b --- /dev/null +++ b/maze/task4/example/level_step7/question/4.txt @@ -0,0 +1 @@ +LDDDUUD \ No newline at end of file diff --git a/maze/task4/example/level_step7/question/5.txt b/maze/task4/example/level_step7/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..66bfe4e63d06d9d4a709aab40cf668947fc4c780 --- /dev/null +++ b/maze/task4/example/level_step7/question/5.txt @@ -0,0 +1 @@ +LDURDLR \ No newline at end of file diff --git a/maze/task4/example/level_step7/question/6.txt b/maze/task4/example/level_step7/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..6032bbce433d5ae0e53017b67cd8dfd1054bdf7b --- /dev/null +++ b/maze/task4/example/level_step7/question/6.txt @@ -0,0 +1 @@ +DRDUDLR \ No newline at end of file diff --git a/maze/task4/example/level_step7/question/7.txt b/maze/task4/example/level_step7/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5fddbb3cc9d7efb9ffdedef84230bc8bdf50607 --- /dev/null +++ b/maze/task4/example/level_step7/question/7.txt @@ -0,0 +1 @@ +RRDDUDU \ No newline at end of file diff --git a/maze/task4/example/level_step7/special_text/0.txt b/maze/task4/example/level_step7/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d25bc96412b552d21bb427ff6f4172dce384944 --- /dev/null +++ b/maze/task4/example/level_step7/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +____# +__@#_ +*____ \ No newline at end of file diff --git a/maze/task4/example/level_step7/special_text/1.txt b/maze/task4/example/level_step7/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a7a8822c96a024247dd4483212cecfea577df13 --- /dev/null +++ b/maze/task4/example/level_step7/special_text/1.txt @@ -0,0 +1,5 @@ +__@_# +___#_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/example/level_step7/special_text/2.txt b/maze/task4/example/level_step7/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..048936f4edf772d59f702bd13490217b5ce9d207 --- /dev/null +++ b/maze/task4/example/level_step7/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +__### +_____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/example/level_step7/special_text/3.txt b/maze/task4/example/level_step7/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..db97ae9d4b28569612d83923a1d3d5a271c0f04b --- /dev/null +++ b/maze/task4/example/level_step7/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_#___ +_____ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/example/level_step7/special_text/4.txt b/maze/task4/example/level_step7/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..82d398c2cfdddb18597c4da661949dbe06363355 --- /dev/null +++ b/maze/task4/example/level_step7/special_text/4.txt @@ -0,0 +1,5 @@ +___#@ +_____ +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/example/level_step7/special_text/5.txt b/maze/task4/example/level_step7/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da829c21a8c7e84d7331b0713ca8ff4103eb23a --- /dev/null +++ b/maze/task4/example/level_step7/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +___#_ +_@___ +___*_ \ No newline at end of file diff --git a/maze/task4/example/level_step7/special_text/6.txt b/maze/task4/example/level_step7/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9c86cfc0181f925a036a16a3062a1641f9e4a4a --- /dev/null +++ b/maze/task4/example/level_step7/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +____# +___#_ \ No newline at end of file diff --git a/maze/task4/example/level_step7/special_text/7.txt b/maze/task4/example/level_step7/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..16c288d9912871111553377ec177e0645df42889 --- /dev/null +++ b/maze/task4/example/level_step7/special_text/7.txt @@ -0,0 +1,5 @@ +___*_ +__@__ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/example/level_step7/table/0.txt b/maze/task4/example/level_step7/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..fec9c15cad0ca5f6e8307e6026bfcdec13417247 --- /dev/null +++ b/maze/task4/example/level_step7/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step7/table/1.txt b/maze/task4/example/level_step7/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad86e0c1a7c3ae43ea01845957a463b72301eb89 --- /dev/null +++ b/maze/task4/example/level_step7/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/example/level_step7/table/2.txt b/maze/task4/example/level_step7/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task4/example/level_step7/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/example/level_step7/table/3.txt b/maze/task4/example/level_step7/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9afb12ea5b879f7d3d1aee81db7632744fe5e1 --- /dev/null +++ b/maze/task4/example/level_step7/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step7/table/4.txt b/maze/task4/example/level_step7/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a474fb8a8e938050dc0da78e1c81f89398e2ee57 --- /dev/null +++ b/maze/task4/example/level_step7/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step7/table/5.txt b/maze/task4/example/level_step7/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da45b1e61a5685cb46325f1a7c0f88321df2ae --- /dev/null +++ b/maze/task4/example/level_step7/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/example/level_step7/table/6.txt b/maze/task4/example/level_step7/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bf126735af56cb89ae87a31435b8c4c22eb0997 --- /dev/null +++ b/maze/task4/example/level_step7/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/example/level_step7/table/7.txt b/maze/task4/example/level_step7/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc02ca1df883fa37a50dfdd0cd46b7626d287d31 --- /dev/null +++ b/maze/task4/example/level_step7/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/example/level_step7/text/0.txt b/maze/task4/example/level_step7/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..f76c42679b4b8b38f0034ee2c612dd9e42adf733 --- /dev/null +++ b/maze/task4/example/level_step7/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFFH +FFSHF +GFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step7/text/1.txt b/maze/task4/example/level_step7/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a5b92c581c127a5187f95646a38c068bfd772b6 --- /dev/null +++ b/maze/task4/example/level_step7/text/1.txt @@ -0,0 +1,5 @@ +FFSFH +FFFHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/example/level_step7/text/2.txt b/maze/task4/example/level_step7/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cb13026072ba0623bbd69f829f69e99a8eebd14 --- /dev/null +++ b/maze/task4/example/level_step7/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +FFHHH +FFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/example/level_step7/text/3.txt b/maze/task4/example/level_step7/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a9e740bd78265bf06ae44f5e44d9c50f1f66bb --- /dev/null +++ b/maze/task4/example/level_step7/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHFFF +FFFFF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step7/text/4.txt b/maze/task4/example/level_step7/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..705355f3c5454f749c04f5707f23ebd4b80e3869 --- /dev/null +++ b/maze/task4/example/level_step7/text/4.txt @@ -0,0 +1,5 @@ +FFFHS +FFFFF +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step7/text/5.txt b/maze/task4/example/level_step7/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6a477a19a0ceaa1810c7ba9b9493628e24f6350 --- /dev/null +++ b/maze/task4/example/level_step7/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FFFHF +FSFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/example/level_step7/text/6.txt b/maze/task4/example/level_step7/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..38ea9029327b8b3261c7458728b5169dd3959d59 --- /dev/null +++ b/maze/task4/example/level_step7/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FFFFH +FFFHF \ No newline at end of file diff --git a/maze/task4/example/level_step7/text/7.txt b/maze/task4/example/level_step7/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1cd6ef21cd427b57e3ed724a1df59f577d2dc96 --- /dev/null +++ b/maze/task4/example/level_step7/text/7.txt @@ -0,0 +1,5 @@ +FFFGF +FFSFF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/example/level_step9/analysis/0.txt b/maze/task4/example/level_step9/analysis/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..03516e01be72d18b97a6d073e0784a3f785e303b --- /dev/null +++ b/maze/task4/example/level_step9/analysis/0.txt @@ -0,0 +1,21 @@ + At the beginning: +- The player is at Row 4, Column 3; +- There are 3 holes, and they are at: Row 2, Column 2; Row 3, Column 5; Row 3, Column 4; +The current action is: Up +After this action, the player is now at Row 3, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 2, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 3, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 2, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 3, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 3, Column 4. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step9/analysis/1.txt b/maze/task4/example/level_step9/analysis/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..44732f7ddad2971a331c89c4ddaca4b4eb1ddbcd --- /dev/null +++ b/maze/task4/example/level_step9/analysis/1.txt @@ -0,0 +1,30 @@ + At the beginning: +- The player is at Row 1, Column 3; +- There are 2 holes, and they are at: Row 2, Column 4; Row 4, Column 5; +The current action is: Left +After this action, the player is now at Row 1, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 1, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 1, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 2, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 3, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 3, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 3, Column 2. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step9/analysis/2.txt b/maze/task4/example/level_step9/analysis/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..674ad6539943cb0b9ff8e80aac33bb0fb2e7d9d0 --- /dev/null +++ b/maze/task4/example/level_step9/analysis/2.txt @@ -0,0 +1,30 @@ + At the beginning: +- The player is at Row 4, Column 1; +- There are 7 holes, and they are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The current action is: Up +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 3, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 3, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 3, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 3, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 3, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 4, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 5, Column 3. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step9/analysis/3.txt b/maze/task4/example/level_step9/analysis/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd9e3bd1605e7be3a443ba85e38e9416968ff27f --- /dev/null +++ b/maze/task4/example/level_step9/analysis/3.txt @@ -0,0 +1,9 @@ + At the beginning: +- The player is at Row 1, Column 4; +- There are 6 holes, and they are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; Row 2, Column 3; +The current action is: Left +After this action, the player is now at Row 1, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 2, Column 3. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step9/analysis/4.txt b/maze/task4/example/level_step9/analysis/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a42dc94342c3ca891a33dc39a7ce19b951fc5ff --- /dev/null +++ b/maze/task4/example/level_step9/analysis/4.txt @@ -0,0 +1,9 @@ + At the beginning: +- The player is at Row 1, Column 5; +- There are 2 holes, and they are at: Row 4, Column 3; Row 2, Column 4; +The current action is: Down +After this action, the player is now at Row 2, Column 5. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 2, Column 4. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step9/analysis/5.txt b/maze/task4/example/level_step9/analysis/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..67d377abcde27f16cd40ca2f8352482a55af00d3 --- /dev/null +++ b/maze/task4/example/level_step9/analysis/5.txt @@ -0,0 +1,30 @@ + At the beginning: +- The player is at Row 4, Column 2; +- There are 3 holes, and they are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The current action is: Up +After this action, the player is now at Row 3, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 2, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 3, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 2, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 2, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 2, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 2, Column 1. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step9/analysis/6.txt b/maze/task4/example/level_step9/analysis/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..508cea916a31f91103ac919b5a46b580699d1ab2 --- /dev/null +++ b/maze/task4/example/level_step9/analysis/6.txt @@ -0,0 +1,30 @@ + At the beginning: +- The player is at Row 3, Column 3; +- There are 4 holes, and they are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The current action is: Left +After this action, the player is now at Row 3, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 3, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 4, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 5, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 5, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 4, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 4, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 3, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 2, Column 3. There is no holes at this grid, so we move to next action. + Yes \ No newline at end of file diff --git a/maze/task4/example/level_step9/analysis/7.txt b/maze/task4/example/level_step9/analysis/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c425ba1af203f394bff427fd59610468c403bd4 --- /dev/null +++ b/maze/task4/example/level_step9/analysis/7.txt @@ -0,0 +1,30 @@ + At the beginning: +- The player is at Row 2, Column 3; +- There are 8 holes, and they are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; Row 1, Column 5; +The current action is: Left +After this action, the player is now at Row 2, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Left +After this action, the player is now at Row 2, Column 1. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 2, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 1, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Down +After this action, the player is now at Row 2, Column 2. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 2, Column 3. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 2, Column 4. There is no holes at this grid, so we move to next action. + +The current action is: Right +After this action, the player is now at Row 2, Column 5. There is no holes at this grid, so we move to next action. + +The current action is: Up +After this action, the player is now at Row 1, Column 5. There is a hole at this grid. Therefore, the action is not safe. + No \ No newline at end of file diff --git a/maze/task4/example/level_step9/answer/0.txt b/maze/task4/example/level_step9/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step9/answer/0.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step9/answer/1.txt b/maze/task4/example/level_step9/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step9/answer/1.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step9/answer/2.txt b/maze/task4/example/level_step9/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step9/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step9/answer/3.txt b/maze/task4/example/level_step9/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step9/answer/3.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step9/answer/4.txt b/maze/task4/example/level_step9/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step9/answer/4.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step9/answer/5.txt b/maze/task4/example/level_step9/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step9/answer/5.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step9/answer/6.txt b/maze/task4/example/level_step9/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/example/level_step9/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/example/level_step9/answer/7.txt b/maze/task4/example/level_step9/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/example/level_step9/answer/7.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/example/level_step9/img/0.png b/maze/task4/example/level_step9/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8f3686a90010d981eb55a6ff65ace9f8835f1a1c --- /dev/null +++ b/maze/task4/example/level_step9/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e99a504ae527f9a7cb20e2f854314aa3098d643facfc8a4870afac3a591ab06 +size 8622 diff --git a/maze/task4/example/level_step9/img/1.png b/maze/task4/example/level_step9/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f343446822ebf94b71b14c3eeb39c63926ce1b75 --- /dev/null +++ b/maze/task4/example/level_step9/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662a2be0231567d54a9bb941372aa13dba653e840e108fc5bd67999b9808970b +size 8576 diff --git a/maze/task4/example/level_step9/img/2.png b/maze/task4/example/level_step9/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task4/example/level_step9/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task4/example/level_step9/img/3.png b/maze/task4/example/level_step9/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8ebffed4486e9132bdafc90a08b1c76caac23fa4 --- /dev/null +++ b/maze/task4/example/level_step9/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86a19ab1070ac6055aa98646ce298bd4f0e1d629669a776a07fd559e6d38617 +size 10310 diff --git a/maze/task4/example/level_step9/img/4.png b/maze/task4/example/level_step9/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c2c7c3f469771b2e97a9b7583e7f04df26a42bb3 --- /dev/null +++ b/maze/task4/example/level_step9/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a77fb009ab37a8939aa2235c678439019e98888fdfe72f9ca6e88cb7111954 +size 8694 diff --git a/maze/task4/example/level_step9/img/5.png b/maze/task4/example/level_step9/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task4/example/level_step9/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task4/example/level_step9/img/6.png b/maze/task4/example/level_step9/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task4/example/level_step9/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task4/example/level_step9/img/7.png b/maze/task4/example/level_step9/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a8c29d759b956c08f17359b1393a7835fd294fa1 --- /dev/null +++ b/maze/task4/example/level_step9/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d3690162053030a05309398ae16679df9e30871145b566d77ce8142f8c2845 +size 10391 diff --git a/maze/task4/example/level_step9/pure_text/0.txt b/maze/task4/example/level_step9/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a1b2a787ea47950b02d406f0ae4b6ca02fdb2fd --- /dev/null +++ b/maze/task4/example/level_step9/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 4; Row 3, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/example/level_step9/pure_text/1.txt b/maze/task4/example/level_step9/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d0c98b9c25646ad5073a63739579f3fdeea190 --- /dev/null +++ b/maze/task4/example/level_step9/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/example/level_step9/pure_text/2.txt b/maze/task4/example/level_step9/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task4/example/level_step9/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step9/pure_text/3.txt b/maze/task4/example/level_step9/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..18e310e4422438223d029090d1d3f0a0a01c79b3 --- /dev/null +++ b/maze/task4/example/level_step9/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step9/pure_text/4.txt b/maze/task4/example/level_step9/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e3ad741aae62922f9e4cd66e0236d7874177d8e --- /dev/null +++ b/maze/task4/example/level_step9/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 2, Column 4; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step9/pure_text/5.txt b/maze/task4/example/level_step9/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5a7c360f4d2a91544cb3423491ca285c9a175d1 --- /dev/null +++ b/maze/task4/example/level_step9/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step9/pure_text/6.txt b/maze/task4/example/level_step9/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..090e9c1d826401003433a544b5a036f1e691e749 --- /dev/null +++ b/maze/task4/example/level_step9/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/example/level_step9/pure_text/7.txt b/maze/task4/example/level_step9/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..6409f7a74bc8edb05956332a0cb7f65322840475 --- /dev/null +++ b/maze/task4/example/level_step9/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/example/level_step9/question/0.txt b/maze/task4/example/level_step9/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..b35d7392a0bae345367890d011bf3fe0a5dc0bdc --- /dev/null +++ b/maze/task4/example/level_step9/question/0.txt @@ -0,0 +1 @@ +UUDUDRLRD \ No newline at end of file diff --git a/maze/task4/example/level_step9/question/1.txt b/maze/task4/example/level_step9/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..53afd8f15debaa5c9c6355923c5d61f088ce2179 --- /dev/null +++ b/maze/task4/example/level_step9/question/1.txt @@ -0,0 +1 @@ +LRLDDLRLR \ No newline at end of file diff --git a/maze/task4/example/level_step9/question/2.txt b/maze/task4/example/level_step9/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc2d30c90a9c1861faee2ff21e5bc0c2fb4e0beb --- /dev/null +++ b/maze/task4/example/level_step9/question/2.txt @@ -0,0 +1 @@ +URRRLRDDL \ No newline at end of file diff --git a/maze/task4/example/level_step9/question/3.txt b/maze/task4/example/level_step9/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e90f39961382b193573d8b5eddc023e83fc71449 --- /dev/null +++ b/maze/task4/example/level_step9/question/3.txt @@ -0,0 +1 @@ +LDRUDLRRL \ No newline at end of file diff --git a/maze/task4/example/level_step9/question/4.txt b/maze/task4/example/level_step9/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..75aa31e23d299fe4eb2bb9f38d98134a69482d69 --- /dev/null +++ b/maze/task4/example/level_step9/question/4.txt @@ -0,0 +1 @@ +DLRULDDUR \ No newline at end of file diff --git a/maze/task4/example/level_step9/question/5.txt b/maze/task4/example/level_step9/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..6754c79b51f5d726b0d49b30168729afb2d6ab0f --- /dev/null +++ b/maze/task4/example/level_step9/question/5.txt @@ -0,0 +1 @@ +UUDLURLDU \ No newline at end of file diff --git a/maze/task4/example/level_step9/question/6.txt b/maze/task4/example/level_step9/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..5240f3a9f535ac2b42ccd522b708f0f79e43de9a --- /dev/null +++ b/maze/task4/example/level_step9/question/6.txt @@ -0,0 +1 @@ +LLDDRURUU \ No newline at end of file diff --git a/maze/task4/example/level_step9/question/7.txt b/maze/task4/example/level_step9/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b648e97c7fc6b46c6b24193d611f2c81f9daa2a --- /dev/null +++ b/maze/task4/example/level_step9/question/7.txt @@ -0,0 +1 @@ +LLRUDRRRU \ No newline at end of file diff --git a/maze/task4/example/level_step9/special_text/0.txt b/maze/task4/example/level_step9/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb0ab8874cdb5a8e9d8426084e80d9b895eb79eb --- /dev/null +++ b/maze/task4/example/level_step9/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +___## +__@__ +*____ \ No newline at end of file diff --git a/maze/task4/example/level_step9/special_text/1.txt b/maze/task4/example/level_step9/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..36493eafb5edfef8d172c61adcf5ca23b3a51a87 --- /dev/null +++ b/maze/task4/example/level_step9/special_text/1.txt @@ -0,0 +1,5 @@ +__@__ +___#_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/example/level_step9/special_text/2.txt b/maze/task4/example/level_step9/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..048936f4edf772d59f702bd13490217b5ce9d207 --- /dev/null +++ b/maze/task4/example/level_step9/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +__### +_____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/example/level_step9/special_text/3.txt b/maze/task4/example/level_step9/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..73375055227474deb8c95d3758132c192511f0b1 --- /dev/null +++ b/maze/task4/example/level_step9/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_##__ +_____ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/example/level_step9/special_text/4.txt b/maze/task4/example/level_step9/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2fb9f56bab3c9167499f1504519d5b3bc1f9e56 --- /dev/null +++ b/maze/task4/example/level_step9/special_text/4.txt @@ -0,0 +1,5 @@ +____@ +___#_ +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/example/level_step9/special_text/5.txt b/maze/task4/example/level_step9/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da829c21a8c7e84d7331b0713ca8ff4103eb23a --- /dev/null +++ b/maze/task4/example/level_step9/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +___#_ +_@___ +___*_ \ No newline at end of file diff --git a/maze/task4/example/level_step9/special_text/6.txt b/maze/task4/example/level_step9/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..06ac61b196846a33b6224efe7ab1f762ac624cf4 --- /dev/null +++ b/maze/task4/example/level_step9/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +____# +_____ \ No newline at end of file diff --git a/maze/task4/example/level_step9/special_text/7.txt b/maze/task4/example/level_step9/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cf8f36318586d4c1b84b6850ca2b0a2eced361d --- /dev/null +++ b/maze/task4/example/level_step9/special_text/7.txt @@ -0,0 +1,5 @@ +___*# +__@__ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/example/level_step9/table/0.txt b/maze/task4/example/level_step9/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec98318622d0b585cecfe6642c5ca09711bef62a --- /dev/null +++ b/maze/task4/example/level_step9/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step9/table/1.txt b/maze/task4/example/level_step9/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9644ba4395c19da791aa1dca093cacf7aa2e64e1 --- /dev/null +++ b/maze/task4/example/level_step9/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/example/level_step9/table/2.txt b/maze/task4/example/level_step9/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task4/example/level_step9/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/example/level_step9/table/3.txt b/maze/task4/example/level_step9/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..32bafd8b961690ed487a6261e5c474a0aa3b794e --- /dev/null +++ b/maze/task4/example/level_step9/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step9/table/4.txt b/maze/task4/example/level_step9/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0c527155b41c91d6e87bcfe08a117025b58c1b7 --- /dev/null +++ b/maze/task4/example/level_step9/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step9/table/5.txt b/maze/task4/example/level_step9/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da45b1e61a5685cb46325f1a7c0f88321df2ae --- /dev/null +++ b/maze/task4/example/level_step9/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/example/level_step9/table/6.txt b/maze/task4/example/level_step9/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2521dc5a2e4b78cd93244c384377b6d6b0823192 --- /dev/null +++ b/maze/task4/example/level_step9/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/example/level_step9/table/7.txt b/maze/task4/example/level_step9/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..dba4026bdc4160101afc0de66c51fbe989755733 --- /dev/null +++ b/maze/task4/example/level_step9/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/example/level_step9/text/0.txt b/maze/task4/example/level_step9/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..80282506d42635f4b793da8ba052ce62dd458758 --- /dev/null +++ b/maze/task4/example/level_step9/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFHH +FFSFF +GFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step9/text/1.txt b/maze/task4/example/level_step9/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a34c55c2e4e951fa6e13cb32e1e733d6fe05eb24 --- /dev/null +++ b/maze/task4/example/level_step9/text/1.txt @@ -0,0 +1,5 @@ +FFSFF +FFFHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/example/level_step9/text/2.txt b/maze/task4/example/level_step9/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cb13026072ba0623bbd69f829f69e99a8eebd14 --- /dev/null +++ b/maze/task4/example/level_step9/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +FFHHH +FFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/example/level_step9/text/3.txt b/maze/task4/example/level_step9/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba8a6510b89d0a56ec3bef12f1a30e7a370fb0fa --- /dev/null +++ b/maze/task4/example/level_step9/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHHFF +FFFFF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step9/text/4.txt b/maze/task4/example/level_step9/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fab299a495d1082f9362e672aa4a80ea7ecd116 --- /dev/null +++ b/maze/task4/example/level_step9/text/4.txt @@ -0,0 +1,5 @@ +FFFFS +FFFHF +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step9/text/5.txt b/maze/task4/example/level_step9/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6a477a19a0ceaa1810c7ba9b9493628e24f6350 --- /dev/null +++ b/maze/task4/example/level_step9/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FFFHF +FSFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/example/level_step9/text/6.txt b/maze/task4/example/level_step9/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9277db9448443fe0cc50e301886dbfa02862ff92 --- /dev/null +++ b/maze/task4/example/level_step9/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FFFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/example/level_step9/text/7.txt b/maze/task4/example/level_step9/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..039fc842c7cb24c12efd5865e6eb46ed1e7d7916 --- /dev/null +++ b/maze/task4/example/level_step9/text/7.txt @@ -0,0 +1,5 @@ +FFFGH +FFSFF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/maps/.DS_Store b/maze/task4/maps/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5af54343ba6c8e5a748eaa9967ba8b9d68ca891f Binary files /dev/null and b/maze/task4/maps/.DS_Store differ diff --git a/maze/task4/maps/level_step1/answer/0.txt b/maze/task4/maps/level_step1/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/0.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/1.txt b/maze/task4/maps/level_step1/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/1.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/10.txt b/maze/task4/maps/level_step1/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/10.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/11.txt b/maze/task4/maps/level_step1/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/11.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/12.txt b/maze/task4/maps/level_step1/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/12.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/13.txt b/maze/task4/maps/level_step1/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/13.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/14.txt b/maze/task4/maps/level_step1/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/14.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/15.txt b/maze/task4/maps/level_step1/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/15.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/16.txt b/maze/task4/maps/level_step1/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/16.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/17.txt b/maze/task4/maps/level_step1/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/17.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/18.txt b/maze/task4/maps/level_step1/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/18.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/19.txt b/maze/task4/maps/level_step1/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/19.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/2.txt b/maze/task4/maps/level_step1/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/20.txt b/maze/task4/maps/level_step1/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/20.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/21.txt b/maze/task4/maps/level_step1/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/21.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/22.txt b/maze/task4/maps/level_step1/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/22.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/23.txt b/maze/task4/maps/level_step1/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/23.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/24.txt b/maze/task4/maps/level_step1/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/24.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/25.txt b/maze/task4/maps/level_step1/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/26.txt b/maze/task4/maps/level_step1/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/26.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/27.txt b/maze/task4/maps/level_step1/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/27.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/28.txt b/maze/task4/maps/level_step1/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/28.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/29.txt b/maze/task4/maps/level_step1/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/29.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/3.txt b/maze/task4/maps/level_step1/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/30.txt b/maze/task4/maps/level_step1/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/30.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/31.txt b/maze/task4/maps/level_step1/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/31.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/32.txt b/maze/task4/maps/level_step1/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/32.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/33.txt b/maze/task4/maps/level_step1/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/33.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/34.txt b/maze/task4/maps/level_step1/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/34.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/35.txt b/maze/task4/maps/level_step1/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/35.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/36.txt b/maze/task4/maps/level_step1/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/36.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/37.txt b/maze/task4/maps/level_step1/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/37.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/38.txt b/maze/task4/maps/level_step1/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/38.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/39.txt b/maze/task4/maps/level_step1/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/4.txt b/maze/task4/maps/level_step1/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/4.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/40.txt b/maze/task4/maps/level_step1/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/40.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/41.txt b/maze/task4/maps/level_step1/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/41.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/42.txt b/maze/task4/maps/level_step1/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/42.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/43.txt b/maze/task4/maps/level_step1/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/43.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/44.txt b/maze/task4/maps/level_step1/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/44.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/45.txt b/maze/task4/maps/level_step1/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/45.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/46.txt b/maze/task4/maps/level_step1/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/46.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/47.txt b/maze/task4/maps/level_step1/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/47.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/48.txt b/maze/task4/maps/level_step1/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/48.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/49.txt b/maze/task4/maps/level_step1/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/49.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/5.txt b/maze/task4/maps/level_step1/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/5.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/50.txt b/maze/task4/maps/level_step1/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/50.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/51.txt b/maze/task4/maps/level_step1/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/51.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/52.txt b/maze/task4/maps/level_step1/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/52.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/53.txt b/maze/task4/maps/level_step1/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/53.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/54.txt b/maze/task4/maps/level_step1/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/54.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/55.txt b/maze/task4/maps/level_step1/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/55.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/56.txt b/maze/task4/maps/level_step1/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/56.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/57.txt b/maze/task4/maps/level_step1/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/57.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/58.txt b/maze/task4/maps/level_step1/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/58.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/59.txt b/maze/task4/maps/level_step1/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/59.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/6.txt b/maze/task4/maps/level_step1/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/60.txt b/maze/task4/maps/level_step1/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/60.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/61.txt b/maze/task4/maps/level_step1/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/61.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/62.txt b/maze/task4/maps/level_step1/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/62.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/63.txt b/maze/task4/maps/level_step1/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/63.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/64.txt b/maze/task4/maps/level_step1/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/64.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/65.txt b/maze/task4/maps/level_step1/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/65.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/66.txt b/maze/task4/maps/level_step1/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/66.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/67.txt b/maze/task4/maps/level_step1/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/67.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/68.txt b/maze/task4/maps/level_step1/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/68.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/69.txt b/maze/task4/maps/level_step1/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/69.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/7.txt b/maze/task4/maps/level_step1/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/7.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/70.txt b/maze/task4/maps/level_step1/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/70.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/71.txt b/maze/task4/maps/level_step1/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/71.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/72.txt b/maze/task4/maps/level_step1/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/72.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/73.txt b/maze/task4/maps/level_step1/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/73.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/74.txt b/maze/task4/maps/level_step1/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/74.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/75.txt b/maze/task4/maps/level_step1/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/75.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/76.txt b/maze/task4/maps/level_step1/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/76.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/77.txt b/maze/task4/maps/level_step1/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/77.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/78.txt b/maze/task4/maps/level_step1/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/78.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/79.txt b/maze/task4/maps/level_step1/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/79.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/8.txt b/maze/task4/maps/level_step1/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/8.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/80.txt b/maze/task4/maps/level_step1/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/80.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/81.txt b/maze/task4/maps/level_step1/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/81.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/82.txt b/maze/task4/maps/level_step1/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/82.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/83.txt b/maze/task4/maps/level_step1/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/83.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/84.txt b/maze/task4/maps/level_step1/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/84.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/85.txt b/maze/task4/maps/level_step1/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/85.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/86.txt b/maze/task4/maps/level_step1/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/86.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/87.txt b/maze/task4/maps/level_step1/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/87.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/88.txt b/maze/task4/maps/level_step1/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/88.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/89.txt b/maze/task4/maps/level_step1/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/89.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/9.txt b/maze/task4/maps/level_step1/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/9.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/90.txt b/maze/task4/maps/level_step1/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/90.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/91.txt b/maze/task4/maps/level_step1/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/91.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/92.txt b/maze/task4/maps/level_step1/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/92.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/93.txt b/maze/task4/maps/level_step1/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/93.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/94.txt b/maze/task4/maps/level_step1/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/94.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/95.txt b/maze/task4/maps/level_step1/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/95.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/96.txt b/maze/task4/maps/level_step1/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/96.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/97.txt b/maze/task4/maps/level_step1/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/97.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/98.txt b/maze/task4/maps/level_step1/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step1/answer/98.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step1/answer/99.txt b/maze/task4/maps/level_step1/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step1/answer/99.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step1/img/0.png b/maze/task4/maps/level_step1/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..53c675225cb4557b1697e4fa4871f0aa14c579b0 --- /dev/null +++ b/maze/task4/maps/level_step1/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9cd3f0abed81e2b2317756e97906f959f6838129cb8e4d8cdbade95400af2d +size 8586 diff --git a/maze/task4/maps/level_step1/img/1.png b/maze/task4/maps/level_step1/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..719261d2ecf4fc8e7fa67e333425a1f3f8692083 --- /dev/null +++ b/maze/task4/maps/level_step1/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f83e75a9293f5a3abd34fd3ef2e7defa898e483b446176c6becef60223b8df +size 8571 diff --git a/maze/task4/maps/level_step1/img/10.png b/maze/task4/maps/level_step1/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e109c2816c458cc412a7a4a1c29389d523dcd70f --- /dev/null +++ b/maze/task4/maps/level_step1/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6eeb59d8695e1132eb473c96d0ec5a59d424ece3fda9e3254fe12c7b397bc6f +size 10464 diff --git a/maze/task4/maps/level_step1/img/11.png b/maze/task4/maps/level_step1/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a5ece63c58ccb637f8b8d6b3f8bc4c5e08a361a0 --- /dev/null +++ b/maze/task4/maps/level_step1/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded2d691e97803356fe059017e3a79a80dcfec9ab37b4101b44421c8e4745743 +size 9505 diff --git a/maze/task4/maps/level_step1/img/12.png b/maze/task4/maps/level_step1/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b883595354bc57af07a5464b5b52dfbdb2a2ffc3 --- /dev/null +++ b/maze/task4/maps/level_step1/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cc71adce58670e1af266f9d08d278c6e352c45944df8bee9bfaa55884523af6 +size 9574 diff --git a/maze/task4/maps/level_step1/img/13.png b/maze/task4/maps/level_step1/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2e9bcd697c9f9df311a7bcc585551adc45b633 --- /dev/null +++ b/maze/task4/maps/level_step1/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63c693a4e866265c3ab6d440f9edda4aec2f9c6195167ab113d6907cc63582e +size 9460 diff --git a/maze/task4/maps/level_step1/img/14.png b/maze/task4/maps/level_step1/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a959b16b2d47a4ee7034609446712c1c93efda --- /dev/null +++ b/maze/task4/maps/level_step1/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4278d644fee0fcc945ffb661826fba43399479f20849324f828d860ce42896b7 +size 9498 diff --git a/maze/task4/maps/level_step1/img/15.png b/maze/task4/maps/level_step1/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..00cb6105e09a5127a1d4de5ce8a97e299f4b58ad --- /dev/null +++ b/maze/task4/maps/level_step1/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d02a44d646a6a2b192ec89d2774e95bb1a05529a887b2648b75da870ceaf9b9 +size 8631 diff --git a/maze/task4/maps/level_step1/img/16.png b/maze/task4/maps/level_step1/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7973c8fd0e44309ec3e86a3225421c70098fe0 --- /dev/null +++ b/maze/task4/maps/level_step1/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5583b83655c1009808d434d23387310c409754a8d3de67d91a947d9bcaa3c671 +size 10319 diff --git a/maze/task4/maps/level_step1/img/17.png b/maze/task4/maps/level_step1/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..89b88669e049ee2b40eb2964f6e3be9983d5841d --- /dev/null +++ b/maze/task4/maps/level_step1/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433a8057d4c23e0dd2814e9f57b18737e38ac85dad3d9122b606ff160b61592f +size 9481 diff --git a/maze/task4/maps/level_step1/img/18.png b/maze/task4/maps/level_step1/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..f88d948c8f65afd5bf40b28e3ece8eed3cf1f273 --- /dev/null +++ b/maze/task4/maps/level_step1/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365ed89a560326552767e75018a5d4677d808ffd43cc1d7edb88975789b64375 +size 10369 diff --git a/maze/task4/maps/level_step1/img/19.png b/maze/task4/maps/level_step1/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..1342eed8c66f157f6a0ee50a553bce9900d7b153 --- /dev/null +++ b/maze/task4/maps/level_step1/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f12b2c82dce79ca3024ad9ceeab1d87e148064972cf0f0d35cedef9f199494 +size 9487 diff --git a/maze/task4/maps/level_step1/img/2.png b/maze/task4/maps/level_step1/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task4/maps/level_step1/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task4/maps/level_step1/img/20.png b/maze/task4/maps/level_step1/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..008eb9d774f873f49d9f2aba16a957268416f06c --- /dev/null +++ b/maze/task4/maps/level_step1/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb6e15f6f74538fb484c9175e9f2ed53f31bb2657acdcfcd043ca68a8a31eb6 +size 10260 diff --git a/maze/task4/maps/level_step1/img/21.png b/maze/task4/maps/level_step1/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..9966b15d63f5e37ffc8803f241755bbeb56d8fb8 --- /dev/null +++ b/maze/task4/maps/level_step1/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a0fcd0a1a924ed98804dec14e556eb3caa87377c83c9cf994899eae01255f6d +size 9396 diff --git a/maze/task4/maps/level_step1/img/22.png b/maze/task4/maps/level_step1/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..b43ce1e2773dcc8f88926dbfcc55bd4e30c3300f --- /dev/null +++ b/maze/task4/maps/level_step1/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568fd2b874b4f84a2d182fba9255d2bd0ba319bf21ea04daf9dcc93bd6384ece +size 9431 diff --git a/maze/task4/maps/level_step1/img/23.png b/maze/task4/maps/level_step1/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..81c6a7ca79d5a70cbdc9167d691223476bc9976d --- /dev/null +++ b/maze/task4/maps/level_step1/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbde32d51a95bc040d27867403cf81a6029014ea37322974115bf4de681ba63 +size 9587 diff --git a/maze/task4/maps/level_step1/img/24.png b/maze/task4/maps/level_step1/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..9a6d1f5f4396d39be6b747b2245ca74e57dad2d8 --- /dev/null +++ b/maze/task4/maps/level_step1/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce73082473f6a8019fcddc4e20d0befd63af5607686e7d96fc44f9e76224fcf9 +size 10360 diff --git a/maze/task4/maps/level_step1/img/25.png b/maze/task4/maps/level_step1/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..dcaca11c66cd3002cc42b1541e908fc7c7d55487 --- /dev/null +++ b/maze/task4/maps/level_step1/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf361f95f35ac9a0112f7063281e8af77dcc95553bae500b712a502b170f5b4 +size 9481 diff --git a/maze/task4/maps/level_step1/img/26.png b/maze/task4/maps/level_step1/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..483b63e17cc629a34387f5c0d0ee653cac261b3c --- /dev/null +++ b/maze/task4/maps/level_step1/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b19855bb1cf3021cecae9924a96c9c3ae2d04c1122234b8f34d010d10ca9fd0 +size 10486 diff --git a/maze/task4/maps/level_step1/img/27.png b/maze/task4/maps/level_step1/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..f591e4148b776e15eb1b392b9eb5a3899d71f16e --- /dev/null +++ b/maze/task4/maps/level_step1/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a339a2e62e1162a190da229fa66e13f616e849539aeb08b845c35c77ce2d7a3 +size 10413 diff --git a/maze/task4/maps/level_step1/img/28.png b/maze/task4/maps/level_step1/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7b5e0d421fd9845fedd4e9bf62cf5a40560815 --- /dev/null +++ b/maze/task4/maps/level_step1/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6e842275c7a23fce24f6f4ebc6852f5922d6f914ed4c7c4f2c900d974ed33d +size 7724 diff --git a/maze/task4/maps/level_step1/img/29.png b/maze/task4/maps/level_step1/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0e29574aaa55dcc0d40cf007942f77d30535f6 --- /dev/null +++ b/maze/task4/maps/level_step1/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00443dd8966b4642e5e430ad4ab1b860149b51c0c4931b60ef48c6d24abf87bb +size 8645 diff --git a/maze/task4/maps/level_step1/img/3.png b/maze/task4/maps/level_step1/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task4/maps/level_step1/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task4/maps/level_step1/img/30.png b/maze/task4/maps/level_step1/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..b728a518c88b0c7c15ad3e69d1e05ca8dae1f952 --- /dev/null +++ b/maze/task4/maps/level_step1/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d418cef4066eae769ded644c7a8461ddd9cac861be33b5f0bd26612a397d77a4 +size 10271 diff --git a/maze/task4/maps/level_step1/img/31.png b/maze/task4/maps/level_step1/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8414031f76b7066865976aa74936cac7b92311da --- /dev/null +++ b/maze/task4/maps/level_step1/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b760ca6eab9da1ac2bb044b831c20182c4ba148464e6dd749fb724c2317504 +size 10338 diff --git a/maze/task4/maps/level_step1/img/32.png b/maze/task4/maps/level_step1/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..b63ac34b57c5977d35e7399e44a0ca8a62416fca --- /dev/null +++ b/maze/task4/maps/level_step1/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e1d4295b819c2f0f639957d776981fae5432d572bdebec73471b7ff88ffeed +size 8546 diff --git a/maze/task4/maps/level_step1/img/33.png b/maze/task4/maps/level_step1/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..bd050376e1da18fcd6804ec7f793a911156f71e5 --- /dev/null +++ b/maze/task4/maps/level_step1/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd6ef8e4bf03f1e919608b410c1dcbff5466194c99c50cb366333ed621515d8 +size 9431 diff --git a/maze/task4/maps/level_step1/img/34.png b/maze/task4/maps/level_step1/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..366dbcdfb9017694a6c0e9a762ddbdbc847e6fa8 --- /dev/null +++ b/maze/task4/maps/level_step1/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9db86506c72ff3db87bce5ce58d9cb6f2ad00598a0c640fcb6bb28119764334 +size 9300 diff --git a/maze/task4/maps/level_step1/img/35.png b/maze/task4/maps/level_step1/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..0dcccbdde8c06d23b2a3fd409778c087119d7b1a --- /dev/null +++ b/maze/task4/maps/level_step1/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c5cdbace6e9b727622cf498cd44c572f8538faf2fecb209501e3f1743ee079 +size 9374 diff --git a/maze/task4/maps/level_step1/img/36.png b/maze/task4/maps/level_step1/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..8786a3fe8a89199849966ab3b35867bd703acf58 --- /dev/null +++ b/maze/task4/maps/level_step1/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7adb31b55149bed98946afcf956a171fd1492e817b0f0c5bfd0b6efe4fc28c04 +size 10451 diff --git a/maze/task4/maps/level_step1/img/37.png b/maze/task4/maps/level_step1/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..802aa722649dac098e126b0adae531babb7f877b --- /dev/null +++ b/maze/task4/maps/level_step1/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8bd55884a149b2129f281effebc65493733502e65dfe348b4e1145987f4ff76 +size 11149 diff --git a/maze/task4/maps/level_step1/img/38.png b/maze/task4/maps/level_step1/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9a73f72074ae48f5589417c00b18f273052946 --- /dev/null +++ b/maze/task4/maps/level_step1/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9987cc6de5975fc76063e350faeeed07486c46bd4604be48931e5c2292d96aa5 +size 10355 diff --git a/maze/task4/maps/level_step1/img/39.png b/maze/task4/maps/level_step1/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..6f577d596b11b69ae0918d196780b9a861fd674d --- /dev/null +++ b/maze/task4/maps/level_step1/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c74987da23582efc454ef16aa7ee49d8bc2b5647b8529063762394aa97b0403 +size 9493 diff --git a/maze/task4/maps/level_step1/img/4.png b/maze/task4/maps/level_step1/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcf17753a14d717d70601f1726efa48591720d2 --- /dev/null +++ b/maze/task4/maps/level_step1/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1527826071149f7d3fe78db8c909ec14d40d7ac2ff90cad4f018091251dbf8c2 +size 7791 diff --git a/maze/task4/maps/level_step1/img/40.png b/maze/task4/maps/level_step1/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..73edd6d4722785fa2277a886fa64e00e9c8c1642 --- /dev/null +++ b/maze/task4/maps/level_step1/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7fea814d79b7ef8cfa02797411332dafbd1804b16766a69fd0f8c22097a84c +size 8536 diff --git a/maze/task4/maps/level_step1/img/41.png b/maze/task4/maps/level_step1/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..a336550fb6b5ee724510355eddbf38e949e814f9 --- /dev/null +++ b/maze/task4/maps/level_step1/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0a2aa504f7ec3efbdc87c449cc23a3a36ae9d9c1553b35432c5e89bcf3dff0 +size 8743 diff --git a/maze/task4/maps/level_step1/img/42.png b/maze/task4/maps/level_step1/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..3afc4ae2072a69a2b5428a8150c5752f6ebc8730 --- /dev/null +++ b/maze/task4/maps/level_step1/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5e7862e4c7de157b4ebf2cf81cce81e6289f9c0be8f1129e4f52b3845d767a +size 10254 diff --git a/maze/task4/maps/level_step1/img/43.png b/maze/task4/maps/level_step1/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8240fd301b101fc3d6928b8b7837ee8f046508 --- /dev/null +++ b/maze/task4/maps/level_step1/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e450c5211b9cc344c3fdea9a4ac7b6f86afc861e99ce5e8e1bd73c05370aeb +size 8530 diff --git a/maze/task4/maps/level_step1/img/44.png b/maze/task4/maps/level_step1/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..832952904e37f4e16647ae56e5497f6a0ed6dae8 --- /dev/null +++ b/maze/task4/maps/level_step1/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e0e5e924bded22704b6f432de9561222646a2bb2c274aca2399ced90dc86b21 +size 10534 diff --git a/maze/task4/maps/level_step1/img/45.png b/maze/task4/maps/level_step1/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..cb96bb7880e869e58aef02c7fef344f6d7dc18e8 --- /dev/null +++ b/maze/task4/maps/level_step1/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b0a9844bd7bb0ef810cc8e9bed26758527d4f56530d457e13311b5eea04ab0 +size 10404 diff --git a/maze/task4/maps/level_step1/img/46.png b/maze/task4/maps/level_step1/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d0bce4c0119ffeac19097f9f41a4c38d2a442d --- /dev/null +++ b/maze/task4/maps/level_step1/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4c2f0d9865a8360f4d1c974eca5d0c578296f5b4e8315cffa073c54468cde7 +size 10550 diff --git a/maze/task4/maps/level_step1/img/47.png b/maze/task4/maps/level_step1/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..bbac15eae91964398ecfe336ec7e7d88caab732f --- /dev/null +++ b/maze/task4/maps/level_step1/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b11bdd9da2fa696e133c10e026958d2a2b9c22b64105e96a92ce4175408ace +size 9561 diff --git a/maze/task4/maps/level_step1/img/48.png b/maze/task4/maps/level_step1/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..1352fc0f27f435d028f7adb6c1d4213ff6e06366 --- /dev/null +++ b/maze/task4/maps/level_step1/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29342832c71333a494e0e8a67215143ff44a035bcf3a06cbd1618f878654c67b +size 9536 diff --git a/maze/task4/maps/level_step1/img/49.png b/maze/task4/maps/level_step1/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..f042b8e1a489792b2df555b00b84d90f03816dcb --- /dev/null +++ b/maze/task4/maps/level_step1/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3250865795e5bcf96aab2caf3b6e858125f92a3ad016310144510a0e8ddd1e4 +size 11250 diff --git a/maze/task4/maps/level_step1/img/5.png b/maze/task4/maps/level_step1/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task4/maps/level_step1/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task4/maps/level_step1/img/50.png b/maze/task4/maps/level_step1/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..5a79ec58f41bac0d72774baf35cf234e08dcb7b3 --- /dev/null +++ b/maze/task4/maps/level_step1/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d781009cb22f81d3e84f348a361f04066a4bcaafd8d62d99d791338308ec5fca +size 10360 diff --git a/maze/task4/maps/level_step1/img/51.png b/maze/task4/maps/level_step1/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5eb285b8ff06ddcfe7301346541ce202b37419 --- /dev/null +++ b/maze/task4/maps/level_step1/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92c2243e404e0ab629e4529ab56766a05dd34c0213c3e20c4910fb4fb86e831 +size 9542 diff --git a/maze/task4/maps/level_step1/img/52.png b/maze/task4/maps/level_step1/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..bc2cf75c26cf2413c1a2ff8785d0d1bf7145152c --- /dev/null +++ b/maze/task4/maps/level_step1/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d99e8ce7303f9492169877d43bf5d6331741ae6de6fde7a249241b70908dad6 +size 9465 diff --git a/maze/task4/maps/level_step1/img/53.png b/maze/task4/maps/level_step1/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..b56567b741d2a6849fdbd9a06f10a221f611854a --- /dev/null +++ b/maze/task4/maps/level_step1/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbbb363cbd4871bd667563335310c2a7b1e044d786a33fc9ac426ab13f9fa92 +size 10460 diff --git a/maze/task4/maps/level_step1/img/54.png b/maze/task4/maps/level_step1/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..f920ca86b117abb67013bb57a9499b0393639cea --- /dev/null +++ b/maze/task4/maps/level_step1/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c43e944b0140c1497f1775468827f0e4d1c41f027cd40778dc0c9189590062 +size 8588 diff --git a/maze/task4/maps/level_step1/img/55.png b/maze/task4/maps/level_step1/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..b7cd9585ed58ff2537515598c55964ef7bab9820 --- /dev/null +++ b/maze/task4/maps/level_step1/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53106fd75e879e3655e754942e5d3947460c00e26f52b713400f3daae45eee00 +size 9525 diff --git a/maze/task4/maps/level_step1/img/56.png b/maze/task4/maps/level_step1/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..b862904617af8cec42f417b9991549a1a8020141 --- /dev/null +++ b/maze/task4/maps/level_step1/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad1f09f441102d622326303cb64d1f0a18a52e88d80a3321448d795d02236624 +size 9566 diff --git a/maze/task4/maps/level_step1/img/57.png b/maze/task4/maps/level_step1/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..46b8af8ae47e2318fc24cf7e63adf89c23ad0768 --- /dev/null +++ b/maze/task4/maps/level_step1/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfb2f92be0c9aedd215a40e1879bb6cdeec5abfae96393b8899c2c7c126797f +size 11278 diff --git a/maze/task4/maps/level_step1/img/58.png b/maze/task4/maps/level_step1/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..007695ff6c8929f3c578f1e20f352034afc69d5b --- /dev/null +++ b/maze/task4/maps/level_step1/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4011594954c1117ae9981fa7ce16c41cb3266498795e8f487654a7f4ea47e61e +size 8568 diff --git a/maze/task4/maps/level_step1/img/59.png b/maze/task4/maps/level_step1/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..95727efdf8feeca31fc0d98a79817432048534f7 --- /dev/null +++ b/maze/task4/maps/level_step1/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8cc03d240c63f971985a3abb21c98f32b0b4524f3598bfa7c6bfad75145ac29 +size 9581 diff --git a/maze/task4/maps/level_step1/img/6.png b/maze/task4/maps/level_step1/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task4/maps/level_step1/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task4/maps/level_step1/img/60.png b/maze/task4/maps/level_step1/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..cc9c513aa4911fcde20624e2762b8a6bb1b27c39 --- /dev/null +++ b/maze/task4/maps/level_step1/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f4a231f0f1af0473c92ad729f7924d389ca9a3609318953ac2b65591505a53d +size 10360 diff --git a/maze/task4/maps/level_step1/img/61.png b/maze/task4/maps/level_step1/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..7679b531c7ff5eb129487a12f3cf1ac33d243fe4 --- /dev/null +++ b/maze/task4/maps/level_step1/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44bf866012aa99bc183215e119f6348d1dba4f4ed754752500a8c6cde9034325 +size 9546 diff --git a/maze/task4/maps/level_step1/img/62.png b/maze/task4/maps/level_step1/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..33cfe602364bc6dd682c246276cfb8f1404ef595 --- /dev/null +++ b/maze/task4/maps/level_step1/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0e338d527661874a9c46027013ed1381ad655fa2165f92ba6c74bdccc1b4c4 +size 10351 diff --git a/maze/task4/maps/level_step1/img/63.png b/maze/task4/maps/level_step1/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..85c96fe050932ef77bbdd8b75bd50ddcb1d51fc0 --- /dev/null +++ b/maze/task4/maps/level_step1/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a29027cc232a58593904574c3fa7347a8533905e09fe433f5bc283dc07e42c14 +size 9566 diff --git a/maze/task4/maps/level_step1/img/64.png b/maze/task4/maps/level_step1/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..af27e78c65469a37d18cca56246e46dc40071558 --- /dev/null +++ b/maze/task4/maps/level_step1/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705afe8f6778c5550d77725cec8a0a4e3d06a7f07978c19ac149248442bc560f +size 7735 diff --git a/maze/task4/maps/level_step1/img/65.png b/maze/task4/maps/level_step1/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..4a6dc9034b7ef66afcc52646621583696082903c --- /dev/null +++ b/maze/task4/maps/level_step1/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75acc12afefcaee210b03556bf38a1a8f663d9cfdca915d25fcd3645876c4901 +size 9604 diff --git a/maze/task4/maps/level_step1/img/66.png b/maze/task4/maps/level_step1/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..d1198a3df020aaf0931a32171bb2eacf6c6c9e62 --- /dev/null +++ b/maze/task4/maps/level_step1/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b090c16cc1315c868aca80a3ea0a9d4a002bae7af3cc50909feeea2d43a8dcd2 +size 10450 diff --git a/maze/task4/maps/level_step1/img/67.png b/maze/task4/maps/level_step1/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..6d016ebafe107cbacb68734220b06aed64f37d4c --- /dev/null +++ b/maze/task4/maps/level_step1/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cc901ec785673687b26427ce086ebbd27f8cd2502dbb104379e8867c631760 +size 9459 diff --git a/maze/task4/maps/level_step1/img/68.png b/maze/task4/maps/level_step1/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..bcaaf350210436f4383e0333ed73e65bd52a678a --- /dev/null +++ b/maze/task4/maps/level_step1/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5846abc853064d63e0fb377fa2b23730d1015f367d01599936d4a3e1fba4f0c +size 8697 diff --git a/maze/task4/maps/level_step1/img/69.png b/maze/task4/maps/level_step1/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..111346baa5e8e81dce82def8b6539b70892a57e0 --- /dev/null +++ b/maze/task4/maps/level_step1/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bc1d785dce00bf0efdfb9cd6888c7b988193a61ffa0216b31059772952a15c +size 11228 diff --git a/maze/task4/maps/level_step1/img/7.png b/maze/task4/maps/level_step1/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dcb1f5e9397436c492c19173af10a47478fb22bd --- /dev/null +++ b/maze/task4/maps/level_step1/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541feb16256a3a7622be32530ef61a45a83f750d6ad610bc1bcbfab438a6c7ba +size 10399 diff --git a/maze/task4/maps/level_step1/img/70.png b/maze/task4/maps/level_step1/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..d7d9522fdef478962bbf1ae56c58e2e914c5855f --- /dev/null +++ b/maze/task4/maps/level_step1/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f964ac4bbf903fffa406c1474e19146d3f9c106e21c071d0322559e28ff4fe +size 8780 diff --git a/maze/task4/maps/level_step1/img/71.png b/maze/task4/maps/level_step1/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..beb976f0cbfd54916fe8e0be18df2bc9108275af --- /dev/null +++ b/maze/task4/maps/level_step1/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ee8ab29dc3a229e6242ae737444cd175d7d8e3f5215e4d6bac98b7317a6fd4 +size 10314 diff --git a/maze/task4/maps/level_step1/img/72.png b/maze/task4/maps/level_step1/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..1b1b1ffeffb288ce5fd6fb4a5d6b2a619eade7d3 --- /dev/null +++ b/maze/task4/maps/level_step1/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3683a0899ff04a95f801a3a93dc12491281cdb345f98a8f790f6825333e5c2b6 +size 11104 diff --git a/maze/task4/maps/level_step1/img/73.png b/maze/task4/maps/level_step1/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..9e816d23131637f4165f39b1246c84a72fb7759f --- /dev/null +++ b/maze/task4/maps/level_step1/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b156c071886e95aa995517727c842b91688ef238b032d80fe5c58a0aa41022f2 +size 9621 diff --git a/maze/task4/maps/level_step1/img/74.png b/maze/task4/maps/level_step1/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..304fb3b256deb9020b7d286ed83250a3a443ca70 --- /dev/null +++ b/maze/task4/maps/level_step1/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f69c3dddeef019536694f6c8e6f45ddf5dd42a648c3120fee64a5bf94de238 +size 10436 diff --git a/maze/task4/maps/level_step1/img/75.png b/maze/task4/maps/level_step1/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..93eed9dc47ad2ae321d732ef990201e356a084d8 --- /dev/null +++ b/maze/task4/maps/level_step1/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3d3acdebfc0ac58bd29a87edf66e3e274fd14dd7aa4e6feda5037bea7070d7 +size 9559 diff --git a/maze/task4/maps/level_step1/img/76.png b/maze/task4/maps/level_step1/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..981542d0e4faca7eb75b63aec697d864728e992f --- /dev/null +++ b/maze/task4/maps/level_step1/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09fef1702a3818ffe135c18b2cb90197b80e51b7e2867d5040ee3f6b327f375b +size 9620 diff --git a/maze/task4/maps/level_step1/img/77.png b/maze/task4/maps/level_step1/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..17023bbbd055427830fcfd176021fb2fc5d6910d --- /dev/null +++ b/maze/task4/maps/level_step1/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c1604221f2c1545f8c8d8a1a0557dd0c7d8300bc470a02052c41ccda1c3887 +size 8661 diff --git a/maze/task4/maps/level_step1/img/78.png b/maze/task4/maps/level_step1/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..1108a90d067356f01495e964bfcd7b8a0e68263c --- /dev/null +++ b/maze/task4/maps/level_step1/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6608cbc4f2c3b6742d64f81596148f28bddf4abf140c98778b6d8479b3ad2e +size 9536 diff --git a/maze/task4/maps/level_step1/img/79.png b/maze/task4/maps/level_step1/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..10f84b792cf0272b8e2935bdf5b34df73c511225 --- /dev/null +++ b/maze/task4/maps/level_step1/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1c923ccfc9c84e6a32ca615eb232d4ba7bac6ea9b58c24a03a3c659accd86e +size 9435 diff --git a/maze/task4/maps/level_step1/img/8.png b/maze/task4/maps/level_step1/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b783d4f36e2171422604495ee36e749644ce4e2b --- /dev/null +++ b/maze/task4/maps/level_step1/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dbba447ec1e1cdb77f547897ea2c4a87baf7985ca4f97405a7f153585f7d9e +size 9520 diff --git a/maze/task4/maps/level_step1/img/80.png b/maze/task4/maps/level_step1/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..c7660b204057fc68628a72bb8d48a3a707df7625 --- /dev/null +++ b/maze/task4/maps/level_step1/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968b3cb463579a28c57cfa4c20a4f680736dddf6390e491e5e9e3c262031f066 +size 9419 diff --git a/maze/task4/maps/level_step1/img/81.png b/maze/task4/maps/level_step1/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..f1d4252a1d6d7384fa2b4a0e506afe7b37ab6672 --- /dev/null +++ b/maze/task4/maps/level_step1/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f1e8872ed343b6369bcaf12caad0b7bbf6914638c1ac4a5bc323f87cb04b44 +size 8666 diff --git a/maze/task4/maps/level_step1/img/82.png b/maze/task4/maps/level_step1/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e4afd98ab856f1b49e892d1c8959d0c45076f933 --- /dev/null +++ b/maze/task4/maps/level_step1/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b516f64ea6950be4ac225452351a46ea1244d2dee61ccfe891940be0be952e8 +size 9621 diff --git a/maze/task4/maps/level_step1/img/83.png b/maze/task4/maps/level_step1/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..2b4f1990d536fad6f1e8ad7be958c26b6ffe9d9c --- /dev/null +++ b/maze/task4/maps/level_step1/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f51bad0f2ab0498873bbcdc99742634a56d4e84f55cce1792d9cb20a0557b5b +size 9523 diff --git a/maze/task4/maps/level_step1/img/84.png b/maze/task4/maps/level_step1/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..f196be40a6adeaa2df84f74f46b155e1e3c8f6e4 --- /dev/null +++ b/maze/task4/maps/level_step1/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bc1191781890d53c8eee48f62121340484b45002b11c8eb0ec0206e306442c +size 10376 diff --git a/maze/task4/maps/level_step1/img/85.png b/maze/task4/maps/level_step1/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..ad2c89c6d6377b2ffed912907a47aa9251235ad8 --- /dev/null +++ b/maze/task4/maps/level_step1/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abea399c1c02ead69e9cd735043ec17f218b5eb89a12f49e717ca6833284dff +size 9536 diff --git a/maze/task4/maps/level_step1/img/86.png b/maze/task4/maps/level_step1/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..41261413e7dd3228eeff5e7010d87cd323d1dfc3 --- /dev/null +++ b/maze/task4/maps/level_step1/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47102eacb760f4fbee2412de1a93f98ad00be71ad00f000fc2988421bdb3436c +size 10333 diff --git a/maze/task4/maps/level_step1/img/87.png b/maze/task4/maps/level_step1/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..452c03c8d049f7ef5494aee52270acd8c7747443 --- /dev/null +++ b/maze/task4/maps/level_step1/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d234a66155d3bbaabf612f350beb6a59ae0fb93cd6e49f02249c74049218128 +size 11118 diff --git a/maze/task4/maps/level_step1/img/88.png b/maze/task4/maps/level_step1/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..de081357b6c4a2b26b5851c19eb10854a145dd4f --- /dev/null +++ b/maze/task4/maps/level_step1/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90cf310b1bf6cfd8effd458bca4e303b2ed000d38681671e452629b3b2619af +size 11179 diff --git a/maze/task4/maps/level_step1/img/89.png b/maze/task4/maps/level_step1/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c25e41839c4eed11a446578ad5562be1ffc0a0 --- /dev/null +++ b/maze/task4/maps/level_step1/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cf54b54206896d7d5fe558e2eb4ffb8997eb1bfbf89093d978b6ec2fc56f97 +size 9489 diff --git a/maze/task4/maps/level_step1/img/9.png b/maze/task4/maps/level_step1/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..58fed855e22af0897daeb41c04cd87048322e11b --- /dev/null +++ b/maze/task4/maps/level_step1/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba907e17952d0a68214808d067646f0d97ef64b27d9e453a9c505779f03553eb +size 11128 diff --git a/maze/task4/maps/level_step1/img/90.png b/maze/task4/maps/level_step1/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..d868ba390ef63a27c67b8ed8fa1df03e4b3c9aa6 --- /dev/null +++ b/maze/task4/maps/level_step1/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4924a8d8f382432a85b02c5cd97c3a867f0cf59915631b2b46d1ecf305774ab2 +size 9461 diff --git a/maze/task4/maps/level_step1/img/91.png b/maze/task4/maps/level_step1/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..c854a1a9fba00f17d4ed188dc5b00a16d4b8bacf --- /dev/null +++ b/maze/task4/maps/level_step1/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53190624e3f3c4747151f8090bbe736505e96cc4d29499c817867a1e070e8a33 +size 10424 diff --git a/maze/task4/maps/level_step1/img/92.png b/maze/task4/maps/level_step1/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..4518ebdf9c6e8989960c9cedf40b26aca0f94900 --- /dev/null +++ b/maze/task4/maps/level_step1/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11986a80cf97ba4b473e06536fe8bca3f83af1e3db0836e63bbeb9ff24e14d16 +size 10256 diff --git a/maze/task4/maps/level_step1/img/93.png b/maze/task4/maps/level_step1/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5c6e234b9f935f08a4fd68f91bbcf291b90426 --- /dev/null +++ b/maze/task4/maps/level_step1/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce939a10cc069cf6712137df96d9eeecde0871626566111d58e23e4eaf2cdf35 +size 10407 diff --git a/maze/task4/maps/level_step1/img/94.png b/maze/task4/maps/level_step1/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..e376cb24370d7c7e2d69c113477336d19e863962 --- /dev/null +++ b/maze/task4/maps/level_step1/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b9510d39d3c594aafd9059788bb0cd5ff3d4095f045475c747b326e2fa8f1c +size 10227 diff --git a/maze/task4/maps/level_step1/img/95.png b/maze/task4/maps/level_step1/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..0d320adfcb78f2f7a70c293086a3c9e4657e8b1e --- /dev/null +++ b/maze/task4/maps/level_step1/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9652b51223f250b2f0ea990f04184cecd53a9510a88e23e5d8ab92a02d6d4e +size 10401 diff --git a/maze/task4/maps/level_step1/img/96.png b/maze/task4/maps/level_step1/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..829e82b45aa97fa55aed081057e1b8ac8721fda9 --- /dev/null +++ b/maze/task4/maps/level_step1/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a57bdcdb9ef1e38973674221ca345aaa079d7027c705acd0e9a53a0b66ac135 +size 10429 diff --git a/maze/task4/maps/level_step1/img/97.png b/maze/task4/maps/level_step1/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..748a948c5cd41ad576941a954a691c45002651bc --- /dev/null +++ b/maze/task4/maps/level_step1/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77adb79d8bbc1588ad59543ed98151771cd492efc2dc07e86af7ebb5873a4a67 +size 9374 diff --git a/maze/task4/maps/level_step1/img/98.png b/maze/task4/maps/level_step1/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..30f628757c8f570ab03ba3e6e29f9b993581eb84 --- /dev/null +++ b/maze/task4/maps/level_step1/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb9608a7be6eb13b107abecb0002baf878a1095f67cf967c1d95c8412a0d0b3 +size 9489 diff --git a/maze/task4/maps/level_step1/img/99.png b/maze/task4/maps/level_step1/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..d6bd9ecf67aa1f7de93eebdc0e48abc85bb467bf --- /dev/null +++ b/maze/task4/maps/level_step1/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570147872954af71e957d7629438d5014810bb6ec0cb216e45e41a69154b7259 +size 8604 diff --git a/maze/task4/maps/level_step1/pure_text/0.txt b/maze/task4/maps/level_step1/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d7462603221ecb6cb543a980d631f78a9a66620 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/1.txt b/maze/task4/maps/level_step1/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cb4fcf3303f346055a44e0cc6f89a09871fba1d --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/10.txt b/maze/task4/maps/level_step1/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..23525cff7c04e28b5c754c0026e2fc6308377884 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/11.txt b/maze/task4/maps/level_step1/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d38f712e462147cb1149f8dc999e1b956ee71d9 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/12.txt b/maze/task4/maps/level_step1/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b1e194bbbeccc839816b2107684b74a24e8915a --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 3, Column 2; Row 4, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/13.txt b/maze/task4/maps/level_step1/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e6490a182330fd53f62392c91932efb8819c603 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/14.txt b/maze/task4/maps/level_step1/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdb8c4e2d57e515054c0dc54a61f4da7632ec321 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/15.txt b/maze/task4/maps/level_step1/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fca18ea666f75bb44f853bf1e9cc2cb4b455ee3 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 1; Row 2, Column 4; Row 4, Column 3; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/16.txt b/maze/task4/maps/level_step1/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f58b60f80c34719dd14d0ad5666e0adf08a940c --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/17.txt b/maze/task4/maps/level_step1/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..320b7d538d04af75ace729ab9d8049172bdb542d --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/18.txt b/maze/task4/maps/level_step1/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c3ffd792d2e3f19964efbb63d219944023e4f61 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/19.txt b/maze/task4/maps/level_step1/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdcdf82f73b3e07de44c8668dad4def529e2afc1 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/2.txt b/maze/task4/maps/level_step1/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/20.txt b/maze/task4/maps/level_step1/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..67b933bd40c003ad8d713ed3a6fde5badcd130d9 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 2, Column 5; Row 3, Column 4; Row 4, Column 2; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/21.txt b/maze/task4/maps/level_step1/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dbedbbd6877687f6fd7160c12c4c04e6dee0c1e --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 5; Row 4, Column 1; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/22.txt b/maze/task4/maps/level_step1/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9a7ef211e4b4447e7d912456a49b35a9b0e3e25 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/23.txt b/maze/task4/maps/level_step1/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..c844e64d7762dd91510ab6d183d8fd81d2ac0ca3 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 5; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/24.txt b/maze/task4/maps/level_step1/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9898a8063d3b37859ea38c0e0799213ef632e58 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/25.txt b/maze/task4/maps/level_step1/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c422fe457c20c1d9786346577788d5ff2ce46c86 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/26.txt b/maze/task4/maps/level_step1/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ad0b8b4a2ac1a5b336d4194a697b79c7b57cab0 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/27.txt b/maze/task4/maps/level_step1/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2f4a77c87ae7d4b2308b6c58f8c2a49b2a0d260 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/28.txt b/maze/task4/maps/level_step1/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d94e848dad0619efab11ead4fb9890a95b4b77b --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/29.txt b/maze/task4/maps/level_step1/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7f39ce847670a9e2ad0f6e3ccc6d47497707d06 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/3.txt b/maze/task4/maps/level_step1/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..69e73a8c23f7d57f3e51e58b7901e281cad0f7a0 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/30.txt b/maze/task4/maps/level_step1/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..001aac817e85490dcc7b7d2e6929e93a53a7fe8e --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/31.txt b/maze/task4/maps/level_step1/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..804679724f787c34257c826415e2bb5bb09564a8 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/32.txt b/maze/task4/maps/level_step1/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..97e1eb1d60e07f79cda53c60f3f0a0697f818ff9 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/33.txt b/maze/task4/maps/level_step1/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..f71b36e49c667a0585201da5160ddfd3a33a7d8d --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 4, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/34.txt b/maze/task4/maps/level_step1/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b373afbf45df746a2191b8cde8b009da108e9d9 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/35.txt b/maze/task4/maps/level_step1/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e6eced5f42ddf7dfa970c3b2128ad1d2616aae --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/36.txt b/maze/task4/maps/level_step1/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..c78cb9c0b4279a0c421839799a70d9d272d8dc20 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; Row 3, Column 5; Row 4, Column 2; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/37.txt b/maze/task4/maps/level_step1/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..fedc78888e0ae73aff738dd6e293612126300e58 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 5, Column 1; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/38.txt b/maze/task4/maps/level_step1/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f6fcf47b297b9d5b81443069c545e261d47b37b --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/39.txt b/maze/task4/maps/level_step1/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a8f7d4070dc9319c628097af7aa9bb383b36b2d --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/4.txt b/maze/task4/maps/level_step1/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59ffc168cdb8212ad7ec3dbc639e372f3d7db13 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/40.txt b/maze/task4/maps/level_step1/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a59e7943e485d224436e8d1486c5e2dbe369cee --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 5, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/41.txt b/maze/task4/maps/level_step1/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9d190660b178c6419b5664db263949f2701555d --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 4, Column 2; Row 4, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/42.txt b/maze/task4/maps/level_step1/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..aea8073de7c38603b91dcd8e32f5712cbc64d9e5 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/43.txt b/maze/task4/maps/level_step1/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3232cf536abf875c58ecd4fa47049dffac73b440 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 5, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/44.txt b/maze/task4/maps/level_step1/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce70031213938ea38a092f3ab79b4bea3d720fea --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/45.txt b/maze/task4/maps/level_step1/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..edc5006e39d7125d3b6015587b5fc04e6eb2a9dc --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 4; Row 3, Column 2; Row 4, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/46.txt b/maze/task4/maps/level_step1/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fc422e917a57def3a084a0be255bca7bb31f1c --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 4, Column 1; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/47.txt b/maze/task4/maps/level_step1/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f0dc0f42d1e6942b2aac7d8dfafc3cf1c734ee --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/48.txt b/maze/task4/maps/level_step1/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..af5a68ffdcfbdaadf00235cd5c7a55e99b5a7930 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 1; Row 2, Column 3; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/49.txt b/maze/task4/maps/level_step1/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..34d06ec94cfb7f9deed3405e2003ba1bc409da5b --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/5.txt b/maze/task4/maps/level_step1/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5a7c360f4d2a91544cb3423491ca285c9a175d1 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/50.txt b/maze/task4/maps/level_step1/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d21dfb5d4bf5fbac9fd9d30e8918d02f9c68ee2 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 4, Column 3; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/51.txt b/maze/task4/maps/level_step1/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b7bd5193551578f98b26bb714f9e3fda3e664e5 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; Row 3, Column 4; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/52.txt b/maze/task4/maps/level_step1/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..14692c12d96d78f3c837efdc8dac716c4c743718 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; Row 3, Column 2; Row 4, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/53.txt b/maze/task4/maps/level_step1/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2106621473d9a89917c751ac90e082b2a91e6846 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/54.txt b/maze/task4/maps/level_step1/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e529cb4a7371b0d490d5ee9b3cfba74b0fc6b6f4 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 4, Column 4; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/55.txt b/maze/task4/maps/level_step1/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..b88bdbb92a49502e281210e0ed15d870c91a593c --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/56.txt b/maze/task4/maps/level_step1/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..59135e9fb59312b14ec106ba756901d0e271f15a --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 2, Column 5; Row 3, Column 2; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/57.txt b/maze/task4/maps/level_step1/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..80c622ea71676723763fead953c21d3b9309419c --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 3; Row 4, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/58.txt b/maze/task4/maps/level_step1/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..278735b446a9a0b55d5fede1aa3a48534aa209b7 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/59.txt b/maze/task4/maps/level_step1/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cc341a6ea7fa38918c658e471d99247496e3e87 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 3, Column 4; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/6.txt b/maze/task4/maps/level_step1/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..090e9c1d826401003433a544b5a036f1e691e749 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/60.txt b/maze/task4/maps/level_step1/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..00b712acdb7a7c242f554cbc6172534a1c7ebe82 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/61.txt b/maze/task4/maps/level_step1/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..008f7557e3582f3dd2ae12e8b9b989e9416f84dc --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/62.txt b/maze/task4/maps/level_step1/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e9c53d4fba2738db99715000abfde4fcc4e9676 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/63.txt b/maze/task4/maps/level_step1/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..db53db741a9d603eac11aad2843e47943adef2a7 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/64.txt b/maze/task4/maps/level_step1/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8a49cd41197a2b270bf7d2a0f316f7c857a6524 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/65.txt b/maze/task4/maps/level_step1/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..908e626d8b061dc83f0ba59baab9f9f27170d3e9 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/66.txt b/maze/task4/maps/level_step1/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..e95bd73d1e25a720fae1d120db11ee2b23c528ad --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/67.txt b/maze/task4/maps/level_step1/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..e827b288f0aaf5b38e997f08c12df9b60d3755f7 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/68.txt b/maze/task4/maps/level_step1/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f736b45d2605c716f2c985d1a323cfcd5238b578 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 1; Row 5, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/69.txt b/maze/task4/maps/level_step1/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..225be629504b93f3710f79845bb8c392b1091099 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 5; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/7.txt b/maze/task4/maps/level_step1/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f78705abcdcb88bfd21c0c4c600b0c0deabcc66d --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/70.txt b/maze/task4/maps/level_step1/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a8a92c1901bd5de504b373d1e1f071c97cf29e --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/71.txt b/maze/task4/maps/level_step1/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d33fb283d0f725b06dd43fc912f439278b32eec --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/72.txt b/maze/task4/maps/level_step1/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..13f47899407b24eeba4e858fcc0694770b5839b2 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 5, Column 3; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/73.txt b/maze/task4/maps/level_step1/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..775d3a949f1a8705d52a029e87142e5d68c0b9e0 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 5, Column 2; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/74.txt b/maze/task4/maps/level_step1/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..41d358dfcdcf1d4e3f062135579bbd21515f339f --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 3; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/75.txt b/maze/task4/maps/level_step1/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..915d740f384ea81f4cf4c86382217b7a0290c305 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/76.txt b/maze/task4/maps/level_step1/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..882c5cd19ba1f1017a341522e1bfba7623abf38c --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 2; Row 3, Column 5; Row 4, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/77.txt b/maze/task4/maps/level_step1/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dc66fa1b6370c5725cb89c2135994a92f220f26 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/78.txt b/maze/task4/maps/level_step1/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..42e0303a60172e4b8ce15951302d16f23c11ae37 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/79.txt b/maze/task4/maps/level_step1/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a3915e8eea24dc20f7b204d597fd142ca57e4b9 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 4; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/8.txt b/maze/task4/maps/level_step1/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..08edb362cb22dbded0ea93839caca4600a4eeb16 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/80.txt b/maze/task4/maps/level_step1/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8d2408141eaf1409230f3880a3fedcf1d54b953 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/81.txt b/maze/task4/maps/level_step1/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..18460f3c07b772398052d732aec7a18306a362fc --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/82.txt b/maze/task4/maps/level_step1/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c2e984f1c166764303dc2f5a2ee3055093ded15 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/83.txt b/maze/task4/maps/level_step1/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..077e19c7808dd1ee83acdb763d35196fc8efedec --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/84.txt b/maze/task4/maps/level_step1/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f6c3cc66727f13d4b4524c30cff09d5ec25ae60 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 4; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/85.txt b/maze/task4/maps/level_step1/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..65ad62c663c01368fa9e5cc52e8a28df7bf0e490 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 4, Column 4; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/86.txt b/maze/task4/maps/level_step1/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..1314a63ac079354e310dd359ecc90968cd8e493e --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/87.txt b/maze/task4/maps/level_step1/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0e8f94adc82b0dddb206544382dee4702485731 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 4, Column 1; Row 4, Column 3; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/88.txt b/maze/task4/maps/level_step1/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a970f264f48d75000b066267644c8f5770aeb88c --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 5, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/89.txt b/maze/task4/maps/level_step1/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..94a0d4b048c75ea846ff6f887120a36cdeecdfe0 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 1; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/9.txt b/maze/task4/maps/level_step1/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..e331e360b9da15923123b2957ca0cea7c92c20cc --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/90.txt b/maze/task4/maps/level_step1/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..1eb6bfa6cca9aac78987377258148ad12e1690cc --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/91.txt b/maze/task4/maps/level_step1/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..94e027b8eb5f480291a9d3a6652c5e2628e76ea7 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 3; Row 4, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/92.txt b/maze/task4/maps/level_step1/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3978641f98cbdaa0617dd440465f0bb606c8962 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/93.txt b/maze/task4/maps/level_step1/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..99e8587ad626e4e76a45776ec0df7dfc107a9994 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 4; Row 3, Column 3; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/94.txt b/maze/task4/maps/level_step1/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f9219bae6ebde73625e6c9c8fb730c237ef09e --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/95.txt b/maze/task4/maps/level_step1/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..92aa4557aa2d22124ee2b3641570ea46108af8bc --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 5; Row 4, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/96.txt b/maze/task4/maps/level_step1/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..70d2a88d37df99261e22df0f11a80d3b471ed2e4 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/97.txt b/maze/task4/maps/level_step1/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..076c01ee6bacfe079d95faf6bc75c95481857fd9 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/98.txt b/maze/task4/maps/level_step1/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f80d01bfe99e25517f31778e2b0440dcede84bb --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/pure_text/99.txt b/maze/task4/maps/level_step1/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e83fcadcc53346222267fe68467d7f53b2e90601 --- /dev/null +++ b/maze/task4/maps/level_step1/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/0.txt b/maze/task4/maps/level_step1/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/0.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/1.txt b/maze/task4/maps/level_step1/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/1.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/10.txt b/maze/task4/maps/level_step1/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/10.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/11.txt b/maze/task4/maps/level_step1/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/11.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/12.txt b/maze/task4/maps/level_step1/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/12.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/13.txt b/maze/task4/maps/level_step1/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/13.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/14.txt b/maze/task4/maps/level_step1/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/14.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/15.txt b/maze/task4/maps/level_step1/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/15.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/16.txt b/maze/task4/maps/level_step1/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/16.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/17.txt b/maze/task4/maps/level_step1/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/17.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/18.txt b/maze/task4/maps/level_step1/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/18.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/19.txt b/maze/task4/maps/level_step1/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/19.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/2.txt b/maze/task4/maps/level_step1/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/2.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/20.txt b/maze/task4/maps/level_step1/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/20.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/21.txt b/maze/task4/maps/level_step1/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/21.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/22.txt b/maze/task4/maps/level_step1/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/22.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/23.txt b/maze/task4/maps/level_step1/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/23.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/24.txt b/maze/task4/maps/level_step1/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/24.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/25.txt b/maze/task4/maps/level_step1/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/25.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/26.txt b/maze/task4/maps/level_step1/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/26.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/27.txt b/maze/task4/maps/level_step1/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/27.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/28.txt b/maze/task4/maps/level_step1/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/28.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/29.txt b/maze/task4/maps/level_step1/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/29.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/3.txt b/maze/task4/maps/level_step1/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/3.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/30.txt b/maze/task4/maps/level_step1/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/30.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/31.txt b/maze/task4/maps/level_step1/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/31.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/32.txt b/maze/task4/maps/level_step1/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/32.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/33.txt b/maze/task4/maps/level_step1/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/33.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/34.txt b/maze/task4/maps/level_step1/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/34.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/35.txt b/maze/task4/maps/level_step1/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/35.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/36.txt b/maze/task4/maps/level_step1/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/36.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/37.txt b/maze/task4/maps/level_step1/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/37.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/38.txt b/maze/task4/maps/level_step1/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/38.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/39.txt b/maze/task4/maps/level_step1/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/39.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/4.txt b/maze/task4/maps/level_step1/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/4.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/40.txt b/maze/task4/maps/level_step1/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/40.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/41.txt b/maze/task4/maps/level_step1/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/41.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/42.txt b/maze/task4/maps/level_step1/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/42.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/43.txt b/maze/task4/maps/level_step1/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/43.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/44.txt b/maze/task4/maps/level_step1/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/44.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/45.txt b/maze/task4/maps/level_step1/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/45.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/46.txt b/maze/task4/maps/level_step1/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/46.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/47.txt b/maze/task4/maps/level_step1/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/47.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/48.txt b/maze/task4/maps/level_step1/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/48.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/49.txt b/maze/task4/maps/level_step1/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/49.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/5.txt b/maze/task4/maps/level_step1/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/5.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/50.txt b/maze/task4/maps/level_step1/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/50.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/51.txt b/maze/task4/maps/level_step1/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/51.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/52.txt b/maze/task4/maps/level_step1/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/52.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/53.txt b/maze/task4/maps/level_step1/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/53.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/54.txt b/maze/task4/maps/level_step1/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/54.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/55.txt b/maze/task4/maps/level_step1/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/55.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/56.txt b/maze/task4/maps/level_step1/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/56.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/57.txt b/maze/task4/maps/level_step1/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/57.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/58.txt b/maze/task4/maps/level_step1/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/58.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/59.txt b/maze/task4/maps/level_step1/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/59.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/6.txt b/maze/task4/maps/level_step1/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/6.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/60.txt b/maze/task4/maps/level_step1/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/60.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/61.txt b/maze/task4/maps/level_step1/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/61.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/62.txt b/maze/task4/maps/level_step1/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/62.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/63.txt b/maze/task4/maps/level_step1/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/63.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/64.txt b/maze/task4/maps/level_step1/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/64.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/65.txt b/maze/task4/maps/level_step1/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/65.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/66.txt b/maze/task4/maps/level_step1/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/66.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/67.txt b/maze/task4/maps/level_step1/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/67.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/68.txt b/maze/task4/maps/level_step1/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/68.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/69.txt b/maze/task4/maps/level_step1/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/69.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/7.txt b/maze/task4/maps/level_step1/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/7.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/70.txt b/maze/task4/maps/level_step1/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/70.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/71.txt b/maze/task4/maps/level_step1/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/71.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/72.txt b/maze/task4/maps/level_step1/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/72.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/73.txt b/maze/task4/maps/level_step1/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/73.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/74.txt b/maze/task4/maps/level_step1/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/74.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/75.txt b/maze/task4/maps/level_step1/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/75.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/76.txt b/maze/task4/maps/level_step1/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/76.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/77.txt b/maze/task4/maps/level_step1/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/77.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/78.txt b/maze/task4/maps/level_step1/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/78.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/79.txt b/maze/task4/maps/level_step1/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/79.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/8.txt b/maze/task4/maps/level_step1/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/8.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/80.txt b/maze/task4/maps/level_step1/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/80.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/81.txt b/maze/task4/maps/level_step1/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/81.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/82.txt b/maze/task4/maps/level_step1/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/82.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/83.txt b/maze/task4/maps/level_step1/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/83.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/84.txt b/maze/task4/maps/level_step1/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/84.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/85.txt b/maze/task4/maps/level_step1/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/85.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/86.txt b/maze/task4/maps/level_step1/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/86.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/87.txt b/maze/task4/maps/level_step1/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/87.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/88.txt b/maze/task4/maps/level_step1/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/88.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/89.txt b/maze/task4/maps/level_step1/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/89.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/9.txt b/maze/task4/maps/level_step1/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/9.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/90.txt b/maze/task4/maps/level_step1/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/90.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/91.txt b/maze/task4/maps/level_step1/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/91.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/92.txt b/maze/task4/maps/level_step1/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/92.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/93.txt b/maze/task4/maps/level_step1/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/93.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/94.txt b/maze/task4/maps/level_step1/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/94.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/95.txt b/maze/task4/maps/level_step1/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..083b700b23248d19fdf63d7501b802a9556dcd90 --- /dev/null +++ b/maze/task4/maps/level_step1/question/95.txt @@ -0,0 +1 @@ +L \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/96.txt b/maze/task4/maps/level_step1/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f0734cbe3ae9d87287203f06e908edec7c8ed4d --- /dev/null +++ b/maze/task4/maps/level_step1/question/96.txt @@ -0,0 +1 @@ +U \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/97.txt b/maze/task4/maps/level_step1/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac044e5e4649cd149e3d0cf9d23720d299288a1e --- /dev/null +++ b/maze/task4/maps/level_step1/question/97.txt @@ -0,0 +1 @@ +R \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/98.txt b/maze/task4/maps/level_step1/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/98.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/question/99.txt b/maze/task4/maps/level_step1/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..02358d2358658574ba0767140caa4216ee7ea5bf --- /dev/null +++ b/maze/task4/maps/level_step1/question/99.txt @@ -0,0 +1 @@ +D \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/0.txt b/maze/task4/maps/level_step1/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..85d88b849a1bc24f810062fe9bed19b90331a9fc --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +____# +__@__ +*____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/1.txt b/maze/task4/maps/level_step1/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..1537ede46f935aea5e1d2a1dfb66a48d2a8e32db --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/1.txt @@ -0,0 +1,5 @@ +__@__ +__##_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/10.txt b/maze/task4/maps/level_step1/special_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..3eeb71fa6b5ca121e97b494611d6083dad260a54 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/10.txt @@ -0,0 +1,5 @@ +___#_ +_#@__ +_____ +_#__* +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/11.txt b/maze/task4/maps/level_step1/special_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..abee26e333e850fe9c82b52f4db1e1cb7acca162 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/11.txt @@ -0,0 +1,5 @@ +_____ +_#_#_ +_____ +_#___ +*@_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/12.txt b/maze/task4/maps/level_step1/special_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..9afc0bc51aa23ade60b815874b97f5320e754f65 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/12.txt @@ -0,0 +1,5 @@ +__#_# +_____ +_#___ +__@#_ +_*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/13.txt b/maze/task4/maps/level_step1/special_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1a36100bee4fff583c1677dbe5d3a1a933b5b30 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/13.txt @@ -0,0 +1,5 @@ +#___* +__##_ +___#_ +@____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/14.txt b/maze/task4/maps/level_step1/special_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e0ddf89ac03e81ea86e73ab11b1ba85598c4849 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/14.txt @@ -0,0 +1,5 @@ +__#@_ +__#*_ +_____ +#__#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/15.txt b/maze/task4/maps/level_step1/special_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2dc4f891b87636a4ef1f498b7a8def10a58d188 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/15.txt @@ -0,0 +1,5 @@ +_____ +#__#@ +_____ +__#__ +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/16.txt b/maze/task4/maps/level_step1/special_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ef8c6c90c43a36a8d8ab69d756c9b6b8e0cdcc --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/16.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +__@## +*__#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/17.txt b/maze/task4/maps/level_step1/special_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..421b1f486997696c08ed3f1bba41e2f311d6dab2 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/17.txt @@ -0,0 +1,5 @@ +_#_#* +_____ +___@_ +__#__ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/18.txt b/maze/task4/maps/level_step1/special_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..5754b63748623f8d1557f7c34254cecb42cb19a6 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/18.txt @@ -0,0 +1,5 @@ +__#__ +___#_ +#_#@_ +__*#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/19.txt b/maze/task4/maps/level_step1/special_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a5c2ec057b19a087016bd61d8dd5c9d4e84df1 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/19.txt @@ -0,0 +1,5 @@ +##__# +___## +____# +_*___ +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/2.txt b/maze/task4/maps/level_step1/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..048936f4edf772d59f702bd13490217b5ce9d207 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +__### +_____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/20.txt b/maze/task4/maps/level_step1/special_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..42987cf8aa4bc39bc4a012cb7113b3af81634ca1 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/20.txt @@ -0,0 +1,5 @@ +_____ +____# +___#@ +_#___ +__*_# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/21.txt b/maze/task4/maps/level_step1/special_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..98edfdafb7a28f64d9fbc5b4006f4a0cac3ba785 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/21.txt @@ -0,0 +1,5 @@ +___#_ +___@_ +____# +#____ +____* \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/22.txt b/maze/task4/maps/level_step1/special_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b0b9fe332e5eebee889f200348a219df310df7a --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/22.txt @@ -0,0 +1,5 @@ +__*__ +____@ +_#___ +#____ +#_### \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/23.txt b/maze/task4/maps/level_step1/special_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..02f1fc1a12e9c1e873026d53f5d499a40b96b473 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/23.txt @@ -0,0 +1,5 @@ +__*__ +_#__# +_____ +@__#_ +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/24.txt b/maze/task4/maps/level_step1/special_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..eda3e43552eb1d24ba587693364a6e45aada62ec --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/24.txt @@ -0,0 +1,5 @@ +*@##_ +__#__ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/25.txt b/maze/task4/maps/level_step1/special_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..667de56b26576b5c1e594c4993b5bf8401b94f5b --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/25.txt @@ -0,0 +1,5 @@ +_____ +#@__# +#_*__ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/26.txt b/maze/task4/maps/level_step1/special_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..49c1b8247f581b779997a091b0721200a9a98103 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/26.txt @@ -0,0 +1,5 @@ +__#__ +__##_ +_##__ +_#@__ +_*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/27.txt b/maze/task4/maps/level_step1/special_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f810ac4f5ad2096a8075b1f34f21225c87d66e9 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/27.txt @@ -0,0 +1,5 @@ +__#__ +_@__# +__#_# +_____ +_#_*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/28.txt b/maze/task4/maps/level_step1/special_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe4f6951a13305bc8a3ebac101f52ac2df1d8d8d --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/28.txt @@ -0,0 +1,5 @@ +____# +_____ +____@ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/29.txt b/maze/task4/maps/level_step1/special_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..711b0daa4eeb5c27f0bd13f74f23dc320790ba03 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/29.txt @@ -0,0 +1,5 @@ +_____ +@____ +___#_ +_##__ +*____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/3.txt b/maze/task4/maps/level_step1/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..db97ae9d4b28569612d83923a1d3d5a271c0f04b --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_#___ +_____ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/30.txt b/maze/task4/maps/level_step1/special_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..b69f42fef41059f60b9b3e824c29fa6578a7eafa --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/30.txt @@ -0,0 +1,5 @@ +_____ +__#__ +____# +#__#* +__#@# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/31.txt b/maze/task4/maps/level_step1/special_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3e3cb7c92734ec14c47b6f2290398aa83255732 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/31.txt @@ -0,0 +1,5 @@ +___#_ +##_## +__#__ +@____ +_#__* \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/32.txt b/maze/task4/maps/level_step1/special_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b28c724b467661f81c346716396bb1f9ca64133 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/32.txt @@ -0,0 +1,5 @@ +*__## +_____ +_____ +_#@#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/33.txt b/maze/task4/maps/level_step1/special_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7089811a70fef7c2fe19940886b812d197f9be7 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/33.txt @@ -0,0 +1,5 @@ +___#_ +_##_# +____@ +____# +___*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/34.txt b/maze/task4/maps/level_step1/special_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..418156b8ed67a0dc401068fca019c2f96c3c2de5 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/34.txt @@ -0,0 +1,5 @@ +_____ +_____ +__*## +@___# +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/35.txt b/maze/task4/maps/level_step1/special_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a324c3fd52ad76e773e0621cde09c0001a1295d9 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/35.txt @@ -0,0 +1,5 @@ +___*# +____# +_____ +@##_# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/36.txt b/maze/task4/maps/level_step1/special_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fb99420662301a9f8d2cc2108333dc4e7462598 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/36.txt @@ -0,0 +1,5 @@ +_____ +__#*_ +#___# +_#@__ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/37.txt b/maze/task4/maps/level_step1/special_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..078a5c20f682f0c0943efea36a64ff9237052bbb --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/37.txt @@ -0,0 +1,5 @@ +#____ +_#_@# +#__#_ +#____ +#__*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/38.txt b/maze/task4/maps/level_step1/special_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..53d4c0962eaccd88b92dd3b5ef8b880e924f0549 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/38.txt @@ -0,0 +1,5 @@ +__#__ +__##* +___#_ +___#_ +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/39.txt b/maze/task4/maps/level_step1/special_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..f54db121100d25b012465112fe0db39885ca9240 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/39.txt @@ -0,0 +1,5 @@ +____* +@#___ +____# +_____ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/4.txt b/maze/task4/maps/level_step1/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..502e775fe3e2fca70814b0024f0c4843bcb1d419 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/4.txt @@ -0,0 +1,5 @@ +____@ +_____ +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/40.txt b/maze/task4/maps/level_step1/special_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..9458bcf75882a81cfc205ece14bb66ae1974b6c6 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/40.txt @@ -0,0 +1,5 @@ +_____ +##*__ +_____ +@____ +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/41.txt b/maze/task4/maps/level_step1/special_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..566751fb311af38ac73d78153cd77dff21488226 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/41.txt @@ -0,0 +1,5 @@ +#_#__ +_____ +_@___ +_#_*# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/42.txt b/maze/task4/maps/level_step1/special_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc8a3386c3ef5a08fd2122bad1e0918841322185 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/42.txt @@ -0,0 +1,5 @@ +__### +__#__ +__@__ +___## +##*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/43.txt b/maze/task4/maps/level_step1/special_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..c229d5f2ebed8676850e04df8ecb2d7dbe792fc5 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/43.txt @@ -0,0 +1,5 @@ +__@_* +__#__ +_____ +_____ +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/44.txt b/maze/task4/maps/level_step1/special_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..07e0e4c0b112a51a1b36e0a4a5a47fa7b28d8535 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/44.txt @@ -0,0 +1,5 @@ +___#_ +*____ +_#__# +#@_#_ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/45.txt b/maze/task4/maps/level_step1/special_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..603a1e7e54e20c2cc8b334fdc490684e14c3e285 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/45.txt @@ -0,0 +1,5 @@ +__*__ +___#@ +_#___ +_#__# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/46.txt b/maze/task4/maps/level_step1/special_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..36fc9a723467d43fc642ed71e32ebd67b0723a45 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/46.txt @@ -0,0 +1,5 @@ +__#__ +@#___ +_____ +#_#__ +_*#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/47.txt b/maze/task4/maps/level_step1/special_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fc02bf24d77a06a6b9b322a3b27dedbe5410898 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/47.txt @@ -0,0 +1,5 @@ +_____ +_____ +_*#__ +##_@_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/48.txt b/maze/task4/maps/level_step1/special_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..37a041acba987e3d99eeef43a71a6bd2bf1f0728 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/48.txt @@ -0,0 +1,5 @@ +_###@ +#_#__ +_____ +__*__ +_##__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/49.txt b/maze/task4/maps/level_step1/special_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..b42998a570d2efa4a5461a88eb5bb52bdedb77cf --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/49.txt @@ -0,0 +1,5 @@ +#____ +#@*#_ +_#___ +##__# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/5.txt b/maze/task4/maps/level_step1/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da829c21a8c7e84d7331b0713ca8ff4103eb23a --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +___#_ +_@___ +___*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/50.txt b/maze/task4/maps/level_step1/special_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8dc399239ec520d43c32e0eab65bb7138497e97 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/50.txt @@ -0,0 +1,5 @@ +____# +_____ +_#___ +__#__ +_##@* \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/51.txt b/maze/task4/maps/level_step1/special_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3555df6436cbacb9a42342cc97483570c008d61 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/51.txt @@ -0,0 +1,5 @@ +*@#__ +_____ +_#_#_ +_____ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/52.txt b/maze/task4/maps/level_step1/special_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf8aae814da6ef52b67673d4c78d707e4104da7f --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/52.txt @@ -0,0 +1,5 @@ +_____ +*@_#_ +_#___ +___## +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/53.txt b/maze/task4/maps/level_step1/special_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d12fc1b942f2a7bc3156f95f0e25211ddb00df6b --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/53.txt @@ -0,0 +1,5 @@ +#*#__ +#@#__ +#_##_ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/54.txt b/maze/task4/maps/level_step1/special_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..b06f294b3ea58c7614f151b1e22e986f5b1041d1 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/54.txt @@ -0,0 +1,5 @@ +_____ +*____ +_____ +___## +_@__# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/55.txt b/maze/task4/maps/level_step1/special_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a45759e1fa57aec4c9d22c4b2e6bcec7fb90826 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/55.txt @@ -0,0 +1,5 @@ +__*__ +_____ +#_#@_ +_#_#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/56.txt b/maze/task4/maps/level_step1/special_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..c73bc61e9cdb6c3bc25a2507a330c9ee8455a371 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/56.txt @@ -0,0 +1,5 @@ +____@ +_*__# +_#___ +_____ +#__#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/57.txt b/maze/task4/maps/level_step1/special_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..77f56834a9065a20a11110d7b4e1069a846ff453 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/57.txt @@ -0,0 +1,5 @@ +__#__ +__#_@ +_*#__ +#____ +_#__# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/58.txt b/maze/task4/maps/level_step1/special_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..12dbc939bfcc060a05984cb19276832fda6b5e63 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/58.txt @@ -0,0 +1,5 @@ +#*___ +_@##_ +_____ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/59.txt b/maze/task4/maps/level_step1/special_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a72ded86c75038bd30f94d33b12f288f06811d7 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/59.txt @@ -0,0 +1,5 @@ +_____ +_#_@_ +_*_#_ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/6.txt b/maze/task4/maps/level_step1/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..06ac61b196846a33b6224efe7ab1f762ac624cf4 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +____# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/60.txt b/maze/task4/maps/level_step1/special_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..156b9ee7e244f3c8353fdb29547db3a53b732d9c --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/60.txt @@ -0,0 +1,5 @@ +#_@#_ +#___* +__#__ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/61.txt b/maze/task4/maps/level_step1/special_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..71c2aa8f9a09a3ffc6e22feb2ed19368dc9df6e3 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/61.txt @@ -0,0 +1,5 @@ +_@_#_ +_#*__ +_____ +_#_#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/62.txt b/maze/task4/maps/level_step1/special_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fa48a73df607def45b79bcf1798656a8f58e52a --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/62.txt @@ -0,0 +1,5 @@ +*_#__ +__#_# +__#__ +_##_# +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/63.txt b/maze/task4/maps/level_step1/special_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d01fc0e886ca991c24a46b387f46813c6b808f3 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/63.txt @@ -0,0 +1,5 @@ +___#_ +_____ +___#_ +__##_ +_*_@_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/64.txt b/maze/task4/maps/level_step1/special_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0c241fe74be1b4ccb9a3766b4b7e12ba9a9aeb3 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/64.txt @@ -0,0 +1,5 @@ +_##__ +__@__ +_____ +___*_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/65.txt b/maze/task4/maps/level_step1/special_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4a207f2ac0cbf63fb3194263055e8d37ccf3209 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/65.txt @@ -0,0 +1,5 @@ +_#___ +#___# +_____ +_@___ +_#__* \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/66.txt b/maze/task4/maps/level_step1/special_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..659eea688502e85f0be77475b9c668018c233e47 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/66.txt @@ -0,0 +1,5 @@ +#___# +_#@*# +#____ +_____ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/67.txt b/maze/task4/maps/level_step1/special_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..8937c0371631c1de93af8fe33dc7e2f4d5c01a47 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/67.txt @@ -0,0 +1,5 @@ +___## +_____ +_##__ +____# +@*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/68.txt b/maze/task4/maps/level_step1/special_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4dd2d7756dbe9dd03094ee12599ae06644dfad6 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/68.txt @@ -0,0 +1,5 @@ +_____ +@____ +#____ +_*___ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/69.txt b/maze/task4/maps/level_step1/special_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dffa8b0097e6908fd1d8293817547ae9c00c985 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/69.txt @@ -0,0 +1,5 @@ +__#__ +_#_@# +____# +_#_*# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/7.txt b/maze/task4/maps/level_step1/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..129f06ade6b9c60166b469f91610389c21a48f3b --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/7.txt @@ -0,0 +1,5 @@ +___*_ +__@#_ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/70.txt b/maze/task4/maps/level_step1/special_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f9572cc2911c9ce5b6d72399e40ec3aed7a55e4 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/70.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +#_@#_ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/71.txt b/maze/task4/maps/level_step1/special_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..930c59f441e2cba1f2f01ed3a601fcf615464e4d --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/71.txt @@ -0,0 +1,5 @@ +__@_* +__##_ +_##__ +_#___ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/72.txt b/maze/task4/maps/level_step1/special_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..26ec86387649952aed0c463f3e2faf21304e228c --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/72.txt @@ -0,0 +1,5 @@ +___@# +##__# +_##__ +#____ +__#*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/73.txt b/maze/task4/maps/level_step1/special_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..746070c6c9d5bf224470149b7a2b6c7191cfcae4 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/73.txt @@ -0,0 +1,5 @@ +##___ +__##_ +__@__ +_*___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/74.txt b/maze/task4/maps/level_step1/special_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..39f2738a57a69eee6a11dd6b28e1295cce721482 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/74.txt @@ -0,0 +1,5 @@ +#___# +__#__ +_____ +*__#@ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/75.txt b/maze/task4/maps/level_step1/special_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..4743758d365e554a2d43d3719da63dd01e165a97 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/75.txt @@ -0,0 +1,5 @@ +_____ +_#*__ +#_@__ +_____ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/76.txt b/maze/task4/maps/level_step1/special_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..022e9ef27dc560013914d8f4d1563e2186218012 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/76.txt @@ -0,0 +1,5 @@ +_____ +_____ +@#__# +*#___ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/77.txt b/maze/task4/maps/level_step1/special_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..182b09ef1a1c5994f3d7fb596bd4a62d4770d069 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/77.txt @@ -0,0 +1,5 @@ +_____ +___*_ +___#_ +__#__ +_@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/78.txt b/maze/task4/maps/level_step1/special_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..24718a4e34b45d3294589a006054226ca12d4a76 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/78.txt @@ -0,0 +1,5 @@ +_____ +____@ +_##_# +_#___ +#_*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/79.txt b/maze/task4/maps/level_step1/special_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b2fa48cf7e2a2c2799e159269dc38ccbf798dc4 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/79.txt @@ -0,0 +1,5 @@ +____* +__@#_ +___## +_____ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/8.txt b/maze/task4/maps/level_step1/special_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6c796052f0100022fe2c081e835f47b1f55424b --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/8.txt @@ -0,0 +1,5 @@ +___*_ +#____ +___#_ +##_#_ +_@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/80.txt b/maze/task4/maps/level_step1/special_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4d93048feddf991afdcd580d751d8b6bf872349 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/80.txt @@ -0,0 +1,5 @@ +#____ +__#__ +_____ +##___ +*@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/81.txt b/maze/task4/maps/level_step1/special_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..f24b225bbda292c923a286070fbf7f915ee1d7ba --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/81.txt @@ -0,0 +1,5 @@ +__#__ +__*__ +_@___ +_____ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/82.txt b/maze/task4/maps/level_step1/special_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a48fc447b762ba64f2761ea190d6de97801e18e --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/82.txt @@ -0,0 +1,5 @@ +*#___ +_____ +_____ +___#_ +@#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/83.txt b/maze/task4/maps/level_step1/special_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..a685c4eab8bbd106745faa06bc4e2dc96cc50304 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/83.txt @@ -0,0 +1,5 @@ +_##__ +#__#_ +_____ +*____ +__#@# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/84.txt b/maze/task4/maps/level_step1/special_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e8c25db78cb20df75cd2b9f18f1b5cae7b209a5 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/84.txt @@ -0,0 +1,5 @@ +___#_ +_____ +_*##_ +___#_ +_@_## \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/85.txt b/maze/task4/maps/level_step1/special_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..e41568ab7cdb569e72a9dd5cd10b0620cbd2bce6 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/85.txt @@ -0,0 +1,5 @@ +##_#_ +_#_## +____@ +___#* +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/86.txt b/maze/task4/maps/level_step1/special_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a740b13ce899bc4fc84217a221c2ce136f8b4ea7 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/86.txt @@ -0,0 +1,5 @@ +__##_ +_____ +@_*#_ +##___ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/87.txt b/maze/task4/maps/level_step1/special_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..6947170d45b9ee7c588af019ba33f805cc80c2e4 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/87.txt @@ -0,0 +1,5 @@ +#____ +__##_ +#*@__ +#_#__ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/88.txt b/maze/task4/maps/level_step1/special_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..575af80e1b3cc351860c53381214dd1f7ca426af --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/88.txt @@ -0,0 +1,5 @@ +__*#_ +##___ +##_@_ +##___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/89.txt b/maze/task4/maps/level_step1/special_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ead45168e535a1c6d1f8143e1f0f0d6ec8ea4cb --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/89.txt @@ -0,0 +1,5 @@ +_##__ +@__*_ +#____ +_____ +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/9.txt b/maze/task4/maps/level_step1/special_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd1e590ddb6ff33ca670294c06a664f81f9a97ca --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/9.txt @@ -0,0 +1,5 @@ +##__# +#__*# +#@#_# +_#___ +####_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/90.txt b/maze/task4/maps/level_step1/special_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc892ce80b072337f7ae4796aaaf1c4cc5bf4f01 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/90.txt @@ -0,0 +1,5 @@ +_____ +__#_@ +____# +*#___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/91.txt b/maze/task4/maps/level_step1/special_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cb72096d872f5788f352cfd14ffcf3a2b6c072b --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/91.txt @@ -0,0 +1,5 @@ +_#_#_ +_@#__ +*____ +__#__ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/92.txt b/maze/task4/maps/level_step1/special_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..43456a7b2131e88696d4387534f8b32bc9be0c10 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/92.txt @@ -0,0 +1,5 @@ +__@_# +_##__ +_*___ +____# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/93.txt b/maze/task4/maps/level_step1/special_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..e63c3446725c839b51e996856e27af1b6aa9c044 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/93.txt @@ -0,0 +1,5 @@ +#____ +_@_#_ +_*#__ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/94.txt b/maze/task4/maps/level_step1/special_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..38abe560d2898d6906a99f76cb8a7e264c93d002 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/94.txt @@ -0,0 +1,5 @@ +#____ +_#___ +*____ +____# +__@_# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/95.txt b/maze/task4/maps/level_step1/special_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..53a13f63227891c075ddc58c9f79a3db401e0891 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/95.txt @@ -0,0 +1,5 @@ +*#__# +_____ +___@# +_#___ +__#_# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/96.txt b/maze/task4/maps/level_step1/special_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..21adf975cc7729a2608cec3e6fe6019ce7bf205c --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/96.txt @@ -0,0 +1,5 @@ +#____ +###__ +_*___ +_###_ +_#_@_ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/97.txt b/maze/task4/maps/level_step1/special_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..59bf883a805c94d2453febf4cb9fa47b20264bac --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/97.txt @@ -0,0 +1,5 @@ +*@___ +#____ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/98.txt b/maze/task4/maps/level_step1/special_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..11fb2b7d657360ee587c0582252884c08e92052b --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/98.txt @@ -0,0 +1,5 @@ +#@#*_ +_##__ +_____ +#____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/special_text/99.txt b/maze/task4/maps/level_step1/special_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..dde4c4c3f39b7aca7754d070558b6b34235032b0 --- /dev/null +++ b/maze/task4/maps/level_step1/special_text/99.txt @@ -0,0 +1,5 @@ +_____ +*#__@ +__#__ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step1/table/0.txt b/maze/task4/maps/level_step1/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..71a2cd22e79422b7d477a4141c2e19b05c3bd1f5 --- /dev/null +++ b/maze/task4/maps/level_step1/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/1.txt b/maze/task4/maps/level_step1/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..37e585e9159c776ac6aee826ece89779b7abdf9a --- /dev/null +++ b/maze/task4/maps/level_step1/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step1/table/10.txt b/maze/task4/maps/level_step1/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dbf58323c2af8bab524ebc2a8657054dd82a432 --- /dev/null +++ b/maze/task4/maps/level_step1/table/10.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step1/table/11.txt b/maze/task4/maps/level_step1/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e9dea2fee4a93278764065cf1da3935f20307bb --- /dev/null +++ b/maze/task4/maps/level_step1/table/11.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/12.txt b/maze/task4/maps/level_step1/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..a245c4806d79af073be1015d06a12d1ed38a3e84 --- /dev/null +++ b/maze/task4/maps/level_step1/table/12.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/13.txt b/maze/task4/maps/level_step1/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea2d1614a3e9f80e878f1bd25d564f7871c1b2bb --- /dev/null +++ b/maze/task4/maps/level_step1/table/13.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/14.txt b/maze/task4/maps/level_step1/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..74c766497f20046fdef1a548c283f61b3c2045b6 --- /dev/null +++ b/maze/task4/maps/level_step1/table/14.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/15.txt b/maze/task4/maps/level_step1/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7ca72c752720bdbafcf70c449e47c9ec6f17ba5 --- /dev/null +++ b/maze/task4/maps/level_step1/table/15.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step1/table/16.txt b/maze/task4/maps/level_step1/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdaadcc660885d8cc036c56eb3d8c6166734d251 --- /dev/null +++ b/maze/task4/maps/level_step1/table/16.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/17.txt b/maze/task4/maps/level_step1/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..51cfae6b5cab1c10e4372fc6b0381b6e816248d3 --- /dev/null +++ b/maze/task4/maps/level_step1/table/17.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/18.txt b/maze/task4/maps/level_step1/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdea24aeb2d5e7ce65b2aa6d2561976ad7700d40 --- /dev/null +++ b/maze/task4/maps/level_step1/table/18.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/19.txt b/maze/task4/maps/level_step1/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..dddc27c4db2023865999858bf4fdbe566b5266f7 --- /dev/null +++ b/maze/task4/maps/level_step1/table/19.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step1/table/2.txt b/maze/task4/maps/level_step1/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task4/maps/level_step1/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/20.txt b/maze/task4/maps/level_step1/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..60f96585de5bee9fac2aca2fcaa5747c6122c86d --- /dev/null +++ b/maze/task4/maps/level_step1/table/20.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | diff --git a/maze/task4/maps/level_step1/table/21.txt b/maze/task4/maps/level_step1/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..43ef832210792b8161456c2e73ed871e05d5c697 --- /dev/null +++ b/maze/task4/maps/level_step1/table/21.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task4/maps/level_step1/table/22.txt b/maze/task4/maps/level_step1/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5b15e5f4ef092a1f78e2eb5159296b39c695bfa --- /dev/null +++ b/maze/task4/maps/level_step1/table/22.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | diff --git a/maze/task4/maps/level_step1/table/23.txt b/maze/task4/maps/level_step1/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3291cd013d78e809d904f9dfab9660d6d51eb932 --- /dev/null +++ b/maze/task4/maps/level_step1/table/23.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step1/table/24.txt b/maze/task4/maps/level_step1/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bbb681c3461cff5d1235131dc0199e120a5cbb7 --- /dev/null +++ b/maze/task4/maps/level_step1/table/24.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/25.txt b/maze/task4/maps/level_step1/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2ecfa107864966d52a237d3a7578f7c4255db56 --- /dev/null +++ b/maze/task4/maps/level_step1/table/25.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/26.txt b/maze/task4/maps/level_step1/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7acf6c97551025a47e8207046e1bfd34ba5eaae9 --- /dev/null +++ b/maze/task4/maps/level_step1/table/26.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/27.txt b/maze/task4/maps/level_step1/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..78bbcfe6501df2fa4d5998e438299642be5337aa --- /dev/null +++ b/maze/task4/maps/level_step1/table/27.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | * | _ | diff --git a/maze/task4/maps/level_step1/table/28.txt b/maze/task4/maps/level_step1/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..60ac347fd4a84043ca0e33430e4979c51a670c85 --- /dev/null +++ b/maze/task4/maps/level_step1/table/28.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/29.txt b/maze/task4/maps/level_step1/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..7012bced8ae0b0e4469a432bc7ecd768576f1205 --- /dev/null +++ b/maze/task4/maps/level_step1/table/29.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/3.txt b/maze/task4/maps/level_step1/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9afb12ea5b879f7d3d1aee81db7632744fe5e1 --- /dev/null +++ b/maze/task4/maps/level_step1/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/30.txt b/maze/task4/maps/level_step1/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd18d17ccf21d6c37a6d1d7945bbb1790d002a0a --- /dev/null +++ b/maze/task4/maps/level_step1/table/30.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | # | * | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task4/maps/level_step1/table/31.txt b/maze/task4/maps/level_step1/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..79fab8a93e45cc567a9c8e57d28bfdde645c5f7b --- /dev/null +++ b/maze/task4/maps/level_step1/table/31.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | diff --git a/maze/task4/maps/level_step1/table/32.txt b/maze/task4/maps/level_step1/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2c189eb73b21b63413968c877aa947c8c44332c --- /dev/null +++ b/maze/task4/maps/level_step1/table/32.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/33.txt b/maze/task4/maps/level_step1/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1a7094f979be81075a237cc14688b6b2dc15a22 --- /dev/null +++ b/maze/task4/maps/level_step1/table/33.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step1/table/34.txt b/maze/task4/maps/level_step1/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..01bad990b8df916dad20031887e1b820184fa657 --- /dev/null +++ b/maze/task4/maps/level_step1/table/34.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/35.txt b/maze/task4/maps/level_step1/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f18b432ca7b113f763e08ee6dc6532333bf5715 --- /dev/null +++ b/maze/task4/maps/level_step1/table/35.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/36.txt b/maze/task4/maps/level_step1/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..2872a16d385667c196a27548e37964733f926edd --- /dev/null +++ b/maze/task4/maps/level_step1/table/36.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step1/table/37.txt b/maze/task4/maps/level_step1/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..efd2c637a30c40142930094f0754a4e2f4f8fc3e --- /dev/null +++ b/maze/task4/maps/level_step1/table/37.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step1/table/38.txt b/maze/task4/maps/level_step1/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3846e4c3e55d0e44804705a43989b2e23cf8b0e0 --- /dev/null +++ b/maze/task4/maps/level_step1/table/38.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step1/table/39.txt b/maze/task4/maps/level_step1/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0704e01227f0053492af42b41bc5f3bbc0d5b4b --- /dev/null +++ b/maze/task4/maps/level_step1/table/39.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/4.txt b/maze/task4/maps/level_step1/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a319701482090faefd8ce684edd4b3d512e35984 --- /dev/null +++ b/maze/task4/maps/level_step1/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/40.txt b/maze/task4/maps/level_step1/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f49e80fc18043dcf3ec3085b0e55533a9424a90 --- /dev/null +++ b/maze/task4/maps/level_step1/table/40.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/41.txt b/maze/task4/maps/level_step1/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..a69ba0fd6e108e65971aeec453ee42c21f1cc200 --- /dev/null +++ b/maze/task4/maps/level_step1/table/41.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/42.txt b/maze/task4/maps/level_step1/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d5ab01f8f749bfa5e7ce9a70e117aeb36a10109 --- /dev/null +++ b/maze/task4/maps/level_step1/table/42.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | # | * | _ | _ | diff --git a/maze/task4/maps/level_step1/table/43.txt b/maze/task4/maps/level_step1/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..bba5c75ca3accaaa374a79977ffb21046bb28e7b --- /dev/null +++ b/maze/task4/maps/level_step1/table/43.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/44.txt b/maze/task4/maps/level_step1/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..04ea7f5214b697a95a31ce9139b1de7f257cc288 --- /dev/null +++ b/maze/task4/maps/level_step1/table/44.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | # | @ | _ | # | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/45.txt b/maze/task4/maps/level_step1/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..d93c12d4d3c8767ee85b5c67326c56e46897b61b --- /dev/null +++ b/maze/task4/maps/level_step1/table/45.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | # | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/46.txt b/maze/task4/maps/level_step1/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..52e9ac1f1c0a84951c51f3ae469355badac706b3 --- /dev/null +++ b/maze/task4/maps/level_step1/table/46.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | diff --git a/maze/task4/maps/level_step1/table/47.txt b/maze/task4/maps/level_step1/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..8248788308d1f5978c1d713f73beea09fae8c955 --- /dev/null +++ b/maze/task4/maps/level_step1/table/47.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/48.txt b/maze/task4/maps/level_step1/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..a230dc7d331ed428c1d18b7618ff30b61f5279cf --- /dev/null +++ b/maze/task4/maps/level_step1/table/48.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | @ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | diff --git a/maze/task4/maps/level_step1/table/49.txt b/maze/task4/maps/level_step1/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b25ac0e6906fcdfa9b2ca519414bf1a67a7e37b --- /dev/null +++ b/maze/task4/maps/level_step1/table/49.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/5.txt b/maze/task4/maps/level_step1/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da45b1e61a5685cb46325f1a7c0f88321df2ae --- /dev/null +++ b/maze/task4/maps/level_step1/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step1/table/50.txt b/maze/task4/maps/level_step1/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..b038fe78ef3a147679fd328226bbcdf7cb2b59bb --- /dev/null +++ b/maze/task4/maps/level_step1/table/50.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | # | @ | * | diff --git a/maze/task4/maps/level_step1/table/51.txt b/maze/task4/maps/level_step1/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a0815eef8fa94d279ec60f49d1f91ec6a6b1448 --- /dev/null +++ b/maze/task4/maps/level_step1/table/51.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/52.txt b/maze/task4/maps/level_step1/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..7914664132667cfded304d979547b28e9eefd50e --- /dev/null +++ b/maze/task4/maps/level_step1/table/52.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/53.txt b/maze/task4/maps/level_step1/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d5ee7e95f64becee9861bbaa79d15ef29571b16 --- /dev/null +++ b/maze/task4/maps/level_step1/table/53.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | _ | _ | +| Row 2 | # | @ | # | _ | _ | +| Row 3 | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step1/table/54.txt b/maze/task4/maps/level_step1/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e81c6d453858ec23b49ec7bf6b3f642608e809c --- /dev/null +++ b/maze/task4/maps/level_step1/table/54.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/55.txt b/maze/task4/maps/level_step1/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2e6d7933b828afbb9bca303bc84e643f00ef395 --- /dev/null +++ b/maze/task4/maps/level_step1/table/55.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/56.txt b/maze/task4/maps/level_step1/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..123f3eff64e27dc267f4d4a6854c05d9fd03f6ac --- /dev/null +++ b/maze/task4/maps/level_step1/table/56.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/57.txt b/maze/task4/maps/level_step1/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6647db1330aed2c4002abe3f7ae3882ef94c8e96 --- /dev/null +++ b/maze/task4/maps/level_step1/table/57.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/58.txt b/maze/task4/maps/level_step1/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4facf5f7b9bd004d8c1c5545d862b78a8ed747eb --- /dev/null +++ b/maze/task4/maps/level_step1/table/58.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/59.txt b/maze/task4/maps/level_step1/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..612649144588b71fdacbfc2c1e981d5eb0f3da5b --- /dev/null +++ b/maze/task4/maps/level_step1/table/59.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | _ | * | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step1/table/6.txt b/maze/task4/maps/level_step1/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2521dc5a2e4b78cd93244c384377b6d6b0823192 --- /dev/null +++ b/maze/task4/maps/level_step1/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/60.txt b/maze/task4/maps/level_step1/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c0cf916f6da3edd1cf7917b91018148417e3b4a --- /dev/null +++ b/maze/task4/maps/level_step1/table/60.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | # | _ | +| Row 2 | # | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/61.txt b/maze/task4/maps/level_step1/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..235c0525c21bcefb897b29c290e8306214044020 --- /dev/null +++ b/maze/task4/maps/level_step1/table/61.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | _ | # | _ | +| Row 2 | _ | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/62.txt b/maze/task4/maps/level_step1/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..66052c016a4f346ecda19ab98dc7c648f20de650 --- /dev/null +++ b/maze/task4/maps/level_step1/table/62.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step1/table/63.txt b/maze/task4/maps/level_step1/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..112cb39c5ac27e57bbe6d99cc6badf1ce2a9de09 --- /dev/null +++ b/maze/task4/maps/level_step1/table/63.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | +| Row 5 | _ | * | _ | @ | _ | diff --git a/maze/task4/maps/level_step1/table/64.txt b/maze/task4/maps/level_step1/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f61479e7d8140061c4b760334409912a1e6f628 --- /dev/null +++ b/maze/task4/maps/level_step1/table/64.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/65.txt b/maze/task4/maps/level_step1/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dd9aad9bd36a83d9213d158267673be238cb665 --- /dev/null +++ b/maze/task4/maps/level_step1/table/65.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | diff --git a/maze/task4/maps/level_step1/table/66.txt b/maze/task4/maps/level_step1/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5da0ff14dc3fb5998a4a229eedca0c5f6ed590e --- /dev/null +++ b/maze/task4/maps/level_step1/table/66.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | @ | * | # | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/67.txt b/maze/task4/maps/level_step1/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..34ce4a21faf5689ff7ea97ad691d943c83be3c2f --- /dev/null +++ b/maze/task4/maps/level_step1/table/67.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/68.txt b/maze/task4/maps/level_step1/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a40ccda9898fe8360fc6c0b63390b6fc383a81 --- /dev/null +++ b/maze/task4/maps/level_step1/table/68.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/69.txt b/maze/task4/maps/level_step1/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..82d0f84ca02b6dbadfadf946749eec578f795f01 --- /dev/null +++ b/maze/task4/maps/level_step1/table/69.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/7.txt b/maze/task4/maps/level_step1/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..efc86a17472b5dceea4accde95093fb833ca8309 --- /dev/null +++ b/maze/task4/maps/level_step1/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/70.txt b/maze/task4/maps/level_step1/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4404e2781df99c6580eeb74e3cfdecd6a84dbe2 --- /dev/null +++ b/maze/task4/maps/level_step1/table/70.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/71.txt b/maze/task4/maps/level_step1/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..f629a7fc01107700c1b7bece7858243a5a0e356b --- /dev/null +++ b/maze/task4/maps/level_step1/table/71.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step1/table/72.txt b/maze/task4/maps/level_step1/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..72c889f737215c6b0c41cf4e115abcd03fc6f2d0 --- /dev/null +++ b/maze/task4/maps/level_step1/table/72.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | # | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | diff --git a/maze/task4/maps/level_step1/table/73.txt b/maze/task4/maps/level_step1/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..031b7d038d130046de2515c19b501ea59cbdc63c --- /dev/null +++ b/maze/task4/maps/level_step1/table/73.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/74.txt b/maze/task4/maps/level_step1/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9fa2ddd1889466873c79f447f494f71a9cc7d64 --- /dev/null +++ b/maze/task4/maps/level_step1/table/74.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | # | @ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/75.txt b/maze/task4/maps/level_step1/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c5cd02d4849b9732bff70934bf3ea07e35f6b06 --- /dev/null +++ b/maze/task4/maps/level_step1/table/75.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | * | _ | _ | +| Row 3 | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/76.txt b/maze/task4/maps/level_step1/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..324139b44e3522388d9f26cd3d765095b969454d --- /dev/null +++ b/maze/task4/maps/level_step1/table/76.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | # | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step1/table/77.txt b/maze/task4/maps/level_step1/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fb899cc097e94935ef92f986f60d0143565e241 --- /dev/null +++ b/maze/task4/maps/level_step1/table/77.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/78.txt b/maze/task4/maps/level_step1/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..23964c5e623f7353acb9a1c79506d0c76530e73c --- /dev/null +++ b/maze/task4/maps/level_step1/table/78.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step1/table/79.txt b/maze/task4/maps/level_step1/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a64e850682e33895bc152ffe44465805ed1634 --- /dev/null +++ b/maze/task4/maps/level_step1/table/79.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step1/table/8.txt b/maze/task4/maps/level_step1/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..497f826729be29a0fd82e501b50af79afaa11b73 --- /dev/null +++ b/maze/task4/maps/level_step1/table/8.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/80.txt b/maze/task4/maps/level_step1/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..5589f1d3ac6690d8f68f291f751fa1b865c0c405 --- /dev/null +++ b/maze/task4/maps/level_step1/table/80.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | * | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/81.txt b/maze/task4/maps/level_step1/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..47da920aba24b5ce2751d433d9e64b8e8b4c4306 --- /dev/null +++ b/maze/task4/maps/level_step1/table/81.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/82.txt b/maze/task4/maps/level_step1/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..88bda35ba160112dff20969fe1697ae01ee5ede6 --- /dev/null +++ b/maze/task4/maps/level_step1/table/82.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/83.txt b/maze/task4/maps/level_step1/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f1b9f6b9618952d063d82fe396f7509c45efb9e --- /dev/null +++ b/maze/task4/maps/level_step1/table/83.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task4/maps/level_step1/table/84.txt b/maze/task4/maps/level_step1/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..45d952294d09a3f547fa4b6fc6187d865fc7f09a --- /dev/null +++ b/maze/task4/maps/level_step1/table/84.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | # | diff --git a/maze/task4/maps/level_step1/table/85.txt b/maze/task4/maps/level_step1/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4f54ee9a34933dd46e5856b074ee294682737bb --- /dev/null +++ b/maze/task4/maps/level_step1/table/85.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | _ | # | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/86.txt b/maze/task4/maps/level_step1/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..549158c64ed96431696106b86baad27932dbe374 --- /dev/null +++ b/maze/task4/maps/level_step1/table/86.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/87.txt b/maze/task4/maps/level_step1/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda6eb7b4255c3a9f3080e75d888b2637d12eec1 --- /dev/null +++ b/maze/task4/maps/level_step1/table/87.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | * | @ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/88.txt b/maze/task4/maps/level_step1/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d9706ff6bbf8e975d8e0896c4cde96fccd9d1ab --- /dev/null +++ b/maze/task4/maps/level_step1/table/88.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/89.txt b/maze/task4/maps/level_step1/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f9d067993b4e167b920e279ddd055052e84c911 --- /dev/null +++ b/maze/task4/maps/level_step1/table/89.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step1/table/9.txt b/maze/task4/maps/level_step1/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5ac58126560887cf9902b5a659a786e16e5de26 --- /dev/null +++ b/maze/task4/maps/level_step1/table/9.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task4/maps/level_step1/table/90.txt b/maze/task4/maps/level_step1/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..663ea411111cc2efcd9fa95e302388de6bb2d85e --- /dev/null +++ b/maze/task4/maps/level_step1/table/90.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/91.txt b/maze/task4/maps/level_step1/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..415656b24b1e4643d31bdb99898c78ad3e077fd8 --- /dev/null +++ b/maze/task4/maps/level_step1/table/91.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | _ | @ | # | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step1/table/92.txt b/maze/task4/maps/level_step1/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d05bb755670e9d6c92e14faa2c34e9c7c45a92d --- /dev/null +++ b/maze/task4/maps/level_step1/table/92.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/93.txt b/maze/task4/maps/level_step1/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3a551f73f6ed945abc68ec321d51c622f8214d3 --- /dev/null +++ b/maze/task4/maps/level_step1/table/93.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step1/table/94.txt b/maze/task4/maps/level_step1/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd36699cc97c9e1261cc3c2beb6509ebfd0fc54f --- /dev/null +++ b/maze/task4/maps/level_step1/table/94.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | diff --git a/maze/task4/maps/level_step1/table/95.txt b/maze/task4/maps/level_step1/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cfddeed458210d22a1fdd41d27cfde9b2e2c62f --- /dev/null +++ b/maze/task4/maps/level_step1/table/95.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | diff --git a/maze/task4/maps/level_step1/table/96.txt b/maze/task4/maps/level_step1/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ab42cb066a531791139a0d66b827b49218ea692 --- /dev/null +++ b/maze/task4/maps/level_step1/table/96.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | # | # | # | _ | +| Row 5 | _ | # | _ | @ | _ | diff --git a/maze/task4/maps/level_step1/table/97.txt b/maze/task4/maps/level_step1/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..18326e3e099f68517b35e02e857b8a1073462cda --- /dev/null +++ b/maze/task4/maps/level_step1/table/97.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step1/table/98.txt b/maze/task4/maps/level_step1/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..d993734c0b32a1125c42267b744ccd950a5ed6c9 --- /dev/null +++ b/maze/task4/maps/level_step1/table/98.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | * | _ | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/table/99.txt b/maze/task4/maps/level_step1/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..33d7938b7066fd84a556f9f4f58d83b891a7e093 --- /dev/null +++ b/maze/task4/maps/level_step1/table/99.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step1/text/0.txt b/maze/task4/maps/level_step1/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed46ff986eabcbfa5704583f5402f52a9c0c483 --- /dev/null +++ b/maze/task4/maps/level_step1/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFFH +FFSFF +GFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/1.txt b/maze/task4/maps/level_step1/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..acd2eec09c1fc7792d148da3bf102e25f7dc3cd9 --- /dev/null +++ b/maze/task4/maps/level_step1/text/1.txt @@ -0,0 +1,5 @@ +FFSFF +FFHHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/10.txt b/maze/task4/maps/level_step1/text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a7329f0731718e4d77d54e8c0b201cfc3094e9c --- /dev/null +++ b/maze/task4/maps/level_step1/text/10.txt @@ -0,0 +1,5 @@ +FFFHF +FHSFF +FFFFF +FHFFG +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/11.txt b/maze/task4/maps/level_step1/text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b36d7ad3f8f3c1af819ce36670d8424866386e2 --- /dev/null +++ b/maze/task4/maps/level_step1/text/11.txt @@ -0,0 +1,5 @@ +FFFFF +FHFHF +FFFFF +FHFFF +GSFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/12.txt b/maze/task4/maps/level_step1/text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c1497711841f955a1611d1b2af2eec2bb7a4232 --- /dev/null +++ b/maze/task4/maps/level_step1/text/12.txt @@ -0,0 +1,5 @@ +FFHFH +FFFFF +FHFFF +FFSHF +FGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/13.txt b/maze/task4/maps/level_step1/text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed08431d6972bf96ffcc3634a9de904e934aa7c7 --- /dev/null +++ b/maze/task4/maps/level_step1/text/13.txt @@ -0,0 +1,5 @@ +HFFFG +FFHHF +FFFHF +SFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/14.txt b/maze/task4/maps/level_step1/text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae0c4a1f50c7c686c0feb6132c6aa57f379da4ce --- /dev/null +++ b/maze/task4/maps/level_step1/text/14.txt @@ -0,0 +1,5 @@ +FFHSF +FFHGF +FFFFF +HFFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/15.txt b/maze/task4/maps/level_step1/text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eaf29b8f805e21d8c0fb0ef6d427e4745807220 --- /dev/null +++ b/maze/task4/maps/level_step1/text/15.txt @@ -0,0 +1,5 @@ +FFFFF +HFFHS +FFFFF +FFHFF +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/16.txt b/maze/task4/maps/level_step1/text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..231fc1515c20ac2410f721a0d2afaef22ab92069 --- /dev/null +++ b/maze/task4/maps/level_step1/text/16.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +FFSHH +GFFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/17.txt b/maze/task4/maps/level_step1/text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..73dab1ba95175bec5aa12ba3b55d753db6c52945 --- /dev/null +++ b/maze/task4/maps/level_step1/text/17.txt @@ -0,0 +1,5 @@ +FHFHG +FFFFF +FFFSF +FFHFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/18.txt b/maze/task4/maps/level_step1/text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..02743920fa4b93886ed94bcc7563f386d91f41fd --- /dev/null +++ b/maze/task4/maps/level_step1/text/18.txt @@ -0,0 +1,5 @@ +FFHFF +FFFHF +HFHSF +FFGHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/19.txt b/maze/task4/maps/level_step1/text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..43f66957e4f5b88de8c40b44eb48ced85b671816 --- /dev/null +++ b/maze/task4/maps/level_step1/text/19.txt @@ -0,0 +1,5 @@ +HHFFH +FFFHH +FFFFH +FGFFF +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/2.txt b/maze/task4/maps/level_step1/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cb13026072ba0623bbd69f829f69e99a8eebd14 --- /dev/null +++ b/maze/task4/maps/level_step1/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +FFHHH +FFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/20.txt b/maze/task4/maps/level_step1/text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0f38ca5677738dabe064992e1f609ca17315b01 --- /dev/null +++ b/maze/task4/maps/level_step1/text/20.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFH +FFFHS +FHFFF +FFGFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/21.txt b/maze/task4/maps/level_step1/text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..7649e9873c219f486a9f7fde9c968d91169702c5 --- /dev/null +++ b/maze/task4/maps/level_step1/text/21.txt @@ -0,0 +1,5 @@ +FFFHF +FFFSF +FFFFH +HFFFF +FFFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/22.txt b/maze/task4/maps/level_step1/text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f9c0700acc53f89bfadf777ad908a38fc20409e --- /dev/null +++ b/maze/task4/maps/level_step1/text/22.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFS +FHFFF +HFFFF +HFHHH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/23.txt b/maze/task4/maps/level_step1/text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..423ff21a20bfa31b85063cd8146945e67dd69223 --- /dev/null +++ b/maze/task4/maps/level_step1/text/23.txt @@ -0,0 +1,5 @@ +FFGFF +FHFFH +FFFFF +SFFHF +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/24.txt b/maze/task4/maps/level_step1/text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8378b2f1e0de611494ed1c672128062f4585165 --- /dev/null +++ b/maze/task4/maps/level_step1/text/24.txt @@ -0,0 +1,5 @@ +GSHHF +FFHFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/25.txt b/maze/task4/maps/level_step1/text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e32256d198c93c47d9633d8bc09313a08758441f --- /dev/null +++ b/maze/task4/maps/level_step1/text/25.txt @@ -0,0 +1,5 @@ +FFFFF +HSFFH +HFGFF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/26.txt b/maze/task4/maps/level_step1/text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..214071a0f58077f8cbf03e124650988432a6348f --- /dev/null +++ b/maze/task4/maps/level_step1/text/26.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHF +FHHFF +FHSFF +FGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/27.txt b/maze/task4/maps/level_step1/text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b01a42d7bd4290622e86e03a9cb63f2905e10eb --- /dev/null +++ b/maze/task4/maps/level_step1/text/27.txt @@ -0,0 +1,5 @@ +FFHFF +FSFFH +FFHFH +FFFFF +FHFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/28.txt b/maze/task4/maps/level_step1/text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c42f341cf3212c079a96dd41e359cc9c83e3520 --- /dev/null +++ b/maze/task4/maps/level_step1/text/28.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFF +FFFFS +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/29.txt b/maze/task4/maps/level_step1/text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..28182d666169246c0b8aa13fe992f48e920c2d83 --- /dev/null +++ b/maze/task4/maps/level_step1/text/29.txt @@ -0,0 +1,5 @@ +FFFFF +SFFFF +FFFHF +FHHFF +GFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/3.txt b/maze/task4/maps/level_step1/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a9e740bd78265bf06ae44f5e44d9c50f1f66bb --- /dev/null +++ b/maze/task4/maps/level_step1/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHFFF +FFFFF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/30.txt b/maze/task4/maps/level_step1/text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..398fc8a38a679372eed1f929f9534bb0fc0fa4a7 --- /dev/null +++ b/maze/task4/maps/level_step1/text/30.txt @@ -0,0 +1,5 @@ +FFFFF +FFHFF +FFFFH +HFFHG +FFHSH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/31.txt b/maze/task4/maps/level_step1/text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..3253f95e50766585f125d60cf6b8d787aba6fa3b --- /dev/null +++ b/maze/task4/maps/level_step1/text/31.txt @@ -0,0 +1,5 @@ +FFFHF +HHFHH +FFHFF +SFFFF +FHFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/32.txt b/maze/task4/maps/level_step1/text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5d4bbbfeec48355a73a6bb15cf5f83597d9f991 --- /dev/null +++ b/maze/task4/maps/level_step1/text/32.txt @@ -0,0 +1,5 @@ +GFFHH +FFFFF +FFFFF +FHSHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/33.txt b/maze/task4/maps/level_step1/text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..05014179e0ca1799ffaf70ea6df54ecc156f65ab --- /dev/null +++ b/maze/task4/maps/level_step1/text/33.txt @@ -0,0 +1,5 @@ +FFFHF +FHHFH +FFFFS +FFFFH +FFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/34.txt b/maze/task4/maps/level_step1/text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..a28a67b496b37fa6772f738078f06ebba5b09eaf --- /dev/null +++ b/maze/task4/maps/level_step1/text/34.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +FFGHH +SFFFH +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/35.txt b/maze/task4/maps/level_step1/text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..65de68cdd358bdd335fc70396c06ad49bf911a15 --- /dev/null +++ b/maze/task4/maps/level_step1/text/35.txt @@ -0,0 +1,5 @@ +FFFGH +FFFFH +FFFFF +SHHFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/36.txt b/maze/task4/maps/level_step1/text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..81c71854c47999212b757af0521d7167290fd69a --- /dev/null +++ b/maze/task4/maps/level_step1/text/36.txt @@ -0,0 +1,5 @@ +FFFFF +FFHGF +HFFFH +FHSFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/37.txt b/maze/task4/maps/level_step1/text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd7ae00d2a513a6ef22f5bcc8524bd664c71a055 --- /dev/null +++ b/maze/task4/maps/level_step1/text/37.txt @@ -0,0 +1,5 @@ +HFFFF +FHFSH +HFFHF +HFFFF +HFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/38.txt b/maze/task4/maps/level_step1/text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..60dc29135b8762e0a2a61ad8570315bc81036cfe --- /dev/null +++ b/maze/task4/maps/level_step1/text/38.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHG +FFFHF +FFFHF +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/39.txt b/maze/task4/maps/level_step1/text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..5247df947e0d3fab49b840774c49afdb77ad68b8 --- /dev/null +++ b/maze/task4/maps/level_step1/text/39.txt @@ -0,0 +1,5 @@ +FFFFG +SHFFF +FFFFH +FFFFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/4.txt b/maze/task4/maps/level_step1/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3cf6eeb8bc7ed068008471ec53393fad67964e0 --- /dev/null +++ b/maze/task4/maps/level_step1/text/4.txt @@ -0,0 +1,5 @@ +FFFFS +FFFFF +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/40.txt b/maze/task4/maps/level_step1/text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..bce0ac6ce8fd1ff3e476c9af84a6894b8e28f6d8 --- /dev/null +++ b/maze/task4/maps/level_step1/text/40.txt @@ -0,0 +1,5 @@ +FFFFF +HHGFF +FFFFF +SFFFF +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/41.txt b/maze/task4/maps/level_step1/text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..edcee62ad70358504e7455ed5f3c8e698cda6ee7 --- /dev/null +++ b/maze/task4/maps/level_step1/text/41.txt @@ -0,0 +1,5 @@ +HFHFF +FFFFF +FSFFF +FHFGH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/42.txt b/maze/task4/maps/level_step1/text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..884b187a6b3d03e3e7a4c6da0520341374854eaa --- /dev/null +++ b/maze/task4/maps/level_step1/text/42.txt @@ -0,0 +1,5 @@ +FFHHH +FFHFF +FFSFF +FFFHH +HHGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/43.txt b/maze/task4/maps/level_step1/text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..997ab6291f57d3763645bcf5abb3842971968180 --- /dev/null +++ b/maze/task4/maps/level_step1/text/43.txt @@ -0,0 +1,5 @@ +FFSFG +FFHFF +FFFFF +FFFFF +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/44.txt b/maze/task4/maps/level_step1/text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..453a6f8cba62d162fa892b115ec3c8bf766b17d3 --- /dev/null +++ b/maze/task4/maps/level_step1/text/44.txt @@ -0,0 +1,5 @@ +FFFHF +GFFFF +FHFFH +HSFHF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/45.txt b/maze/task4/maps/level_step1/text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..1859a523bbe271826ddd11e8d1092327d84eb889 --- /dev/null +++ b/maze/task4/maps/level_step1/text/45.txt @@ -0,0 +1,5 @@ +FFGFF +FFFHS +FHFFF +FHFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/46.txt b/maze/task4/maps/level_step1/text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0499cddf07cc5367bf3bba71e8e470eb1b24bc6 --- /dev/null +++ b/maze/task4/maps/level_step1/text/46.txt @@ -0,0 +1,5 @@ +FFHFF +SHFFF +FFFFF +HFHFF +FGHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/47.txt b/maze/task4/maps/level_step1/text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..47ef78805642bb75381a9cc512273e9fb21257d4 --- /dev/null +++ b/maze/task4/maps/level_step1/text/47.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +FGHFF +HHFSF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/48.txt b/maze/task4/maps/level_step1/text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b4132918a521957a77459fec3684e3042e6f84a --- /dev/null +++ b/maze/task4/maps/level_step1/text/48.txt @@ -0,0 +1,5 @@ +FHHHS +HFHFF +FFFFF +FFGFF +FHHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/49.txt b/maze/task4/maps/level_step1/text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..78938214ff07bd44b20ae757f54e3578843af918 --- /dev/null +++ b/maze/task4/maps/level_step1/text/49.txt @@ -0,0 +1,5 @@ +HFFFF +HSGHF +FHFFF +HHFFH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/5.txt b/maze/task4/maps/level_step1/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6a477a19a0ceaa1810c7ba9b9493628e24f6350 --- /dev/null +++ b/maze/task4/maps/level_step1/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FFFHF +FSFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/50.txt b/maze/task4/maps/level_step1/text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..923095eba7d1993cb31a1724933fd732bb07530c --- /dev/null +++ b/maze/task4/maps/level_step1/text/50.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFF +FHFFF +FFHFF +FHHSG \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/51.txt b/maze/task4/maps/level_step1/text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..f53147d5a68d0e6c3d754f0e625de97b2e4860de --- /dev/null +++ b/maze/task4/maps/level_step1/text/51.txt @@ -0,0 +1,5 @@ +GSHFF +FFFFF +FHFHF +FFFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/52.txt b/maze/task4/maps/level_step1/text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..6997c8c157d771975af2bc37f092ca8e7063046d --- /dev/null +++ b/maze/task4/maps/level_step1/text/52.txt @@ -0,0 +1,5 @@ +FFFFF +GSFHF +FHFFF +FFFHH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/53.txt b/maze/task4/maps/level_step1/text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef7cc10ce6aa5f64e8542574a25318d086ba9de3 --- /dev/null +++ b/maze/task4/maps/level_step1/text/53.txt @@ -0,0 +1,5 @@ +HGHFF +HSHFF +HFHHF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/54.txt b/maze/task4/maps/level_step1/text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..5512aa69d8efe00df5a5dbfae819bacfc64d8032 --- /dev/null +++ b/maze/task4/maps/level_step1/text/54.txt @@ -0,0 +1,5 @@ +FFFFF +GFFFF +FFFFF +FFFHH +FSFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/55.txt b/maze/task4/maps/level_step1/text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..28b1c6316851d0b49af7e7de7273c22c42706833 --- /dev/null +++ b/maze/task4/maps/level_step1/text/55.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFF +HFHSF +FHFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/56.txt b/maze/task4/maps/level_step1/text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb4ab4a696f738e67eb5442db1cf9ae58a38ec34 --- /dev/null +++ b/maze/task4/maps/level_step1/text/56.txt @@ -0,0 +1,5 @@ +FFFFS +FGFFH +FHFFF +FFFFF +HFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/57.txt b/maze/task4/maps/level_step1/text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..b17b4bc4c9c0a03ee5b69b237680700368ba17f6 --- /dev/null +++ b/maze/task4/maps/level_step1/text/57.txt @@ -0,0 +1,5 @@ +FFHFF +FFHFS +FGHFF +HFFFF +FHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/58.txt b/maze/task4/maps/level_step1/text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..969d55e8ca6d9e9a3c7b7776d1597f8892ab2263 --- /dev/null +++ b/maze/task4/maps/level_step1/text/58.txt @@ -0,0 +1,5 @@ +HGFFF +FSHHF +FFFFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/59.txt b/maze/task4/maps/level_step1/text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..de71d1f7d5d34bced328c87aa34979e7d93b7c76 --- /dev/null +++ b/maze/task4/maps/level_step1/text/59.txt @@ -0,0 +1,5 @@ +FFFFF +FHFSF +FGFHF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/6.txt b/maze/task4/maps/level_step1/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9277db9448443fe0cc50e301886dbfa02862ff92 --- /dev/null +++ b/maze/task4/maps/level_step1/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FFFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/60.txt b/maze/task4/maps/level_step1/text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..61980e8905460f29b6d882e17882d0070a4c57df --- /dev/null +++ b/maze/task4/maps/level_step1/text/60.txt @@ -0,0 +1,5 @@ +HFSHF +HFFFG +FFHFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/61.txt b/maze/task4/maps/level_step1/text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..979f4a775cdc06787dba383580c8be1036bca861 --- /dev/null +++ b/maze/task4/maps/level_step1/text/61.txt @@ -0,0 +1,5 @@ +FSFHF +FHGFF +FFFFF +FHFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/62.txt b/maze/task4/maps/level_step1/text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e8bc2fc5fc6f32d14990ae7843243d6fbeb5686 --- /dev/null +++ b/maze/task4/maps/level_step1/text/62.txt @@ -0,0 +1,5 @@ +GFHFF +FFHFH +FFHFF +FHHFH +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/63.txt b/maze/task4/maps/level_step1/text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e6daa60aaaeb8bb7a2de002ed12a0e8a294aed8 --- /dev/null +++ b/maze/task4/maps/level_step1/text/63.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FFFHF +FFHHF +FGFSF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/64.txt b/maze/task4/maps/level_step1/text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1146d08e1f8a9cb735c5894c17e1b6acc4be7abc --- /dev/null +++ b/maze/task4/maps/level_step1/text/64.txt @@ -0,0 +1,5 @@ +FHHFF +FFSFF +FFFFF +FFFGF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/65.txt b/maze/task4/maps/level_step1/text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5a67902b129c6e91f386fdc1d5f4d8f86882701 --- /dev/null +++ b/maze/task4/maps/level_step1/text/65.txt @@ -0,0 +1,5 @@ +FHFFF +HFFFH +FFFFF +FSFFF +FHFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/66.txt b/maze/task4/maps/level_step1/text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..9193e96e774332c715c2877881ec4acfcaa07520 --- /dev/null +++ b/maze/task4/maps/level_step1/text/66.txt @@ -0,0 +1,5 @@ +HFFFH +FHSGH +HFFFF +FFFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/67.txt b/maze/task4/maps/level_step1/text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..110882c702f2ff17bcae7976428e6e97a39fb7f1 --- /dev/null +++ b/maze/task4/maps/level_step1/text/67.txt @@ -0,0 +1,5 @@ +FFFHH +FFFFF +FHHFF +FFFFH +SGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/68.txt b/maze/task4/maps/level_step1/text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..79907c8a4797d52fa568b6ed5df77f25d7c6977d --- /dev/null +++ b/maze/task4/maps/level_step1/text/68.txt @@ -0,0 +1,5 @@ +FFFFF +SFFFF +HFFFF +FGFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/69.txt b/maze/task4/maps/level_step1/text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..c90da4f7a142e31e3631acce83522c4e7f38e31d --- /dev/null +++ b/maze/task4/maps/level_step1/text/69.txt @@ -0,0 +1,5 @@ +FFHFF +FHFSH +FFFFH +FHFGH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/7.txt b/maze/task4/maps/level_step1/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ab9208eb3f1961b065f8dd67cdaf0a330e31c14 --- /dev/null +++ b/maze/task4/maps/level_step1/text/7.txt @@ -0,0 +1,5 @@ +FFFGF +FFSHF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/70.txt b/maze/task4/maps/level_step1/text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..40f99668819656884f69be6c6f9193835102d36b --- /dev/null +++ b/maze/task4/maps/level_step1/text/70.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +HFSHF +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/71.txt b/maze/task4/maps/level_step1/text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..314334c85371851c814d49d687cc5b278693b537 --- /dev/null +++ b/maze/task4/maps/level_step1/text/71.txt @@ -0,0 +1,5 @@ +FFSFG +FFHHF +FHHFF +FHFFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/72.txt b/maze/task4/maps/level_step1/text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..57b53a3880d4b9fa7a9e4f55c76d8799aedc5473 --- /dev/null +++ b/maze/task4/maps/level_step1/text/72.txt @@ -0,0 +1,5 @@ +FFFSH +HHFFH +FHHFF +HFFFF +FFHGF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/73.txt b/maze/task4/maps/level_step1/text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce85cc9d0de11cbc7f1c8f4b139b694b5553e52b --- /dev/null +++ b/maze/task4/maps/level_step1/text/73.txt @@ -0,0 +1,5 @@ +HHFFF +FFHHF +FFSFF +FGFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/74.txt b/maze/task4/maps/level_step1/text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dddb6176aae17cc1f30d64f522adcfbc9dbcfef --- /dev/null +++ b/maze/task4/maps/level_step1/text/74.txt @@ -0,0 +1,5 @@ +HFFFH +FFHFF +FFFFF +GFFHS +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/75.txt b/maze/task4/maps/level_step1/text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..02df58bd1a3299b661a19b7a0684a7c5db93bc70 --- /dev/null +++ b/maze/task4/maps/level_step1/text/75.txt @@ -0,0 +1,5 @@ +FFFFF +FHGFF +HFSFF +FFFFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/76.txt b/maze/task4/maps/level_step1/text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bcd2a62e1956cdc61a352cd83413bc4b614e8ad --- /dev/null +++ b/maze/task4/maps/level_step1/text/76.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +SHFFH +GHFFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/77.txt b/maze/task4/maps/level_step1/text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc42e4e9bb88223495894d2bb90c6ffca8cdeab1 --- /dev/null +++ b/maze/task4/maps/level_step1/text/77.txt @@ -0,0 +1,5 @@ +FFFFF +FFFGF +FFFHF +FFHFF +FSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/78.txt b/maze/task4/maps/level_step1/text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..67428a86c6be4973fc52da0a04cb01ec1d3e2e88 --- /dev/null +++ b/maze/task4/maps/level_step1/text/78.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFS +FHHFH +FHFFF +HFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/79.txt b/maze/task4/maps/level_step1/text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..45cd7cb1e540ae8621d45f4013c4b98d2e6208df --- /dev/null +++ b/maze/task4/maps/level_step1/text/79.txt @@ -0,0 +1,5 @@ +FFFFG +FFSHF +FFFHH +FFFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/8.txt b/maze/task4/maps/level_step1/text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..41718d4d4c824cf49981e0ff7bc2dfa0ec32111f --- /dev/null +++ b/maze/task4/maps/level_step1/text/8.txt @@ -0,0 +1,5 @@ +FFFGF +HFFFF +FFFHF +HHFHF +FSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/80.txt b/maze/task4/maps/level_step1/text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..a44d4380fe911c9fe9de2d1a08f19f6beae9305f --- /dev/null +++ b/maze/task4/maps/level_step1/text/80.txt @@ -0,0 +1,5 @@ +HFFFF +FFHFF +FFFFF +HHFFF +GSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/81.txt b/maze/task4/maps/level_step1/text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..77db1a8e5d42a787360369bf5576852dde2b417d --- /dev/null +++ b/maze/task4/maps/level_step1/text/81.txt @@ -0,0 +1,5 @@ +FFHFF +FFGFF +FSFFF +FFFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/82.txt b/maze/task4/maps/level_step1/text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..890c75b0ae74d5408543d2af224ccd499bc9dc21 --- /dev/null +++ b/maze/task4/maps/level_step1/text/82.txt @@ -0,0 +1,5 @@ +GHFFF +FFFFF +FFFFF +FFFHF +SHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/83.txt b/maze/task4/maps/level_step1/text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..7092e39f47a95ff2e8c08df0576dfc7c6bfb80c9 --- /dev/null +++ b/maze/task4/maps/level_step1/text/83.txt @@ -0,0 +1,5 @@ +FHHFF +HFFHF +FFFFF +GFFFF +FFHSH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/84.txt b/maze/task4/maps/level_step1/text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..f781bda19040e929c129e09cdc5fe335054da80a --- /dev/null +++ b/maze/task4/maps/level_step1/text/84.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FGHHF +FFFHF +FSFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/85.txt b/maze/task4/maps/level_step1/text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..206266614e205a4cd8d40941254b72c7a2e5bc5d --- /dev/null +++ b/maze/task4/maps/level_step1/text/85.txt @@ -0,0 +1,5 @@ +HHFHF +FHFHH +FFFFS +FFFHG +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/86.txt b/maze/task4/maps/level_step1/text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..dda180ba0de59bd7c18c06567b55392a336eb91d --- /dev/null +++ b/maze/task4/maps/level_step1/text/86.txt @@ -0,0 +1,5 @@ +FFHHF +FFFFF +SFGHF +HHFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/87.txt b/maze/task4/maps/level_step1/text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..550a119d19915afceba52bbfff286c6da3aa5f47 --- /dev/null +++ b/maze/task4/maps/level_step1/text/87.txt @@ -0,0 +1,5 @@ +HFFFF +FFHHF +HGSFF +HFHFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/88.txt b/maze/task4/maps/level_step1/text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..4133d510da32abaaea60667d2df629a44bf3fd59 --- /dev/null +++ b/maze/task4/maps/level_step1/text/88.txt @@ -0,0 +1,5 @@ +FFGHF +HHFFF +HHFSF +HHFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/89.txt b/maze/task4/maps/level_step1/text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..87dca12d5361052e7ba7abc56b9ab1d0f764bfee --- /dev/null +++ b/maze/task4/maps/level_step1/text/89.txt @@ -0,0 +1,5 @@ +FHHFF +SFFGF +HFFFF +FFFFF +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/9.txt b/maze/task4/maps/level_step1/text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8233e7016eea56e41f863f782b38a3b93ac95d7 --- /dev/null +++ b/maze/task4/maps/level_step1/text/9.txt @@ -0,0 +1,5 @@ +HHFFH +HFFGH +HSHFH +FHFFF +HHHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/90.txt b/maze/task4/maps/level_step1/text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..05ce267f9b3c59a3be65631a9312ddae4aa9c93e --- /dev/null +++ b/maze/task4/maps/level_step1/text/90.txt @@ -0,0 +1,5 @@ +FFFFF +FFHFS +FFFFH +GHFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/91.txt b/maze/task4/maps/level_step1/text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..8534aded35265c974fcb60498c80a7bad7e47420 --- /dev/null +++ b/maze/task4/maps/level_step1/text/91.txt @@ -0,0 +1,5 @@ +FHFHF +FSHFF +GFFFF +FFHFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/92.txt b/maze/task4/maps/level_step1/text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ae12e67c87da1d009367054464d11120293c44c --- /dev/null +++ b/maze/task4/maps/level_step1/text/92.txt @@ -0,0 +1,5 @@ +FFSFH +FHHFF +FGFFF +FFFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/93.txt b/maze/task4/maps/level_step1/text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d2120b79cc6b7576bb77b360d7559f9bc319ff --- /dev/null +++ b/maze/task4/maps/level_step1/text/93.txt @@ -0,0 +1,5 @@ +HFFFF +FSFHF +FGHFF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/94.txt b/maze/task4/maps/level_step1/text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..390be0a3c7a40608f7705dab77e7d111f95cd57d --- /dev/null +++ b/maze/task4/maps/level_step1/text/94.txt @@ -0,0 +1,5 @@ +HFFFF +FHFFF +GFFFF +FFFFH +FFSFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/95.txt b/maze/task4/maps/level_step1/text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b8d73fdfd2a4ca5afc95744dc144a556bde332c --- /dev/null +++ b/maze/task4/maps/level_step1/text/95.txt @@ -0,0 +1,5 @@ +GHFFH +FFFFF +FFFSH +FHFFF +FFHFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/96.txt b/maze/task4/maps/level_step1/text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..b962b6b9e957e70363d3d694c3d9a3359c53f727 --- /dev/null +++ b/maze/task4/maps/level_step1/text/96.txt @@ -0,0 +1,5 @@ +HFFFF +HHHFF +FGFFF +FHHHF +FHFSF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/97.txt b/maze/task4/maps/level_step1/text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dff9259ae73b447065883939ff5959a3f00bc68 --- /dev/null +++ b/maze/task4/maps/level_step1/text/97.txt @@ -0,0 +1,5 @@ +GSFFF +HFFFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/98.txt b/maze/task4/maps/level_step1/text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b046ff1c58bc7c3e9fb0d900f045fde8f80a660 --- /dev/null +++ b/maze/task4/maps/level_step1/text/98.txt @@ -0,0 +1,5 @@ +HSHGF +FHHFF +FFFFF +HFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step1/text/99.txt b/maze/task4/maps/level_step1/text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..120aa1bbd40eb42811ef2485260feec00ab77780 --- /dev/null +++ b/maze/task4/maps/level_step1/text/99.txt @@ -0,0 +1,5 @@ +FFFFF +GHFFS +FFHFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/0.txt b/maze/task4/maps/level_step3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/0.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/1.txt b/maze/task4/maps/level_step3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/1.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/10.txt b/maze/task4/maps/level_step3/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/10.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/11.txt b/maze/task4/maps/level_step3/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/11.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/12.txt b/maze/task4/maps/level_step3/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/12.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/13.txt b/maze/task4/maps/level_step3/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/13.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/14.txt b/maze/task4/maps/level_step3/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/14.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/15.txt b/maze/task4/maps/level_step3/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/15.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/16.txt b/maze/task4/maps/level_step3/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/16.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/17.txt b/maze/task4/maps/level_step3/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/17.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/18.txt b/maze/task4/maps/level_step3/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/18.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/19.txt b/maze/task4/maps/level_step3/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/19.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/2.txt b/maze/task4/maps/level_step3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/2.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/20.txt b/maze/task4/maps/level_step3/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/20.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/21.txt b/maze/task4/maps/level_step3/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/21.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/22.txt b/maze/task4/maps/level_step3/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/22.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/23.txt b/maze/task4/maps/level_step3/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/23.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/24.txt b/maze/task4/maps/level_step3/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/24.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/25.txt b/maze/task4/maps/level_step3/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/26.txt b/maze/task4/maps/level_step3/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/26.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/27.txt b/maze/task4/maps/level_step3/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/27.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/28.txt b/maze/task4/maps/level_step3/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/28.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/29.txt b/maze/task4/maps/level_step3/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/29.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/3.txt b/maze/task4/maps/level_step3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/30.txt b/maze/task4/maps/level_step3/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/30.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/31.txt b/maze/task4/maps/level_step3/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/31.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/32.txt b/maze/task4/maps/level_step3/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/32.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/33.txt b/maze/task4/maps/level_step3/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/33.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/34.txt b/maze/task4/maps/level_step3/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/34.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/35.txt b/maze/task4/maps/level_step3/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/35.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/36.txt b/maze/task4/maps/level_step3/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/36.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/37.txt b/maze/task4/maps/level_step3/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/37.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/38.txt b/maze/task4/maps/level_step3/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/38.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/39.txt b/maze/task4/maps/level_step3/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/4.txt b/maze/task4/maps/level_step3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/4.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/40.txt b/maze/task4/maps/level_step3/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/40.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/41.txt b/maze/task4/maps/level_step3/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/41.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/42.txt b/maze/task4/maps/level_step3/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/42.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/43.txt b/maze/task4/maps/level_step3/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/43.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/44.txt b/maze/task4/maps/level_step3/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/44.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/45.txt b/maze/task4/maps/level_step3/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/45.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/46.txt b/maze/task4/maps/level_step3/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/46.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/47.txt b/maze/task4/maps/level_step3/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/47.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/48.txt b/maze/task4/maps/level_step3/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/48.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/49.txt b/maze/task4/maps/level_step3/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/49.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/5.txt b/maze/task4/maps/level_step3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/5.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/50.txt b/maze/task4/maps/level_step3/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/50.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/51.txt b/maze/task4/maps/level_step3/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/51.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/52.txt b/maze/task4/maps/level_step3/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/52.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/53.txt b/maze/task4/maps/level_step3/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/53.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/54.txt b/maze/task4/maps/level_step3/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/54.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/55.txt b/maze/task4/maps/level_step3/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/55.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/56.txt b/maze/task4/maps/level_step3/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/56.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/57.txt b/maze/task4/maps/level_step3/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/57.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/58.txt b/maze/task4/maps/level_step3/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/58.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/59.txt b/maze/task4/maps/level_step3/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/59.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/6.txt b/maze/task4/maps/level_step3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/60.txt b/maze/task4/maps/level_step3/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/60.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/61.txt b/maze/task4/maps/level_step3/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/61.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/62.txt b/maze/task4/maps/level_step3/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/62.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/63.txt b/maze/task4/maps/level_step3/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/63.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/64.txt b/maze/task4/maps/level_step3/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/64.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/65.txt b/maze/task4/maps/level_step3/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/65.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/66.txt b/maze/task4/maps/level_step3/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/66.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/67.txt b/maze/task4/maps/level_step3/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/67.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/68.txt b/maze/task4/maps/level_step3/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/68.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/69.txt b/maze/task4/maps/level_step3/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/69.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/7.txt b/maze/task4/maps/level_step3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/7.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/70.txt b/maze/task4/maps/level_step3/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/70.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/71.txt b/maze/task4/maps/level_step3/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/71.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/72.txt b/maze/task4/maps/level_step3/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/72.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/73.txt b/maze/task4/maps/level_step3/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/73.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/74.txt b/maze/task4/maps/level_step3/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/74.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/75.txt b/maze/task4/maps/level_step3/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/75.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/76.txt b/maze/task4/maps/level_step3/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/76.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/77.txt b/maze/task4/maps/level_step3/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/77.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/78.txt b/maze/task4/maps/level_step3/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/78.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/79.txt b/maze/task4/maps/level_step3/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/79.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/8.txt b/maze/task4/maps/level_step3/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/8.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/80.txt b/maze/task4/maps/level_step3/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/80.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/81.txt b/maze/task4/maps/level_step3/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/81.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/82.txt b/maze/task4/maps/level_step3/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/82.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/83.txt b/maze/task4/maps/level_step3/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/83.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/84.txt b/maze/task4/maps/level_step3/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/84.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/85.txt b/maze/task4/maps/level_step3/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/85.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/86.txt b/maze/task4/maps/level_step3/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/86.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/87.txt b/maze/task4/maps/level_step3/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/87.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/88.txt b/maze/task4/maps/level_step3/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/88.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/89.txt b/maze/task4/maps/level_step3/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/89.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/9.txt b/maze/task4/maps/level_step3/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/9.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/90.txt b/maze/task4/maps/level_step3/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/90.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/91.txt b/maze/task4/maps/level_step3/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/91.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/92.txt b/maze/task4/maps/level_step3/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/92.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/93.txt b/maze/task4/maps/level_step3/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/93.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/94.txt b/maze/task4/maps/level_step3/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/94.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/95.txt b/maze/task4/maps/level_step3/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/95.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/96.txt b/maze/task4/maps/level_step3/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step3/answer/96.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/97.txt b/maze/task4/maps/level_step3/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/97.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/98.txt b/maze/task4/maps/level_step3/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/98.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/answer/99.txt b/maze/task4/maps/level_step3/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step3/answer/99.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step3/img/0.png b/maze/task4/maps/level_step3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..53c675225cb4557b1697e4fa4871f0aa14c579b0 --- /dev/null +++ b/maze/task4/maps/level_step3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9cd3f0abed81e2b2317756e97906f959f6838129cb8e4d8cdbade95400af2d +size 8586 diff --git a/maze/task4/maps/level_step3/img/1.png b/maze/task4/maps/level_step3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f343446822ebf94b71b14c3eeb39c63926ce1b75 --- /dev/null +++ b/maze/task4/maps/level_step3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662a2be0231567d54a9bb941372aa13dba653e840e108fc5bd67999b9808970b +size 8576 diff --git a/maze/task4/maps/level_step3/img/10.png b/maze/task4/maps/level_step3/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..36afe96af778ab9f51ea10ad579e7cfc72bf656c --- /dev/null +++ b/maze/task4/maps/level_step3/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d8a4ef9af3d832ffef7907e5bd8f7ed70a602d733273507c5ff1d184503df1 +size 9540 diff --git a/maze/task4/maps/level_step3/img/11.png b/maze/task4/maps/level_step3/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a5ece63c58ccb637f8b8d6b3f8bc4c5e08a361a0 --- /dev/null +++ b/maze/task4/maps/level_step3/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded2d691e97803356fe059017e3a79a80dcfec9ab37b4101b44421c8e4745743 +size 9505 diff --git a/maze/task4/maps/level_step3/img/12.png b/maze/task4/maps/level_step3/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..961a186623ee0011ec0d5087f124ba6956dd303c --- /dev/null +++ b/maze/task4/maps/level_step3/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2c3ba8f3794820f29c4621ad30015477f75a684effd0f43c13791ef2b6e84e +size 8732 diff --git a/maze/task4/maps/level_step3/img/13.png b/maze/task4/maps/level_step3/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2e9bcd697c9f9df311a7bcc585551adc45b633 --- /dev/null +++ b/maze/task4/maps/level_step3/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63c693a4e866265c3ab6d440f9edda4aec2f9c6195167ab113d6907cc63582e +size 9460 diff --git a/maze/task4/maps/level_step3/img/14.png b/maze/task4/maps/level_step3/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e44305dfc644357261be64534f643eefb195c705 --- /dev/null +++ b/maze/task4/maps/level_step3/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2480be853ecc1486c6e360c02a888d1d7a9be805ed1769a4d9f7e2f7027ab6c2 +size 10368 diff --git a/maze/task4/maps/level_step3/img/15.png b/maze/task4/maps/level_step3/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..450142968e56df2928a7b65c4612f1fe6b3afce7 --- /dev/null +++ b/maze/task4/maps/level_step3/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45d7068051bd3f6cc5268a66c3e95022fb831ab30a1a324ac061e6b3bc1d404 +size 8565 diff --git a/maze/task4/maps/level_step3/img/16.png b/maze/task4/maps/level_step3/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7973c8fd0e44309ec3e86a3225421c70098fe0 --- /dev/null +++ b/maze/task4/maps/level_step3/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5583b83655c1009808d434d23387310c409754a8d3de67d91a947d9bcaa3c671 +size 10319 diff --git a/maze/task4/maps/level_step3/img/17.png b/maze/task4/maps/level_step3/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..89b88669e049ee2b40eb2964f6e3be9983d5841d --- /dev/null +++ b/maze/task4/maps/level_step3/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433a8057d4c23e0dd2814e9f57b18737e38ac85dad3d9122b606ff160b61592f +size 9481 diff --git a/maze/task4/maps/level_step3/img/18.png b/maze/task4/maps/level_step3/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4549bebd796f5614e8fde9913f122fc3ea9fe06e --- /dev/null +++ b/maze/task4/maps/level_step3/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42761bc7d7c553a5a98220b4524d47e6dab6a439046318108e5efd5840931f0 +size 9411 diff --git a/maze/task4/maps/level_step3/img/19.png b/maze/task4/maps/level_step3/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..4274e738ca1c16440e64b241b63d1fc04967a394 --- /dev/null +++ b/maze/task4/maps/level_step3/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b6f9024a10ed63ac195d8d332b40018b8cc0a6b96af1260c3b58b456b4a159 +size 10308 diff --git a/maze/task4/maps/level_step3/img/2.png b/maze/task4/maps/level_step3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task4/maps/level_step3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task4/maps/level_step3/img/20.png b/maze/task4/maps/level_step3/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..008eb9d774f873f49d9f2aba16a957268416f06c --- /dev/null +++ b/maze/task4/maps/level_step3/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb6e15f6f74538fb484c9175e9f2ed53f31bb2657acdcfcd043ca68a8a31eb6 +size 10260 diff --git a/maze/task4/maps/level_step3/img/21.png b/maze/task4/maps/level_step3/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..3159880dfddac7dde77c48c798370b3351485091 --- /dev/null +++ b/maze/task4/maps/level_step3/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa1e9d8f938e37e6023c89eda68bf03b514f4c762b9012c78be14445f3c4b52 +size 8496 diff --git a/maze/task4/maps/level_step3/img/22.png b/maze/task4/maps/level_step3/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..2a7eda981cab7bc84d86d18e7677e062e566f884 --- /dev/null +++ b/maze/task4/maps/level_step3/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b82ceabbda14a8c1323d7ce4fa6fa63b6ada204fac8f8a4f59eef4cbd14555 +size 10279 diff --git a/maze/task4/maps/level_step3/img/23.png b/maze/task4/maps/level_step3/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..81c6a7ca79d5a70cbdc9167d691223476bc9976d --- /dev/null +++ b/maze/task4/maps/level_step3/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbde32d51a95bc040d27867403cf81a6029014ea37322974115bf4de681ba63 +size 9587 diff --git a/maze/task4/maps/level_step3/img/24.png b/maze/task4/maps/level_step3/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..9a6d1f5f4396d39be6b747b2245ca74e57dad2d8 --- /dev/null +++ b/maze/task4/maps/level_step3/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce73082473f6a8019fcddc4e20d0befd63af5607686e7d96fc44f9e76224fcf9 +size 10360 diff --git a/maze/task4/maps/level_step3/img/25.png b/maze/task4/maps/level_step3/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..dcaca11c66cd3002cc42b1541e908fc7c7d55487 --- /dev/null +++ b/maze/task4/maps/level_step3/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf361f95f35ac9a0112f7063281e8af77dcc95553bae500b712a502b170f5b4 +size 9481 diff --git a/maze/task4/maps/level_step3/img/26.png b/maze/task4/maps/level_step3/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..5472e8f68213f8899f65e7c2fc5195cc0aebee78 --- /dev/null +++ b/maze/task4/maps/level_step3/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b92c3fe6ffb668a4ecf98b41a0fe4c7b662a8d95a66bd64fc9619a030126b11 +size 11275 diff --git a/maze/task4/maps/level_step3/img/27.png b/maze/task4/maps/level_step3/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..5836df25d3ae5776b738f536293c6e6fafc85dba --- /dev/null +++ b/maze/task4/maps/level_step3/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04de533654c6dbcfb39ba440a68f9b579d989b64a6c2dfb311b190c7ff5bd7af +size 10468 diff --git a/maze/task4/maps/level_step3/img/28.png b/maze/task4/maps/level_step3/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..78106b95717521185f32a4e1c2fcd0243b03f092 --- /dev/null +++ b/maze/task4/maps/level_step3/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e4b8470b0860cb0a4217efd6bed7c8fb96a0dd4b91b8cfcc3e9c1613ee4b04 +size 8636 diff --git a/maze/task4/maps/level_step3/img/29.png b/maze/task4/maps/level_step3/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..ac2654d31d71f91b201f320c9033547611dd1fe6 --- /dev/null +++ b/maze/task4/maps/level_step3/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b49d480745f12de02faf0ecdd5d452f4b331e9a1c219aafb8d69084eb2fda9e +size 8670 diff --git a/maze/task4/maps/level_step3/img/3.png b/maze/task4/maps/level_step3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task4/maps/level_step3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task4/maps/level_step3/img/30.png b/maze/task4/maps/level_step3/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..d63738871f379090425d544bc204e402814b6b55 --- /dev/null +++ b/maze/task4/maps/level_step3/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34ae1efa396c60bd93b40f3a17ed10a570bf75920a432154f7c19649e8e0994 +size 10233 diff --git a/maze/task4/maps/level_step3/img/31.png b/maze/task4/maps/level_step3/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8414031f76b7066865976aa74936cac7b92311da --- /dev/null +++ b/maze/task4/maps/level_step3/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b760ca6eab9da1ac2bb044b831c20182c4ba148464e6dd749fb724c2317504 +size 10338 diff --git a/maze/task4/maps/level_step3/img/32.png b/maze/task4/maps/level_step3/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..4c644cf6768f184b343d5dc04acb303a777c14e4 --- /dev/null +++ b/maze/task4/maps/level_step3/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b947c76068aea2380e8b3057d80a6cb256401113e787126caae804957da0a4 +size 9403 diff --git a/maze/task4/maps/level_step3/img/33.png b/maze/task4/maps/level_step3/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..1b6a9f581924a1ff084703d670d3504cd227d9fe --- /dev/null +++ b/maze/task4/maps/level_step3/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bb29cc75798252b2c4fbbc228e75c3d53b5b8bf911936e78e30a153a3f48ac2 +size 9505 diff --git a/maze/task4/maps/level_step3/img/34.png b/maze/task4/maps/level_step3/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..33c3edf0a43fcfbe4e0efd625c2a393ef93bdfad --- /dev/null +++ b/maze/task4/maps/level_step3/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef8786d9218608d8134cb9c2a4e03ee051bf8ff722d2c47b8b84b821f9fd357 +size 8562 diff --git a/maze/task4/maps/level_step3/img/35.png b/maze/task4/maps/level_step3/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..0dcccbdde8c06d23b2a3fd409778c087119d7b1a --- /dev/null +++ b/maze/task4/maps/level_step3/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c5cdbace6e9b727622cf498cd44c572f8538faf2fecb209501e3f1743ee079 +size 9374 diff --git a/maze/task4/maps/level_step3/img/36.png b/maze/task4/maps/level_step3/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..e42d8ecb96902ebc31f12cd5de3376093d34dd9f --- /dev/null +++ b/maze/task4/maps/level_step3/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735e9d4ec5921d49fcb571933e768f09ef139c05277d6d8333b2847569b65562 +size 9515 diff --git a/maze/task4/maps/level_step3/img/37.png b/maze/task4/maps/level_step3/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..5a3623a92701f86eba1b63bc366021db2938f30e --- /dev/null +++ b/maze/task4/maps/level_step3/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67906ebe23694566dd365b0af7d216cf9a3c7faabfc8a99c69aad0db11e296b8 +size 11240 diff --git a/maze/task4/maps/level_step3/img/38.png b/maze/task4/maps/level_step3/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9a73f72074ae48f5589417c00b18f273052946 --- /dev/null +++ b/maze/task4/maps/level_step3/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9987cc6de5975fc76063e350faeeed07486c46bd4604be48931e5c2292d96aa5 +size 10355 diff --git a/maze/task4/maps/level_step3/img/39.png b/maze/task4/maps/level_step3/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..12c0c99000731615a177386372d224ac95eb1a9a --- /dev/null +++ b/maze/task4/maps/level_step3/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce8870fe554956e20a49a38ac9c2f879aaf50b8428f016f8bb6ffd46bc5caf4f +size 8676 diff --git a/maze/task4/maps/level_step3/img/4.png b/maze/task4/maps/level_step3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..049630bfe1048f0d6eff121717eee2e1e450ea56 --- /dev/null +++ b/maze/task4/maps/level_step3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4e02d691acb0b5f76dec94a16a24229bb2bb907a8dbb1de76b80874bb35d7d +size 8625 diff --git a/maze/task4/maps/level_step3/img/40.png b/maze/task4/maps/level_step3/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..4244f905c38765712ea57da2f22051d001bd12f4 --- /dev/null +++ b/maze/task4/maps/level_step3/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a9cdc9192fc79007eea8b9ed798b41a32e9cb11d29300045f7d5c7054b0617 +size 8615 diff --git a/maze/task4/maps/level_step3/img/41.png b/maze/task4/maps/level_step3/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..fd8b6f7703c03377e443bf692887f5ed6f54854a --- /dev/null +++ b/maze/task4/maps/level_step3/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69d4b22875d6aaaea40f477d489d2d1c902acbe90446fa30fe3e90ce4121028 +size 8675 diff --git a/maze/task4/maps/level_step3/img/42.png b/maze/task4/maps/level_step3/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..3afc4ae2072a69a2b5428a8150c5752f6ebc8730 --- /dev/null +++ b/maze/task4/maps/level_step3/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5e7862e4c7de157b4ebf2cf81cce81e6289f9c0be8f1129e4f52b3845d767a +size 10254 diff --git a/maze/task4/maps/level_step3/img/43.png b/maze/task4/maps/level_step3/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8240fd301b101fc3d6928b8b7837ee8f046508 --- /dev/null +++ b/maze/task4/maps/level_step3/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e450c5211b9cc344c3fdea9a4ac7b6f86afc861e99ce5e8e1bd73c05370aeb +size 8530 diff --git a/maze/task4/maps/level_step3/img/44.png b/maze/task4/maps/level_step3/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..bcfbe38f83c88839354950275345211da8f0ad15 --- /dev/null +++ b/maze/task4/maps/level_step3/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e9b1ce2fc21317af7ffb9fa51e47b214b2ebe8732fe7e9a918b0114be08c3f +size 10465 diff --git a/maze/task4/maps/level_step3/img/45.png b/maze/task4/maps/level_step3/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..fa357d51bbdeb0678d4148305f56dab8c1d94eec --- /dev/null +++ b/maze/task4/maps/level_step3/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8848ac9b4fb5bb3bec41b2221a5a2a47ce69bca895b40fdde606a4b36f33fc93 +size 9491 diff --git a/maze/task4/maps/level_step3/img/46.png b/maze/task4/maps/level_step3/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..84778a2114fada4f0b9e9d97ade5e2256b516404 --- /dev/null +++ b/maze/task4/maps/level_step3/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c7f156656b7bf4235e8e9579abecc6d10c689c385ff1fce7269d343196e554 +size 11352 diff --git a/maze/task4/maps/level_step3/img/47.png b/maze/task4/maps/level_step3/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..9c4eea904e7a397a7599bcd33710092cae9d0b42 --- /dev/null +++ b/maze/task4/maps/level_step3/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ec5d3f3c57369b1c160bdffabae94abb97c03925f2e8fa5dd6f9ee977170ef +size 8667 diff --git a/maze/task4/maps/level_step3/img/48.png b/maze/task4/maps/level_step3/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..2fada4b641250ef6435a5cf42921d9a7bb211347 --- /dev/null +++ b/maze/task4/maps/level_step3/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d793811d28d3cee87fbf3bac2d64df54b4f5e4f570298b6071d6971034bc45c3 +size 9564 diff --git a/maze/task4/maps/level_step3/img/49.png b/maze/task4/maps/level_step3/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..21a367cf238a6c329ec89aca70581ffaa509cb9f --- /dev/null +++ b/maze/task4/maps/level_step3/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8641cf2fd9bcbeedd4678ba12e5fc281b7d9b2c6ebd943e489546471382ed7df +size 11175 diff --git a/maze/task4/maps/level_step3/img/5.png b/maze/task4/maps/level_step3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..93bb0802211fe25aea9f45ac8844c66bb4ca7d95 --- /dev/null +++ b/maze/task4/maps/level_step3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c29c55125f09fc9f43c9997cef7774a425bcb4e7da621008e68e542a17e279e +size 10494 diff --git a/maze/task4/maps/level_step3/img/50.png b/maze/task4/maps/level_step3/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..a10f7605b5adcd31425b5fc82f6391618c60dcce --- /dev/null +++ b/maze/task4/maps/level_step3/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1fa51fc530f52434841bf5f5804b0f0ffbb044d7e829d335d4060e8ffbcc8f +size 10311 diff --git a/maze/task4/maps/level_step3/img/51.png b/maze/task4/maps/level_step3/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5eb285b8ff06ddcfe7301346541ce202b37419 --- /dev/null +++ b/maze/task4/maps/level_step3/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92c2243e404e0ab629e4529ab56766a05dd34c0213c3e20c4910fb4fb86e831 +size 9542 diff --git a/maze/task4/maps/level_step3/img/52.png b/maze/task4/maps/level_step3/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..2f1ff31b784efbaada761fee34beb3a5518b636e --- /dev/null +++ b/maze/task4/maps/level_step3/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8924f69877bff72e4cdd85f86ee6f88a13184d0de32b91945669f90769b4cef +size 8583 diff --git a/maze/task4/maps/level_step3/img/53.png b/maze/task4/maps/level_step3/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..b56567b741d2a6849fdbd9a06f10a221f611854a --- /dev/null +++ b/maze/task4/maps/level_step3/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbbb363cbd4871bd667563335310c2a7b1e044d786a33fc9ac426ab13f9fa92 +size 10460 diff --git a/maze/task4/maps/level_step3/img/54.png b/maze/task4/maps/level_step3/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..f920ca86b117abb67013bb57a9499b0393639cea --- /dev/null +++ b/maze/task4/maps/level_step3/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c43e944b0140c1497f1775468827f0e4d1c41f027cd40778dc0c9189590062 +size 8588 diff --git a/maze/task4/maps/level_step3/img/55.png b/maze/task4/maps/level_step3/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..b7cd9585ed58ff2537515598c55964ef7bab9820 --- /dev/null +++ b/maze/task4/maps/level_step3/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53106fd75e879e3655e754942e5d3947460c00e26f52b713400f3daae45eee00 +size 9525 diff --git a/maze/task4/maps/level_step3/img/56.png b/maze/task4/maps/level_step3/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..b8c2ce52f791138a9286cf7a9cefa274ce2d0562 --- /dev/null +++ b/maze/task4/maps/level_step3/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b77ba0df8baf14b3ea95e0514b661b98f3af2d1f228834f4a15e148ba0a1485 +size 8755 diff --git a/maze/task4/maps/level_step3/img/57.png b/maze/task4/maps/level_step3/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..46b8af8ae47e2318fc24cf7e63adf89c23ad0768 --- /dev/null +++ b/maze/task4/maps/level_step3/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfb2f92be0c9aedd215a40e1879bb6cdeec5abfae96393b8899c2c7c126797f +size 11278 diff --git a/maze/task4/maps/level_step3/img/58.png b/maze/task4/maps/level_step3/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..927eb823b3bdefa58a3d7b6421c35036f7555850 --- /dev/null +++ b/maze/task4/maps/level_step3/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88db7b175a2251e9cf3eb52ececbd559e2fa591967ef887d6341fba9f987045 +size 9404 diff --git a/maze/task4/maps/level_step3/img/59.png b/maze/task4/maps/level_step3/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..783bdee385c0a0eef8797024804679a2cb97629b --- /dev/null +++ b/maze/task4/maps/level_step3/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f597e4c46866313b7947e9cb1761cd53881ecbbe15d4fdf7fe3291755b0bcd +size 8756 diff --git a/maze/task4/maps/level_step3/img/6.png b/maze/task4/maps/level_step3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task4/maps/level_step3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task4/maps/level_step3/img/60.png b/maze/task4/maps/level_step3/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..821a9ff6b6a9245302d8327dec762cba9bc0ad82 --- /dev/null +++ b/maze/task4/maps/level_step3/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e05aae2ec27231ad0f78b1601311d61a6663c7245c26dd23613f69aea590ed1 +size 10366 diff --git a/maze/task4/maps/level_step3/img/61.png b/maze/task4/maps/level_step3/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..4f2c327aa73084f2ec241cbc74fe5277f94f97da --- /dev/null +++ b/maze/task4/maps/level_step3/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91585d066715cfa3e2433767ab59ed0e9d3bb474cfbd048445c4c01cb860f9f6 +size 8616 diff --git a/maze/task4/maps/level_step3/img/62.png b/maze/task4/maps/level_step3/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..ad1ee8ac288a4cf182021fff7bf33dbd173d2d86 --- /dev/null +++ b/maze/task4/maps/level_step3/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a56226fbc6755d82fc31e4d782200d34807394dc7731826558f3820192be80 +size 10199 diff --git a/maze/task4/maps/level_step3/img/63.png b/maze/task4/maps/level_step3/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..fdc5dec0c4c9cf8a3fd3cdf769d8c06eed2c4807 --- /dev/null +++ b/maze/task4/maps/level_step3/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbee8c52939e080b613f3a77d4b20c1bea6b4e4fd960b5d9f6c3f32c91ee027e +size 10357 diff --git a/maze/task4/maps/level_step3/img/64.png b/maze/task4/maps/level_step3/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..59f3bd33822f6d57a15e4f2342b90f4bc5bcd2c9 --- /dev/null +++ b/maze/task4/maps/level_step3/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e234470bb3b6a825092b04afb3ead090a21d7d1a233803f7abe8607d8b5cdbc +size 8673 diff --git a/maze/task4/maps/level_step3/img/65.png b/maze/task4/maps/level_step3/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..83e96c3b8c34fbc0d1964c3a34509a80c34425bc --- /dev/null +++ b/maze/task4/maps/level_step3/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab691589396b93fea1f8c2e627d260083dc06c3e8200c008564e85bbe4b351d +size 8715 diff --git a/maze/task4/maps/level_step3/img/66.png b/maze/task4/maps/level_step3/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..6c2c973736687fbc02e3836b54a0082c25e25d57 --- /dev/null +++ b/maze/task4/maps/level_step3/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85a10d20820622c1fff3b9ba94d5b5a0ee88dc0869ff84537905179f83e5ab49 +size 10535 diff --git a/maze/task4/maps/level_step3/img/67.png b/maze/task4/maps/level_step3/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..f6511c5039d37968dfea4e48847c013be411e9dc --- /dev/null +++ b/maze/task4/maps/level_step3/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d68ca8188faf7554b4492255b4312786a238b5915dec186f4ddebf3b5fe3c28 +size 9557 diff --git a/maze/task4/maps/level_step3/img/68.png b/maze/task4/maps/level_step3/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..bcaaf350210436f4383e0333ed73e65bd52a678a --- /dev/null +++ b/maze/task4/maps/level_step3/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5846abc853064d63e0fb377fa2b23730d1015f367d01599936d4a3e1fba4f0c +size 8697 diff --git a/maze/task4/maps/level_step3/img/69.png b/maze/task4/maps/level_step3/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..111346baa5e8e81dce82def8b6539b70892a57e0 --- /dev/null +++ b/maze/task4/maps/level_step3/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bc1d785dce00bf0efdfb9cd6888c7b988193a61ffa0216b31059772952a15c +size 11228 diff --git a/maze/task4/maps/level_step3/img/7.png b/maze/task4/maps/level_step3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f814f3af4a4514eea937c4425d373246a0eddf97 --- /dev/null +++ b/maze/task4/maps/level_step3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7524981f599a7d73e4d8fbec30dfe5b20a4391ecea7e63082541a4fb06ee3bfb +size 9570 diff --git a/maze/task4/maps/level_step3/img/70.png b/maze/task4/maps/level_step3/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..d7d9522fdef478962bbf1ae56c58e2e914c5855f --- /dev/null +++ b/maze/task4/maps/level_step3/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f964ac4bbf903fffa406c1474e19146d3f9c106e21c071d0322559e28ff4fe +size 8780 diff --git a/maze/task4/maps/level_step3/img/71.png b/maze/task4/maps/level_step3/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..beb976f0cbfd54916fe8e0be18df2bc9108275af --- /dev/null +++ b/maze/task4/maps/level_step3/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ee8ab29dc3a229e6242ae737444cd175d7d8e3f5215e4d6bac98b7317a6fd4 +size 10314 diff --git a/maze/task4/maps/level_step3/img/72.png b/maze/task4/maps/level_step3/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..bab037dd74e5fa816baeb9359799aecaef85ea0f --- /dev/null +++ b/maze/task4/maps/level_step3/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55464a51d467c02fdc4ae24e14692b2c8ddcd895d81db8f7aca6bab71eea02d4 +size 10319 diff --git a/maze/task4/maps/level_step3/img/73.png b/maze/task4/maps/level_step3/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..f88dfab626fa7c5fb363d58de200004b96209b1b --- /dev/null +++ b/maze/task4/maps/level_step3/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433e3ecd94a75856ad7720bf7b7a14c206ca551dfd7cdb6458168750957e6144 +size 9621 diff --git a/maze/task4/maps/level_step3/img/74.png b/maze/task4/maps/level_step3/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..e84e7b939b42160c7b8eee7983cdacc6951ecdf0 --- /dev/null +++ b/maze/task4/maps/level_step3/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b31000f3893ae1b462efd45faec1eafd166b30f3a4f45763eb98fb52bb31516 +size 9487 diff --git a/maze/task4/maps/level_step3/img/75.png b/maze/task4/maps/level_step3/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..f2411c43f2020770ea919304e3ce80db772400b4 --- /dev/null +++ b/maze/task4/maps/level_step3/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2510f5e6326c76b9f89891ce0f0ed5fd00cf9328c4e8b81a4bc0aeeec4db21a +size 9502 diff --git a/maze/task4/maps/level_step3/img/76.png b/maze/task4/maps/level_step3/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..981542d0e4faca7eb75b63aec697d864728e992f --- /dev/null +++ b/maze/task4/maps/level_step3/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09fef1702a3818ffe135c18b2cb90197b80e51b7e2867d5040ee3f6b327f375b +size 9620 diff --git a/maze/task4/maps/level_step3/img/77.png b/maze/task4/maps/level_step3/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..17023bbbd055427830fcfd176021fb2fc5d6910d --- /dev/null +++ b/maze/task4/maps/level_step3/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c1604221f2c1545f8c8d8a1a0557dd0c7d8300bc470a02052c41ccda1c3887 +size 8661 diff --git a/maze/task4/maps/level_step3/img/78.png b/maze/task4/maps/level_step3/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..e5ebf6ebd8c1ab2690c8d745a86a1c9e538d3ece --- /dev/null +++ b/maze/task4/maps/level_step3/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdba9b73aaf57690324b165978ceecb197849e421522b10175f4f8ae813e392c +size 10411 diff --git a/maze/task4/maps/level_step3/img/79.png b/maze/task4/maps/level_step3/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..10f84b792cf0272b8e2935bdf5b34df73c511225 --- /dev/null +++ b/maze/task4/maps/level_step3/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1c923ccfc9c84e6a32ca615eb232d4ba7bac6ea9b58c24a03a3c659accd86e +size 9435 diff --git a/maze/task4/maps/level_step3/img/8.png b/maze/task4/maps/level_step3/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0343db5c3d7921e0799bd3c1d2a5f92e507b111b --- /dev/null +++ b/maze/task4/maps/level_step3/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a5ebc796f70f4e35cf340cb9b13340ffa2660d5f18d2e70338a9314eb32b7b +size 10316 diff --git a/maze/task4/maps/level_step3/img/80.png b/maze/task4/maps/level_step3/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..e339ce5fdd89d4c3bdc4ef9825adc12d0549d05b --- /dev/null +++ b/maze/task4/maps/level_step3/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f8b290d3a9756aa99af230d3945235741a1c722dd0565e6b185b39bddba51c7 +size 10187 diff --git a/maze/task4/maps/level_step3/img/81.png b/maze/task4/maps/level_step3/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..f1d4252a1d6d7384fa2b4a0e506afe7b37ab6672 --- /dev/null +++ b/maze/task4/maps/level_step3/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f1e8872ed343b6369bcaf12caad0b7bbf6914638c1ac4a5bc323f87cb04b44 +size 8666 diff --git a/maze/task4/maps/level_step3/img/82.png b/maze/task4/maps/level_step3/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e4afd98ab856f1b49e892d1c8959d0c45076f933 --- /dev/null +++ b/maze/task4/maps/level_step3/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b516f64ea6950be4ac225452351a46ea1244d2dee61ccfe891940be0be952e8 +size 9621 diff --git a/maze/task4/maps/level_step3/img/83.png b/maze/task4/maps/level_step3/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..9d5bc5c4e701c95cdc7dbcbd5f3a9d36631c2276 --- /dev/null +++ b/maze/task4/maps/level_step3/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e265e8586c0760f4b178188d2644e25cef16b45d64c35e9c4a1143e085f38e62 +size 9464 diff --git a/maze/task4/maps/level_step3/img/84.png b/maze/task4/maps/level_step3/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..f196be40a6adeaa2df84f74f46b155e1e3c8f6e4 --- /dev/null +++ b/maze/task4/maps/level_step3/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bc1191781890d53c8eee48f62121340484b45002b11c8eb0ec0206e306442c +size 10376 diff --git a/maze/task4/maps/level_step3/img/85.png b/maze/task4/maps/level_step3/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..2b04b8b4e6430b30c5505609dc642700d988be70 --- /dev/null +++ b/maze/task4/maps/level_step3/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc9d00dc9b80f1693dc7134f8ed438926305e024a5dc26e8e03ad82b4608f0b +size 9491 diff --git a/maze/task4/maps/level_step3/img/86.png b/maze/task4/maps/level_step3/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..41261413e7dd3228eeff5e7010d87cd323d1dfc3 --- /dev/null +++ b/maze/task4/maps/level_step3/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47102eacb760f4fbee2412de1a93f98ad00be71ad00f000fc2988421bdb3436c +size 10333 diff --git a/maze/task4/maps/level_step3/img/87.png b/maze/task4/maps/level_step3/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..10847933f1f11277c87d8b07a08957eab9de0584 --- /dev/null +++ b/maze/task4/maps/level_step3/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b5d4676347800ad82413b3be3a09c63c66eb64d0a67a05c6e3ba7cc468af15 +size 10997 diff --git a/maze/task4/maps/level_step3/img/88.png b/maze/task4/maps/level_step3/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..de081357b6c4a2b26b5851c19eb10854a145dd4f --- /dev/null +++ b/maze/task4/maps/level_step3/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90cf310b1bf6cfd8effd458bca4e303b2ed000d38681671e452629b3b2619af +size 11179 diff --git a/maze/task4/maps/level_step3/img/89.png b/maze/task4/maps/level_step3/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c25e41839c4eed11a446578ad5562be1ffc0a0 --- /dev/null +++ b/maze/task4/maps/level_step3/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cf54b54206896d7d5fe558e2eb4ffb8997eb1bfbf89093d978b6ec2fc56f97 +size 9489 diff --git a/maze/task4/maps/level_step3/img/9.png b/maze/task4/maps/level_step3/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..58fed855e22af0897daeb41c04cd87048322e11b --- /dev/null +++ b/maze/task4/maps/level_step3/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba907e17952d0a68214808d067646f0d97ef64b27d9e453a9c505779f03553eb +size 11128 diff --git a/maze/task4/maps/level_step3/img/90.png b/maze/task4/maps/level_step3/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..d868ba390ef63a27c67b8ed8fa1df03e4b3c9aa6 --- /dev/null +++ b/maze/task4/maps/level_step3/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4924a8d8f382432a85b02c5cd97c3a867f0cf59915631b2b46d1ecf305774ab2 +size 9461 diff --git a/maze/task4/maps/level_step3/img/91.png b/maze/task4/maps/level_step3/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..586d33c75d884e76fb8bc03cdcfb6f09a800583c --- /dev/null +++ b/maze/task4/maps/level_step3/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d2e9007113103aac90c6b8e4ee99deb27319d8fc2e34dd9a6334fb799659a4 +size 9515 diff --git a/maze/task4/maps/level_step3/img/92.png b/maze/task4/maps/level_step3/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..211572a9103c01b8b3ab01c0083299ed0390d504 --- /dev/null +++ b/maze/task4/maps/level_step3/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3577483fd88f2b6c9bbbcac8e051da3bdf139d40a2cb3d1df1dcbfa171e7f6f9 +size 10280 diff --git a/maze/task4/maps/level_step3/img/93.png b/maze/task4/maps/level_step3/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5c6e234b9f935f08a4fd68f91bbcf291b90426 --- /dev/null +++ b/maze/task4/maps/level_step3/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce939a10cc069cf6712137df96d9eeecde0871626566111d58e23e4eaf2cdf35 +size 10407 diff --git a/maze/task4/maps/level_step3/img/94.png b/maze/task4/maps/level_step3/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..e376cb24370d7c7e2d69c113477336d19e863962 --- /dev/null +++ b/maze/task4/maps/level_step3/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b9510d39d3c594aafd9059788bb0cd5ff3d4095f045475c747b326e2fa8f1c +size 10227 diff --git a/maze/task4/maps/level_step3/img/95.png b/maze/task4/maps/level_step3/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..0d320adfcb78f2f7a70c293086a3c9e4657e8b1e --- /dev/null +++ b/maze/task4/maps/level_step3/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9652b51223f250b2f0ea990f04184cecd53a9510a88e23e5d8ab92a02d6d4e +size 10401 diff --git a/maze/task4/maps/level_step3/img/96.png b/maze/task4/maps/level_step3/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb818078dd96672793c3fb3f1db50b70b9f5699 --- /dev/null +++ b/maze/task4/maps/level_step3/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcdeccb4c9d837d4d60f212aa9ee78eee0f1133c5bfa8b4a3706e257989a7be +size 10447 diff --git a/maze/task4/maps/level_step3/img/97.png b/maze/task4/maps/level_step3/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..748a948c5cd41ad576941a954a691c45002651bc --- /dev/null +++ b/maze/task4/maps/level_step3/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77adb79d8bbc1588ad59543ed98151771cd492efc2dc07e86af7ebb5873a4a67 +size 9374 diff --git a/maze/task4/maps/level_step3/img/98.png b/maze/task4/maps/level_step3/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..feee65d74a4a5cf343e4c5c33bcedfdfc5e67658 --- /dev/null +++ b/maze/task4/maps/level_step3/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:504b1e9147d5348e52f7be1ad068e22b6e405149356a86e1f82270d0bee89fad +size 9500 diff --git a/maze/task4/maps/level_step3/img/99.png b/maze/task4/maps/level_step3/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..d6bd9ecf67aa1f7de93eebdc0e48abc85bb467bf --- /dev/null +++ b/maze/task4/maps/level_step3/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570147872954af71e957d7629438d5014810bb6ec0cb216e45e41a69154b7259 +size 8604 diff --git a/maze/task4/maps/level_step3/pure_text/0.txt b/maze/task4/maps/level_step3/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d7462603221ecb6cb543a980d631f78a9a66620 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/1.txt b/maze/task4/maps/level_step3/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d0c98b9c25646ad5073a63739579f3fdeea190 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/10.txt b/maze/task4/maps/level_step3/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..c57e03a22c3727d041e5d13c3a7afa763801af6e --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/11.txt b/maze/task4/maps/level_step3/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d38f712e462147cb1149f8dc999e1b956ee71d9 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/12.txt b/maze/task4/maps/level_step3/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..165f44b11e38b580c20c46d28807b3caac0a2614 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 3, Column 2; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/13.txt b/maze/task4/maps/level_step3/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e6490a182330fd53f62392c91932efb8819c603 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/14.txt b/maze/task4/maps/level_step3/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a50fc2e164265e038535df0139a22e512b8ff02 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/15.txt b/maze/task4/maps/level_step3/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5c978ec3d980653c1bdf4c3f9acc231efb735f6 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 1; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/16.txt b/maze/task4/maps/level_step3/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f58b60f80c34719dd14d0ad5666e0adf08a940c --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/17.txt b/maze/task4/maps/level_step3/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..320b7d538d04af75ace729ab9d8049172bdb542d --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/18.txt b/maze/task4/maps/level_step3/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6267fc47c24ab18860bbef173f17cb302405567 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/19.txt b/maze/task4/maps/level_step3/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..594ed981d855849fd600dd6c976e20ddc4a86b04 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; Row 4, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/2.txt b/maze/task4/maps/level_step3/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/20.txt b/maze/task4/maps/level_step3/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..67b933bd40c003ad8d713ed3a6fde5badcd130d9 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 2, Column 5; Row 3, Column 4; Row 4, Column 2; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/21.txt b/maze/task4/maps/level_step3/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..a23c755b2724e4e5a25a0c791532b4c4cc6dbaa0 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 5; Row 4, Column 1; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/22.txt b/maze/task4/maps/level_step3/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..df38a2445fc8eb005e0f16b1f983aa1cd7997250 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/23.txt b/maze/task4/maps/level_step3/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..c844e64d7762dd91510ab6d183d8fd81d2ac0ca3 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 5; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/24.txt b/maze/task4/maps/level_step3/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9898a8063d3b37859ea38c0e0799213ef632e58 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/25.txt b/maze/task4/maps/level_step3/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c422fe457c20c1d9786346577788d5ff2ce46c86 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/26.txt b/maze/task4/maps/level_step3/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..d95a81f4fdddf84eeadccda8f57b874cff052e3e --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/27.txt b/maze/task4/maps/level_step3/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d1a09acb739f922a483b585d7fad954a01e4b19 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/28.txt b/maze/task4/maps/level_step3/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..3df513391990b45892a5eac743fec4aa7e586885 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 5; Row 3, Column 3; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/29.txt b/maze/task4/maps/level_step3/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9a00d6475648d72bae9c9803c5e126de227102d --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 1; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/3.txt b/maze/task4/maps/level_step3/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..69e73a8c23f7d57f3e51e58b7901e281cad0f7a0 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/30.txt b/maze/task4/maps/level_step3/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..f10c6cda751fe7118f206e8ef17468879d4fd780 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/31.txt b/maze/task4/maps/level_step3/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..804679724f787c34257c826415e2bb5bb09564a8 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/32.txt b/maze/task4/maps/level_step3/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..2af14ba605f90480e18a8e6fffe9f9c416b6d022 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/33.txt b/maze/task4/maps/level_step3/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..f691c35935ce5144d85b90a4c1f616ac2c56f4ce --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 4, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/34.txt b/maze/task4/maps/level_step3/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..a102380b20992942732335f3d8849b3c02c6bb4b --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/35.txt b/maze/task4/maps/level_step3/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e6eced5f42ddf7dfa970c3b2128ad1d2616aae --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/36.txt b/maze/task4/maps/level_step3/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b00e4748c861d62d60034650a13a6e85c7ddd96 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/37.txt b/maze/task4/maps/level_step3/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc1d400db947629d9071bcba8e16bba77fa48ed9 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 5, Column 1; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/38.txt b/maze/task4/maps/level_step3/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f6fcf47b297b9d5b81443069c545e261d47b37b --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/39.txt b/maze/task4/maps/level_step3/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..932c64f1ec6db1084fe09cb87d54a7399d5d19ae --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 1; Row 3, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/4.txt b/maze/task4/maps/level_step3/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..47fc39ca6523d4918d7f99c326cab54a3baa2fa7 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 2, Column 5; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/40.txt b/maze/task4/maps/level_step3/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..37f867db5afe5419c5649c35e1190a867c8ef74f --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 5, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/41.txt b/maze/task4/maps/level_step3/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f0cf85499f19eeb1f276166cd15931d09cc31fe --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/42.txt b/maze/task4/maps/level_step3/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..aea8073de7c38603b91dcd8e32f5712cbc64d9e5 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/43.txt b/maze/task4/maps/level_step3/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3232cf536abf875c58ecd4fa47049dffac73b440 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 5, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/44.txt b/maze/task4/maps/level_step3/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7b140c4621d3439d55aeebc2a719a64471cb7b4 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/45.txt b/maze/task4/maps/level_step3/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5c31d25061fd8a02a164070c2357d0e2ffe2566 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 4, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/46.txt b/maze/task4/maps/level_step3/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8558d1220955a9c32ccc2c9ad12f77fc5bcdfe1 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 3, Column 1; Row 4, Column 1; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/47.txt b/maze/task4/maps/level_step3/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce235b8248805958deedd4627adf6b3af4567840 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/48.txt b/maze/task4/maps/level_step3/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7f280f4fc75934f4e884c2a7a185d538098dc95 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/49.txt b/maze/task4/maps/level_step3/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..86623c72a2d619c047d514a08a9228c1d1386f7f --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 3, Column 1; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/5.txt b/maze/task4/maps/level_step3/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d70f2aca6eb0bec90b1cd3acda23d591c9a7df8 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; Row 5, Column 2; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/50.txt b/maze/task4/maps/level_step3/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..da945a81c0cd21dc3e2ea76f58177594e3ded594 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/51.txt b/maze/task4/maps/level_step3/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b7bd5193551578f98b26bb714f9e3fda3e664e5 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; Row 3, Column 4; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/52.txt b/maze/task4/maps/level_step3/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b5c152c8ad130f3ccb9f423a4372ea6e1379b92 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; Row 4, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/53.txt b/maze/task4/maps/level_step3/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2106621473d9a89917c751ac90e082b2a91e6846 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/54.txt b/maze/task4/maps/level_step3/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e529cb4a7371b0d490d5ee9b3cfba74b0fc6b6f4 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 4, Column 4; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/55.txt b/maze/task4/maps/level_step3/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..b88bdbb92a49502e281210e0ed15d870c91a593c --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/56.txt b/maze/task4/maps/level_step3/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..005a320e369800742c636e0f83c13c2f7776aad7 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 3, Column 2; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/57.txt b/maze/task4/maps/level_step3/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..80c622ea71676723763fead953c21d3b9309419c --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 3; Row 4, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/58.txt b/maze/task4/maps/level_step3/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..9889c13e574c1ec82a1a1626bf3a1905873e0e6f --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/59.txt b/maze/task4/maps/level_step3/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..7801b488546a8358bf28d18020c6f1b861a9a295 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/6.txt b/maze/task4/maps/level_step3/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..090e9c1d826401003433a544b5a036f1e691e749 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/60.txt b/maze/task4/maps/level_step3/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..bab24cf627831246350720b920b15a7d46473fe9 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/61.txt b/maze/task4/maps/level_step3/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..adc6058eb5266a625fb51264a32de0e23cbc4bb8 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/62.txt b/maze/task4/maps/level_step3/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b18c69ab10eec941eb6daad03325a798c45a438 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/63.txt b/maze/task4/maps/level_step3/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5b623535c8743db7ac069a71dc71271294d9109 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 4; Row 4, Column 3; Row 5, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/64.txt b/maze/task4/maps/level_step3/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdc9a29952c6ff6d7e62d620b51158d807c21dfc --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/65.txt b/maze/task4/maps/level_step3/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc235faae4ff5518dacdbf2e6e53a651f2aab293 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 5; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/66.txt b/maze/task4/maps/level_step3/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..454c18a92e71e5bd1cfa7e663be13ffc62ae7fb9 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 5, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/67.txt b/maze/task4/maps/level_step3/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7a288d959ee4727377af9fbeff1a6d2b198f9f --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/68.txt b/maze/task4/maps/level_step3/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f736b45d2605c716f2c985d1a323cfcd5238b578 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 1; Row 5, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/69.txt b/maze/task4/maps/level_step3/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..225be629504b93f3710f79845bb8c392b1091099 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 5; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/7.txt b/maze/task4/maps/level_step3/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cad32fd2f3808ab35f15942baa29e28b809de924 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/70.txt b/maze/task4/maps/level_step3/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a8a92c1901bd5de504b373d1e1f071c97cf29e --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/71.txt b/maze/task4/maps/level_step3/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d33fb283d0f725b06dd43fc912f439278b32eec --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/72.txt b/maze/task4/maps/level_step3/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ccb4b80ab072a6cef6832c6274df6e900f14c0a --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 5, Column 3; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/73.txt b/maze/task4/maps/level_step3/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..8419ea69e12459f716ea561fe38ed7a356f59b00 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 4; Row 5, Column 2; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/74.txt b/maze/task4/maps/level_step3/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..f992fe9388815fa63807531b08cf4f5ea8a2b3f4 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 3; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/75.txt b/maze/task4/maps/level_step3/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..dece82686c3b7f17ae11d8d325bb09792e66b363 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/76.txt b/maze/task4/maps/level_step3/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..882c5cd19ba1f1017a341522e1bfba7623abf38c --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 2; Row 3, Column 5; Row 4, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/77.txt b/maze/task4/maps/level_step3/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dc66fa1b6370c5725cb89c2135994a92f220f26 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/78.txt b/maze/task4/maps/level_step3/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..304fe0db7b89f5841f48a950e104a6b14832abe4 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/79.txt b/maze/task4/maps/level_step3/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a3915e8eea24dc20f7b204d597fd142ca57e4b9 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 4; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/8.txt b/maze/task4/maps/level_step3/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..1072fd62148f36258b05e29dc52b31984d2e68c1 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/80.txt b/maze/task4/maps/level_step3/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d1f76587d1a35a7e900c109d1581fd2fd760ff0 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 3, Column 1; Row 4, Column 1; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/81.txt b/maze/task4/maps/level_step3/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..18460f3c07b772398052d732aec7a18306a362fc --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/82.txt b/maze/task4/maps/level_step3/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c2e984f1c166764303dc2f5a2ee3055093ded15 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/83.txt b/maze/task4/maps/level_step3/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dcee8bea439882bbd328f814da887b2bb0d47c0 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/84.txt b/maze/task4/maps/level_step3/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f6c3cc66727f13d4b4524c30cff09d5ec25ae60 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 4; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/85.txt b/maze/task4/maps/level_step3/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee2506d3c62f246176ebeaa3418f1cda7988af0b --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/86.txt b/maze/task4/maps/level_step3/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..1314a63ac079354e310dd359ecc90968cd8e493e --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/87.txt b/maze/task4/maps/level_step3/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed2dab4c8118fd0de10ad398e8b72c85a868ba6 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 4, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/88.txt b/maze/task4/maps/level_step3/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a970f264f48d75000b066267644c8f5770aeb88c --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 5, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/89.txt b/maze/task4/maps/level_step3/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..94a0d4b048c75ea846ff6f887120a36cdeecdfe0 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 1; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/9.txt b/maze/task4/maps/level_step3/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..e331e360b9da15923123b2957ca0cea7c92c20cc --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/90.txt b/maze/task4/maps/level_step3/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..1eb6bfa6cca9aac78987377258148ad12e1690cc --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/91.txt b/maze/task4/maps/level_step3/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf41fd489cdb54e3be78409f1b94d3ebde61b9f3 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/92.txt b/maze/task4/maps/level_step3/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e7f518e3f935adfbec1a2fe82d9353b221c89e6 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/93.txt b/maze/task4/maps/level_step3/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..99e8587ad626e4e76a45776ec0df7dfc107a9994 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 4; Row 3, Column 3; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/94.txt b/maze/task4/maps/level_step3/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f9219bae6ebde73625e6c9c8fb730c237ef09e --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/95.txt b/maze/task4/maps/level_step3/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..92aa4557aa2d22124ee2b3641570ea46108af8bc --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 5; Row 4, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/96.txt b/maze/task4/maps/level_step3/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7baa1028626f4a71c738ab423ba2ef35afd5ced8 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 4, Column 2; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/97.txt b/maze/task4/maps/level_step3/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..076c01ee6bacfe079d95faf6bc75c95481857fd9 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/98.txt b/maze/task4/maps/level_step3/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d00ab2fa70a2f05e4fe70829bb3f0bf3bf5ed94 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/pure_text/99.txt b/maze/task4/maps/level_step3/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e83fcadcc53346222267fe68467d7f53b2e90601 --- /dev/null +++ b/maze/task4/maps/level_step3/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/0.txt b/maze/task4/maps/level_step3/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e9735146c4a002abc4f8191c4423fb9187d209a --- /dev/null +++ b/maze/task4/maps/level_step3/question/0.txt @@ -0,0 +1 @@ +LRL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/1.txt b/maze/task4/maps/level_step3/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f61d9044fd3c80673942b4c6de93f264cf1fd42 --- /dev/null +++ b/maze/task4/maps/level_step3/question/1.txt @@ -0,0 +1 @@ +LLR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/10.txt b/maze/task4/maps/level_step3/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..eba0db94c7db2c7b9c9d25eef41db0ac80250446 --- /dev/null +++ b/maze/task4/maps/level_step3/question/10.txt @@ -0,0 +1 @@ +RRD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/11.txt b/maze/task4/maps/level_step3/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..991cd127e1c113d69dc1f8f015e34a9e5e23c28b --- /dev/null +++ b/maze/task4/maps/level_step3/question/11.txt @@ -0,0 +1 @@ +LUU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/12.txt b/maze/task4/maps/level_step3/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd3988b4c85f67d96cd016b9b5b7f621d149a923 --- /dev/null +++ b/maze/task4/maps/level_step3/question/12.txt @@ -0,0 +1 @@ +LDL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/13.txt b/maze/task4/maps/level_step3/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..125ab95d12dce04a424d476654137f0cf6f814ba --- /dev/null +++ b/maze/task4/maps/level_step3/question/13.txt @@ -0,0 +1 @@ +RRL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/14.txt b/maze/task4/maps/level_step3/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..f684f3a5bd51f05ec8600a029b9376b4a924383e --- /dev/null +++ b/maze/task4/maps/level_step3/question/14.txt @@ -0,0 +1 @@ +DDL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/15.txt b/maze/task4/maps/level_step3/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a9cc68bf05bebc7aca3d0af324d9da028ece379 --- /dev/null +++ b/maze/task4/maps/level_step3/question/15.txt @@ -0,0 +1 @@ +LDD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/16.txt b/maze/task4/maps/level_step3/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9b6f39ee719c4bdef5f26b73fd6c1b20d718e03 --- /dev/null +++ b/maze/task4/maps/level_step3/question/16.txt @@ -0,0 +1 @@ +DLR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/17.txt b/maze/task4/maps/level_step3/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..15fa265038358d9d1dcd37bd50050188335ff56c --- /dev/null +++ b/maze/task4/maps/level_step3/question/17.txt @@ -0,0 +1 @@ +URD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/18.txt b/maze/task4/maps/level_step3/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2c9dbc7273d3b916aa63c5fb121256614eadd39 --- /dev/null +++ b/maze/task4/maps/level_step3/question/18.txt @@ -0,0 +1 @@ +RUD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/19.txt b/maze/task4/maps/level_step3/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..5799306c81ef8fb262b712fa9e741b182a453e49 --- /dev/null +++ b/maze/task4/maps/level_step3/question/19.txt @@ -0,0 +1 @@ +LUR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/2.txt b/maze/task4/maps/level_step3/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d3df649b6f05c8dfaf482874107659091d2e3b0 --- /dev/null +++ b/maze/task4/maps/level_step3/question/2.txt @@ -0,0 +1 @@ +DRU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/20.txt b/maze/task4/maps/level_step3/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..a16ed6cb33668e8e16cb9d81e437a682e5bd3639 --- /dev/null +++ b/maze/task4/maps/level_step3/question/20.txt @@ -0,0 +1 @@ +DUU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/21.txt b/maze/task4/maps/level_step3/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..813b0efcdb5fbc47a4c27f563fd08a648fa8e8aa --- /dev/null +++ b/maze/task4/maps/level_step3/question/21.txt @@ -0,0 +1 @@ +DDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/22.txt b/maze/task4/maps/level_step3/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..615955f7dd63b80d14c1d5ef8292bdcfded77f58 --- /dev/null +++ b/maze/task4/maps/level_step3/question/22.txt @@ -0,0 +1 @@ +ULL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/23.txt b/maze/task4/maps/level_step3/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..aad73c1de14801c4e0d3563858f205b9ef669efe --- /dev/null +++ b/maze/task4/maps/level_step3/question/23.txt @@ -0,0 +1 @@ +RUL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/24.txt b/maze/task4/maps/level_step3/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e9735146c4a002abc4f8191c4423fb9187d209a --- /dev/null +++ b/maze/task4/maps/level_step3/question/24.txt @@ -0,0 +1 @@ +LRL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/25.txt b/maze/task4/maps/level_step3/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..f684f3a5bd51f05ec8600a029b9376b4a924383e --- /dev/null +++ b/maze/task4/maps/level_step3/question/25.txt @@ -0,0 +1 @@ +DDL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/26.txt b/maze/task4/maps/level_step3/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d4df39811d3e1d2db4df0dc77ef91437fe18a84 --- /dev/null +++ b/maze/task4/maps/level_step3/question/26.txt @@ -0,0 +1 @@ +DRR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/27.txt b/maze/task4/maps/level_step3/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..aad73c1de14801c4e0d3563858f205b9ef669efe --- /dev/null +++ b/maze/task4/maps/level_step3/question/27.txt @@ -0,0 +1 @@ +RUL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/28.txt b/maze/task4/maps/level_step3/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..932d1edb6769e843d1ec8bf745716136d741772c --- /dev/null +++ b/maze/task4/maps/level_step3/question/28.txt @@ -0,0 +1 @@ +LLL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/29.txt b/maze/task4/maps/level_step3/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..813b0efcdb5fbc47a4c27f563fd08a648fa8e8aa --- /dev/null +++ b/maze/task4/maps/level_step3/question/29.txt @@ -0,0 +1 @@ +DDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/3.txt b/maze/task4/maps/level_step3/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5245ec6105235082da875b8f0697042c6053b2f6 --- /dev/null +++ b/maze/task4/maps/level_step3/question/3.txt @@ -0,0 +1 @@ +DDR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/30.txt b/maze/task4/maps/level_step3/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..09ed87769280b614700be16fe0f95016742db0c6 --- /dev/null +++ b/maze/task4/maps/level_step3/question/30.txt @@ -0,0 +1 @@ +UDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/31.txt b/maze/task4/maps/level_step3/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..36762a075411aab257ab00d010bdce814ff0c6ac --- /dev/null +++ b/maze/task4/maps/level_step3/question/31.txt @@ -0,0 +1 @@ +RLD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/32.txt b/maze/task4/maps/level_step3/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d4df39811d3e1d2db4df0dc77ef91437fe18a84 --- /dev/null +++ b/maze/task4/maps/level_step3/question/32.txt @@ -0,0 +1 @@ +DRR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/33.txt b/maze/task4/maps/level_step3/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..7237b3607a2d0751ea26fcc37b50d539ed283ddc --- /dev/null +++ b/maze/task4/maps/level_step3/question/33.txt @@ -0,0 +1 @@ +DLU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/34.txt b/maze/task4/maps/level_step3/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..a16ed6cb33668e8e16cb9d81e437a682e5bd3639 --- /dev/null +++ b/maze/task4/maps/level_step3/question/34.txt @@ -0,0 +1 @@ +DUU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/35.txt b/maze/task4/maps/level_step3/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6a755c451bd165e14f0af486d30da0a6eccd937 --- /dev/null +++ b/maze/task4/maps/level_step3/question/35.txt @@ -0,0 +1 @@ +URL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/36.txt b/maze/task4/maps/level_step3/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..04685f3c2f80eedcde806b9ad8b4173ea527a1a2 --- /dev/null +++ b/maze/task4/maps/level_step3/question/36.txt @@ -0,0 +1 @@ +UUU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/37.txt b/maze/task4/maps/level_step3/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6a755c451bd165e14f0af486d30da0a6eccd937 --- /dev/null +++ b/maze/task4/maps/level_step3/question/37.txt @@ -0,0 +1 @@ +URL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/38.txt b/maze/task4/maps/level_step3/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d2818ce3a37c67b98eae8cf9e3bb0dc3c0706ad --- /dev/null +++ b/maze/task4/maps/level_step3/question/38.txt @@ -0,0 +1 @@ +ULU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/39.txt b/maze/task4/maps/level_step3/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1396cb1df76ff74af0a06bc6bb360977c89d944 --- /dev/null +++ b/maze/task4/maps/level_step3/question/39.txt @@ -0,0 +1 @@ +DUD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/4.txt b/maze/task4/maps/level_step3/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7783e32d8cfe99d397ebb208e75a845a9f42e9b --- /dev/null +++ b/maze/task4/maps/level_step3/question/4.txt @@ -0,0 +1 @@ +DLL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/40.txt b/maze/task4/maps/level_step3/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d4df39811d3e1d2db4df0dc77ef91437fe18a84 --- /dev/null +++ b/maze/task4/maps/level_step3/question/40.txt @@ -0,0 +1 @@ +DRR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/41.txt b/maze/task4/maps/level_step3/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..88d161c37f12f26102bdba9d332d17e8da6f4768 --- /dev/null +++ b/maze/task4/maps/level_step3/question/41.txt @@ -0,0 +1 @@ +RDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/42.txt b/maze/task4/maps/level_step3/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce48a6cb995ee684da60c2daa8b2788b34c072d0 --- /dev/null +++ b/maze/task4/maps/level_step3/question/42.txt @@ -0,0 +1 @@ +ULR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/43.txt b/maze/task4/maps/level_step3/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb04f62dc5199e4cd57e7c69aede128a6f27993c --- /dev/null +++ b/maze/task4/maps/level_step3/question/43.txt @@ -0,0 +1 @@ +LDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/44.txt b/maze/task4/maps/level_step3/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..930fb8ed67b0e82a986f71275b2ef766729d359b --- /dev/null +++ b/maze/task4/maps/level_step3/question/44.txt @@ -0,0 +1 @@ +LUD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/45.txt b/maze/task4/maps/level_step3/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..7237b3607a2d0751ea26fcc37b50d539ed283ddc --- /dev/null +++ b/maze/task4/maps/level_step3/question/45.txt @@ -0,0 +1 @@ +DLU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/46.txt b/maze/task4/maps/level_step3/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea341b0b902562956a468e2d4c352d7b1f0e1df3 --- /dev/null +++ b/maze/task4/maps/level_step3/question/46.txt @@ -0,0 +1 @@ +UDD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/47.txt b/maze/task4/maps/level_step3/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfe108f26aa11e2340206ed0e20f645438baee94 --- /dev/null +++ b/maze/task4/maps/level_step3/question/47.txt @@ -0,0 +1 @@ +LRR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/48.txt b/maze/task4/maps/level_step3/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..7237b3607a2d0751ea26fcc37b50d539ed283ddc --- /dev/null +++ b/maze/task4/maps/level_step3/question/48.txt @@ -0,0 +1 @@ +DLU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/49.txt b/maze/task4/maps/level_step3/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..7237b3607a2d0751ea26fcc37b50d539ed283ddc --- /dev/null +++ b/maze/task4/maps/level_step3/question/49.txt @@ -0,0 +1 @@ +DLU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/5.txt b/maze/task4/maps/level_step3/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea341b0b902562956a468e2d4c352d7b1f0e1df3 --- /dev/null +++ b/maze/task4/maps/level_step3/question/5.txt @@ -0,0 +1 @@ +UDD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/50.txt b/maze/task4/maps/level_step3/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6a755c451bd165e14f0af486d30da0a6eccd937 --- /dev/null +++ b/maze/task4/maps/level_step3/question/50.txt @@ -0,0 +1 @@ +URL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/51.txt b/maze/task4/maps/level_step3/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d4df39811d3e1d2db4df0dc77ef91437fe18a84 --- /dev/null +++ b/maze/task4/maps/level_step3/question/51.txt @@ -0,0 +1 @@ +DRR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/52.txt b/maze/task4/maps/level_step3/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d4df39811d3e1d2db4df0dc77ef91437fe18a84 --- /dev/null +++ b/maze/task4/maps/level_step3/question/52.txt @@ -0,0 +1 @@ +DRR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/53.txt b/maze/task4/maps/level_step3/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8b94c066e5d4c64be11cb5b419929728b94071d --- /dev/null +++ b/maze/task4/maps/level_step3/question/53.txt @@ -0,0 +1 @@ +DUL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/54.txt b/maze/task4/maps/level_step3/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5e1009dd3b6f4f4866168f0c7315823a87cccc9 --- /dev/null +++ b/maze/task4/maps/level_step3/question/54.txt @@ -0,0 +1 @@ +RLR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/55.txt b/maze/task4/maps/level_step3/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..aad73c1de14801c4e0d3563858f205b9ef669efe --- /dev/null +++ b/maze/task4/maps/level_step3/question/55.txt @@ -0,0 +1 @@ +RUL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/56.txt b/maze/task4/maps/level_step3/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..67a95fc8e0789b8efe5c34cd051e09a5e79f7811 --- /dev/null +++ b/maze/task4/maps/level_step3/question/56.txt @@ -0,0 +1 @@ +LLD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/57.txt b/maze/task4/maps/level_step3/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8b94c066e5d4c64be11cb5b419929728b94071d --- /dev/null +++ b/maze/task4/maps/level_step3/question/57.txt @@ -0,0 +1 @@ +DUL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/58.txt b/maze/task4/maps/level_step3/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6279ac7497d7b9591fb5927a395d61ef63cb6f5 --- /dev/null +++ b/maze/task4/maps/level_step3/question/58.txt @@ -0,0 +1 @@ +LDR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/59.txt b/maze/task4/maps/level_step3/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2c9dbc7273d3b916aa63c5fb121256614eadd39 --- /dev/null +++ b/maze/task4/maps/level_step3/question/59.txt @@ -0,0 +1 @@ +RUD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/6.txt b/maze/task4/maps/level_step3/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..f684f3a5bd51f05ec8600a029b9376b4a924383e --- /dev/null +++ b/maze/task4/maps/level_step3/question/6.txt @@ -0,0 +1 @@ +DDL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/60.txt b/maze/task4/maps/level_step3/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..24ecac76dbf15e4e3ec471bde005c2ad004e2209 --- /dev/null +++ b/maze/task4/maps/level_step3/question/60.txt @@ -0,0 +1 @@ +RDL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/61.txt b/maze/task4/maps/level_step3/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfe108f26aa11e2340206ed0e20f645438baee94 --- /dev/null +++ b/maze/task4/maps/level_step3/question/61.txt @@ -0,0 +1 @@ +LRR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/62.txt b/maze/task4/maps/level_step3/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6d98cd8b3cc0662fbcb2f20c9d500adc6798a00 --- /dev/null +++ b/maze/task4/maps/level_step3/question/62.txt @@ -0,0 +1 @@ +LUL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/63.txt b/maze/task4/maps/level_step3/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac58c815f99f580244da7508b779834fff3f4aa5 --- /dev/null +++ b/maze/task4/maps/level_step3/question/63.txt @@ -0,0 +1 @@ +UDR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/64.txt b/maze/task4/maps/level_step3/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f61d9044fd3c80673942b4c6de93f264cf1fd42 --- /dev/null +++ b/maze/task4/maps/level_step3/question/64.txt @@ -0,0 +1 @@ +LLR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/65.txt b/maze/task4/maps/level_step3/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..88d161c37f12f26102bdba9d332d17e8da6f4768 --- /dev/null +++ b/maze/task4/maps/level_step3/question/65.txt @@ -0,0 +1 @@ +RDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/66.txt b/maze/task4/maps/level_step3/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea341b0b902562956a468e2d4c352d7b1f0e1df3 --- /dev/null +++ b/maze/task4/maps/level_step3/question/66.txt @@ -0,0 +1 @@ +UDD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/67.txt b/maze/task4/maps/level_step3/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..09ed87769280b614700be16fe0f95016742db0c6 --- /dev/null +++ b/maze/task4/maps/level_step3/question/67.txt @@ -0,0 +1 @@ +UDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/68.txt b/maze/task4/maps/level_step3/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..88d161c37f12f26102bdba9d332d17e8da6f4768 --- /dev/null +++ b/maze/task4/maps/level_step3/question/68.txt @@ -0,0 +1 @@ +RDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/69.txt b/maze/task4/maps/level_step3/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..c12f2c2dbc5d43f5a764d3a27464f2cca7dca5be --- /dev/null +++ b/maze/task4/maps/level_step3/question/69.txt @@ -0,0 +1 @@ +LLU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/7.txt b/maze/task4/maps/level_step3/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..813b0efcdb5fbc47a4c27f563fd08a648fa8e8aa --- /dev/null +++ b/maze/task4/maps/level_step3/question/7.txt @@ -0,0 +1 @@ +DDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/70.txt b/maze/task4/maps/level_step3/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..991cd127e1c113d69dc1f8f015e34a9e5e23c28b --- /dev/null +++ b/maze/task4/maps/level_step3/question/70.txt @@ -0,0 +1 @@ +LUU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/71.txt b/maze/task4/maps/level_step3/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..92d2df3117ff0126bf35fa1730ceefad60a1e92b --- /dev/null +++ b/maze/task4/maps/level_step3/question/71.txt @@ -0,0 +1 @@ +DDD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/72.txt b/maze/task4/maps/level_step3/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..f684f3a5bd51f05ec8600a029b9376b4a924383e --- /dev/null +++ b/maze/task4/maps/level_step3/question/72.txt @@ -0,0 +1 @@ +DDL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/73.txt b/maze/task4/maps/level_step3/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1396cb1df76ff74af0a06bc6bb360977c89d944 --- /dev/null +++ b/maze/task4/maps/level_step3/question/73.txt @@ -0,0 +1 @@ +DUD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/74.txt b/maze/task4/maps/level_step3/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7783e32d8cfe99d397ebb208e75a845a9f42e9b --- /dev/null +++ b/maze/task4/maps/level_step3/question/74.txt @@ -0,0 +1 @@ +DLL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/75.txt b/maze/task4/maps/level_step3/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..56853c6f169ef2123aa47a92121d0802c7b49798 --- /dev/null +++ b/maze/task4/maps/level_step3/question/75.txt @@ -0,0 +1 @@ +RLL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/76.txt b/maze/task4/maps/level_step3/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..125ab95d12dce04a424d476654137f0cf6f814ba --- /dev/null +++ b/maze/task4/maps/level_step3/question/76.txt @@ -0,0 +1 @@ +RRL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/77.txt b/maze/task4/maps/level_step3/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d2818ce3a37c67b98eae8cf9e3bb0dc3c0706ad --- /dev/null +++ b/maze/task4/maps/level_step3/question/77.txt @@ -0,0 +1 @@ +ULU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/78.txt b/maze/task4/maps/level_step3/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..615955f7dd63b80d14c1d5ef8292bdcfded77f58 --- /dev/null +++ b/maze/task4/maps/level_step3/question/78.txt @@ -0,0 +1 @@ +ULL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/79.txt b/maze/task4/maps/level_step3/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce48a6cb995ee684da60c2daa8b2788b34c072d0 --- /dev/null +++ b/maze/task4/maps/level_step3/question/79.txt @@ -0,0 +1 @@ +ULR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/8.txt b/maze/task4/maps/level_step3/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..5799306c81ef8fb262b712fa9e741b182a453e49 --- /dev/null +++ b/maze/task4/maps/level_step3/question/8.txt @@ -0,0 +1 @@ +LUR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/80.txt b/maze/task4/maps/level_step3/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f200f0a051e07f632e2924f6b77c20b95549203e --- /dev/null +++ b/maze/task4/maps/level_step3/question/80.txt @@ -0,0 +1 @@ +UUL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/81.txt b/maze/task4/maps/level_step3/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9b6f39ee719c4bdef5f26b73fd6c1b20d718e03 --- /dev/null +++ b/maze/task4/maps/level_step3/question/81.txt @@ -0,0 +1 @@ +DLR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/82.txt b/maze/task4/maps/level_step3/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..04685f3c2f80eedcde806b9ad8b4173ea527a1a2 --- /dev/null +++ b/maze/task4/maps/level_step3/question/82.txt @@ -0,0 +1 @@ +UUU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/83.txt b/maze/task4/maps/level_step3/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..c12f2c2dbc5d43f5a764d3a27464f2cca7dca5be --- /dev/null +++ b/maze/task4/maps/level_step3/question/83.txt @@ -0,0 +1 @@ +LLU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/84.txt b/maze/task4/maps/level_step3/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..d19dd67828e5a9136827edf90511f4bd81e724bf --- /dev/null +++ b/maze/task4/maps/level_step3/question/84.txt @@ -0,0 +1 @@ +UUD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/85.txt b/maze/task4/maps/level_step3/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb04f62dc5199e4cd57e7c69aede128a6f27993c --- /dev/null +++ b/maze/task4/maps/level_step3/question/85.txt @@ -0,0 +1 @@ +LDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/86.txt b/maze/task4/maps/level_step3/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bcd4d06532095c11e03bb5f6c7f80f7c4b5828 --- /dev/null +++ b/maze/task4/maps/level_step3/question/86.txt @@ -0,0 +1 @@ +UUR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/87.txt b/maze/task4/maps/level_step3/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6d98cd8b3cc0662fbcb2f20c9d500adc6798a00 --- /dev/null +++ b/maze/task4/maps/level_step3/question/87.txt @@ -0,0 +1 @@ +LUL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/88.txt b/maze/task4/maps/level_step3/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8b94c066e5d4c64be11cb5b419929728b94071d --- /dev/null +++ b/maze/task4/maps/level_step3/question/88.txt @@ -0,0 +1 @@ +DUL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/89.txt b/maze/task4/maps/level_step3/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..f13b708094af00b07b8c3260baa5beb9c0335e4a --- /dev/null +++ b/maze/task4/maps/level_step3/question/89.txt @@ -0,0 +1 @@ +RLU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/9.txt b/maze/task4/maps/level_step3/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..09ed87769280b614700be16fe0f95016742db0c6 --- /dev/null +++ b/maze/task4/maps/level_step3/question/9.txt @@ -0,0 +1 @@ +UDU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/90.txt b/maze/task4/maps/level_step3/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..930fb8ed67b0e82a986f71275b2ef766729d359b --- /dev/null +++ b/maze/task4/maps/level_step3/question/90.txt @@ -0,0 +1 @@ +LUD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/91.txt b/maze/task4/maps/level_step3/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..53a4e5b6acaef37ce9be7b63879afdf3ace91787 --- /dev/null +++ b/maze/task4/maps/level_step3/question/91.txt @@ -0,0 +1 @@ +RUR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/92.txt b/maze/task4/maps/level_step3/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfe108f26aa11e2340206ed0e20f645438baee94 --- /dev/null +++ b/maze/task4/maps/level_step3/question/92.txt @@ -0,0 +1 @@ +LRR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/93.txt b/maze/task4/maps/level_step3/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..74928010f59fa5a91a0ad7c82d19c49c027da00a --- /dev/null +++ b/maze/task4/maps/level_step3/question/93.txt @@ -0,0 +1 @@ +URR \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/94.txt b/maze/task4/maps/level_step3/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..df2cfe60dc1586d1a92341c44040fd5833c1942c --- /dev/null +++ b/maze/task4/maps/level_step3/question/94.txt @@ -0,0 +1 @@ +RUU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/95.txt b/maze/task4/maps/level_step3/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d2818ce3a37c67b98eae8cf9e3bb0dc3c0706ad --- /dev/null +++ b/maze/task4/maps/level_step3/question/95.txt @@ -0,0 +1 @@ +ULU \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/96.txt b/maze/task4/maps/level_step3/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..092e7e1cf44ccd9b9ef851bd7b45eda412feaaa9 --- /dev/null +++ b/maze/task4/maps/level_step3/question/96.txt @@ -0,0 +1 @@ +ULD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/97.txt b/maze/task4/maps/level_step3/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..56853c6f169ef2123aa47a92121d0802c7b49798 --- /dev/null +++ b/maze/task4/maps/level_step3/question/97.txt @@ -0,0 +1 @@ +RLL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/98.txt b/maze/task4/maps/level_step3/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..f684f3a5bd51f05ec8600a029b9376b4a924383e --- /dev/null +++ b/maze/task4/maps/level_step3/question/98.txt @@ -0,0 +1 @@ +DDL \ No newline at end of file diff --git a/maze/task4/maps/level_step3/question/99.txt b/maze/task4/maps/level_step3/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1396cb1df76ff74af0a06bc6bb360977c89d944 --- /dev/null +++ b/maze/task4/maps/level_step3/question/99.txt @@ -0,0 +1 @@ +DUD \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/0.txt b/maze/task4/maps/level_step3/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..85d88b849a1bc24f810062fe9bed19b90331a9fc --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +____# +__@__ +*____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/1.txt b/maze/task4/maps/level_step3/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..36493eafb5edfef8d172c61adcf5ca23b3a51a87 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/1.txt @@ -0,0 +1,5 @@ +__@__ +___#_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/10.txt b/maze/task4/maps/level_step3/special_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..edf48415345ac6a4064c02465f0bdfd42b134919 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/10.txt @@ -0,0 +1,5 @@ +___#_ +__@__ +_____ +_#__* +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/11.txt b/maze/task4/maps/level_step3/special_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..abee26e333e850fe9c82b52f4db1e1cb7acca162 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/11.txt @@ -0,0 +1,5 @@ +_____ +_#_#_ +_____ +_#___ +*@_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/12.txt b/maze/task4/maps/level_step3/special_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..908f4314979a348d097345fdf210bd7224d335f8 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/12.txt @@ -0,0 +1,5 @@ +__#_# +_____ +_#___ +__@__ +_*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/13.txt b/maze/task4/maps/level_step3/special_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1a36100bee4fff583c1677dbe5d3a1a933b5b30 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/13.txt @@ -0,0 +1,5 @@ +#___* +__##_ +___#_ +@____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/14.txt b/maze/task4/maps/level_step3/special_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..b63b6bda5aa5646edfe07a8bf55be942ae9b0472 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/14.txt @@ -0,0 +1,5 @@ +__#@_ +__#*_ +___#_ +#__#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/15.txt b/maze/task4/maps/level_step3/special_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..552345b90f2aaa0dcf5c81c232ea3239d3474c37 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/15.txt @@ -0,0 +1,5 @@ +_____ +#___@ +_____ +__##_ +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/16.txt b/maze/task4/maps/level_step3/special_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ef8c6c90c43a36a8d8ab69d756c9b6b8e0cdcc --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/16.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +__@## +*__#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/17.txt b/maze/task4/maps/level_step3/special_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..421b1f486997696c08ed3f1bba41e2f311d6dab2 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/17.txt @@ -0,0 +1,5 @@ +_#_#* +_____ +___@_ +__#__ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/18.txt b/maze/task4/maps/level_step3/special_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7aa001c257334571c4ca01508b36f770c8b82eb --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/18.txt @@ -0,0 +1,5 @@ +__#__ +_____ +#_#@# +__*#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/19.txt b/maze/task4/maps/level_step3/special_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dbfc7fb21ff32b8c1cc95d751897847ba4d801e --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/19.txt @@ -0,0 +1,5 @@ +##__# +___## +____# +_*_#_ +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/2.txt b/maze/task4/maps/level_step3/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..048936f4edf772d59f702bd13490217b5ce9d207 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +__### +_____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/20.txt b/maze/task4/maps/level_step3/special_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..42987cf8aa4bc39bc4a012cb7113b3af81634ca1 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/20.txt @@ -0,0 +1,5 @@ +_____ +____# +___#@ +_#___ +__*_# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/21.txt b/maze/task4/maps/level_step3/special_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..55973d6eccbbd89d2c4dd9b68a9de01e9ecf2685 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/21.txt @@ -0,0 +1,5 @@ +_____ +___@_ +____# +#____ +____* \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/22.txt b/maze/task4/maps/level_step3/special_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ddc7ee2397e5bbef353f1e1605fe9331e38bb9e --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/22.txt @@ -0,0 +1,5 @@ +__*#_ +____@ +_#___ +#____ +#_### \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/23.txt b/maze/task4/maps/level_step3/special_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..02f1fc1a12e9c1e873026d53f5d499a40b96b473 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/23.txt @@ -0,0 +1,5 @@ +__*__ +_#__# +_____ +@__#_ +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/24.txt b/maze/task4/maps/level_step3/special_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..eda3e43552eb1d24ba587693364a6e45aada62ec --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/24.txt @@ -0,0 +1,5 @@ +*@##_ +__#__ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/25.txt b/maze/task4/maps/level_step3/special_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..667de56b26576b5c1e594c4993b5bf8401b94f5b --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/25.txt @@ -0,0 +1,5 @@ +_____ +#@__# +#_*__ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/26.txt b/maze/task4/maps/level_step3/special_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..9019160df83f289095314d6c05f6d99aa6998c65 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/26.txt @@ -0,0 +1,5 @@ +__#__ +__##_ +_##__ +_#@__ +_*_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/27.txt b/maze/task4/maps/level_step3/special_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3b202acbf97f812a7ccb41532fdd7d59c56b54f --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/27.txt @@ -0,0 +1,5 @@ +__#__ +_@#_# +__#_# +_____ +_#_*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/28.txt b/maze/task4/maps/level_step3/special_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6e68f16d21fbebacfecfb09b36eee0db117b1a9 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/28.txt @@ -0,0 +1,5 @@ +____# +_____ +__#_@ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/29.txt b/maze/task4/maps/level_step3/special_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f399428d9bd0279229d7633d959b8cb8fb07b6c --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/29.txt @@ -0,0 +1,5 @@ +_____ +@____ +#__#_ +_##__ +*____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/3.txt b/maze/task4/maps/level_step3/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..db97ae9d4b28569612d83923a1d3d5a271c0f04b --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_#___ +_____ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/30.txt b/maze/task4/maps/level_step3/special_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ff179791e452917063ab980e0aea48ed74b88fe --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/30.txt @@ -0,0 +1,5 @@ +_____ +__#__ +____# +#___* +__#@# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/31.txt b/maze/task4/maps/level_step3/special_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3e3cb7c92734ec14c47b6f2290398aa83255732 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/31.txt @@ -0,0 +1,5 @@ +___#_ +##_## +__#__ +@____ +_#__* \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/32.txt b/maze/task4/maps/level_step3/special_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..896e63dd35bacb184a0a1fac25db23481e7c4466 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/32.txt @@ -0,0 +1,5 @@ +*__## +_____ +_____ +__@#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/33.txt b/maze/task4/maps/level_step3/special_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..991864eb19e9ff200c86f5a57d12182dc28c4660 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/33.txt @@ -0,0 +1,5 @@ +___#_ +_##_# +____@ +___#_ +___*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/34.txt b/maze/task4/maps/level_step3/special_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..c386bbee5e758ff60d3a2c03aaef202a1b258c00 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/34.txt @@ -0,0 +1,5 @@ +_____ +_____ +#_*## +@___# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/35.txt b/maze/task4/maps/level_step3/special_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a324c3fd52ad76e773e0621cde09c0001a1295d9 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/35.txt @@ -0,0 +1,5 @@ +___*# +____# +_____ +@##_# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/36.txt b/maze/task4/maps/level_step3/special_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3a47a40877bb66e5689204f9c8815b7f83d2bdb --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/36.txt @@ -0,0 +1,5 @@ +_____ +__#*_ +#_#_# +__@__ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/37.txt b/maze/task4/maps/level_step3/special_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb5160cf6c06815b3f07c02ef24aeaa55463a417 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/37.txt @@ -0,0 +1,5 @@ +#___# +_#_@_ +#__#_ +#____ +#__*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/38.txt b/maze/task4/maps/level_step3/special_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..53d4c0962eaccd88b92dd3b5ef8b880e924f0549 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/38.txt @@ -0,0 +1,5 @@ +__#__ +__##* +___#_ +___#_ +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/39.txt b/maze/task4/maps/level_step3/special_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b0bf4a80a82c271816eb57396c8afda5abd33f2 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/39.txt @@ -0,0 +1,5 @@ +____* +@____ +#___# +_____ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/4.txt b/maze/task4/maps/level_step3/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d0dd655621a4d7305738e2eef827e00f103f45d --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/4.txt @@ -0,0 +1,5 @@ +____@ +____# +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/40.txt b/maze/task4/maps/level_step3/special_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..606c38d4b7d86d249bcaeea8a1f2037c93be65f5 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/40.txt @@ -0,0 +1,5 @@ +_____ +##*__ +_____ +@____ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/41.txt b/maze/task4/maps/level_step3/special_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9f65a94dcd493600954a38dc0a425b191d3fc4f --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/41.txt @@ -0,0 +1,5 @@ +#_#__ +_____ +_@___ +_##*# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/42.txt b/maze/task4/maps/level_step3/special_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc8a3386c3ef5a08fd2122bad1e0918841322185 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/42.txt @@ -0,0 +1,5 @@ +__### +__#__ +__@__ +___## +##*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/43.txt b/maze/task4/maps/level_step3/special_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..c229d5f2ebed8676850e04df8ecb2d7dbe792fc5 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/43.txt @@ -0,0 +1,5 @@ +__@_* +__#__ +_____ +_____ +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/44.txt b/maze/task4/maps/level_step3/special_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..67bcc83e09c731476ef8d62042daa103cdcc0b76 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/44.txt @@ -0,0 +1,5 @@ +___#_ +*____ +##__# +_@_#_ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/45.txt b/maze/task4/maps/level_step3/special_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..eae621b6cdb39463843ae427e40348b071087230 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/45.txt @@ -0,0 +1,5 @@ +__*__ +____@ +_#___ +_#__# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/46.txt b/maze/task4/maps/level_step3/special_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..f837fe3529381f0cad11e351b02ee22860888c49 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/46.txt @@ -0,0 +1,5 @@ +__#__ +@#___ +#____ +#_#__ +_*#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/47.txt b/maze/task4/maps/level_step3/special_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..29f56257d5c8a02820a5429a16947f862000bcf3 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/47.txt @@ -0,0 +1,5 @@ +_____ +_____ +_*#__ +##_@# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/48.txt b/maze/task4/maps/level_step3/special_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..25119cae5f8d228b3f7c34af4da4d120f3febee2 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/48.txt @@ -0,0 +1,5 @@ +_##_@ +#_##_ +_____ +__*__ +_##__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/49.txt b/maze/task4/maps/level_step3/special_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6664284420cd948a0bc95b418e71ac800e464ec --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/49.txt @@ -0,0 +1,5 @@ +#____ +#@*#_ +#____ +##__# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/5.txt b/maze/task4/maps/level_step3/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1f7c831b35abab22d17190ae0bef62498ef73ba --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +___#_ +_@___ +_#_*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/50.txt b/maze/task4/maps/level_step3/special_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccf93a9f1e31f62347e73fcc6f8b132ed9094ae0 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/50.txt @@ -0,0 +1,5 @@ +____# +_____ +_#___ +__#__ +_#_@* \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/51.txt b/maze/task4/maps/level_step3/special_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3555df6436cbacb9a42342cc97483570c008d61 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/51.txt @@ -0,0 +1,5 @@ +*@#__ +_____ +_#_#_ +_____ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/52.txt b/maze/task4/maps/level_step3/special_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac2fe683e7110ba9cdd35e818f66ad6e91d1df58 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/52.txt @@ -0,0 +1,5 @@ +_____ +*@_#_ +_____ +___## +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/53.txt b/maze/task4/maps/level_step3/special_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d12fc1b942f2a7bc3156f95f0e25211ddb00df6b --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/53.txt @@ -0,0 +1,5 @@ +#*#__ +#@#__ +#_##_ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/54.txt b/maze/task4/maps/level_step3/special_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..b06f294b3ea58c7614f151b1e22e986f5b1041d1 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/54.txt @@ -0,0 +1,5 @@ +_____ +*____ +_____ +___## +_@__# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/55.txt b/maze/task4/maps/level_step3/special_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a45759e1fa57aec4c9d22c4b2e6bcec7fb90826 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/55.txt @@ -0,0 +1,5 @@ +__*__ +_____ +#_#@_ +_#_#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/56.txt b/maze/task4/maps/level_step3/special_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..4768a229c179943de590114c14451986b9b1df35 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/56.txt @@ -0,0 +1,5 @@ +____@ +_*___ +_#___ +_____ +#__#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/57.txt b/maze/task4/maps/level_step3/special_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..77f56834a9065a20a11110d7b4e1069a846ff453 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/57.txt @@ -0,0 +1,5 @@ +__#__ +__#_@ +_*#__ +#____ +_#__# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/58.txt b/maze/task4/maps/level_step3/special_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..a513cc35eeb288ee632a44d52f2503529231b4f3 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/58.txt @@ -0,0 +1,5 @@ +#*___ +_@##_ +#____ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/59.txt b/maze/task4/maps/level_step3/special_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dc4339baf9608e27936e5303d203a8c77ab9264 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/59.txt @@ -0,0 +1,5 @@ +_____ +_#_@_ +_*___ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/6.txt b/maze/task4/maps/level_step3/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..06ac61b196846a33b6224efe7ab1f762ac624cf4 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +____# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/60.txt b/maze/task4/maps/level_step3/special_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..316b1a90eaf3c16db459dcf6b041b3dff5a5ac20 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/60.txt @@ -0,0 +1,5 @@ +#_@__ +#__#* +__#__ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/61.txt b/maze/task4/maps/level_step3/special_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..72cc89fe12ac6a4056c22a9a5e62ecb856d7c8dc --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/61.txt @@ -0,0 +1,5 @@ +_@##_ +__*__ +_____ +_#_#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/62.txt b/maze/task4/maps/level_step3/special_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e1f6fa05c6d1cc1609872fe3fee67d1edc32457 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/62.txt @@ -0,0 +1,5 @@ +*_#__ +__#_# +__#__ +_#### +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/63.txt b/maze/task4/maps/level_step3/special_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..c467e6013063c0af529dc434a2708a1e16e1d67e --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/63.txt @@ -0,0 +1,5 @@ +___#_ +_____ +___#_ +__#__ +_*_@# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/64.txt b/maze/task4/maps/level_step3/special_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9d479d12c6223be4e118156d0b84719fe1209b3 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/64.txt @@ -0,0 +1,5 @@ +_##__ +_#@__ +_____ +___*_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/65.txt b/maze/task4/maps/level_step3/special_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d0ec4e54ecc97178acc246e7d3d6108f33b2c11 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/65.txt @@ -0,0 +1,5 @@ +_#___ +#___# +_____ +_@___ +____* \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/66.txt b/maze/task4/maps/level_step3/special_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..aaacc8320bad91ed8aa3f568f21f7db6d6464d6f --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/66.txt @@ -0,0 +1,5 @@ +#___# +_#@*# +#_#__ +_____ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/67.txt b/maze/task4/maps/level_step3/special_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..6733fd01506829b65c21e6cc8f88f1aa8508fc5a --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/67.txt @@ -0,0 +1,5 @@ +___## +_____ +_##__ +#___# +@*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/68.txt b/maze/task4/maps/level_step3/special_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4dd2d7756dbe9dd03094ee12599ae06644dfad6 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/68.txt @@ -0,0 +1,5 @@ +_____ +@____ +#____ +_*___ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/69.txt b/maze/task4/maps/level_step3/special_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dffa8b0097e6908fd1d8293817547ae9c00c985 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/69.txt @@ -0,0 +1,5 @@ +__#__ +_#_@# +____# +_#_*# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/7.txt b/maze/task4/maps/level_step3/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..16c288d9912871111553377ec177e0645df42889 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/7.txt @@ -0,0 +1,5 @@ +___*_ +__@__ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/70.txt b/maze/task4/maps/level_step3/special_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f9572cc2911c9ce5b6d72399e40ec3aed7a55e4 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/70.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +#_@#_ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/71.txt b/maze/task4/maps/level_step3/special_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..930c59f441e2cba1f2f01ed3a601fcf615464e4d --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/71.txt @@ -0,0 +1,5 @@ +__@_* +__##_ +_##__ +_#___ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/72.txt b/maze/task4/maps/level_step3/special_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..b08b906fc49abe114363b9b3c499364a82a93249 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/72.txt @@ -0,0 +1,5 @@ +___@_ +##__# +_###_ +#____ +__#*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/73.txt b/maze/task4/maps/level_step3/special_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e5fce6811c2c824bbd4174f8cb14966f6bf92b0 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/73.txt @@ -0,0 +1,5 @@ +##___ +___#_ +__@__ +_*___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/74.txt b/maze/task4/maps/level_step3/special_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..25a4ab23b382dfede0fca35912f371f2df433b2d --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/74.txt @@ -0,0 +1,5 @@ +#___# +__#__ +_____ +*___@ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/75.txt b/maze/task4/maps/level_step3/special_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..e15fb6b5954cb38260f9e38706c856e11f91195e --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/75.txt @@ -0,0 +1,5 @@ +_____ +_#*__ +##@__ +_____ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/76.txt b/maze/task4/maps/level_step3/special_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..022e9ef27dc560013914d8f4d1563e2186218012 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/76.txt @@ -0,0 +1,5 @@ +_____ +_____ +@#__# +*#___ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/77.txt b/maze/task4/maps/level_step3/special_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..182b09ef1a1c5994f3d7fb596bd4a62d4770d069 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/77.txt @@ -0,0 +1,5 @@ +_____ +___*_ +___#_ +__#__ +_@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/78.txt b/maze/task4/maps/level_step3/special_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ff0764234999b3e3212d974321f8d294d192e67 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/78.txt @@ -0,0 +1,5 @@ +___#_ +____@ +_##__ +_#___ +#_*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/79.txt b/maze/task4/maps/level_step3/special_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b2fa48cf7e2a2c2799e159269dc38ccbf798dc4 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/79.txt @@ -0,0 +1,5 @@ +____* +__@#_ +___## +_____ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/8.txt b/maze/task4/maps/level_step3/special_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dbf284dccb38320cd666408e7a7b9919cf96f5a --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/8.txt @@ -0,0 +1,5 @@ +___*_ +#____ +___#_ +##_#_ +#@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/80.txt b/maze/task4/maps/level_step3/special_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..8673321a72214030bf02877a0aa783445ee9fa84 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/80.txt @@ -0,0 +1,5 @@ +#____ +__#__ +#____ +#____ +*@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/81.txt b/maze/task4/maps/level_step3/special_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..f24b225bbda292c923a286070fbf7f915ee1d7ba --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/81.txt @@ -0,0 +1,5 @@ +__#__ +__*__ +_@___ +_____ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/82.txt b/maze/task4/maps/level_step3/special_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a48fc447b762ba64f2761ea190d6de97801e18e --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/82.txt @@ -0,0 +1,5 @@ +*#___ +_____ +_____ +___#_ +@#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/83.txt b/maze/task4/maps/level_step3/special_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..47c66d58d2a08a1c0426a11969f0074a4ea9bc9f --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/83.txt @@ -0,0 +1,5 @@ +_##__ +#__#_ +_____ +*____ +___@# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/84.txt b/maze/task4/maps/level_step3/special_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e8c25db78cb20df75cd2b9f18f1b5cae7b209a5 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/84.txt @@ -0,0 +1,5 @@ +___#_ +_____ +_*##_ +___#_ +_@_## \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/85.txt b/maze/task4/maps/level_step3/special_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..f64a2eec83e5fd88906e2af5080f59935c77609f --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/85.txt @@ -0,0 +1,5 @@ +##_#_ +_#_#_ +____@ +___#* +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/86.txt b/maze/task4/maps/level_step3/special_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a740b13ce899bc4fc84217a221c2ce136f8b4ea7 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/86.txt @@ -0,0 +1,5 @@ +__##_ +_____ +@_*#_ +##___ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/87.txt b/maze/task4/maps/level_step3/special_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f31742eff61b30431933e85f59341d94e86ee2e9 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/87.txt @@ -0,0 +1,5 @@ +#____ +_###_ +#*@__ +#____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/88.txt b/maze/task4/maps/level_step3/special_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..575af80e1b3cc351860c53381214dd1f7ca426af --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/88.txt @@ -0,0 +1,5 @@ +__*#_ +##___ +##_@_ +##___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/89.txt b/maze/task4/maps/level_step3/special_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ead45168e535a1c6d1f8143e1f0f0d6ec8ea4cb --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/89.txt @@ -0,0 +1,5 @@ +_##__ +@__*_ +#____ +_____ +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/9.txt b/maze/task4/maps/level_step3/special_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd1e590ddb6ff33ca670294c06a664f81f9a97ca --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/9.txt @@ -0,0 +1,5 @@ +##__# +#__*# +#@#_# +_#___ +####_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/90.txt b/maze/task4/maps/level_step3/special_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc892ce80b072337f7ae4796aaaf1c4cc5bf4f01 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/90.txt @@ -0,0 +1,5 @@ +_____ +__#_@ +____# +*#___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/91.txt b/maze/task4/maps/level_step3/special_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d729e649bda2a923da12cb24bd6a981dba05cfe --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/91.txt @@ -0,0 +1,5 @@ +_###_ +_@___ +*____ +__#__ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/92.txt b/maze/task4/maps/level_step3/special_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..035d413ea0181b16d955f9031d67afe8b54ebe34 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/92.txt @@ -0,0 +1,5 @@ +__@_# +_#___ +_*___ +____# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/93.txt b/maze/task4/maps/level_step3/special_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..e63c3446725c839b51e996856e27af1b6aa9c044 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/93.txt @@ -0,0 +1,5 @@ +#____ +_@_#_ +_*#__ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/94.txt b/maze/task4/maps/level_step3/special_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..38abe560d2898d6906a99f76cb8a7e264c93d002 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/94.txt @@ -0,0 +1,5 @@ +#____ +_#___ +*____ +____# +__@_# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/95.txt b/maze/task4/maps/level_step3/special_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..53a13f63227891c075ddc58c9f79a3db401e0891 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/95.txt @@ -0,0 +1,5 @@ +*#__# +_____ +___@# +_#___ +__#_# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/96.txt b/maze/task4/maps/level_step3/special_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0b9eae4d568b1b3911a91512de38f59371e694f --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/96.txt @@ -0,0 +1,5 @@ +#____ +###__ +_*___ +_##__ +_#_@_ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/97.txt b/maze/task4/maps/level_step3/special_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..59bf883a805c94d2453febf4cb9fa47b20264bac --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/97.txt @@ -0,0 +1,5 @@ +*@___ +#____ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/98.txt b/maze/task4/maps/level_step3/special_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..40e758a50dc10f059a4bf203f3e861b891a0a976 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/98.txt @@ -0,0 +1,5 @@ +#@#*_ +__#__ +_____ +#____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/special_text/99.txt b/maze/task4/maps/level_step3/special_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..dde4c4c3f39b7aca7754d070558b6b34235032b0 --- /dev/null +++ b/maze/task4/maps/level_step3/special_text/99.txt @@ -0,0 +1,5 @@ +_____ +*#__@ +__#__ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step3/table/0.txt b/maze/task4/maps/level_step3/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..71a2cd22e79422b7d477a4141c2e19b05c3bd1f5 --- /dev/null +++ b/maze/task4/maps/level_step3/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/1.txt b/maze/task4/maps/level_step3/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9644ba4395c19da791aa1dca093cacf7aa2e64e1 --- /dev/null +++ b/maze/task4/maps/level_step3/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step3/table/10.txt b/maze/task4/maps/level_step3/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0211bef6e0797f5185afb256ab03b4c8aaff905 --- /dev/null +++ b/maze/task4/maps/level_step3/table/10.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step3/table/11.txt b/maze/task4/maps/level_step3/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e9dea2fee4a93278764065cf1da3935f20307bb --- /dev/null +++ b/maze/task4/maps/level_step3/table/11.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/12.txt b/maze/task4/maps/level_step3/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..946812b87c7105aa6fbfdf6be1118cf04d91e848 --- /dev/null +++ b/maze/task4/maps/level_step3/table/12.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/13.txt b/maze/task4/maps/level_step3/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea2d1614a3e9f80e878f1bd25d564f7871c1b2bb --- /dev/null +++ b/maze/task4/maps/level_step3/table/13.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/14.txt b/maze/task4/maps/level_step3/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f5ed49737412c0eeb4ed2da039e6c158759c7c3 --- /dev/null +++ b/maze/task4/maps/level_step3/table/14.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/15.txt b/maze/task4/maps/level_step3/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a4ad2cb461e27213a609a4af8fbfa593902b53 --- /dev/null +++ b/maze/task4/maps/level_step3/table/15.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step3/table/16.txt b/maze/task4/maps/level_step3/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdaadcc660885d8cc036c56eb3d8c6166734d251 --- /dev/null +++ b/maze/task4/maps/level_step3/table/16.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/17.txt b/maze/task4/maps/level_step3/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..51cfae6b5cab1c10e4372fc6b0381b6e816248d3 --- /dev/null +++ b/maze/task4/maps/level_step3/table/17.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/18.txt b/maze/task4/maps/level_step3/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..c61d36fb43406a1511c795ee67822127604c66ec --- /dev/null +++ b/maze/task4/maps/level_step3/table/18.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | # | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/19.txt b/maze/task4/maps/level_step3/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d29e6b0c5bbe19dcfb0ff5489db3b265dd7c868 --- /dev/null +++ b/maze/task4/maps/level_step3/table/19.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step3/table/2.txt b/maze/task4/maps/level_step3/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task4/maps/level_step3/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/20.txt b/maze/task4/maps/level_step3/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..60f96585de5bee9fac2aca2fcaa5747c6122c86d --- /dev/null +++ b/maze/task4/maps/level_step3/table/20.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | diff --git a/maze/task4/maps/level_step3/table/21.txt b/maze/task4/maps/level_step3/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bdb7f9d38c363607edebca795b8efda2fd58943 --- /dev/null +++ b/maze/task4/maps/level_step3/table/21.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task4/maps/level_step3/table/22.txt b/maze/task4/maps/level_step3/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..9067b0e872e4f215798c46957deba4098bc280fa --- /dev/null +++ b/maze/task4/maps/level_step3/table/22.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | diff --git a/maze/task4/maps/level_step3/table/23.txt b/maze/task4/maps/level_step3/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3291cd013d78e809d904f9dfab9660d6d51eb932 --- /dev/null +++ b/maze/task4/maps/level_step3/table/23.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step3/table/24.txt b/maze/task4/maps/level_step3/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bbb681c3461cff5d1235131dc0199e120a5cbb7 --- /dev/null +++ b/maze/task4/maps/level_step3/table/24.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/25.txt b/maze/task4/maps/level_step3/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2ecfa107864966d52a237d3a7578f7c4255db56 --- /dev/null +++ b/maze/task4/maps/level_step3/table/25.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/26.txt b/maze/task4/maps/level_step3/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2432c116cc5384d761f4ce83338db40f723a6497 --- /dev/null +++ b/maze/task4/maps/level_step3/table/26.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/27.txt b/maze/task4/maps/level_step3/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..f32eb68bc3ab9c818fbf7300b1f3fdf9e023461b --- /dev/null +++ b/maze/task4/maps/level_step3/table/27.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | @ | # | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | * | _ | diff --git a/maze/task4/maps/level_step3/table/28.txt b/maze/task4/maps/level_step3/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccc5bbb784b27a1a7cf3e01e9abc3d0f5fe9d4c9 --- /dev/null +++ b/maze/task4/maps/level_step3/table/28.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | @ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/29.txt b/maze/task4/maps/level_step3/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2bad87d618bf7eafda3b9decc428a7b6cc29fd3 --- /dev/null +++ b/maze/task4/maps/level_step3/table/29.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/3.txt b/maze/task4/maps/level_step3/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9afb12ea5b879f7d3d1aee81db7632744fe5e1 --- /dev/null +++ b/maze/task4/maps/level_step3/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/30.txt b/maze/task4/maps/level_step3/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cb1ae58ba0ccd2d81caa01dd388fbacd7ef701b --- /dev/null +++ b/maze/task4/maps/level_step3/table/30.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | * | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task4/maps/level_step3/table/31.txt b/maze/task4/maps/level_step3/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..79fab8a93e45cc567a9c8e57d28bfdde645c5f7b --- /dev/null +++ b/maze/task4/maps/level_step3/table/31.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | diff --git a/maze/task4/maps/level_step3/table/32.txt b/maze/task4/maps/level_step3/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..1369886fb7c0723a3cda1c162dc7cf5bed7fe64e --- /dev/null +++ b/maze/task4/maps/level_step3/table/32.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/33.txt b/maze/task4/maps/level_step3/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cf5fe37313d523116ea2df2a747d2eaa4408ba4 --- /dev/null +++ b/maze/task4/maps/level_step3/table/33.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step3/table/34.txt b/maze/task4/maps/level_step3/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f16eccbb5cb583c6f45a3c25bb9ff9afbe2c4c4 --- /dev/null +++ b/maze/task4/maps/level_step3/table/34.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/35.txt b/maze/task4/maps/level_step3/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f18b432ca7b113f763e08ee6dc6532333bf5715 --- /dev/null +++ b/maze/task4/maps/level_step3/table/35.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/36.txt b/maze/task4/maps/level_step3/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..71ee9bfa4a0462478b19577bda9f8e3f15100f6f --- /dev/null +++ b/maze/task4/maps/level_step3/table/36.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | # | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step3/table/37.txt b/maze/task4/maps/level_step3/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff0217e755fe4b530dce241c5b17b9449a75b51f --- /dev/null +++ b/maze/task4/maps/level_step3/table/37.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step3/table/38.txt b/maze/task4/maps/level_step3/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3846e4c3e55d0e44804705a43989b2e23cf8b0e0 --- /dev/null +++ b/maze/task4/maps/level_step3/table/38.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step3/table/39.txt b/maze/task4/maps/level_step3/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d08ae28ff183a5bd981a9b811b7cce22062c50c --- /dev/null +++ b/maze/task4/maps/level_step3/table/39.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/4.txt b/maze/task4/maps/level_step3/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..6675854261f977a35f7706bea9bff3ac900bd2b0 --- /dev/null +++ b/maze/task4/maps/level_step3/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/40.txt b/maze/task4/maps/level_step3/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..54a24c913e97823bbc5629351cdbc96ef03f449e --- /dev/null +++ b/maze/task4/maps/level_step3/table/40.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/41.txt b/maze/task4/maps/level_step3/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c98dfb5b24c746fd0a3913c47f80720fb3fa149 --- /dev/null +++ b/maze/task4/maps/level_step3/table/41.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | # | * | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/42.txt b/maze/task4/maps/level_step3/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d5ab01f8f749bfa5e7ce9a70e117aeb36a10109 --- /dev/null +++ b/maze/task4/maps/level_step3/table/42.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | # | * | _ | _ | diff --git a/maze/task4/maps/level_step3/table/43.txt b/maze/task4/maps/level_step3/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..bba5c75ca3accaaa374a79977ffb21046bb28e7b --- /dev/null +++ b/maze/task4/maps/level_step3/table/43.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/44.txt b/maze/task4/maps/level_step3/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6e3995250450aa3db35c84d8a08d04e29a0e3ce --- /dev/null +++ b/maze/task4/maps/level_step3/table/44.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | # | +| Row 4 | _ | @ | _ | # | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/45.txt b/maze/task4/maps/level_step3/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c18b3e25aecbca606d0717b194804c0ab956f3e --- /dev/null +++ b/maze/task4/maps/level_step3/table/45.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/46.txt b/maze/task4/maps/level_step3/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..da5c7669ed25b8594b610f3830cd0fcc74e31b5e --- /dev/null +++ b/maze/task4/maps/level_step3/table/46.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | diff --git a/maze/task4/maps/level_step3/table/47.txt b/maze/task4/maps/level_step3/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..8feb81d0f3eda6fde176b3b347f8d10526a63a05 --- /dev/null +++ b/maze/task4/maps/level_step3/table/47.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/48.txt b/maze/task4/maps/level_step3/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..045192e11da7f70eacf875c50cba7048b22840fe --- /dev/null +++ b/maze/task4/maps/level_step3/table/48.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | @ | +| Row 2 | # | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | diff --git a/maze/task4/maps/level_step3/table/49.txt b/maze/task4/maps/level_step3/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcb030dfa5adde264f5cca9e3e3b6dc10e3ff1dc --- /dev/null +++ b/maze/task4/maps/level_step3/table/49.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/5.txt b/maze/task4/maps/level_step3/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..952ff3302b20c16a24488277f523b1134de4e53e --- /dev/null +++ b/maze/task4/maps/level_step3/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | # | _ | * | _ | diff --git a/maze/task4/maps/level_step3/table/50.txt b/maze/task4/maps/level_step3/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cd186e80b157cee5759440638299a74c844fc7a --- /dev/null +++ b/maze/task4/maps/level_step3/table/50.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | diff --git a/maze/task4/maps/level_step3/table/51.txt b/maze/task4/maps/level_step3/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a0815eef8fa94d279ec60f49d1f91ec6a6b1448 --- /dev/null +++ b/maze/task4/maps/level_step3/table/51.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/52.txt b/maze/task4/maps/level_step3/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3b0d4c5cf6ab4d90aac7f9d9c458533c32b4393 --- /dev/null +++ b/maze/task4/maps/level_step3/table/52.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/53.txt b/maze/task4/maps/level_step3/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d5ee7e95f64becee9861bbaa79d15ef29571b16 --- /dev/null +++ b/maze/task4/maps/level_step3/table/53.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | _ | _ | +| Row 2 | # | @ | # | _ | _ | +| Row 3 | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step3/table/54.txt b/maze/task4/maps/level_step3/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e81c6d453858ec23b49ec7bf6b3f642608e809c --- /dev/null +++ b/maze/task4/maps/level_step3/table/54.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/55.txt b/maze/task4/maps/level_step3/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2e6d7933b828afbb9bca303bc84e643f00ef395 --- /dev/null +++ b/maze/task4/maps/level_step3/table/55.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/56.txt b/maze/task4/maps/level_step3/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba5afdba587409ce6e45db7f6dda1d0b659c8ec1 --- /dev/null +++ b/maze/task4/maps/level_step3/table/56.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/57.txt b/maze/task4/maps/level_step3/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6647db1330aed2c4002abe3f7ae3882ef94c8e96 --- /dev/null +++ b/maze/task4/maps/level_step3/table/57.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/58.txt b/maze/task4/maps/level_step3/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..e506ae73582cc930ec3912b2f5747b3bdce384ff --- /dev/null +++ b/maze/task4/maps/level_step3/table/58.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/59.txt b/maze/task4/maps/level_step3/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..a944527c0bbc1386a4896c78deb1038293630f88 --- /dev/null +++ b/maze/task4/maps/level_step3/table/59.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step3/table/6.txt b/maze/task4/maps/level_step3/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2521dc5a2e4b78cd93244c384377b6d6b0823192 --- /dev/null +++ b/maze/task4/maps/level_step3/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/60.txt b/maze/task4/maps/level_step3/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..289b110d9e862733e6d48b74434decd765a5a0bb --- /dev/null +++ b/maze/task4/maps/level_step3/table/60.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | _ | _ | +| Row 2 | # | _ | _ | # | * | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/61.txt b/maze/task4/maps/level_step3/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fd94d4ae0ba725832f9a8f0be0c0b722aec86ef --- /dev/null +++ b/maze/task4/maps/level_step3/table/61.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | # | # | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/62.txt b/maze/task4/maps/level_step3/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..f468842ea358e01a48fe3aaff39ce84bf55e1691 --- /dev/null +++ b/maze/task4/maps/level_step3/table/62.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | # | # | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step3/table/63.txt b/maze/task4/maps/level_step3/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c5740d67b3eadd3f55e867a2f66d4e9199aa003 --- /dev/null +++ b/maze/task4/maps/level_step3/table/63.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | @ | # | diff --git a/maze/task4/maps/level_step3/table/64.txt b/maze/task4/maps/level_step3/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..f61ebb57222dca834a4a3f5774e2c6e3b1d39e3f --- /dev/null +++ b/maze/task4/maps/level_step3/table/64.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/65.txt b/maze/task4/maps/level_step3/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1278d25010ff27a783403263a4a2c870393ae901 --- /dev/null +++ b/maze/task4/maps/level_step3/table/65.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task4/maps/level_step3/table/66.txt b/maze/task4/maps/level_step3/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9277ae8b45bb8b4c8abaaecd044a8bdfcb464a5 --- /dev/null +++ b/maze/task4/maps/level_step3/table/66.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | @ | * | # | +| Row 3 | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/67.txt b/maze/task4/maps/level_step3/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..00510829054cc3fead421eefba92badfeaba0cbb --- /dev/null +++ b/maze/task4/maps/level_step3/table/67.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/68.txt b/maze/task4/maps/level_step3/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a40ccda9898fe8360fc6c0b63390b6fc383a81 --- /dev/null +++ b/maze/task4/maps/level_step3/table/68.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/69.txt b/maze/task4/maps/level_step3/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..82d0f84ca02b6dbadfadf946749eec578f795f01 --- /dev/null +++ b/maze/task4/maps/level_step3/table/69.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/7.txt b/maze/task4/maps/level_step3/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc02ca1df883fa37a50dfdd0cd46b7626d287d31 --- /dev/null +++ b/maze/task4/maps/level_step3/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/70.txt b/maze/task4/maps/level_step3/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4404e2781df99c6580eeb74e3cfdecd6a84dbe2 --- /dev/null +++ b/maze/task4/maps/level_step3/table/70.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/71.txt b/maze/task4/maps/level_step3/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..f629a7fc01107700c1b7bece7858243a5a0e356b --- /dev/null +++ b/maze/task4/maps/level_step3/table/71.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step3/table/72.txt b/maze/task4/maps/level_step3/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..81fbae0aca5cecff44233209a0eaaec21bf5ff32 --- /dev/null +++ b/maze/task4/maps/level_step3/table/72.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | diff --git a/maze/task4/maps/level_step3/table/73.txt b/maze/task4/maps/level_step3/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..db68a4d37d6554ce78cbe7ef6c34f4a5afa11b33 --- /dev/null +++ b/maze/task4/maps/level_step3/table/73.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/74.txt b/maze/task4/maps/level_step3/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..70b0c688073c9bdfb460dfce9b74897b6c4246bd --- /dev/null +++ b/maze/task4/maps/level_step3/table/74.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/75.txt b/maze/task4/maps/level_step3/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..8de7dfeef07e8988355e193b36eebba9f32561b7 --- /dev/null +++ b/maze/task4/maps/level_step3/table/75.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | * | _ | _ | +| Row 3 | # | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/76.txt b/maze/task4/maps/level_step3/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..324139b44e3522388d9f26cd3d765095b969454d --- /dev/null +++ b/maze/task4/maps/level_step3/table/76.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | # | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step3/table/77.txt b/maze/task4/maps/level_step3/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fb899cc097e94935ef92f986f60d0143565e241 --- /dev/null +++ b/maze/task4/maps/level_step3/table/77.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/78.txt b/maze/task4/maps/level_step3/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..a83712ec92b40253ea9745c5dd18a0cb782d38f4 --- /dev/null +++ b/maze/task4/maps/level_step3/table/78.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step3/table/79.txt b/maze/task4/maps/level_step3/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a64e850682e33895bc152ffe44465805ed1634 --- /dev/null +++ b/maze/task4/maps/level_step3/table/79.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step3/table/8.txt b/maze/task4/maps/level_step3/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..66b33508d46e2b207f42f8173cc6886e0c7a02e1 --- /dev/null +++ b/maze/task4/maps/level_step3/table/8.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/80.txt b/maze/task4/maps/level_step3/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..44a769dd5222e0768929655e431905203840e65c --- /dev/null +++ b/maze/task4/maps/level_step3/table/80.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | * | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/81.txt b/maze/task4/maps/level_step3/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..47da920aba24b5ce2751d433d9e64b8e8b4c4306 --- /dev/null +++ b/maze/task4/maps/level_step3/table/81.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/82.txt b/maze/task4/maps/level_step3/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..88bda35ba160112dff20969fe1697ae01ee5ede6 --- /dev/null +++ b/maze/task4/maps/level_step3/table/82.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/83.txt b/maze/task4/maps/level_step3/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..1410fb2f335cbebbab12502b46ca21277dcbb2e0 --- /dev/null +++ b/maze/task4/maps/level_step3/table/83.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | # | diff --git a/maze/task4/maps/level_step3/table/84.txt b/maze/task4/maps/level_step3/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..45d952294d09a3f547fa4b6fc6187d865fc7f09a --- /dev/null +++ b/maze/task4/maps/level_step3/table/84.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | # | diff --git a/maze/task4/maps/level_step3/table/85.txt b/maze/task4/maps/level_step3/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..752644e6113eda553503ebaff8d3027fecbf8798 --- /dev/null +++ b/maze/task4/maps/level_step3/table/85.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/86.txt b/maze/task4/maps/level_step3/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..549158c64ed96431696106b86baad27932dbe374 --- /dev/null +++ b/maze/task4/maps/level_step3/table/86.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/87.txt b/maze/task4/maps/level_step3/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..d95d57051a8cf001551b27e4b16e2bf55c2001d7 --- /dev/null +++ b/maze/task4/maps/level_step3/table/87.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | # | _ | +| Row 3 | # | * | @ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/88.txt b/maze/task4/maps/level_step3/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d9706ff6bbf8e975d8e0896c4cde96fccd9d1ab --- /dev/null +++ b/maze/task4/maps/level_step3/table/88.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/89.txt b/maze/task4/maps/level_step3/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f9d067993b4e167b920e279ddd055052e84c911 --- /dev/null +++ b/maze/task4/maps/level_step3/table/89.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step3/table/9.txt b/maze/task4/maps/level_step3/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5ac58126560887cf9902b5a659a786e16e5de26 --- /dev/null +++ b/maze/task4/maps/level_step3/table/9.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task4/maps/level_step3/table/90.txt b/maze/task4/maps/level_step3/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..663ea411111cc2efcd9fa95e302388de6bb2d85e --- /dev/null +++ b/maze/task4/maps/level_step3/table/90.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/91.txt b/maze/task4/maps/level_step3/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5d18249ca60ef5596b8b70c44644ffbc951bcca --- /dev/null +++ b/maze/task4/maps/level_step3/table/91.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step3/table/92.txt b/maze/task4/maps/level_step3/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..f127bc7294e35835c52ce2713dfbd07d288abe4a --- /dev/null +++ b/maze/task4/maps/level_step3/table/92.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/93.txt b/maze/task4/maps/level_step3/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3a551f73f6ed945abc68ec321d51c622f8214d3 --- /dev/null +++ b/maze/task4/maps/level_step3/table/93.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step3/table/94.txt b/maze/task4/maps/level_step3/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd36699cc97c9e1261cc3c2beb6509ebfd0fc54f --- /dev/null +++ b/maze/task4/maps/level_step3/table/94.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | diff --git a/maze/task4/maps/level_step3/table/95.txt b/maze/task4/maps/level_step3/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cfddeed458210d22a1fdd41d27cfde9b2e2c62f --- /dev/null +++ b/maze/task4/maps/level_step3/table/95.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | diff --git a/maze/task4/maps/level_step3/table/96.txt b/maze/task4/maps/level_step3/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d3617d2351609c05cc950f557011977d2a0ea8 --- /dev/null +++ b/maze/task4/maps/level_step3/table/96.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | @ | _ | diff --git a/maze/task4/maps/level_step3/table/97.txt b/maze/task4/maps/level_step3/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..18326e3e099f68517b35e02e857b8a1073462cda --- /dev/null +++ b/maze/task4/maps/level_step3/table/97.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step3/table/98.txt b/maze/task4/maps/level_step3/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..31107581bdcc9fdb56ca838c91627ed423008483 --- /dev/null +++ b/maze/task4/maps/level_step3/table/98.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | * | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/table/99.txt b/maze/task4/maps/level_step3/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..33d7938b7066fd84a556f9f4f58d83b891a7e093 --- /dev/null +++ b/maze/task4/maps/level_step3/table/99.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step3/text/0.txt b/maze/task4/maps/level_step3/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed46ff986eabcbfa5704583f5402f52a9c0c483 --- /dev/null +++ b/maze/task4/maps/level_step3/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFFH +FFSFF +GFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/1.txt b/maze/task4/maps/level_step3/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a34c55c2e4e951fa6e13cb32e1e733d6fe05eb24 --- /dev/null +++ b/maze/task4/maps/level_step3/text/1.txt @@ -0,0 +1,5 @@ +FFSFF +FFFHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/10.txt b/maze/task4/maps/level_step3/text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..59e6ae7aa3f95ccf01f4ebd32a41d3888f18ead5 --- /dev/null +++ b/maze/task4/maps/level_step3/text/10.txt @@ -0,0 +1,5 @@ +FFFHF +FFSFF +FFFFF +FHFFG +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/11.txt b/maze/task4/maps/level_step3/text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b36d7ad3f8f3c1af819ce36670d8424866386e2 --- /dev/null +++ b/maze/task4/maps/level_step3/text/11.txt @@ -0,0 +1,5 @@ +FFFFF +FHFHF +FFFFF +FHFFF +GSFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/12.txt b/maze/task4/maps/level_step3/text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..888e026b512b980a2ce07cdea49cbbf8d23f2883 --- /dev/null +++ b/maze/task4/maps/level_step3/text/12.txt @@ -0,0 +1,5 @@ +FFHFH +FFFFF +FHFFF +FFSFF +FGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/13.txt b/maze/task4/maps/level_step3/text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed08431d6972bf96ffcc3634a9de904e934aa7c7 --- /dev/null +++ b/maze/task4/maps/level_step3/text/13.txt @@ -0,0 +1,5 @@ +HFFFG +FFHHF +FFFHF +SFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/14.txt b/maze/task4/maps/level_step3/text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b6b0093a35e68cc6890474fe566e9d6f647c41b --- /dev/null +++ b/maze/task4/maps/level_step3/text/14.txt @@ -0,0 +1,5 @@ +FFHSF +FFHGF +FFFHF +HFFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/15.txt b/maze/task4/maps/level_step3/text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8be3adb78b232c3f8cd719ae2a87bc2a1604f37 --- /dev/null +++ b/maze/task4/maps/level_step3/text/15.txt @@ -0,0 +1,5 @@ +FFFFF +HFFFS +FFFFF +FFHHF +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/16.txt b/maze/task4/maps/level_step3/text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..231fc1515c20ac2410f721a0d2afaef22ab92069 --- /dev/null +++ b/maze/task4/maps/level_step3/text/16.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +FFSHH +GFFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/17.txt b/maze/task4/maps/level_step3/text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..73dab1ba95175bec5aa12ba3b55d753db6c52945 --- /dev/null +++ b/maze/task4/maps/level_step3/text/17.txt @@ -0,0 +1,5 @@ +FHFHG +FFFFF +FFFSF +FFHFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/18.txt b/maze/task4/maps/level_step3/text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..15a7f582ac957330aed7ae16f5b9d1b910cf1150 --- /dev/null +++ b/maze/task4/maps/level_step3/text/18.txt @@ -0,0 +1,5 @@ +FFHFF +FFFFF +HFHSH +FFGHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/19.txt b/maze/task4/maps/level_step3/text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..961b7bea840ba793a56f11d56bb893063cc54a7a --- /dev/null +++ b/maze/task4/maps/level_step3/text/19.txt @@ -0,0 +1,5 @@ +HHFFH +FFFHH +FFFFH +FGFHF +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/2.txt b/maze/task4/maps/level_step3/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cb13026072ba0623bbd69f829f69e99a8eebd14 --- /dev/null +++ b/maze/task4/maps/level_step3/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +FFHHH +FFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/20.txt b/maze/task4/maps/level_step3/text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0f38ca5677738dabe064992e1f609ca17315b01 --- /dev/null +++ b/maze/task4/maps/level_step3/text/20.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFH +FFFHS +FHFFF +FFGFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/21.txt b/maze/task4/maps/level_step3/text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8eb819103d1d273329ea7f5230cb3fde72e9ee8 --- /dev/null +++ b/maze/task4/maps/level_step3/text/21.txt @@ -0,0 +1,5 @@ +FFFFF +FFFSF +FFFFH +HFFFF +FFFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/22.txt b/maze/task4/maps/level_step3/text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb5639d7d1d4bd6afb434848124983ba34fab18d --- /dev/null +++ b/maze/task4/maps/level_step3/text/22.txt @@ -0,0 +1,5 @@ +FFGHF +FFFFS +FHFFF +HFFFF +HFHHH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/23.txt b/maze/task4/maps/level_step3/text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..423ff21a20bfa31b85063cd8146945e67dd69223 --- /dev/null +++ b/maze/task4/maps/level_step3/text/23.txt @@ -0,0 +1,5 @@ +FFGFF +FHFFH +FFFFF +SFFHF +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/24.txt b/maze/task4/maps/level_step3/text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8378b2f1e0de611494ed1c672128062f4585165 --- /dev/null +++ b/maze/task4/maps/level_step3/text/24.txt @@ -0,0 +1,5 @@ +GSHHF +FFHFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/25.txt b/maze/task4/maps/level_step3/text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e32256d198c93c47d9633d8bc09313a08758441f --- /dev/null +++ b/maze/task4/maps/level_step3/text/25.txt @@ -0,0 +1,5 @@ +FFFFF +HSFFH +HFGFF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/26.txt b/maze/task4/maps/level_step3/text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8d565d4933b6a728d1374e5504760fccc8a5e88 --- /dev/null +++ b/maze/task4/maps/level_step3/text/26.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHF +FHHFF +FHSFF +FGFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/27.txt b/maze/task4/maps/level_step3/text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ecf44344425d9f9a297e772d976477862548dae --- /dev/null +++ b/maze/task4/maps/level_step3/text/27.txt @@ -0,0 +1,5 @@ +FFHFF +FSHFH +FFHFH +FFFFF +FHFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/28.txt b/maze/task4/maps/level_step3/text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..8074cfe70c946be66c37b032d242173868787a38 --- /dev/null +++ b/maze/task4/maps/level_step3/text/28.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFF +FFHFS +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/29.txt b/maze/task4/maps/level_step3/text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..66e767153df268a844e9a066dec88681f12035b2 --- /dev/null +++ b/maze/task4/maps/level_step3/text/29.txt @@ -0,0 +1,5 @@ +FFFFF +SFFFF +HFFHF +FHHFF +GFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/3.txt b/maze/task4/maps/level_step3/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a9e740bd78265bf06ae44f5e44d9c50f1f66bb --- /dev/null +++ b/maze/task4/maps/level_step3/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHFFF +FFFFF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/30.txt b/maze/task4/maps/level_step3/text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..28465da818375140e8586a47221543236152470b --- /dev/null +++ b/maze/task4/maps/level_step3/text/30.txt @@ -0,0 +1,5 @@ +FFFFF +FFHFF +FFFFH +HFFFG +FFHSH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/31.txt b/maze/task4/maps/level_step3/text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..3253f95e50766585f125d60cf6b8d787aba6fa3b --- /dev/null +++ b/maze/task4/maps/level_step3/text/31.txt @@ -0,0 +1,5 @@ +FFFHF +HHFHH +FFHFF +SFFFF +FHFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/32.txt b/maze/task4/maps/level_step3/text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..c13397ccfeb362342b8609c31d362eafb6b0496d --- /dev/null +++ b/maze/task4/maps/level_step3/text/32.txt @@ -0,0 +1,5 @@ +GFFHH +FFFFF +FFFFF +FFSHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/33.txt b/maze/task4/maps/level_step3/text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..000f71c12591a16f4aa9cfc222ce76be922122d1 --- /dev/null +++ b/maze/task4/maps/level_step3/text/33.txt @@ -0,0 +1,5 @@ +FFFHF +FHHFH +FFFFS +FFFHF +FFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/34.txt b/maze/task4/maps/level_step3/text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a2cb6390f12e67275eee92ceebb873af62a1add --- /dev/null +++ b/maze/task4/maps/level_step3/text/34.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +HFGHH +SFFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/35.txt b/maze/task4/maps/level_step3/text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..65de68cdd358bdd335fc70396c06ad49bf911a15 --- /dev/null +++ b/maze/task4/maps/level_step3/text/35.txt @@ -0,0 +1,5 @@ +FFFGH +FFFFH +FFFFF +SHHFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/36.txt b/maze/task4/maps/level_step3/text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..b674350167e41f7c2dee6ba327b678277be8a364 --- /dev/null +++ b/maze/task4/maps/level_step3/text/36.txt @@ -0,0 +1,5 @@ +FFFFF +FFHGF +HFHFH +FFSFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/37.txt b/maze/task4/maps/level_step3/text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef704e916b02baaa6f41034d849c41a7f1efb9e9 --- /dev/null +++ b/maze/task4/maps/level_step3/text/37.txt @@ -0,0 +1,5 @@ +HFFFH +FHFSF +HFFHF +HFFFF +HFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/38.txt b/maze/task4/maps/level_step3/text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..60dc29135b8762e0a2a61ad8570315bc81036cfe --- /dev/null +++ b/maze/task4/maps/level_step3/text/38.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHG +FFFHF +FFFHF +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/39.txt b/maze/task4/maps/level_step3/text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bd8a6ba6524b8e129bec346a76b6d4a61f2cee --- /dev/null +++ b/maze/task4/maps/level_step3/text/39.txt @@ -0,0 +1,5 @@ +FFFFG +SFFFF +HFFFH +FFFFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/4.txt b/maze/task4/maps/level_step3/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..87f1664a02ab663fedfb675c0cacd19f152cd798 --- /dev/null +++ b/maze/task4/maps/level_step3/text/4.txt @@ -0,0 +1,5 @@ +FFFFS +FFFFH +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/40.txt b/maze/task4/maps/level_step3/text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f65e68209a9f0f12639529a15bd74b9fd662efbf --- /dev/null +++ b/maze/task4/maps/level_step3/text/40.txt @@ -0,0 +1,5 @@ +FFFFF +HHGFF +FFFFF +SFFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/41.txt b/maze/task4/maps/level_step3/text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a5695b767d6388d27406df8a44e334fa99049e8 --- /dev/null +++ b/maze/task4/maps/level_step3/text/41.txt @@ -0,0 +1,5 @@ +HFHFF +FFFFF +FSFFF +FHHGH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/42.txt b/maze/task4/maps/level_step3/text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..884b187a6b3d03e3e7a4c6da0520341374854eaa --- /dev/null +++ b/maze/task4/maps/level_step3/text/42.txt @@ -0,0 +1,5 @@ +FFHHH +FFHFF +FFSFF +FFFHH +HHGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/43.txt b/maze/task4/maps/level_step3/text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..997ab6291f57d3763645bcf5abb3842971968180 --- /dev/null +++ b/maze/task4/maps/level_step3/text/43.txt @@ -0,0 +1,5 @@ +FFSFG +FFHFF +FFFFF +FFFFF +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/44.txt b/maze/task4/maps/level_step3/text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f26de19ad6c7bf00f9b2c44b349c17468c78b0f --- /dev/null +++ b/maze/task4/maps/level_step3/text/44.txt @@ -0,0 +1,5 @@ +FFFHF +GFFFF +HHFFH +FSFHF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/45.txt b/maze/task4/maps/level_step3/text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7118d7c6287c8ba4092bbb643c03d6d6d1c6832 --- /dev/null +++ b/maze/task4/maps/level_step3/text/45.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFS +FHFFF +FHFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/46.txt b/maze/task4/maps/level_step3/text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cc3dcfe74a55bb994557601f78c35a9d48b5f3d --- /dev/null +++ b/maze/task4/maps/level_step3/text/46.txt @@ -0,0 +1,5 @@ +FFHFF +SHFFF +HFFFF +HFHFF +FGHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/47.txt b/maze/task4/maps/level_step3/text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0def1c9496941ac19a878ae7b86748aff477f708 --- /dev/null +++ b/maze/task4/maps/level_step3/text/47.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +FGHFF +HHFSH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/48.txt b/maze/task4/maps/level_step3/text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b0e2a8ad77306594bfde24430635753281ec790 --- /dev/null +++ b/maze/task4/maps/level_step3/text/48.txt @@ -0,0 +1,5 @@ +FHHFS +HFHHF +FFFFF +FFGFF +FHHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/49.txt b/maze/task4/maps/level_step3/text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..f554968d05552d6b399c4c1b053c0929f59742ba --- /dev/null +++ b/maze/task4/maps/level_step3/text/49.txt @@ -0,0 +1,5 @@ +HFFFF +HSGHF +HFFFF +HHFFH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/5.txt b/maze/task4/maps/level_step3/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fd06708e0ed20f8a77ea076f4245b16e8af5beb --- /dev/null +++ b/maze/task4/maps/level_step3/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FFFHF +FSFFF +FHFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/50.txt b/maze/task4/maps/level_step3/text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d3250e7aeaaec11b6f8d3ce100eb4725d41bc48 --- /dev/null +++ b/maze/task4/maps/level_step3/text/50.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFF +FHFFF +FFHFF +FHFSG \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/51.txt b/maze/task4/maps/level_step3/text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..f53147d5a68d0e6c3d754f0e625de97b2e4860de --- /dev/null +++ b/maze/task4/maps/level_step3/text/51.txt @@ -0,0 +1,5 @@ +GSHFF +FFFFF +FHFHF +FFFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/52.txt b/maze/task4/maps/level_step3/text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..d68b9aa83c1918acbe8ea33a1fb342f2c013c8bd --- /dev/null +++ b/maze/task4/maps/level_step3/text/52.txt @@ -0,0 +1,5 @@ +FFFFF +GSFHF +FFFFF +FFFHH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/53.txt b/maze/task4/maps/level_step3/text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef7cc10ce6aa5f64e8542574a25318d086ba9de3 --- /dev/null +++ b/maze/task4/maps/level_step3/text/53.txt @@ -0,0 +1,5 @@ +HGHFF +HSHFF +HFHHF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/54.txt b/maze/task4/maps/level_step3/text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..5512aa69d8efe00df5a5dbfae819bacfc64d8032 --- /dev/null +++ b/maze/task4/maps/level_step3/text/54.txt @@ -0,0 +1,5 @@ +FFFFF +GFFFF +FFFFF +FFFHH +FSFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/55.txt b/maze/task4/maps/level_step3/text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..28b1c6316851d0b49af7e7de7273c22c42706833 --- /dev/null +++ b/maze/task4/maps/level_step3/text/55.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFF +HFHSF +FHFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/56.txt b/maze/task4/maps/level_step3/text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..971e45b0a3a75e50489ec8e1c10575bddbf948f3 --- /dev/null +++ b/maze/task4/maps/level_step3/text/56.txt @@ -0,0 +1,5 @@ +FFFFS +FGFFF +FHFFF +FFFFF +HFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/57.txt b/maze/task4/maps/level_step3/text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..b17b4bc4c9c0a03ee5b69b237680700368ba17f6 --- /dev/null +++ b/maze/task4/maps/level_step3/text/57.txt @@ -0,0 +1,5 @@ +FFHFF +FFHFS +FGHFF +HFFFF +FHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/58.txt b/maze/task4/maps/level_step3/text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fe4c79088e48f47805288f334657029ff554ce8 --- /dev/null +++ b/maze/task4/maps/level_step3/text/58.txt @@ -0,0 +1,5 @@ +HGFFF +FSHHF +HFFFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/59.txt b/maze/task4/maps/level_step3/text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..4207c78bee9d63c2524404354457ec429201b1f1 --- /dev/null +++ b/maze/task4/maps/level_step3/text/59.txt @@ -0,0 +1,5 @@ +FFFFF +FHFSF +FGFFF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/6.txt b/maze/task4/maps/level_step3/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9277db9448443fe0cc50e301886dbfa02862ff92 --- /dev/null +++ b/maze/task4/maps/level_step3/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FFFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/60.txt b/maze/task4/maps/level_step3/text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e9d18ee845818cc992138d6283bcf512b3da00a --- /dev/null +++ b/maze/task4/maps/level_step3/text/60.txt @@ -0,0 +1,5 @@ +HFSFF +HFFHG +FFHFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/61.txt b/maze/task4/maps/level_step3/text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6af81abc1a262d82872417ad983657dba2370ec --- /dev/null +++ b/maze/task4/maps/level_step3/text/61.txt @@ -0,0 +1,5 @@ +FSHHF +FFGFF +FFFFF +FHFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/62.txt b/maze/task4/maps/level_step3/text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..3952e4fdb0fccb067a79c4a444f6e21b43b6ff75 --- /dev/null +++ b/maze/task4/maps/level_step3/text/62.txt @@ -0,0 +1,5 @@ +GFHFF +FFHFH +FFHFF +FHHHH +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/63.txt b/maze/task4/maps/level_step3/text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e320d80e904723ef781378e0a094882f0d33835 --- /dev/null +++ b/maze/task4/maps/level_step3/text/63.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FFFHF +FFHFF +FGFSH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/64.txt b/maze/task4/maps/level_step3/text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..33ae567c03476fa170d7874afb3d918b014f44cf --- /dev/null +++ b/maze/task4/maps/level_step3/text/64.txt @@ -0,0 +1,5 @@ +FHHFF +FHSFF +FFFFF +FFFGF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/65.txt b/maze/task4/maps/level_step3/text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2bca436126922b631a690efc68e221bf7c6ff83 --- /dev/null +++ b/maze/task4/maps/level_step3/text/65.txt @@ -0,0 +1,5 @@ +FHFFF +HFFFH +FFFFF +FSFFF +FFFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/66.txt b/maze/task4/maps/level_step3/text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e942d8641a40867d31735de0449f133c62755d9 --- /dev/null +++ b/maze/task4/maps/level_step3/text/66.txt @@ -0,0 +1,5 @@ +HFFFH +FHSGH +HFHFF +FFFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/67.txt b/maze/task4/maps/level_step3/text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fcc218ce02f344237ab29da277ac6ad05db0c55 --- /dev/null +++ b/maze/task4/maps/level_step3/text/67.txt @@ -0,0 +1,5 @@ +FFFHH +FFFFF +FHHFF +HFFFH +SGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/68.txt b/maze/task4/maps/level_step3/text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..79907c8a4797d52fa568b6ed5df77f25d7c6977d --- /dev/null +++ b/maze/task4/maps/level_step3/text/68.txt @@ -0,0 +1,5 @@ +FFFFF +SFFFF +HFFFF +FGFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/69.txt b/maze/task4/maps/level_step3/text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..c90da4f7a142e31e3631acce83522c4e7f38e31d --- /dev/null +++ b/maze/task4/maps/level_step3/text/69.txt @@ -0,0 +1,5 @@ +FFHFF +FHFSH +FFFFH +FHFGH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/7.txt b/maze/task4/maps/level_step3/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1cd6ef21cd427b57e3ed724a1df59f577d2dc96 --- /dev/null +++ b/maze/task4/maps/level_step3/text/7.txt @@ -0,0 +1,5 @@ +FFFGF +FFSFF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/70.txt b/maze/task4/maps/level_step3/text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..40f99668819656884f69be6c6f9193835102d36b --- /dev/null +++ b/maze/task4/maps/level_step3/text/70.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +HFSHF +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/71.txt b/maze/task4/maps/level_step3/text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..314334c85371851c814d49d687cc5b278693b537 --- /dev/null +++ b/maze/task4/maps/level_step3/text/71.txt @@ -0,0 +1,5 @@ +FFSFG +FFHHF +FHHFF +FHFFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/72.txt b/maze/task4/maps/level_step3/text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f90dcd9afca904ccfa56aa7de102b47269a5c94 --- /dev/null +++ b/maze/task4/maps/level_step3/text/72.txt @@ -0,0 +1,5 @@ +FFFSF +HHFFH +FHHHF +HFFFF +FFHGF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/73.txt b/maze/task4/maps/level_step3/text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ede5687e1dd1759aa6d930093ea15b44c848337 --- /dev/null +++ b/maze/task4/maps/level_step3/text/73.txt @@ -0,0 +1,5 @@ +HHFFF +FFFHF +FFSFF +FGFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/74.txt b/maze/task4/maps/level_step3/text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8179c9f88f5e1220f060acdabae060336dfaf79 --- /dev/null +++ b/maze/task4/maps/level_step3/text/74.txt @@ -0,0 +1,5 @@ +HFFFH +FFHFF +FFFFF +GFFFS +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/75.txt b/maze/task4/maps/level_step3/text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ff0b51b8d0aa97ac7840b2e21b42028f2bcff9f --- /dev/null +++ b/maze/task4/maps/level_step3/text/75.txt @@ -0,0 +1,5 @@ +FFFFF +FHGFF +HHSFF +FFFFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/76.txt b/maze/task4/maps/level_step3/text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bcd2a62e1956cdc61a352cd83413bc4b614e8ad --- /dev/null +++ b/maze/task4/maps/level_step3/text/76.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +SHFFH +GHFFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/77.txt b/maze/task4/maps/level_step3/text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc42e4e9bb88223495894d2bb90c6ffca8cdeab1 --- /dev/null +++ b/maze/task4/maps/level_step3/text/77.txt @@ -0,0 +1,5 @@ +FFFFF +FFFGF +FFFHF +FFHFF +FSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/78.txt b/maze/task4/maps/level_step3/text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..b48a7ce896dcce11c5a49f7f6d3eb37194595757 --- /dev/null +++ b/maze/task4/maps/level_step3/text/78.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFS +FHHFF +FHFFF +HFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/79.txt b/maze/task4/maps/level_step3/text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..45cd7cb1e540ae8621d45f4013c4b98d2e6208df --- /dev/null +++ b/maze/task4/maps/level_step3/text/79.txt @@ -0,0 +1,5 @@ +FFFFG +FFSHF +FFFHH +FFFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/8.txt b/maze/task4/maps/level_step3/text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a8e62caa304b5b3ff4061c4402075425ccaa59c --- /dev/null +++ b/maze/task4/maps/level_step3/text/8.txt @@ -0,0 +1,5 @@ +FFFGF +HFFFF +FFFHF +HHFHF +HSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/80.txt b/maze/task4/maps/level_step3/text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eddf8404aad83ef819eb7a6d37a203b209e6391 --- /dev/null +++ b/maze/task4/maps/level_step3/text/80.txt @@ -0,0 +1,5 @@ +HFFFF +FFHFF +HFFFF +HFFFF +GSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/81.txt b/maze/task4/maps/level_step3/text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..77db1a8e5d42a787360369bf5576852dde2b417d --- /dev/null +++ b/maze/task4/maps/level_step3/text/81.txt @@ -0,0 +1,5 @@ +FFHFF +FFGFF +FSFFF +FFFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/82.txt b/maze/task4/maps/level_step3/text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..890c75b0ae74d5408543d2af224ccd499bc9dc21 --- /dev/null +++ b/maze/task4/maps/level_step3/text/82.txt @@ -0,0 +1,5 @@ +GHFFF +FFFFF +FFFFF +FFFHF +SHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/83.txt b/maze/task4/maps/level_step3/text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ae609d4487d79948579ebd59a6c7ebc6b28a636 --- /dev/null +++ b/maze/task4/maps/level_step3/text/83.txt @@ -0,0 +1,5 @@ +FHHFF +HFFHF +FFFFF +GFFFF +FFFSH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/84.txt b/maze/task4/maps/level_step3/text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..f781bda19040e929c129e09cdc5fe335054da80a --- /dev/null +++ b/maze/task4/maps/level_step3/text/84.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FGHHF +FFFHF +FSFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/85.txt b/maze/task4/maps/level_step3/text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d9c07f5a9c4fc7fcdd4fb735482d1b1bf422619 --- /dev/null +++ b/maze/task4/maps/level_step3/text/85.txt @@ -0,0 +1,5 @@ +HHFHF +FHFHF +FFFFS +FFFHG +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/86.txt b/maze/task4/maps/level_step3/text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..dda180ba0de59bd7c18c06567b55392a336eb91d --- /dev/null +++ b/maze/task4/maps/level_step3/text/86.txt @@ -0,0 +1,5 @@ +FFHHF +FFFFF +SFGHF +HHFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/87.txt b/maze/task4/maps/level_step3/text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..acc88a702d81f6ff0cf858034ff90e8cc3c19ed0 --- /dev/null +++ b/maze/task4/maps/level_step3/text/87.txt @@ -0,0 +1,5 @@ +HFFFF +FHHHF +HGSFF +HFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/88.txt b/maze/task4/maps/level_step3/text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..4133d510da32abaaea60667d2df629a44bf3fd59 --- /dev/null +++ b/maze/task4/maps/level_step3/text/88.txt @@ -0,0 +1,5 @@ +FFGHF +HHFFF +HHFSF +HHFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/89.txt b/maze/task4/maps/level_step3/text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..87dca12d5361052e7ba7abc56b9ab1d0f764bfee --- /dev/null +++ b/maze/task4/maps/level_step3/text/89.txt @@ -0,0 +1,5 @@ +FHHFF +SFFGF +HFFFF +FFFFF +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/9.txt b/maze/task4/maps/level_step3/text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8233e7016eea56e41f863f782b38a3b93ac95d7 --- /dev/null +++ b/maze/task4/maps/level_step3/text/9.txt @@ -0,0 +1,5 @@ +HHFFH +HFFGH +HSHFH +FHFFF +HHHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/90.txt b/maze/task4/maps/level_step3/text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..05ce267f9b3c59a3be65631a9312ddae4aa9c93e --- /dev/null +++ b/maze/task4/maps/level_step3/text/90.txt @@ -0,0 +1,5 @@ +FFFFF +FFHFS +FFFFH +GHFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/91.txt b/maze/task4/maps/level_step3/text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..00f969650a57fe9fec3bbca28adc9b351dd6a60c --- /dev/null +++ b/maze/task4/maps/level_step3/text/91.txt @@ -0,0 +1,5 @@ +FHHHF +FSFFF +GFFFF +FFHFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/92.txt b/maze/task4/maps/level_step3/text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..c08ee6abff42f7c5ced6a3b2dfb66250281cdff6 --- /dev/null +++ b/maze/task4/maps/level_step3/text/92.txt @@ -0,0 +1,5 @@ +FFSFH +FHFFF +FGFFF +FFFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/93.txt b/maze/task4/maps/level_step3/text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d2120b79cc6b7576bb77b360d7559f9bc319ff --- /dev/null +++ b/maze/task4/maps/level_step3/text/93.txt @@ -0,0 +1,5 @@ +HFFFF +FSFHF +FGHFF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/94.txt b/maze/task4/maps/level_step3/text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..390be0a3c7a40608f7705dab77e7d111f95cd57d --- /dev/null +++ b/maze/task4/maps/level_step3/text/94.txt @@ -0,0 +1,5 @@ +HFFFF +FHFFF +GFFFF +FFFFH +FFSFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/95.txt b/maze/task4/maps/level_step3/text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b8d73fdfd2a4ca5afc95744dc144a556bde332c --- /dev/null +++ b/maze/task4/maps/level_step3/text/95.txt @@ -0,0 +1,5 @@ +GHFFH +FFFFF +FFFSH +FHFFF +FFHFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/96.txt b/maze/task4/maps/level_step3/text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e11fa0349187aba89005e952dabfd052c8ad94 --- /dev/null +++ b/maze/task4/maps/level_step3/text/96.txt @@ -0,0 +1,5 @@ +HFFFF +HHHFF +FGFFF +FHHFF +FHFSF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/97.txt b/maze/task4/maps/level_step3/text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dff9259ae73b447065883939ff5959a3f00bc68 --- /dev/null +++ b/maze/task4/maps/level_step3/text/97.txt @@ -0,0 +1,5 @@ +GSFFF +HFFFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/98.txt b/maze/task4/maps/level_step3/text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..c808504263ee8139550be585df30cdc5f2dec983 --- /dev/null +++ b/maze/task4/maps/level_step3/text/98.txt @@ -0,0 +1,5 @@ +HSHGF +FFHFF +FFFFF +HFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step3/text/99.txt b/maze/task4/maps/level_step3/text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..120aa1bbd40eb42811ef2485260feec00ab77780 --- /dev/null +++ b/maze/task4/maps/level_step3/text/99.txt @@ -0,0 +1,5 @@ +FFFFF +GHFFS +FFHFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/0.txt b/maze/task4/maps/level_step5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/0.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/1.txt b/maze/task4/maps/level_step5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/1.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/10.txt b/maze/task4/maps/level_step5/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/10.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/11.txt b/maze/task4/maps/level_step5/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/11.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/12.txt b/maze/task4/maps/level_step5/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/12.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/13.txt b/maze/task4/maps/level_step5/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/13.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/14.txt b/maze/task4/maps/level_step5/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/14.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/15.txt b/maze/task4/maps/level_step5/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/15.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/16.txt b/maze/task4/maps/level_step5/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/16.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/17.txt b/maze/task4/maps/level_step5/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/17.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/18.txt b/maze/task4/maps/level_step5/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/18.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/19.txt b/maze/task4/maps/level_step5/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/19.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/2.txt b/maze/task4/maps/level_step5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/20.txt b/maze/task4/maps/level_step5/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/20.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/21.txt b/maze/task4/maps/level_step5/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/21.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/22.txt b/maze/task4/maps/level_step5/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/22.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/23.txt b/maze/task4/maps/level_step5/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/23.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/24.txt b/maze/task4/maps/level_step5/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/24.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/25.txt b/maze/task4/maps/level_step5/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/26.txt b/maze/task4/maps/level_step5/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/26.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/27.txt b/maze/task4/maps/level_step5/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/27.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/28.txt b/maze/task4/maps/level_step5/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/28.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/29.txt b/maze/task4/maps/level_step5/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/29.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/3.txt b/maze/task4/maps/level_step5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/30.txt b/maze/task4/maps/level_step5/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/30.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/31.txt b/maze/task4/maps/level_step5/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/31.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/32.txt b/maze/task4/maps/level_step5/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/32.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/33.txt b/maze/task4/maps/level_step5/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/33.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/34.txt b/maze/task4/maps/level_step5/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/34.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/35.txt b/maze/task4/maps/level_step5/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/35.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/36.txt b/maze/task4/maps/level_step5/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/36.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/37.txt b/maze/task4/maps/level_step5/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/37.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/38.txt b/maze/task4/maps/level_step5/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/38.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/39.txt b/maze/task4/maps/level_step5/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/4.txt b/maze/task4/maps/level_step5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/4.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/40.txt b/maze/task4/maps/level_step5/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/40.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/41.txt b/maze/task4/maps/level_step5/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/41.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/42.txt b/maze/task4/maps/level_step5/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/42.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/43.txt b/maze/task4/maps/level_step5/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/43.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/44.txt b/maze/task4/maps/level_step5/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/44.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/45.txt b/maze/task4/maps/level_step5/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/45.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/46.txt b/maze/task4/maps/level_step5/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/46.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/47.txt b/maze/task4/maps/level_step5/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/47.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/48.txt b/maze/task4/maps/level_step5/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/48.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/49.txt b/maze/task4/maps/level_step5/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/49.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/5.txt b/maze/task4/maps/level_step5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/5.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/50.txt b/maze/task4/maps/level_step5/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/50.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/51.txt b/maze/task4/maps/level_step5/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/51.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/52.txt b/maze/task4/maps/level_step5/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/52.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/53.txt b/maze/task4/maps/level_step5/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/53.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/54.txt b/maze/task4/maps/level_step5/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/54.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/55.txt b/maze/task4/maps/level_step5/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/55.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/56.txt b/maze/task4/maps/level_step5/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/56.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/57.txt b/maze/task4/maps/level_step5/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/57.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/58.txt b/maze/task4/maps/level_step5/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/58.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/59.txt b/maze/task4/maps/level_step5/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/59.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/6.txt b/maze/task4/maps/level_step5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/60.txt b/maze/task4/maps/level_step5/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/60.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/61.txt b/maze/task4/maps/level_step5/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/61.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/62.txt b/maze/task4/maps/level_step5/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/62.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/63.txt b/maze/task4/maps/level_step5/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/63.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/64.txt b/maze/task4/maps/level_step5/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/64.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/65.txt b/maze/task4/maps/level_step5/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/65.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/66.txt b/maze/task4/maps/level_step5/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/66.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/67.txt b/maze/task4/maps/level_step5/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/67.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/68.txt b/maze/task4/maps/level_step5/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/68.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/69.txt b/maze/task4/maps/level_step5/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/69.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/7.txt b/maze/task4/maps/level_step5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/7.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/70.txt b/maze/task4/maps/level_step5/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/70.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/71.txt b/maze/task4/maps/level_step5/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/71.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/72.txt b/maze/task4/maps/level_step5/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/72.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/73.txt b/maze/task4/maps/level_step5/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/73.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/74.txt b/maze/task4/maps/level_step5/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/74.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/75.txt b/maze/task4/maps/level_step5/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/75.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/76.txt b/maze/task4/maps/level_step5/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/76.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/77.txt b/maze/task4/maps/level_step5/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/77.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/78.txt b/maze/task4/maps/level_step5/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/78.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/79.txt b/maze/task4/maps/level_step5/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/79.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/8.txt b/maze/task4/maps/level_step5/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/8.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/80.txt b/maze/task4/maps/level_step5/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/80.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/81.txt b/maze/task4/maps/level_step5/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/81.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/82.txt b/maze/task4/maps/level_step5/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/82.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/83.txt b/maze/task4/maps/level_step5/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/83.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/84.txt b/maze/task4/maps/level_step5/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/84.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/85.txt b/maze/task4/maps/level_step5/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/85.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/86.txt b/maze/task4/maps/level_step5/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/86.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/87.txt b/maze/task4/maps/level_step5/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/87.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/88.txt b/maze/task4/maps/level_step5/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/88.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/89.txt b/maze/task4/maps/level_step5/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/89.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/9.txt b/maze/task4/maps/level_step5/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/9.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/90.txt b/maze/task4/maps/level_step5/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/90.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/91.txt b/maze/task4/maps/level_step5/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/91.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/92.txt b/maze/task4/maps/level_step5/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/92.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/93.txt b/maze/task4/maps/level_step5/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/93.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/94.txt b/maze/task4/maps/level_step5/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/94.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/95.txt b/maze/task4/maps/level_step5/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/95.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/96.txt b/maze/task4/maps/level_step5/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/96.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/97.txt b/maze/task4/maps/level_step5/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/97.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/98.txt b/maze/task4/maps/level_step5/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step5/answer/98.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step5/answer/99.txt b/maze/task4/maps/level_step5/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step5/answer/99.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step5/img/0.png b/maze/task4/maps/level_step5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3193473dd3e92562f567fec9ecbf8c4b5ff546cb --- /dev/null +++ b/maze/task4/maps/level_step5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711c803e2b199bee546cc1c2c55e5f002400cfdc9a4bf75c695894a4a5cf919f +size 9481 diff --git a/maze/task4/maps/level_step5/img/1.png b/maze/task4/maps/level_step5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f343446822ebf94b71b14c3eeb39c63926ce1b75 --- /dev/null +++ b/maze/task4/maps/level_step5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662a2be0231567d54a9bb941372aa13dba653e840e108fc5bd67999b9808970b +size 8576 diff --git a/maze/task4/maps/level_step5/img/10.png b/maze/task4/maps/level_step5/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..36afe96af778ab9f51ea10ad579e7cfc72bf656c --- /dev/null +++ b/maze/task4/maps/level_step5/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d8a4ef9af3d832ffef7907e5bd8f7ed70a602d733273507c5ff1d184503df1 +size 9540 diff --git a/maze/task4/maps/level_step5/img/11.png b/maze/task4/maps/level_step5/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c7357d552d3c8e1f440ced79366095f6d2c89ad5 --- /dev/null +++ b/maze/task4/maps/level_step5/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b939bf5bb9abe61a26871d6d6fa526be12c594b67ce46485417d0fa931c036 +size 9476 diff --git a/maze/task4/maps/level_step5/img/12.png b/maze/task4/maps/level_step5/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..961a186623ee0011ec0d5087f124ba6956dd303c --- /dev/null +++ b/maze/task4/maps/level_step5/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2c3ba8f3794820f29c4621ad30015477f75a684effd0f43c13791ef2b6e84e +size 8732 diff --git a/maze/task4/maps/level_step5/img/13.png b/maze/task4/maps/level_step5/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8ba18211f4931f2bf8c71a89990efa13d96573b9 --- /dev/null +++ b/maze/task4/maps/level_step5/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91917c1495fda86e5bfcf71e5b26b77bd894844f90f98f32d24a662e9649de63 +size 9546 diff --git a/maze/task4/maps/level_step5/img/14.png b/maze/task4/maps/level_step5/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a959b16b2d47a4ee7034609446712c1c93efda --- /dev/null +++ b/maze/task4/maps/level_step5/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4278d644fee0fcc945ffb661826fba43399479f20849324f828d860ce42896b7 +size 9498 diff --git a/maze/task4/maps/level_step5/img/15.png b/maze/task4/maps/level_step5/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..00cb6105e09a5127a1d4de5ce8a97e299f4b58ad --- /dev/null +++ b/maze/task4/maps/level_step5/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d02a44d646a6a2b192ec89d2774e95bb1a05529a887b2648b75da870ceaf9b9 +size 8631 diff --git a/maze/task4/maps/level_step5/img/16.png b/maze/task4/maps/level_step5/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7973c8fd0e44309ec3e86a3225421c70098fe0 --- /dev/null +++ b/maze/task4/maps/level_step5/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5583b83655c1009808d434d23387310c409754a8d3de67d91a947d9bcaa3c671 +size 10319 diff --git a/maze/task4/maps/level_step5/img/17.png b/maze/task4/maps/level_step5/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..4c14d1057c45eb2b419056db8360aee591d046ea --- /dev/null +++ b/maze/task4/maps/level_step5/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da04daaeabbe3a0f368b3ee1c5fbe6062e2c276f1d7dc718e6af31b7d30c115 +size 9470 diff --git a/maze/task4/maps/level_step5/img/18.png b/maze/task4/maps/level_step5/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4549bebd796f5614e8fde9913f122fc3ea9fe06e --- /dev/null +++ b/maze/task4/maps/level_step5/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42761bc7d7c553a5a98220b4524d47e6dab6a439046318108e5efd5840931f0 +size 9411 diff --git a/maze/task4/maps/level_step5/img/19.png b/maze/task4/maps/level_step5/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..1342eed8c66f157f6a0ee50a553bce9900d7b153 --- /dev/null +++ b/maze/task4/maps/level_step5/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f12b2c82dce79ca3024ad9ceeab1d87e148064972cf0f0d35cedef9f199494 +size 9487 diff --git a/maze/task4/maps/level_step5/img/2.png b/maze/task4/maps/level_step5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task4/maps/level_step5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task4/maps/level_step5/img/20.png b/maze/task4/maps/level_step5/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..008eb9d774f873f49d9f2aba16a957268416f06c --- /dev/null +++ b/maze/task4/maps/level_step5/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb6e15f6f74538fb484c9175e9f2ed53f31bb2657acdcfcd043ca68a8a31eb6 +size 10260 diff --git a/maze/task4/maps/level_step5/img/21.png b/maze/task4/maps/level_step5/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..3159880dfddac7dde77c48c798370b3351485091 --- /dev/null +++ b/maze/task4/maps/level_step5/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa1e9d8f938e37e6023c89eda68bf03b514f4c762b9012c78be14445f3c4b52 +size 8496 diff --git a/maze/task4/maps/level_step5/img/22.png b/maze/task4/maps/level_step5/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..3c08e4321f255952d26ec3342c6c769eff5df76a --- /dev/null +++ b/maze/task4/maps/level_step5/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:207f7b7843cd64538b44cc5f4238db51b6737f2526db62d0fb66c3423de5b7ab +size 9398 diff --git a/maze/task4/maps/level_step5/img/23.png b/maze/task4/maps/level_step5/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..dc46ec1017cea19066f6332d73aab04844c2ed87 --- /dev/null +++ b/maze/task4/maps/level_step5/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1210ff31d9701a2eb97d46cefdb9609a66f02c8f43ad6f29a33b2b64b541a827 +size 9544 diff --git a/maze/task4/maps/level_step5/img/24.png b/maze/task4/maps/level_step5/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..9a6d1f5f4396d39be6b747b2245ca74e57dad2d8 --- /dev/null +++ b/maze/task4/maps/level_step5/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce73082473f6a8019fcddc4e20d0befd63af5607686e7d96fc44f9e76224fcf9 +size 10360 diff --git a/maze/task4/maps/level_step5/img/25.png b/maze/task4/maps/level_step5/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..dcaca11c66cd3002cc42b1541e908fc7c7d55487 --- /dev/null +++ b/maze/task4/maps/level_step5/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf361f95f35ac9a0112f7063281e8af77dcc95553bae500b712a502b170f5b4 +size 9481 diff --git a/maze/task4/maps/level_step5/img/26.png b/maze/task4/maps/level_step5/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..bbf86621e3949214c3beef4a57b50eb3df619639 --- /dev/null +++ b/maze/task4/maps/level_step5/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e15f71d0a1707d523a97934713c1893d76eb768c68beb1802fd45dcee97f9405 +size 10476 diff --git a/maze/task4/maps/level_step5/img/27.png b/maze/task4/maps/level_step5/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..f591e4148b776e15eb1b392b9eb5a3899d71f16e --- /dev/null +++ b/maze/task4/maps/level_step5/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a339a2e62e1162a190da229fa66e13f616e849539aeb08b845c35c77ce2d7a3 +size 10413 diff --git a/maze/task4/maps/level_step5/img/28.png b/maze/task4/maps/level_step5/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7b5e0d421fd9845fedd4e9bf62cf5a40560815 --- /dev/null +++ b/maze/task4/maps/level_step5/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6e842275c7a23fce24f6f4ebc6852f5922d6f914ed4c7c4f2c900d974ed33d +size 7724 diff --git a/maze/task4/maps/level_step5/img/29.png b/maze/task4/maps/level_step5/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..b8b298c44239b1ca6195384083fbe7cf033ea990 --- /dev/null +++ b/maze/task4/maps/level_step5/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086a449fcff725a7f5f010f69ab167dc829279948d017d1dcf9499586e8ea28b +size 8638 diff --git a/maze/task4/maps/level_step5/img/3.png b/maze/task4/maps/level_step5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task4/maps/level_step5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task4/maps/level_step5/img/30.png b/maze/task4/maps/level_step5/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..d63738871f379090425d544bc204e402814b6b55 --- /dev/null +++ b/maze/task4/maps/level_step5/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34ae1efa396c60bd93b40f3a17ed10a570bf75920a432154f7c19649e8e0994 +size 10233 diff --git a/maze/task4/maps/level_step5/img/31.png b/maze/task4/maps/level_step5/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8414031f76b7066865976aa74936cac7b92311da --- /dev/null +++ b/maze/task4/maps/level_step5/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b760ca6eab9da1ac2bb044b831c20182c4ba148464e6dd749fb724c2317504 +size 10338 diff --git a/maze/task4/maps/level_step5/img/32.png b/maze/task4/maps/level_step5/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..8aa3a9101f18f5cef81a2a0ac8ea133631da8272 --- /dev/null +++ b/maze/task4/maps/level_step5/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6046bda5a18babfb779cd67eafbadc41ef75d339c1e22df72fee2aa6c93c3943 +size 8504 diff --git a/maze/task4/maps/level_step5/img/33.png b/maze/task4/maps/level_step5/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..0bebca99345c5d1894a4ae329be28466c2a50b28 --- /dev/null +++ b/maze/task4/maps/level_step5/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7b2f94ba36b04dd2dbb42233e555715f919536cc144672d8e308197195e785 +size 8604 diff --git a/maze/task4/maps/level_step5/img/34.png b/maze/task4/maps/level_step5/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..366dbcdfb9017694a6c0e9a762ddbdbc847e6fa8 --- /dev/null +++ b/maze/task4/maps/level_step5/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9db86506c72ff3db87bce5ce58d9cb6f2ad00598a0c640fcb6bb28119764334 +size 9300 diff --git a/maze/task4/maps/level_step5/img/35.png b/maze/task4/maps/level_step5/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..0dcccbdde8c06d23b2a3fd409778c087119d7b1a --- /dev/null +++ b/maze/task4/maps/level_step5/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c5cdbace6e9b727622cf498cd44c572f8538faf2fecb209501e3f1743ee079 +size 9374 diff --git a/maze/task4/maps/level_step5/img/36.png b/maze/task4/maps/level_step5/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..b9852152d7696761ee038bbc6195fe898f567da6 --- /dev/null +++ b/maze/task4/maps/level_step5/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369baca6210fe2e760c2799e065731a650553eb711755715981d52d264679359 +size 9546 diff --git a/maze/task4/maps/level_step5/img/37.png b/maze/task4/maps/level_step5/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..27f9ce99490c05a04894f62fda9c8566bff0f3e0 --- /dev/null +++ b/maze/task4/maps/level_step5/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92f6006c6fcb34ca5bab418ddb7f976cba1c9aded278d5312b49e0b981ae387 +size 11159 diff --git a/maze/task4/maps/level_step5/img/38.png b/maze/task4/maps/level_step5/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..4f66b266d331b6c6617763e0c36daeae4c2a24fa --- /dev/null +++ b/maze/task4/maps/level_step5/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f18566ad742849cec11cc90b18dde559d521f8aaabf9eb242ef79862bc1565 +size 10319 diff --git a/maze/task4/maps/level_step5/img/39.png b/maze/task4/maps/level_step5/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..6f577d596b11b69ae0918d196780b9a861fd674d --- /dev/null +++ b/maze/task4/maps/level_step5/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c74987da23582efc454ef16aa7ee49d8bc2b5647b8529063762394aa97b0403 +size 9493 diff --git a/maze/task4/maps/level_step5/img/4.png b/maze/task4/maps/level_step5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcf17753a14d717d70601f1726efa48591720d2 --- /dev/null +++ b/maze/task4/maps/level_step5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1527826071149f7d3fe78db8c909ec14d40d7ac2ff90cad4f018091251dbf8c2 +size 7791 diff --git a/maze/task4/maps/level_step5/img/40.png b/maze/task4/maps/level_step5/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..737d7ae0719bbb507363080dc7412e95c0346265 --- /dev/null +++ b/maze/task4/maps/level_step5/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96fcf04942877f61fbecaad3b81dbc8691c1de66be9235760483873a48d2e4ab +size 8594 diff --git a/maze/task4/maps/level_step5/img/41.png b/maze/task4/maps/level_step5/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..a336550fb6b5ee724510355eddbf38e949e814f9 --- /dev/null +++ b/maze/task4/maps/level_step5/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0a2aa504f7ec3efbdc87c449cc23a3a36ae9d9c1553b35432c5e89bcf3dff0 +size 8743 diff --git a/maze/task4/maps/level_step5/img/42.png b/maze/task4/maps/level_step5/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..8b852d7aded894d02bf8887e9f41619655c4cb2a --- /dev/null +++ b/maze/task4/maps/level_step5/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040fdc043f4d19f8463b548a488f13cfc00f93045311f14b6c3fc68381355a44 +size 9399 diff --git a/maze/task4/maps/level_step5/img/43.png b/maze/task4/maps/level_step5/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8240fd301b101fc3d6928b8b7837ee8f046508 --- /dev/null +++ b/maze/task4/maps/level_step5/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e450c5211b9cc344c3fdea9a4ac7b6f86afc861e99ce5e8e1bd73c05370aeb +size 8530 diff --git a/maze/task4/maps/level_step5/img/44.png b/maze/task4/maps/level_step5/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..fbc926d0e2b3d98e1dab0a8d75b1d5abba9eee37 --- /dev/null +++ b/maze/task4/maps/level_step5/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ffae263c999fdb644ac5676dff754b4eb3bba3437795940e40daa1af5bf67a +size 10484 diff --git a/maze/task4/maps/level_step5/img/45.png b/maze/task4/maps/level_step5/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..fa357d51bbdeb0678d4148305f56dab8c1d94eec --- /dev/null +++ b/maze/task4/maps/level_step5/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8848ac9b4fb5bb3bec41b2221a5a2a47ce69bca895b40fdde606a4b36f33fc93 +size 9491 diff --git a/maze/task4/maps/level_step5/img/46.png b/maze/task4/maps/level_step5/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..f4e4919374f782d09af332d7649e1ff157467f88 --- /dev/null +++ b/maze/task4/maps/level_step5/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc631998370269f1dc393ed886358a396b82d396650adb1e7213a71716b5782 +size 11418 diff --git a/maze/task4/maps/level_step5/img/47.png b/maze/task4/maps/level_step5/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..61f9ef0def0f721f159208bb3aa769cefa7f4431 --- /dev/null +++ b/maze/task4/maps/level_step5/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bbd0e6a07a60df2a50c7f077a2675e34106d15e375efe469a077b768d6b48b +size 8667 diff --git a/maze/task4/maps/level_step5/img/48.png b/maze/task4/maps/level_step5/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..80605fc9f1d52293736c551d0c54f2054b6ae790 --- /dev/null +++ b/maze/task4/maps/level_step5/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af97fa09ff7c59716bd262d7ad3e0f24caf61d08f5f71494276bc04fee4141f +size 9549 diff --git a/maze/task4/maps/level_step5/img/49.png b/maze/task4/maps/level_step5/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..f042b8e1a489792b2df555b00b84d90f03816dcb --- /dev/null +++ b/maze/task4/maps/level_step5/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3250865795e5bcf96aab2caf3b6e858125f92a3ad016310144510a0e8ddd1e4 +size 11250 diff --git a/maze/task4/maps/level_step5/img/5.png b/maze/task4/maps/level_step5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task4/maps/level_step5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task4/maps/level_step5/img/50.png b/maze/task4/maps/level_step5/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..5a79ec58f41bac0d72774baf35cf234e08dcb7b3 --- /dev/null +++ b/maze/task4/maps/level_step5/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d781009cb22f81d3e84f348a361f04066a4bcaafd8d62d99d791338308ec5fca +size 10360 diff --git a/maze/task4/maps/level_step5/img/51.png b/maze/task4/maps/level_step5/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..9730c0df7e3a2434457a7e048f406352c8c68d82 --- /dev/null +++ b/maze/task4/maps/level_step5/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9c193aedfb71affe9fa9081fe05d69e6c41f6460fd35e2709c1296eaca39a3 +size 10423 diff --git a/maze/task4/maps/level_step5/img/52.png b/maze/task4/maps/level_step5/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..2d607e31cb307d94141868c5aa2df4c957823a08 --- /dev/null +++ b/maze/task4/maps/level_step5/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a1fb6fe42a463216337eceac90a355a3207b34080888b3522874a04c350fc00 +size 9414 diff --git a/maze/task4/maps/level_step5/img/53.png b/maze/task4/maps/level_step5/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..b56567b741d2a6849fdbd9a06f10a221f611854a --- /dev/null +++ b/maze/task4/maps/level_step5/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbbb363cbd4871bd667563335310c2a7b1e044d786a33fc9ac426ab13f9fa92 +size 10460 diff --git a/maze/task4/maps/level_step5/img/54.png b/maze/task4/maps/level_step5/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..5583a4a4097728c08136a7d85c875929d3871d66 --- /dev/null +++ b/maze/task4/maps/level_step5/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:669df2a7d45cfc5035f2e275ac8b895c72365ba14dff70cb33ba3e2303238869 +size 8578 diff --git a/maze/task4/maps/level_step5/img/55.png b/maze/task4/maps/level_step5/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..74536878b9f40abc5afb1e14d29fc16893cf4224 --- /dev/null +++ b/maze/task4/maps/level_step5/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff5da6d80ff141df71348d2db745cb894894ead3b801cae459927e915f1808b +size 9424 diff --git a/maze/task4/maps/level_step5/img/56.png b/maze/task4/maps/level_step5/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..585e0a91426bcc33f8a93d422d82224594ce24ad --- /dev/null +++ b/maze/task4/maps/level_step5/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ac5b056532e85d2a478ee830559e75d3f1147004e0831db2c4b03a0e2e9067 +size 9637 diff --git a/maze/task4/maps/level_step5/img/57.png b/maze/task4/maps/level_step5/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..144d54a4608c49944801eab9aa72031600f1ccb7 --- /dev/null +++ b/maze/task4/maps/level_step5/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89a7a3284d988ec9aa34b1057499760f90318c9dffc744e3f8765c205e9dd76d +size 11298 diff --git a/maze/task4/maps/level_step5/img/58.png b/maze/task4/maps/level_step5/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..007695ff6c8929f3c578f1e20f352034afc69d5b --- /dev/null +++ b/maze/task4/maps/level_step5/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4011594954c1117ae9981fa7ce16c41cb3266498795e8f487654a7f4ea47e61e +size 8568 diff --git a/maze/task4/maps/level_step5/img/59.png b/maze/task4/maps/level_step5/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..783bdee385c0a0eef8797024804679a2cb97629b --- /dev/null +++ b/maze/task4/maps/level_step5/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f597e4c46866313b7947e9cb1761cd53881ecbbe15d4fdf7fe3291755b0bcd +size 8756 diff --git a/maze/task4/maps/level_step5/img/6.png b/maze/task4/maps/level_step5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task4/maps/level_step5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task4/maps/level_step5/img/60.png b/maze/task4/maps/level_step5/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..af8ab86cf41c45007b7cfce49c76e3ff294aa2f6 --- /dev/null +++ b/maze/task4/maps/level_step5/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f19ceb0d0c316a16d11ddeb3238c5ef09285ab68f7796236aa0035a5676c68f +size 10322 diff --git a/maze/task4/maps/level_step5/img/61.png b/maze/task4/maps/level_step5/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..d5a479c65cb42324a8806e73a2651e20cf70f08e --- /dev/null +++ b/maze/task4/maps/level_step5/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b58ec3a71ab3abb8df325845f732ab77ce474560e2736f7d4f79e521d20fc72 +size 8627 diff --git a/maze/task4/maps/level_step5/img/62.png b/maze/task4/maps/level_step5/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..33cfe602364bc6dd682c246276cfb8f1404ef595 --- /dev/null +++ b/maze/task4/maps/level_step5/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0e338d527661874a9c46027013ed1381ad655fa2165f92ba6c74bdccc1b4c4 +size 10351 diff --git a/maze/task4/maps/level_step5/img/63.png b/maze/task4/maps/level_step5/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..333bc42d0e8c8132a744930736394eb828d252de --- /dev/null +++ b/maze/task4/maps/level_step5/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c0da952087c15c47861c6951587da8fb909255d3674885bffbea5ccfcb9c88 +size 10462 diff --git a/maze/task4/maps/level_step5/img/64.png b/maze/task4/maps/level_step5/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..8ed7ed72b2c3111d75f33c72bb551cff23179926 --- /dev/null +++ b/maze/task4/maps/level_step5/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ccb7fd4d2a8980e811a2558f24a5171bdd4ff19d9b64985374989c2f94dee4 +size 8631 diff --git a/maze/task4/maps/level_step5/img/65.png b/maze/task4/maps/level_step5/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..e25d6dcc3bf27642de759eda729c6634d4bb1e21 --- /dev/null +++ b/maze/task4/maps/level_step5/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d80c6e30e9d99e1d1d5d7b32b2a8c1e8fca1e85c3e65729acdc13c282016930 +size 9624 diff --git a/maze/task4/maps/level_step5/img/66.png b/maze/task4/maps/level_step5/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..58e7f5a3f363c973924b77e1f5ecd1b3c56c36a5 --- /dev/null +++ b/maze/task4/maps/level_step5/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327a18de8ac3f2f62715d7eac2f1d14f6427fbd8a0e6242a6f5e8db1e439095b +size 10485 diff --git a/maze/task4/maps/level_step5/img/67.png b/maze/task4/maps/level_step5/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..f6511c5039d37968dfea4e48847c013be411e9dc --- /dev/null +++ b/maze/task4/maps/level_step5/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d68ca8188faf7554b4492255b4312786a238b5915dec186f4ddebf3b5fe3c28 +size 9557 diff --git a/maze/task4/maps/level_step5/img/68.png b/maze/task4/maps/level_step5/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..2536bbb665a41b4da7e66189b4cb1d8e8b8abbd5 --- /dev/null +++ b/maze/task4/maps/level_step5/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005e7628f2a7a78457720b45143eb9af7cb9d3e020d4bf7b038158c186f4d5ab +size 9629 diff --git a/maze/task4/maps/level_step5/img/69.png b/maze/task4/maps/level_step5/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..111346baa5e8e81dce82def8b6539b70892a57e0 --- /dev/null +++ b/maze/task4/maps/level_step5/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bc1d785dce00bf0efdfb9cd6888c7b988193a61ffa0216b31059772952a15c +size 11228 diff --git a/maze/task4/maps/level_step5/img/7.png b/maze/task4/maps/level_step5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ed22ca8b3f4ffa2acaca4529881c704b2b6838be --- /dev/null +++ b/maze/task4/maps/level_step5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a1dc78e86be74c3ff35b19d66c3c0cbfe8b5641a1cf2436af5b0ba960eb307d +size 10457 diff --git a/maze/task4/maps/level_step5/img/70.png b/maze/task4/maps/level_step5/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..d7d9522fdef478962bbf1ae56c58e2e914c5855f --- /dev/null +++ b/maze/task4/maps/level_step5/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f964ac4bbf903fffa406c1474e19146d3f9c106e21c071d0322559e28ff4fe +size 8780 diff --git a/maze/task4/maps/level_step5/img/71.png b/maze/task4/maps/level_step5/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..88e1f9cf47d344a6e4a15aa728ddb049fd94f5d2 --- /dev/null +++ b/maze/task4/maps/level_step5/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeb8fde3107927041b2c74e20943ce5b4c8cd747f8ee8f46e0e3a336fdfc996d +size 11188 diff --git a/maze/task4/maps/level_step5/img/72.png b/maze/task4/maps/level_step5/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..1b1b1ffeffb288ce5fd6fb4a5d6b2a619eade7d3 --- /dev/null +++ b/maze/task4/maps/level_step5/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3683a0899ff04a95f801a3a93dc12491281cdb345f98a8f790f6825333e5c2b6 +size 11104 diff --git a/maze/task4/maps/level_step5/img/73.png b/maze/task4/maps/level_step5/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..12fc402196797480717d26825f77f19fd8e51d0d --- /dev/null +++ b/maze/task4/maps/level_step5/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd80520fffdb5a99d1f540a0e7bc3a6985760fe6aa9670c10a5f8ab681c10740 +size 10539 diff --git a/maze/task4/maps/level_step5/img/74.png b/maze/task4/maps/level_step5/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..070f3739720280a97743d79dad3e56dab5f41b86 --- /dev/null +++ b/maze/task4/maps/level_step5/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48bd3b546d81a289f3cfee56906d822df25e6ada5bf19ea59601ca8565d6d0db +size 9529 diff --git a/maze/task4/maps/level_step5/img/75.png b/maze/task4/maps/level_step5/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..1c4af60feac1c517f8d9447e46f764546a2931f1 --- /dev/null +++ b/maze/task4/maps/level_step5/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd8ea369c568f48b55b42fb99bac01b741c5fcb19ebe6454c2238be6f800788 +size 10426 diff --git a/maze/task4/maps/level_step5/img/76.png b/maze/task4/maps/level_step5/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..1767ad68765f0ce53e8b51d4cc8579144cf41428 --- /dev/null +++ b/maze/task4/maps/level_step5/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b2a5d8df0428a24da48fa93626113f4278237054514f7bf057bdf9ef265e4e +size 9446 diff --git a/maze/task4/maps/level_step5/img/77.png b/maze/task4/maps/level_step5/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..527f2e9376c66aaa96183c4b551b951fcb48aad3 --- /dev/null +++ b/maze/task4/maps/level_step5/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d8fa767703afa59790a099b3d30229bfb93c26ecffa64015c82bf7b77124ef +size 9455 diff --git a/maze/task4/maps/level_step5/img/78.png b/maze/task4/maps/level_step5/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..220765c15cbbfa8155e7e78e2408ce888d52595b --- /dev/null +++ b/maze/task4/maps/level_step5/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3092d12b2c3124f29f9d76daf14d26667d6764bac75f6d4271855ad3d633d5 +size 9500 diff --git a/maze/task4/maps/level_step5/img/79.png b/maze/task4/maps/level_step5/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..22449bc93cd2fbaf83101b5543ccf3698ab358d3 --- /dev/null +++ b/maze/task4/maps/level_step5/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e23b9f74de4906afcb7230eace818a95e83a76a12c3d5024f15dffc340c0ef6 +size 9429 diff --git a/maze/task4/maps/level_step5/img/8.png b/maze/task4/maps/level_step5/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b783d4f36e2171422604495ee36e749644ce4e2b --- /dev/null +++ b/maze/task4/maps/level_step5/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dbba447ec1e1cdb77f547897ea2c4a87baf7985ca4f97405a7f153585f7d9e +size 9520 diff --git a/maze/task4/maps/level_step5/img/80.png b/maze/task4/maps/level_step5/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..d38be801924540141877d22c09c57a6aafae6aba --- /dev/null +++ b/maze/task4/maps/level_step5/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ad52f6b2e6d19a310dae34f39abc796d5fa062a4f472a9f71d3c873d414f12 +size 9477 diff --git a/maze/task4/maps/level_step5/img/81.png b/maze/task4/maps/level_step5/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..ed0cebe2bdb26fd88dead9c18bdacc7f6b0951ae --- /dev/null +++ b/maze/task4/maps/level_step5/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c672028bf7d9354bee6c042bb61e943012b83110b684e771c3794723b442f2 +size 9571 diff --git a/maze/task4/maps/level_step5/img/82.png b/maze/task4/maps/level_step5/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..5ada6d191e024b2f52d0964cece7a0ae08302cef --- /dev/null +++ b/maze/task4/maps/level_step5/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db3fee4abb1552265a6eaef9b8b3455b63efb2c63951189dbaf9d48998a61ed3 +size 10515 diff --git a/maze/task4/maps/level_step5/img/83.png b/maze/task4/maps/level_step5/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..9d5bc5c4e701c95cdc7dbcbd5f3a9d36631c2276 --- /dev/null +++ b/maze/task4/maps/level_step5/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e265e8586c0760f4b178188d2644e25cef16b45d64c35e9c4a1143e085f38e62 +size 9464 diff --git a/maze/task4/maps/level_step5/img/84.png b/maze/task4/maps/level_step5/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..605f0ff8c215648fa99f4b7393232833594a8610 --- /dev/null +++ b/maze/task4/maps/level_step5/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a72357e9f8c0b01fa9481431c1c5d36a0199f171cd12629a82ec90eff19d4f +size 10324 diff --git a/maze/task4/maps/level_step5/img/85.png b/maze/task4/maps/level_step5/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..2b04b8b4e6430b30c5505609dc642700d988be70 --- /dev/null +++ b/maze/task4/maps/level_step5/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc9d00dc9b80f1693dc7134f8ed438926305e024a5dc26e8e03ad82b4608f0b +size 9491 diff --git a/maze/task4/maps/level_step5/img/86.png b/maze/task4/maps/level_step5/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..41261413e7dd3228eeff5e7010d87cd323d1dfc3 --- /dev/null +++ b/maze/task4/maps/level_step5/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47102eacb760f4fbee2412de1a93f98ad00be71ad00f000fc2988421bdb3436c +size 10333 diff --git a/maze/task4/maps/level_step5/img/87.png b/maze/task4/maps/level_step5/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..c2c8444b81dfaf27d17d5a4ddc8bda32ac5eb07e --- /dev/null +++ b/maze/task4/maps/level_step5/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2236df453c8333db185d0f6e2a1d54f2d042625a022573c4beada45c798de52 +size 11087 diff --git a/maze/task4/maps/level_step5/img/88.png b/maze/task4/maps/level_step5/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..de081357b6c4a2b26b5851c19eb10854a145dd4f --- /dev/null +++ b/maze/task4/maps/level_step5/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90cf310b1bf6cfd8effd458bca4e303b2ed000d38681671e452629b3b2619af +size 11179 diff --git a/maze/task4/maps/level_step5/img/89.png b/maze/task4/maps/level_step5/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c25e41839c4eed11a446578ad5562be1ffc0a0 --- /dev/null +++ b/maze/task4/maps/level_step5/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cf54b54206896d7d5fe558e2eb4ffb8997eb1bfbf89093d978b6ec2fc56f97 +size 9489 diff --git a/maze/task4/maps/level_step5/img/9.png b/maze/task4/maps/level_step5/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7defc1039b7aebdd6b867d4b55695ff830523c9f --- /dev/null +++ b/maze/task4/maps/level_step5/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279b71009381e41a5f493ca0488019255b40fa0011be125de38e9cd2b8bf01b6 +size 11096 diff --git a/maze/task4/maps/level_step5/img/90.png b/maze/task4/maps/level_step5/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..d868ba390ef63a27c67b8ed8fa1df03e4b3c9aa6 --- /dev/null +++ b/maze/task4/maps/level_step5/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4924a8d8f382432a85b02c5cd97c3a867f0cf59915631b2b46d1ecf305774ab2 +size 9461 diff --git a/maze/task4/maps/level_step5/img/91.png b/maze/task4/maps/level_step5/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..eb61d63c1d65177e4194789532e861faba98a627 --- /dev/null +++ b/maze/task4/maps/level_step5/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469beb47488c6b27ec47a7d2f3ed3f7f8ac4874844305b09eb67a9fbf95434f8 +size 9560 diff --git a/maze/task4/maps/level_step5/img/92.png b/maze/task4/maps/level_step5/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..211572a9103c01b8b3ab01c0083299ed0390d504 --- /dev/null +++ b/maze/task4/maps/level_step5/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3577483fd88f2b6c9bbbcac8e051da3bdf139d40a2cb3d1df1dcbfa171e7f6f9 +size 10280 diff --git a/maze/task4/maps/level_step5/img/93.png b/maze/task4/maps/level_step5/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..bdfb17b2155d3db1f731b333a504f75c5147c973 --- /dev/null +++ b/maze/task4/maps/level_step5/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111c27eb8f25767991d6c737dc2d83928c5693914276f5717f7e64c221eb3ca7 +size 10454 diff --git a/maze/task4/maps/level_step5/img/94.png b/maze/task4/maps/level_step5/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..883e820e622136fa8ccb1ad82e1c5f120243acc3 --- /dev/null +++ b/maze/task4/maps/level_step5/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99bd396babdb9987e71c89759023c2e106890113cbc88ec8967b61e80e824ead +size 10261 diff --git a/maze/task4/maps/level_step5/img/95.png b/maze/task4/maps/level_step5/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..0d320adfcb78f2f7a70c293086a3c9e4657e8b1e --- /dev/null +++ b/maze/task4/maps/level_step5/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9652b51223f250b2f0ea990f04184cecd53a9510a88e23e5d8ab92a02d6d4e +size 10401 diff --git a/maze/task4/maps/level_step5/img/96.png b/maze/task4/maps/level_step5/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb818078dd96672793c3fb3f1db50b70b9f5699 --- /dev/null +++ b/maze/task4/maps/level_step5/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcdeccb4c9d837d4d60f212aa9ee78eee0f1133c5bfa8b4a3706e257989a7be +size 10447 diff --git a/maze/task4/maps/level_step5/img/97.png b/maze/task4/maps/level_step5/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..748a948c5cd41ad576941a954a691c45002651bc --- /dev/null +++ b/maze/task4/maps/level_step5/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77adb79d8bbc1588ad59543ed98151771cd492efc2dc07e86af7ebb5873a4a67 +size 9374 diff --git a/maze/task4/maps/level_step5/img/98.png b/maze/task4/maps/level_step5/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..d8a7132eb8fd66e7a2ae0f97052b28b045526395 --- /dev/null +++ b/maze/task4/maps/level_step5/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11798ca7844e52ee4d5edf59fb94d0449f3fdde7178beb0f22d94468661f213 +size 10387 diff --git a/maze/task4/maps/level_step5/img/99.png b/maze/task4/maps/level_step5/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..d6bd9ecf67aa1f7de93eebdc0e48abc85bb467bf --- /dev/null +++ b/maze/task4/maps/level_step5/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570147872954af71e957d7629438d5014810bb6ec0cb216e45e41a69154b7259 +size 8604 diff --git a/maze/task4/maps/level_step5/pure_text/0.txt b/maze/task4/maps/level_step5/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..94b8aad0b54dfe1737283f22b9623341d05c3185 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; Row 5, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/1.txt b/maze/task4/maps/level_step5/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d0c98b9c25646ad5073a63739579f3fdeea190 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/10.txt b/maze/task4/maps/level_step5/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..c57e03a22c3727d041e5d13c3a7afa763801af6e --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/11.txt b/maze/task4/maps/level_step5/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..333385c6d244881c4d58cbc3df399c9f61ace1da --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/12.txt b/maze/task4/maps/level_step5/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..165f44b11e38b580c20c46d28807b3caac0a2614 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 3, Column 2; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/13.txt b/maze/task4/maps/level_step5/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..027fe4dbdab45b37c2d5fe37f9599cef95400aa0 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/14.txt b/maze/task4/maps/level_step5/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdb8c4e2d57e515054c0dc54a61f4da7632ec321 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/15.txt b/maze/task4/maps/level_step5/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fca18ea666f75bb44f853bf1e9cc2cb4b455ee3 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 1; Row 2, Column 4; Row 4, Column 3; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/16.txt b/maze/task4/maps/level_step5/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f58b60f80c34719dd14d0ad5666e0adf08a940c --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/17.txt b/maze/task4/maps/level_step5/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..5175d2089a6786db0ab00d84653a761a8d7b998b --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/18.txt b/maze/task4/maps/level_step5/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6267fc47c24ab18860bbef173f17cb302405567 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/19.txt b/maze/task4/maps/level_step5/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdcdf82f73b3e07de44c8668dad4def529e2afc1 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/2.txt b/maze/task4/maps/level_step5/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/20.txt b/maze/task4/maps/level_step5/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..67b933bd40c003ad8d713ed3a6fde5badcd130d9 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 2, Column 5; Row 3, Column 4; Row 4, Column 2; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/21.txt b/maze/task4/maps/level_step5/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..a23c755b2724e4e5a25a0c791532b4c4cc6dbaa0 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 5; Row 4, Column 1; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/22.txt b/maze/task4/maps/level_step5/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a2079017d562c7b9286dcd9f647b8581ea3908d --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/23.txt b/maze/task4/maps/level_step5/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2352f507d8394f6ffe476d261694bc6513985b33 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 5; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/24.txt b/maze/task4/maps/level_step5/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9898a8063d3b37859ea38c0e0799213ef632e58 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/25.txt b/maze/task4/maps/level_step5/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c422fe457c20c1d9786346577788d5ff2ce46c86 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/26.txt b/maze/task4/maps/level_step5/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..b07cd998c5f435bfecfd3e3c910705884c656c67 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/27.txt b/maze/task4/maps/level_step5/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2f4a77c87ae7d4b2308b6c58f8c2a49b2a0d260 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/28.txt b/maze/task4/maps/level_step5/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d94e848dad0619efab11ead4fb9890a95b4b77b --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/29.txt b/maze/task4/maps/level_step5/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..772805822a80d5e570557741baa70b981978912f --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/3.txt b/maze/task4/maps/level_step5/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..69e73a8c23f7d57f3e51e58b7901e281cad0f7a0 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/30.txt b/maze/task4/maps/level_step5/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..f10c6cda751fe7118f206e8ef17468879d4fd780 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/31.txt b/maze/task4/maps/level_step5/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..804679724f787c34257c826415e2bb5bb09564a8 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/32.txt b/maze/task4/maps/level_step5/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4745609ba1e3dfff5dcc066231c7bb36111ae09 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/33.txt b/maze/task4/maps/level_step5/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..317866fa271b7cb8f592a79d593290ee707c29a3 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/34.txt b/maze/task4/maps/level_step5/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b373afbf45df746a2191b8cde8b009da108e9d9 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/35.txt b/maze/task4/maps/level_step5/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e6eced5f42ddf7dfa970c3b2128ad1d2616aae --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/36.txt b/maze/task4/maps/level_step5/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bee6b6b1bda9de2f32004899c06a6c0d20fea26 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; Row 3, Column 5; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/37.txt b/maze/task4/maps/level_step5/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..14dc6ad1878c1cc148d50bcd8a95104df0c82b3f --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 5, Column 1; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/38.txt b/maze/task4/maps/level_step5/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..028e0cf80f84686d43a4a4bb5aae01afe0fa3dc3 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 4, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/39.txt b/maze/task4/maps/level_step5/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a8f7d4070dc9319c628097af7aa9bb383b36b2d --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/4.txt b/maze/task4/maps/level_step5/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59ffc168cdb8212ad7ec3dbc639e372f3d7db13 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/40.txt b/maze/task4/maps/level_step5/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c9caee82d452e329412406980247a3aa7733734 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 3, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/41.txt b/maze/task4/maps/level_step5/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9d190660b178c6419b5664db263949f2701555d --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 4, Column 2; Row 4, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/42.txt b/maze/task4/maps/level_step5/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..d71f50b98d6fb746cee33f44d55accf6d2ae5d7f --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/43.txt b/maze/task4/maps/level_step5/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3232cf536abf875c58ecd4fa47049dffac73b440 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 5, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/44.txt b/maze/task4/maps/level_step5/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a8eab148a61fbbfd049d44c82f15df72199ccf0 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/45.txt b/maze/task4/maps/level_step5/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5c31d25061fd8a02a164070c2357d0e2ffe2566 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 4, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/46.txt b/maze/task4/maps/level_step5/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..7603b838afcdc181baf1edec0649ba4917372a65 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 3, Column 2; Row 4, Column 1; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/47.txt b/maze/task4/maps/level_step5/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ab5f0d78652c951e50db6ff3f8feda882bfd9b1 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/48.txt b/maze/task4/maps/level_step5/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..98cdad21349b02ae62bac9c4b22adf90b0d5fe7c --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/49.txt b/maze/task4/maps/level_step5/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..34d06ec94cfb7f9deed3405e2003ba1bc409da5b --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/5.txt b/maze/task4/maps/level_step5/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5a7c360f4d2a91544cb3423491ca285c9a175d1 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/50.txt b/maze/task4/maps/level_step5/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d21dfb5d4bf5fbac9fd9d30e8918d02f9c68ee2 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 4, Column 3; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/51.txt b/maze/task4/maps/level_step5/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5f4ee007f8c7e6e45dfd91401c5f5fb86bda8d6 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 3, Column 2; Row 3, Column 4; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/52.txt b/maze/task4/maps/level_step5/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e43f9d6f9c59d4da5deb2b9054e9d1752a250af --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 4; Row 4, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/53.txt b/maze/task4/maps/level_step5/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2106621473d9a89917c751ac90e082b2a91e6846 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/54.txt b/maze/task4/maps/level_step5/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dcc3b272f67a27eab259b0495916bc5dcc4f3f8 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/55.txt b/maze/task4/maps/level_step5/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7f10adfb022f4b9201427c000c5047ef2878b6b --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/56.txt b/maze/task4/maps/level_step5/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e20979cd818abab3f81bffa06147adf5e99277c --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 3, Column 2; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/57.txt b/maze/task4/maps/level_step5/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..c73a83d55e3bd6090f924ff5e0243c5a928c4288 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; Row 4, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/58.txt b/maze/task4/maps/level_step5/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..278735b446a9a0b55d5fede1aa3a48534aa209b7 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/59.txt b/maze/task4/maps/level_step5/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..7801b488546a8358bf28d18020c6f1b861a9a295 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/6.txt b/maze/task4/maps/level_step5/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..090e9c1d826401003433a544b5a036f1e691e749 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/60.txt b/maze/task4/maps/level_step5/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e2e9cc573a97f137abd386cc43b4e735bc3d1c1 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/61.txt b/maze/task4/maps/level_step5/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..b98dce1a9af589870e64ae9e1f3c5cd5c17956a7 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/62.txt b/maze/task4/maps/level_step5/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e9c53d4fba2738db99715000abfde4fcc4e9676 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/63.txt b/maze/task4/maps/level_step5/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..611340049c4c56087658b3200a3e5bcb8068aa70 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 4; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/64.txt b/maze/task4/maps/level_step5/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c06bfad58d6992089feebae3a5e3cb8211e1faf --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/65.txt b/maze/task4/maps/level_step5/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..affa6cf73bbe27a83142637ffe5e26acbd11cdd5 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 5; Row 4, Column 3; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/66.txt b/maze/task4/maps/level_step5/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..178f1cd4a3c7c2c3b271b898c4f1996ae0942124 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 5, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/67.txt b/maze/task4/maps/level_step5/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee7a288d959ee4727377af9fbeff1a6d2b198f9f --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/68.txt b/maze/task4/maps/level_step5/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ec9b628bd03ed6675c038d6f39870a3796e9c2c --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 5, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/69.txt b/maze/task4/maps/level_step5/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..225be629504b93f3710f79845bb8c392b1091099 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 5; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/7.txt b/maze/task4/maps/level_step5/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..e33c40c61b19d4ae54a900506dbe80f9aa549bad --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 1; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/70.txt b/maze/task4/maps/level_step5/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a8a92c1901bd5de504b373d1e1f071c97cf29e --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/71.txt b/maze/task4/maps/level_step5/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..a76fc7b6357e7d8712f87e02e4d73a17981f9080 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/72.txt b/maze/task4/maps/level_step5/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..13f47899407b24eeba4e858fcc0694770b5839b2 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 5, Column 3; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/73.txt b/maze/task4/maps/level_step5/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..a07d93b0084db659c1e77d01f5e060a1e31e6bd9 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 4; Row 3, Column 2; Row 5, Column 2; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/74.txt b/maze/task4/maps/level_step5/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdd0e3f63783c8e17e4af42ee4e0f42e0618ba04 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 3; Row 5, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/75.txt b/maze/task4/maps/level_step5/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..08c78cd5fc601088dbf5e665247a6ed1f80f1ed6 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 4, Column 3; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/76.txt b/maze/task4/maps/level_step5/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..1376792490f0233abff71e1e1c0a10b657829cfc --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 5; Row 4, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/77.txt b/maze/task4/maps/level_step5/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c264069486e44373ce1f86b629c228cba1d2e78 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 3, Column 4; Row 4, Column 3; Row 5, Column 1; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/78.txt b/maze/task4/maps/level_step5/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..80c0830681863f9fe50d786427a9e1dfd648d380 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/79.txt b/maze/task4/maps/level_step5/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..23cbfaffe4f51671e311a977ec5356d71a77c4c6 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/8.txt b/maze/task4/maps/level_step5/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..08edb362cb22dbded0ea93839caca4600a4eeb16 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/80.txt b/maze/task4/maps/level_step5/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8f8173bd0c61225c90fd43b7a64b02f2941c48d --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/81.txt b/maze/task4/maps/level_step5/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..1544ffe597b26587f765707de3a5a79b56ee1439 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/82.txt b/maze/task4/maps/level_step5/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..126d507eeca70321f30127e4c1c0c8255c21295e --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 3, Column 2; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/83.txt b/maze/task4/maps/level_step5/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dcee8bea439882bbd328f814da887b2bb0d47c0 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/84.txt b/maze/task4/maps/level_step5/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..e57cbc1a0cb44d12e7e6bbc8524133fced2b6644 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 4; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/85.txt b/maze/task4/maps/level_step5/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee2506d3c62f246176ebeaa3418f1cda7988af0b --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/86.txt b/maze/task4/maps/level_step5/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..1314a63ac079354e310dd359ecc90968cd8e493e --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/87.txt b/maze/task4/maps/level_step5/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8a1b10a48e74c97c9045e2118d811607f24c95a --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 5; Row 4, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/88.txt b/maze/task4/maps/level_step5/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a970f264f48d75000b066267644c8f5770aeb88c --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 5, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/89.txt b/maze/task4/maps/level_step5/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..94a0d4b048c75ea846ff6f887120a36cdeecdfe0 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 1; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/9.txt b/maze/task4/maps/level_step5/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5add7385d2de2e21bc1f9db75c94687550254ee --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/90.txt b/maze/task4/maps/level_step5/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..1eb6bfa6cca9aac78987377258148ad12e1690cc --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/91.txt b/maze/task4/maps/level_step5/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab64c8a83e7ff1b27586514c0522a5e80a13f3d8 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/92.txt b/maze/task4/maps/level_step5/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e7f518e3f935adfbec1a2fe82d9353b221c89e6 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/93.txt b/maze/task4/maps/level_step5/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..41cbb88b4118f7b8ffc19abfc41e116f959cae49 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 3, Column 3; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/94.txt b/maze/task4/maps/level_step5/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..903c33e699fc0ebbf18fc1b71c03eb132e48b6ea --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/95.txt b/maze/task4/maps/level_step5/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..92aa4557aa2d22124ee2b3641570ea46108af8bc --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 5; Row 4, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/96.txt b/maze/task4/maps/level_step5/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7baa1028626f4a71c738ab423ba2ef35afd5ced8 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 4, Column 2; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/97.txt b/maze/task4/maps/level_step5/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..076c01ee6bacfe079d95faf6bc75c95481857fd9 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/98.txt b/maze/task4/maps/level_step5/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd16528c95e20cd1ca31ddd320d49145daa1f383 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 3, Column 2; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/pure_text/99.txt b/maze/task4/maps/level_step5/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e83fcadcc53346222267fe68467d7f53b2e90601 --- /dev/null +++ b/maze/task4/maps/level_step5/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/0.txt b/maze/task4/maps/level_step5/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..73f9a0fc667a52119d371395fd6453445d7bab86 --- /dev/null +++ b/maze/task4/maps/level_step5/question/0.txt @@ -0,0 +1 @@ +UDRDL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/1.txt b/maze/task4/maps/level_step5/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe341f62bb6997cc3541356e5ce5792e79b47423 --- /dev/null +++ b/maze/task4/maps/level_step5/question/1.txt @@ -0,0 +1 @@ +DULRL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/10.txt b/maze/task4/maps/level_step5/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..588957c8169fd9d435e2b3fb75a72470c432d979 --- /dev/null +++ b/maze/task4/maps/level_step5/question/10.txt @@ -0,0 +1 @@ +RLDUD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/11.txt b/maze/task4/maps/level_step5/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..d31c4ef90d7b5a6230be9c5a546078a0d8a9b5bd --- /dev/null +++ b/maze/task4/maps/level_step5/question/11.txt @@ -0,0 +1 @@ +LURUL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/12.txt b/maze/task4/maps/level_step5/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..88c32f14a7fee8c0779cf2b920d2e0508201b2ae --- /dev/null +++ b/maze/task4/maps/level_step5/question/12.txt @@ -0,0 +1 @@ +LRDUR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/13.txt b/maze/task4/maps/level_step5/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..b616320bdd5d79e3707059a01ac17cbc564e19cc --- /dev/null +++ b/maze/task4/maps/level_step5/question/13.txt @@ -0,0 +1 @@ +UUURR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/14.txt b/maze/task4/maps/level_step5/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0d289d45ed160e8fad5ad0b8f780201226efce4 --- /dev/null +++ b/maze/task4/maps/level_step5/question/14.txt @@ -0,0 +1 @@ +RLRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/15.txt b/maze/task4/maps/level_step5/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5e07c478fe65adeec1802c1252d083b89928cfc --- /dev/null +++ b/maze/task4/maps/level_step5/question/15.txt @@ -0,0 +1 @@ +ULDDU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/16.txt b/maze/task4/maps/level_step5/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ac4fad091b95fcfc9bd9850ef436554e1897375 --- /dev/null +++ b/maze/task4/maps/level_step5/question/16.txt @@ -0,0 +1 @@ +LDUUD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/17.txt b/maze/task4/maps/level_step5/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cf867a87427c11aeb4e59e33ef0ca8bf5643833 --- /dev/null +++ b/maze/task4/maps/level_step5/question/17.txt @@ -0,0 +1 @@ +RLRDD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/18.txt b/maze/task4/maps/level_step5/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..00aa823642f58e179078060141e51f595957bc0d --- /dev/null +++ b/maze/task4/maps/level_step5/question/18.txt @@ -0,0 +1 @@ +URDUD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/19.txt b/maze/task4/maps/level_step5/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1d61aaf9cd46b490802de4a10982dc2b97890eb --- /dev/null +++ b/maze/task4/maps/level_step5/question/19.txt @@ -0,0 +1 @@ +ULDUR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/2.txt b/maze/task4/maps/level_step5/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..d46113650f2bb303275132097012ff3897844463 --- /dev/null +++ b/maze/task4/maps/level_step5/question/2.txt @@ -0,0 +1 @@ +UDUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/20.txt b/maze/task4/maps/level_step5/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69b7da98c6507c1c01fb1b7a7b80f11f35f25f1 --- /dev/null +++ b/maze/task4/maps/level_step5/question/20.txt @@ -0,0 +1 @@ +DLDUL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/21.txt b/maze/task4/maps/level_step5/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..be7e58d5552ede467c9423739cac213b85af334f --- /dev/null +++ b/maze/task4/maps/level_step5/question/21.txt @@ -0,0 +1 @@ +RLLLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/22.txt b/maze/task4/maps/level_step5/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..35f62a6ce7abef92b33b41aff6fed512115013d6 --- /dev/null +++ b/maze/task4/maps/level_step5/question/22.txt @@ -0,0 +1 @@ +DLLDD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/23.txt b/maze/task4/maps/level_step5/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..be6fe73751462ee095cfeb47a9f40a252b73fced --- /dev/null +++ b/maze/task4/maps/level_step5/question/23.txt @@ -0,0 +1 @@ +RDUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/24.txt b/maze/task4/maps/level_step5/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ef1952eb36f04dde88ec756da5717fd3c4600da --- /dev/null +++ b/maze/task4/maps/level_step5/question/24.txt @@ -0,0 +1 @@ +LDDDR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/25.txt b/maze/task4/maps/level_step5/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..96b6f3dd5ba863db01342fac4d302d0f10c2a5e2 --- /dev/null +++ b/maze/task4/maps/level_step5/question/25.txt @@ -0,0 +1 @@ +ULRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/26.txt b/maze/task4/maps/level_step5/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd8e50cc1f1fcd090700527b4d2d19e7113666a0 --- /dev/null +++ b/maze/task4/maps/level_step5/question/26.txt @@ -0,0 +1 @@ +RRLUR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/27.txt b/maze/task4/maps/level_step5/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fbf42eeb58c0e96141de636c117b48360a2b668 --- /dev/null +++ b/maze/task4/maps/level_step5/question/27.txt @@ -0,0 +1 @@ +DLRDU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/28.txt b/maze/task4/maps/level_step5/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..3558500197fc9fa7acd84b8f50aa9281bc3a60df --- /dev/null +++ b/maze/task4/maps/level_step5/question/28.txt @@ -0,0 +1 @@ +LURDD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/29.txt b/maze/task4/maps/level_step5/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..1536ae086ba1236a3454f6e70fa48ccb063f4389 --- /dev/null +++ b/maze/task4/maps/level_step5/question/29.txt @@ -0,0 +1 @@ +DDDUU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/3.txt b/maze/task4/maps/level_step5/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3aef12ff8fa2c64edf458da694d30c8c6c9a42e1 --- /dev/null +++ b/maze/task4/maps/level_step5/question/3.txt @@ -0,0 +1 @@ +LDURL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/30.txt b/maze/task4/maps/level_step5/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..95481e04b35d8d4c24e5694326cb5bb6f4879b0e --- /dev/null +++ b/maze/task4/maps/level_step5/question/30.txt @@ -0,0 +1 @@ +ULRDU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/31.txt b/maze/task4/maps/level_step5/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b915b06233b7b8666535502471b8424e1e53001 --- /dev/null +++ b/maze/task4/maps/level_step5/question/31.txt @@ -0,0 +1 @@ +URLDR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/32.txt b/maze/task4/maps/level_step5/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4056109d79d316dfc7ad83f3a2d6638b9393090 --- /dev/null +++ b/maze/task4/maps/level_step5/question/32.txt @@ -0,0 +1 @@ +DRRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/33.txt b/maze/task4/maps/level_step5/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b03f94b9d430bfe3a70bc6cee1caeef5265b4a7 --- /dev/null +++ b/maze/task4/maps/level_step5/question/33.txt @@ -0,0 +1 @@ +DLURD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/34.txt b/maze/task4/maps/level_step5/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..28768ea2db5c04fa4c9bb863493f0e0bd5eb5994 --- /dev/null +++ b/maze/task4/maps/level_step5/question/34.txt @@ -0,0 +1 @@ +DUURR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/35.txt b/maze/task4/maps/level_step5/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..516bab60ecb03da303e4af8bb128e116a15ffe8f --- /dev/null +++ b/maze/task4/maps/level_step5/question/35.txt @@ -0,0 +1 @@ +UDURR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/36.txt b/maze/task4/maps/level_step5/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..9281e05a29d268e279674dbc99f312c576793d63 --- /dev/null +++ b/maze/task4/maps/level_step5/question/36.txt @@ -0,0 +1 @@ +LLRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/37.txt b/maze/task4/maps/level_step5/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..08d1f58400d3f2960bf421cd3a4dd3a2f7b25551 --- /dev/null +++ b/maze/task4/maps/level_step5/question/37.txt @@ -0,0 +1 @@ +ULDUL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/38.txt b/maze/task4/maps/level_step5/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccc1695135ef9283854994976c5bb9332ef7de94 --- /dev/null +++ b/maze/task4/maps/level_step5/question/38.txt @@ -0,0 +1 @@ +LRUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/39.txt b/maze/task4/maps/level_step5/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..895aa901b11f1b1a323adcf55e1a5125b6e6be2f --- /dev/null +++ b/maze/task4/maps/level_step5/question/39.txt @@ -0,0 +1 @@ +RDULR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/4.txt b/maze/task4/maps/level_step5/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..236eaef04ef0ae01b9f17ba19faec5db4aa5dd20 --- /dev/null +++ b/maze/task4/maps/level_step5/question/4.txt @@ -0,0 +1 @@ +DUDLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/40.txt b/maze/task4/maps/level_step5/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bea1f42c3ae4a05e6d0119f0185d573f758e112 --- /dev/null +++ b/maze/task4/maps/level_step5/question/40.txt @@ -0,0 +1 @@ +UDRUL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/41.txt b/maze/task4/maps/level_step5/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..96b6f3dd5ba863db01342fac4d302d0f10c2a5e2 --- /dev/null +++ b/maze/task4/maps/level_step5/question/41.txt @@ -0,0 +1 @@ +ULRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/42.txt b/maze/task4/maps/level_step5/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..efc7b35cd6186fcc0c4d09fbabb5e2bc2f51b6c7 --- /dev/null +++ b/maze/task4/maps/level_step5/question/42.txt @@ -0,0 +1 @@ +DDRRL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/43.txt b/maze/task4/maps/level_step5/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b6ff3e3ef1b114341a57ee420dd64a09d1e6de2 --- /dev/null +++ b/maze/task4/maps/level_step5/question/43.txt @@ -0,0 +1 @@ +LLRLD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/44.txt b/maze/task4/maps/level_step5/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..351868af8a4c7f3e7e7bce12ca87a20b9d761f07 --- /dev/null +++ b/maze/task4/maps/level_step5/question/44.txt @@ -0,0 +1 @@ +LDUUU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/45.txt b/maze/task4/maps/level_step5/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..4308c775d081c1f12b0310fe4b12ee77de8a10f4 --- /dev/null +++ b/maze/task4/maps/level_step5/question/45.txt @@ -0,0 +1 @@ +DLDLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/46.txt b/maze/task4/maps/level_step5/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0232f181dca72b55c1ca0a0dcd8af76b6fc84c5 --- /dev/null +++ b/maze/task4/maps/level_step5/question/46.txt @@ -0,0 +1 @@ +UDDRL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/47.txt b/maze/task4/maps/level_step5/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a61d58b5ce950078dd9fe802cf551862b8075f6 --- /dev/null +++ b/maze/task4/maps/level_step5/question/47.txt @@ -0,0 +1 @@ +LDURU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/48.txt b/maze/task4/maps/level_step5/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f6285bca38bea4740e629fb73dff2fbb721c825 --- /dev/null +++ b/maze/task4/maps/level_step5/question/48.txt @@ -0,0 +1 @@ +LRLDD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/49.txt b/maze/task4/maps/level_step5/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..e72719666a5c4f0d9307d6968f21f2972392252d --- /dev/null +++ b/maze/task4/maps/level_step5/question/49.txt @@ -0,0 +1 @@ +DLRRL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/5.txt b/maze/task4/maps/level_step5/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6ac58a7502eeba9e8e359b121a431ba2afa9fe1 --- /dev/null +++ b/maze/task4/maps/level_step5/question/5.txt @@ -0,0 +1 @@ +LUURL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/50.txt b/maze/task4/maps/level_step5/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7e940296b8de223682d84fb3c43f609631f616d --- /dev/null +++ b/maze/task4/maps/level_step5/question/50.txt @@ -0,0 +1 @@ +LUUDL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/51.txt b/maze/task4/maps/level_step5/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7c7c74646518fb41be5ab89f2855c754b2b67f9 --- /dev/null +++ b/maze/task4/maps/level_step5/question/51.txt @@ -0,0 +1 @@ +DLRRR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/52.txt b/maze/task4/maps/level_step5/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bcb92040194d9102ccb5acbdb34c0297a1868d9 --- /dev/null +++ b/maze/task4/maps/level_step5/question/52.txt @@ -0,0 +1 @@ +LUDUD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/53.txt b/maze/task4/maps/level_step5/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..770cef1181bddb4d3ffe3ecf50b97737abaa6280 --- /dev/null +++ b/maze/task4/maps/level_step5/question/53.txt @@ -0,0 +1 @@ +UDDDR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/54.txt b/maze/task4/maps/level_step5/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..a94a349458b9b63c169f40c20c45d996339703e1 --- /dev/null +++ b/maze/task4/maps/level_step5/question/54.txt @@ -0,0 +1 @@ +RLRUR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/55.txt b/maze/task4/maps/level_step5/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc9c8a38475a56d57d0eef3fdbd18f92faa0e369 --- /dev/null +++ b/maze/task4/maps/level_step5/question/55.txt @@ -0,0 +1 @@ +RDULL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/56.txt b/maze/task4/maps/level_step5/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b1b0a4907298c6a80da5a5d3dd348160bad42fe --- /dev/null +++ b/maze/task4/maps/level_step5/question/56.txt @@ -0,0 +1 @@ +LLLRR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/57.txt b/maze/task4/maps/level_step5/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..aac8042dc39ea681d811d8614f4728f96d47574d --- /dev/null +++ b/maze/task4/maps/level_step5/question/57.txt @@ -0,0 +1 @@ +DLULU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/58.txt b/maze/task4/maps/level_step5/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..18ed91279101960fa6857df92c994cb8fa6f0737 --- /dev/null +++ b/maze/task4/maps/level_step5/question/58.txt @@ -0,0 +1 @@ +UDURL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/59.txt b/maze/task4/maps/level_step5/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..a30e937a416cb723c33f6d18243c43745548571c --- /dev/null +++ b/maze/task4/maps/level_step5/question/59.txt @@ -0,0 +1 @@ +LRURD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/6.txt b/maze/task4/maps/level_step5/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..151c6671de7920ec27234fa80282a05b493fbfda --- /dev/null +++ b/maze/task4/maps/level_step5/question/6.txt @@ -0,0 +1 @@ +UUDRR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/60.txt b/maze/task4/maps/level_step5/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ebdbc670c3cc60c2ac2b05cf33af2ab66b07cbd --- /dev/null +++ b/maze/task4/maps/level_step5/question/60.txt @@ -0,0 +1 @@ +DLRRD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/61.txt b/maze/task4/maps/level_step5/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..861c550db612bc00e72bcfad7ffe104ac2e3b420 --- /dev/null +++ b/maze/task4/maps/level_step5/question/61.txt @@ -0,0 +1 @@ +RDLDL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/62.txt b/maze/task4/maps/level_step5/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2c3680982072906afa049be05816b8080a7e087 --- /dev/null +++ b/maze/task4/maps/level_step5/question/62.txt @@ -0,0 +1 @@ +LRLUU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/63.txt b/maze/task4/maps/level_step5/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..f104eace363e32142891020832e59a223a64a128 --- /dev/null +++ b/maze/task4/maps/level_step5/question/63.txt @@ -0,0 +1 @@ +RLLUR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/64.txt b/maze/task4/maps/level_step5/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..82248703323f8743a30b1fe92031fc52b4f6802f --- /dev/null +++ b/maze/task4/maps/level_step5/question/64.txt @@ -0,0 +1 @@ +RRLLD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/65.txt b/maze/task4/maps/level_step5/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..6598844ba42769f9c2d2ae95625e1005514745dc --- /dev/null +++ b/maze/task4/maps/level_step5/question/65.txt @@ -0,0 +1 @@ +DURUD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/66.txt b/maze/task4/maps/level_step5/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..27f56b3dd724da0d68f72f6af7bc90afcfe79de3 --- /dev/null +++ b/maze/task4/maps/level_step5/question/66.txt @@ -0,0 +1 @@ +DDLUR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/67.txt b/maze/task4/maps/level_step5/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..c03e5eb199d0360bd5fbae4658ce686beaca45c0 --- /dev/null +++ b/maze/task4/maps/level_step5/question/67.txt @@ -0,0 +1 @@ +UUDUU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/68.txt b/maze/task4/maps/level_step5/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..5edea5f94f903b5c02e79816b0c30fd17c1b160f --- /dev/null +++ b/maze/task4/maps/level_step5/question/68.txt @@ -0,0 +1 @@ +RUDLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/69.txt b/maze/task4/maps/level_step5/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..82b48fe502b2be019f3d355c252f67fac7f69470 --- /dev/null +++ b/maze/task4/maps/level_step5/question/69.txt @@ -0,0 +1 @@ +LDUDD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/7.txt b/maze/task4/maps/level_step5/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..e60e88f690a522da93f63d158285860847f632a5 --- /dev/null +++ b/maze/task4/maps/level_step5/question/7.txt @@ -0,0 +1 @@ +LLRLU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/70.txt b/maze/task4/maps/level_step5/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5355fb7506d9e1d888ba6cb5ca5df8e806d05d3 --- /dev/null +++ b/maze/task4/maps/level_step5/question/70.txt @@ -0,0 +1 @@ +LRDLU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/71.txt b/maze/task4/maps/level_step5/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..30ce0c5dcfaef2c6fe8c1d7805dc8a210d9a9821 --- /dev/null +++ b/maze/task4/maps/level_step5/question/71.txt @@ -0,0 +1 @@ +LLRRL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/72.txt b/maze/task4/maps/level_step5/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..69df832a2a692c99bf22d3245901cda4c10a47db --- /dev/null +++ b/maze/task4/maps/level_step5/question/72.txt @@ -0,0 +1 @@ +RLLLD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/73.txt b/maze/task4/maps/level_step5/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac7e6aea210d30fc04554c8c8cf28fafd46cd7f2 --- /dev/null +++ b/maze/task4/maps/level_step5/question/73.txt @@ -0,0 +1 @@ +LRRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/74.txt b/maze/task4/maps/level_step5/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..81f14a8473c4e5b1cb25b8eaf1d0646b2de5814d --- /dev/null +++ b/maze/task4/maps/level_step5/question/74.txt @@ -0,0 +1 @@ +UUDUL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/75.txt b/maze/task4/maps/level_step5/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7c7c74646518fb41be5ab89f2855c754b2b67f9 --- /dev/null +++ b/maze/task4/maps/level_step5/question/75.txt @@ -0,0 +1 @@ +DLRRR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/76.txt b/maze/task4/maps/level_step5/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..a27cca495cc24f6d353f2789028ece30267110c1 --- /dev/null +++ b/maze/task4/maps/level_step5/question/76.txt @@ -0,0 +1 @@ +DUUDR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/77.txt b/maze/task4/maps/level_step5/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d93b391687f88192361677dc957c966ee1fe7ba --- /dev/null +++ b/maze/task4/maps/level_step5/question/77.txt @@ -0,0 +1 @@ +LRRUR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/78.txt b/maze/task4/maps/level_step5/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..65c4fe83776a90b8e29d267887c2b61e9bfa2db2 --- /dev/null +++ b/maze/task4/maps/level_step5/question/78.txt @@ -0,0 +1 @@ +LDRLU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/79.txt b/maze/task4/maps/level_step5/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd4e88b97c07c367ec41ef784c9d0ed1ba3b8e76 --- /dev/null +++ b/maze/task4/maps/level_step5/question/79.txt @@ -0,0 +1 @@ +DRLDR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/8.txt b/maze/task4/maps/level_step5/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..df189eefcca84b022b24fcfe7fbfd23a19e78520 --- /dev/null +++ b/maze/task4/maps/level_step5/question/8.txt @@ -0,0 +1 @@ +RRLUU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/80.txt b/maze/task4/maps/level_step5/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..53e2a2b146ba2b20feedb424de0adf550dcc4108 --- /dev/null +++ b/maze/task4/maps/level_step5/question/80.txt @@ -0,0 +1 @@ +URRLU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/81.txt b/maze/task4/maps/level_step5/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..86c3e9662daf0636175bbb16c5f45639ef4afc1c --- /dev/null +++ b/maze/task4/maps/level_step5/question/81.txt @@ -0,0 +1 @@ +ULRRU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/82.txt b/maze/task4/maps/level_step5/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..273bc009bd773d7e150964f222e655930fe3e67e --- /dev/null +++ b/maze/task4/maps/level_step5/question/82.txt @@ -0,0 +1 @@ +UURRD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/83.txt b/maze/task4/maps/level_step5/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5f1e3eedb2b6a607a4aed0b3765384d6d43b9c1 --- /dev/null +++ b/maze/task4/maps/level_step5/question/83.txt @@ -0,0 +1 @@ +LUUUL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/84.txt b/maze/task4/maps/level_step5/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..69378314c8897a52c389144195e58b75b88629ec --- /dev/null +++ b/maze/task4/maps/level_step5/question/84.txt @@ -0,0 +1 @@ +RULDR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/85.txt b/maze/task4/maps/level_step5/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..448506daf09f309f98a53319276dd9745ef71d4f --- /dev/null +++ b/maze/task4/maps/level_step5/question/85.txt @@ -0,0 +1 @@ +LRUUD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/86.txt b/maze/task4/maps/level_step5/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f8f1a13b13f5cf80b874005585d62dce1fb759d --- /dev/null +++ b/maze/task4/maps/level_step5/question/86.txt @@ -0,0 +1 @@ +RLRUU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/87.txt b/maze/task4/maps/level_step5/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd9e7fdf03e82bf3203865bf376bb8dd81485648 --- /dev/null +++ b/maze/task4/maps/level_step5/question/87.txt @@ -0,0 +1 @@ +DRURD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/88.txt b/maze/task4/maps/level_step5/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8af9b18362bfe7794c999db650c97f1fa00de836 --- /dev/null +++ b/maze/task4/maps/level_step5/question/88.txt @@ -0,0 +1 @@ +LRRLL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/89.txt b/maze/task4/maps/level_step5/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2266f9eeffdc00a37d7b01898aa899e8b0f8330 --- /dev/null +++ b/maze/task4/maps/level_step5/question/89.txt @@ -0,0 +1 @@ +DDDRR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/9.txt b/maze/task4/maps/level_step5/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..95fc7b6bc4eeddfd51e76ff0463e811954d3ffad --- /dev/null +++ b/maze/task4/maps/level_step5/question/9.txt @@ -0,0 +1 @@ +URRRL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/90.txt b/maze/task4/maps/level_step5/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b02603d0b68c1d12aed31894d0f324fd5af19cc --- /dev/null +++ b/maze/task4/maps/level_step5/question/90.txt @@ -0,0 +1 @@ +DDLUL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/91.txt b/maze/task4/maps/level_step5/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..f104eace363e32142891020832e59a223a64a128 --- /dev/null +++ b/maze/task4/maps/level_step5/question/91.txt @@ -0,0 +1 @@ +RLLUR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/92.txt b/maze/task4/maps/level_step5/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac7e6aea210d30fc04554c8c8cf28fafd46cd7f2 --- /dev/null +++ b/maze/task4/maps/level_step5/question/92.txt @@ -0,0 +1 @@ +LRRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/93.txt b/maze/task4/maps/level_step5/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..04b56aa2a64dc13dc0f6be4a67cdf801738b29d3 --- /dev/null +++ b/maze/task4/maps/level_step5/question/93.txt @@ -0,0 +1 @@ +LUDUR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/94.txt b/maze/task4/maps/level_step5/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..50b226a67c129910df7094f9e59e1bc1d7a57ed3 --- /dev/null +++ b/maze/task4/maps/level_step5/question/94.txt @@ -0,0 +1 @@ +RURLR \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/95.txt b/maze/task4/maps/level_step5/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..882500605b34a8587506302fb0eacc1fe22bb44e --- /dev/null +++ b/maze/task4/maps/level_step5/question/95.txt @@ -0,0 +1 @@ +DLRUD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/96.txt b/maze/task4/maps/level_step5/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..d032f3ad67db1dcff0fddfd72b17a2a0beeac541 --- /dev/null +++ b/maze/task4/maps/level_step5/question/96.txt @@ -0,0 +1 @@ +RULDL \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/97.txt b/maze/task4/maps/level_step5/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..a73654c1afc7154f5c38e9e6b23c2e110442f0c7 --- /dev/null +++ b/maze/task4/maps/level_step5/question/97.txt @@ -0,0 +1 @@ +LRDUD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/98.txt b/maze/task4/maps/level_step5/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..872f672fbaadbfed9364afe835a2e7d294597db8 --- /dev/null +++ b/maze/task4/maps/level_step5/question/98.txt @@ -0,0 +1 @@ +DDUUD \ No newline at end of file diff --git a/maze/task4/maps/level_step5/question/99.txt b/maze/task4/maps/level_step5/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b6b75d15eea6c8323ab1152fb3f572df6a255cc --- /dev/null +++ b/maze/task4/maps/level_step5/question/99.txt @@ -0,0 +1 @@ +UDLDU \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/0.txt b/maze/task4/maps/level_step5/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..7328ffa9c78cf5c8c30607017e8fd6aad9ba0671 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +____# +__@__ +*_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/1.txt b/maze/task4/maps/level_step5/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..36493eafb5edfef8d172c61adcf5ca23b3a51a87 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/1.txt @@ -0,0 +1,5 @@ +__@__ +___#_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/10.txt b/maze/task4/maps/level_step5/special_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..edf48415345ac6a4064c02465f0bdfd42b134919 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/10.txt @@ -0,0 +1,5 @@ +___#_ +__@__ +_____ +_#__* +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/11.txt b/maze/task4/maps/level_step5/special_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a36fdddf9aa4506761a196fc45e093302021c92 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/11.txt @@ -0,0 +1,5 @@ +_____ +_#_#_ +_____ +##___ +*@_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/12.txt b/maze/task4/maps/level_step5/special_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..908f4314979a348d097345fdf210bd7224d335f8 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/12.txt @@ -0,0 +1,5 @@ +__#_# +_____ +_#___ +__@__ +_*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/13.txt b/maze/task4/maps/level_step5/special_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..77bc6f8f80bebeb78e40761731a938f440bb1394 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/13.txt @@ -0,0 +1,5 @@ +#___* +#_##_ +___#_ +@____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/14.txt b/maze/task4/maps/level_step5/special_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e0ddf89ac03e81ea86e73ab11b1ba85598c4849 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/14.txt @@ -0,0 +1,5 @@ +__#@_ +__#*_ +_____ +#__#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/15.txt b/maze/task4/maps/level_step5/special_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2dc4f891b87636a4ef1f498b7a8def10a58d188 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/15.txt @@ -0,0 +1,5 @@ +_____ +#__#@ +_____ +__#__ +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/16.txt b/maze/task4/maps/level_step5/special_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ef8c6c90c43a36a8d8ab69d756c9b6b8e0cdcc --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/16.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +__@## +*__#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/17.txt b/maze/task4/maps/level_step5/special_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..632c6dfdd7db2abde90b8dd1e3595d6c51bf65b5 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/17.txt @@ -0,0 +1,5 @@ +_#_#* +_____ +___@_ +__#_# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/18.txt b/maze/task4/maps/level_step5/special_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7aa001c257334571c4ca01508b36f770c8b82eb --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/18.txt @@ -0,0 +1,5 @@ +__#__ +_____ +#_#@# +__*#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/19.txt b/maze/task4/maps/level_step5/special_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a5c2ec057b19a087016bd61d8dd5c9d4e84df1 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/19.txt @@ -0,0 +1,5 @@ +##__# +___## +____# +_*___ +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/2.txt b/maze/task4/maps/level_step5/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..048936f4edf772d59f702bd13490217b5ce9d207 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +__### +_____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/20.txt b/maze/task4/maps/level_step5/special_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..42987cf8aa4bc39bc4a012cb7113b3af81634ca1 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/20.txt @@ -0,0 +1,5 @@ +_____ +____# +___#@ +_#___ +__*_# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/21.txt b/maze/task4/maps/level_step5/special_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..55973d6eccbbd89d2c4dd9b68a9de01e9ecf2685 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/21.txt @@ -0,0 +1,5 @@ +_____ +___@_ +____# +#____ +____* \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/22.txt b/maze/task4/maps/level_step5/special_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..26fede4d4a72a82b3592d46d7e42c7815544ae12 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/22.txt @@ -0,0 +1,5 @@ +__*__ +____@ +_#_#_ +#____ +#_### \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/23.txt b/maze/task4/maps/level_step5/special_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..73251d9ef58f21f8264aeecf4be6a7fa07074150 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/23.txt @@ -0,0 +1,5 @@ +__*__ +_#__# +_____ +@__#_ +###__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/24.txt b/maze/task4/maps/level_step5/special_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..eda3e43552eb1d24ba587693364a6e45aada62ec --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/24.txt @@ -0,0 +1,5 @@ +*@##_ +__#__ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/25.txt b/maze/task4/maps/level_step5/special_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..667de56b26576b5c1e594c4993b5bf8401b94f5b --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/25.txt @@ -0,0 +1,5 @@ +_____ +#@__# +#_*__ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/26.txt b/maze/task4/maps/level_step5/special_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..87b7e15dc0f60ddbeba88f55788938811d2c766b --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/26.txt @@ -0,0 +1,5 @@ +__#__ +__##_ +_###_ +_#@__ +_*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/27.txt b/maze/task4/maps/level_step5/special_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f810ac4f5ad2096a8075b1f34f21225c87d66e9 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/27.txt @@ -0,0 +1,5 @@ +__#__ +_@__# +__#_# +_____ +_#_*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/28.txt b/maze/task4/maps/level_step5/special_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe4f6951a13305bc8a3ebac101f52ac2df1d8d8d --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/28.txt @@ -0,0 +1,5 @@ +____# +_____ +____@ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/29.txt b/maze/task4/maps/level_step5/special_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5c455db493449694f8eed01e2c4c00cc45373d9 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/29.txt @@ -0,0 +1,5 @@ +_____ +@____ +___#_ +###__ +*____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/3.txt b/maze/task4/maps/level_step5/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..db97ae9d4b28569612d83923a1d3d5a271c0f04b --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_#___ +_____ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/30.txt b/maze/task4/maps/level_step5/special_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ff179791e452917063ab980e0aea48ed74b88fe --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/30.txt @@ -0,0 +1,5 @@ +_____ +__#__ +____# +#___* +__#@# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/31.txt b/maze/task4/maps/level_step5/special_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3e3cb7c92734ec14c47b6f2290398aa83255732 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/31.txt @@ -0,0 +1,5 @@ +___#_ +##_## +__#__ +@____ +_#__* \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/32.txt b/maze/task4/maps/level_step5/special_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a4fc05ffa3df75dfb9c3c98a349a779e321dc9a --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/32.txt @@ -0,0 +1,5 @@ +*__## +_____ +_____ +__@#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/33.txt b/maze/task4/maps/level_step5/special_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e369f79292a43424db7abeb80c7e13f47ba769a --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/33.txt @@ -0,0 +1,5 @@ +___#_ +_##_# +____@ +_____ +___*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/34.txt b/maze/task4/maps/level_step5/special_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..418156b8ed67a0dc401068fca019c2f96c3c2de5 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/34.txt @@ -0,0 +1,5 @@ +_____ +_____ +__*## +@___# +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/35.txt b/maze/task4/maps/level_step5/special_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a324c3fd52ad76e773e0621cde09c0001a1295d9 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/35.txt @@ -0,0 +1,5 @@ +___*# +____# +_____ +@##_# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/36.txt b/maze/task4/maps/level_step5/special_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..50e0715303cf2fc01c326b54e82959e885aa66b4 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/36.txt @@ -0,0 +1,5 @@ +_____ +__#*_ +#___# +__@__ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/37.txt b/maze/task4/maps/level_step5/special_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..e58444379dfd16686fafb8129616984c264b7171 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/37.txt @@ -0,0 +1,5 @@ +#____ +_#_@_ +#__#_ +#____ +#__*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/38.txt b/maze/task4/maps/level_step5/special_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..53bd544dd3fe37b71e4fcc6368ca6a2319fba80a --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/38.txt @@ -0,0 +1,5 @@ +__#__ +__##* +___#_ +___## +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/39.txt b/maze/task4/maps/level_step5/special_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..f54db121100d25b012465112fe0db39885ca9240 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/39.txt @@ -0,0 +1,5 @@ +____* +@#___ +____# +_____ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/4.txt b/maze/task4/maps/level_step5/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..502e775fe3e2fca70814b0024f0c4843bcb1d419 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/4.txt @@ -0,0 +1,5 @@ +____@ +_____ +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/40.txt b/maze/task4/maps/level_step5/special_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffba5f76fabeeb41d85c8375842f2b026da28c75 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/40.txt @@ -0,0 +1,5 @@ +_____ +##*__ +_#___ +@____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/41.txt b/maze/task4/maps/level_step5/special_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..566751fb311af38ac73d78153cd77dff21488226 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/41.txt @@ -0,0 +1,5 @@ +#_#__ +_____ +_@___ +_#_*# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/42.txt b/maze/task4/maps/level_step5/special_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f6be4d26e286f6d9fee5269e7f7468c831d7c7d --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/42.txt @@ -0,0 +1,5 @@ +__### +_____ +__@__ +___## +##*#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/43.txt b/maze/task4/maps/level_step5/special_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..c229d5f2ebed8676850e04df8ecb2d7dbe792fc5 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/43.txt @@ -0,0 +1,5 @@ +__@_* +__#__ +_____ +_____ +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/44.txt b/maze/task4/maps/level_step5/special_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..98e1371697734fe4bc87170681fc345e1717d849 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/44.txt @@ -0,0 +1,5 @@ +___#_ +*____ +_#__# +_@_#_ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/45.txt b/maze/task4/maps/level_step5/special_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..eae621b6cdb39463843ae427e40348b071087230 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/45.txt @@ -0,0 +1,5 @@ +__*__ +____@ +_#___ +_#__# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/46.txt b/maze/task4/maps/level_step5/special_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..635746573b05a3c1443b2668e353dc5fddfc3c88 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/46.txt @@ -0,0 +1,5 @@ +__#__ +@#___ +_#___ +#_#__ +_*#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/47.txt b/maze/task4/maps/level_step5/special_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3b1bdb35036f0ad4723f736503b576126387c3e --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/47.txt @@ -0,0 +1,5 @@ +_____ +_____ +_*#__ +##_@_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/48.txt b/maze/task4/maps/level_step5/special_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..efa88e75096e3dacb7219fc7ae4bba15ba888e32 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/48.txt @@ -0,0 +1,5 @@ +_##_@ +#_#__ +_____ +__*__ +_##__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/49.txt b/maze/task4/maps/level_step5/special_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..b42998a570d2efa4a5461a88eb5bb52bdedb77cf --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/49.txt @@ -0,0 +1,5 @@ +#____ +#@*#_ +_#___ +##__# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/5.txt b/maze/task4/maps/level_step5/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da829c21a8c7e84d7331b0713ca8ff4103eb23a --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +___#_ +_@___ +___*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/50.txt b/maze/task4/maps/level_step5/special_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8dc399239ec520d43c32e0eab65bb7138497e97 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/50.txt @@ -0,0 +1,5 @@ +____# +_____ +_#___ +__#__ +_##@* \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/51.txt b/maze/task4/maps/level_step5/special_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d30b17730f87121f240dd1575d3ce3b8e580a26 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/51.txt @@ -0,0 +1,5 @@ +*@#__ +_#___ +_#_#_ +_____ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/52.txt b/maze/task4/maps/level_step5/special_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3049e4f35622f4b0226be47fa7be960042b6f3c --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/52.txt @@ -0,0 +1,5 @@ +#____ +*@_#_ +_____ +___## +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/53.txt b/maze/task4/maps/level_step5/special_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d12fc1b942f2a7bc3156f95f0e25211ddb00df6b --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/53.txt @@ -0,0 +1,5 @@ +#*#__ +#@#__ +#_##_ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/54.txt b/maze/task4/maps/level_step5/special_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..460fe4f6a5ed068fcdc5de55bed0540c132d79d1 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/54.txt @@ -0,0 +1,5 @@ +_____ +*____ +_____ +__### +_@__# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/55.txt b/maze/task4/maps/level_step5/special_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f719174a09fc4c4ff475bd9d2bcb559adc9c863 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/55.txt @@ -0,0 +1,5 @@ +__*__ +_____ +#_#@# +_#_#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/56.txt b/maze/task4/maps/level_step5/special_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..81737f9a8c89e7dd7693ed0b4c159a14ebff6ead --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/56.txt @@ -0,0 +1,5 @@ +_#__@ +_*___ +_#___ +_____ +#__#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/57.txt b/maze/task4/maps/level_step5/special_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e03f93d3a9f14eaf86a5bce2fedbfe6a2691866 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/57.txt @@ -0,0 +1,5 @@ +__#__ +__##@ +_*#__ +#____ +_#__# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/58.txt b/maze/task4/maps/level_step5/special_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..12dbc939bfcc060a05984cb19276832fda6b5e63 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/58.txt @@ -0,0 +1,5 @@ +#*___ +_@##_ +_____ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/59.txt b/maze/task4/maps/level_step5/special_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dc4339baf9608e27936e5303d203a8c77ab9264 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/59.txt @@ -0,0 +1,5 @@ +_____ +_#_@_ +_*___ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/6.txt b/maze/task4/maps/level_step5/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..06ac61b196846a33b6224efe7ab1f762ac624cf4 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +____# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/60.txt b/maze/task4/maps/level_step5/special_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9d32ec97dca5117fac0245541e8052a96e54867 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/60.txt @@ -0,0 +1,5 @@ +#_@__ +#___* +__#__ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/61.txt b/maze/task4/maps/level_step5/special_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..80fde912cd99284d3f3773492a2e1631c4904fc8 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/61.txt @@ -0,0 +1,5 @@ +_@_#_ +__*__ +_____ +_#_#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/62.txt b/maze/task4/maps/level_step5/special_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fa48a73df607def45b79bcf1798656a8f58e52a --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/62.txt @@ -0,0 +1,5 @@ +*_#__ +__#_# +__#__ +_##_# +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/63.txt b/maze/task4/maps/level_step5/special_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8ba5f067983416b3c08e56b0d5e9eb20507e07a --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/63.txt @@ -0,0 +1,5 @@ +___#_ +_____ +___#_ +__#__ +_*#@_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/64.txt b/maze/task4/maps/level_step5/special_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fa6769f1673fff90f8f4ca2212f1db695c823db --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/64.txt @@ -0,0 +1,5 @@ +_##__ +__@__ +__#__ +___*_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/65.txt b/maze/task4/maps/level_step5/special_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..273a45b8810156eed9ea271cf72348962676deea --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/65.txt @@ -0,0 +1,5 @@ +_#___ +#___# +_____ +_@#__ +____* \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/66.txt b/maze/task4/maps/level_step5/special_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c8c946741e186c43529ea8795ca4e36700f36af --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/66.txt @@ -0,0 +1,5 @@ +#___# +_#@*# +##___ +_____ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/67.txt b/maze/task4/maps/level_step5/special_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..6733fd01506829b65c21e6cc8f88f1aa8508fc5a --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/67.txt @@ -0,0 +1,5 @@ +___## +_____ +_##__ +#___# +@*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/68.txt b/maze/task4/maps/level_step5/special_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd6f3b6cad71f77ea21b6273614c4472074a1bef --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/68.txt @@ -0,0 +1,5 @@ +_____ +@#___ +#____ +_*___ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/69.txt b/maze/task4/maps/level_step5/special_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dffa8b0097e6908fd1d8293817547ae9c00c985 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/69.txt @@ -0,0 +1,5 @@ +__#__ +_#_@# +____# +_#_*# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/7.txt b/maze/task4/maps/level_step5/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..947b1b2dd06ad0ebcd2a7874e290e538c4bb5524 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/7.txt @@ -0,0 +1,5 @@ +___*_ +#_@__ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/70.txt b/maze/task4/maps/level_step5/special_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f9572cc2911c9ce5b6d72399e40ec3aed7a55e4 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/70.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +#_@#_ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/71.txt b/maze/task4/maps/level_step5/special_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..78455e5e9260182666a66f8bbc0260cdfbf687e2 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/71.txt @@ -0,0 +1,5 @@ +#_@_* +__##_ +_##__ +_#___ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/72.txt b/maze/task4/maps/level_step5/special_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..26ec86387649952aed0c463f3e2faf21304e228c --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/72.txt @@ -0,0 +1,5 @@ +___@# +##__# +_##__ +#____ +__#*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/73.txt b/maze/task4/maps/level_step5/special_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..1de13482e12e7f99336fa6c1664e28e044fcd606 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/73.txt @@ -0,0 +1,5 @@ +##___ +___#_ +_#@__ +_*___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/74.txt b/maze/task4/maps/level_step5/special_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed36693a062ec2c15a72eb6d2228e4c31883eaa --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/74.txt @@ -0,0 +1,5 @@ +#___# +__#__ +_____ +*___@ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/75.txt b/maze/task4/maps/level_step5/special_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..db2a76c4c80ff8d818be6d103d0ee92075cb00c2 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/75.txt @@ -0,0 +1,5 @@ +_____ +_#*__ +#_@__ +__#__ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/76.txt b/maze/task4/maps/level_step5/special_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e88d942c35a39e83672b15e7e85c8d1244ec787 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/76.txt @@ -0,0 +1,5 @@ +_____ +_____ +@___# +*#___ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/77.txt b/maze/task4/maps/level_step5/special_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecab8c2812a8063a4838486e64a7267156c5237c --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/77.txt @@ -0,0 +1,5 @@ +_____ +___*_ +___#_ +__#__ +#@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/78.txt b/maze/task4/maps/level_step5/special_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4b11458153a822b71db9abc600c902700b260ca --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/78.txt @@ -0,0 +1,5 @@ +_____ +____@ +_###_ +_#___ +#_*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/79.txt b/maze/task4/maps/level_step5/special_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..336b7ac46f27bbe989eb94e3dea785db867df9f5 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/79.txt @@ -0,0 +1,5 @@ +____* +__@#_ +__### +_____ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/8.txt b/maze/task4/maps/level_step5/special_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6c796052f0100022fe2c081e835f47b1f55424b --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/8.txt @@ -0,0 +1,5 @@ +___*_ +#____ +___#_ +##_#_ +_@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/80.txt b/maze/task4/maps/level_step5/special_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b7fdbaa85d2830e9233f1a3bc9343d5e628273c --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/80.txt @@ -0,0 +1,5 @@ +#____ +__#__ +_____ +#_#__ +*@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/81.txt b/maze/task4/maps/level_step5/special_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..770e2de24b5e706f79626ad6744698679f6bb908 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/81.txt @@ -0,0 +1,5 @@ +__#__ +#_*__ +_@___ +_____ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/82.txt b/maze/task4/maps/level_step5/special_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfe293e64fd79861b6ab89b3fe8bfd1ca5baf8ba --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/82.txt @@ -0,0 +1,5 @@ +*#___ +_____ +_#___ +___#_ +@#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/83.txt b/maze/task4/maps/level_step5/special_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..47c66d58d2a08a1c0426a11969f0074a4ea9bc9f --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/83.txt @@ -0,0 +1,5 @@ +_##__ +#__#_ +_____ +*____ +___@# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/84.txt b/maze/task4/maps/level_step5/special_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca8b9f72f6f21c01e8fb7fbab8c3bb5415a87220 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/84.txt @@ -0,0 +1,5 @@ +___#_ +_____ +_*##_ +___#_ +_@### \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/85.txt b/maze/task4/maps/level_step5/special_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..f64a2eec83e5fd88906e2af5080f59935c77609f --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/85.txt @@ -0,0 +1,5 @@ +##_#_ +_#_#_ +____@ +___#* +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/86.txt b/maze/task4/maps/level_step5/special_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a740b13ce899bc4fc84217a221c2ce136f8b4ea7 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/86.txt @@ -0,0 +1,5 @@ +__##_ +_____ +@_*#_ +##___ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/87.txt b/maze/task4/maps/level_step5/special_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..22bdb6bf62e3a19e943cc060cb2f88b46f63c079 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/87.txt @@ -0,0 +1,5 @@ +#____ +__##_ +#*@_# +#____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/88.txt b/maze/task4/maps/level_step5/special_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..575af80e1b3cc351860c53381214dd1f7ca426af --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/88.txt @@ -0,0 +1,5 @@ +__*#_ +##___ +##_@_ +##___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/89.txt b/maze/task4/maps/level_step5/special_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ead45168e535a1c6d1f8143e1f0f0d6ec8ea4cb --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/89.txt @@ -0,0 +1,5 @@ +_##__ +@__*_ +#____ +_____ +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/9.txt b/maze/task4/maps/level_step5/special_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..0045d466904f3bfb7467bf5e17f88308761c8813 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/9.txt @@ -0,0 +1,5 @@ +##__# +#_#*# +#@#_# +_#___ +####_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/90.txt b/maze/task4/maps/level_step5/special_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc892ce80b072337f7ae4796aaaf1c4cc5bf4f01 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/90.txt @@ -0,0 +1,5 @@ +_____ +__#_@ +____# +*#___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/91.txt b/maze/task4/maps/level_step5/special_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..235f10290e22215cfa0a065a8226c4ed249e809a --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/91.txt @@ -0,0 +1,5 @@ +##_#_ +_@___ +*____ +__#__ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/92.txt b/maze/task4/maps/level_step5/special_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..035d413ea0181b16d955f9031d67afe8b54ebe34 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/92.txt @@ -0,0 +1,5 @@ +__@_# +_#___ +_*___ +____# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/93.txt b/maze/task4/maps/level_step5/special_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd6e44dfc3ae2f2a504718837a2513a509abcdb6 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/93.txt @@ -0,0 +1,5 @@ +#____ +#@_#_ +_*#__ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/94.txt b/maze/task4/maps/level_step5/special_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..e071e3efa55db79e41db314bf2b80bbfb59e5a2b --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/94.txt @@ -0,0 +1,5 @@ +#____ +_#___ +*____ +___## +__@_# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/95.txt b/maze/task4/maps/level_step5/special_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..53a13f63227891c075ddc58c9f79a3db401e0891 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/95.txt @@ -0,0 +1,5 @@ +*#__# +_____ +___@# +_#___ +__#_# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/96.txt b/maze/task4/maps/level_step5/special_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0b9eae4d568b1b3911a91512de38f59371e694f --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/96.txt @@ -0,0 +1,5 @@ +#____ +###__ +_*___ +_##__ +_#_@_ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/97.txt b/maze/task4/maps/level_step5/special_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..59bf883a805c94d2453febf4cb9fa47b20264bac --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/97.txt @@ -0,0 +1,5 @@ +*@___ +#____ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/98.txt b/maze/task4/maps/level_step5/special_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..14bdf124c4db1fa996b8744a61c6a467834bfbf0 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/98.txt @@ -0,0 +1,5 @@ +#@#*_ +__#__ +_#___ +#____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/special_text/99.txt b/maze/task4/maps/level_step5/special_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..dde4c4c3f39b7aca7754d070558b6b34235032b0 --- /dev/null +++ b/maze/task4/maps/level_step5/special_text/99.txt @@ -0,0 +1,5 @@ +_____ +*#__@ +__#__ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step5/table/0.txt b/maze/task4/maps/level_step5/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a765d893b35290f852dd7ae2d23954ce2e0305de --- /dev/null +++ b/maze/task4/maps/level_step5/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step5/table/1.txt b/maze/task4/maps/level_step5/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9644ba4395c19da791aa1dca093cacf7aa2e64e1 --- /dev/null +++ b/maze/task4/maps/level_step5/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step5/table/10.txt b/maze/task4/maps/level_step5/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0211bef6e0797f5185afb256ab03b4c8aaff905 --- /dev/null +++ b/maze/task4/maps/level_step5/table/10.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step5/table/11.txt b/maze/task4/maps/level_step5/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c13dd64384e96f6df6a3764bf2647745198acf7 --- /dev/null +++ b/maze/task4/maps/level_step5/table/11.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/12.txt b/maze/task4/maps/level_step5/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..946812b87c7105aa6fbfdf6be1118cf04d91e848 --- /dev/null +++ b/maze/task4/maps/level_step5/table/12.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/13.txt b/maze/task4/maps/level_step5/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..18c152bb1251bc75b70b2370f0eca8360495dfd7 --- /dev/null +++ b/maze/task4/maps/level_step5/table/13.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | # | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/14.txt b/maze/task4/maps/level_step5/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..74c766497f20046fdef1a548c283f61b3c2045b6 --- /dev/null +++ b/maze/task4/maps/level_step5/table/14.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/15.txt b/maze/task4/maps/level_step5/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7ca72c752720bdbafcf70c449e47c9ec6f17ba5 --- /dev/null +++ b/maze/task4/maps/level_step5/table/15.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step5/table/16.txt b/maze/task4/maps/level_step5/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdaadcc660885d8cc036c56eb3d8c6166734d251 --- /dev/null +++ b/maze/task4/maps/level_step5/table/16.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/17.txt b/maze/task4/maps/level_step5/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..34e23d32911344bc7beef5dae962155f62eb02e0 --- /dev/null +++ b/maze/task4/maps/level_step5/table/17.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/18.txt b/maze/task4/maps/level_step5/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..c61d36fb43406a1511c795ee67822127604c66ec --- /dev/null +++ b/maze/task4/maps/level_step5/table/18.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | # | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/19.txt b/maze/task4/maps/level_step5/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..dddc27c4db2023865999858bf4fdbe566b5266f7 --- /dev/null +++ b/maze/task4/maps/level_step5/table/19.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step5/table/2.txt b/maze/task4/maps/level_step5/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task4/maps/level_step5/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/20.txt b/maze/task4/maps/level_step5/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..60f96585de5bee9fac2aca2fcaa5747c6122c86d --- /dev/null +++ b/maze/task4/maps/level_step5/table/20.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | diff --git a/maze/task4/maps/level_step5/table/21.txt b/maze/task4/maps/level_step5/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bdb7f9d38c363607edebca795b8efda2fd58943 --- /dev/null +++ b/maze/task4/maps/level_step5/table/21.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task4/maps/level_step5/table/22.txt b/maze/task4/maps/level_step5/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..59f0ab314b6bf6cfe3aa2eaf53e49184c9868813 --- /dev/null +++ b/maze/task4/maps/level_step5/table/22.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | diff --git a/maze/task4/maps/level_step5/table/23.txt b/maze/task4/maps/level_step5/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0157b5793ed80a21278fdd8be52f52fedd43f978 --- /dev/null +++ b/maze/task4/maps/level_step5/table/23.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | # | # | _ | _ | diff --git a/maze/task4/maps/level_step5/table/24.txt b/maze/task4/maps/level_step5/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bbb681c3461cff5d1235131dc0199e120a5cbb7 --- /dev/null +++ b/maze/task4/maps/level_step5/table/24.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/25.txt b/maze/task4/maps/level_step5/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2ecfa107864966d52a237d3a7578f7c4255db56 --- /dev/null +++ b/maze/task4/maps/level_step5/table/25.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/26.txt b/maze/task4/maps/level_step5/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcb2851db496bce5914947b179bc06b3d426d077 --- /dev/null +++ b/maze/task4/maps/level_step5/table/26.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | # | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/27.txt b/maze/task4/maps/level_step5/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..78bbcfe6501df2fa4d5998e438299642be5337aa --- /dev/null +++ b/maze/task4/maps/level_step5/table/27.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | * | _ | diff --git a/maze/task4/maps/level_step5/table/28.txt b/maze/task4/maps/level_step5/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..60ac347fd4a84043ca0e33430e4979c51a670c85 --- /dev/null +++ b/maze/task4/maps/level_step5/table/28.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/29.txt b/maze/task4/maps/level_step5/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b13c26fa8f8882608027dd177cb1b2e0171f345 --- /dev/null +++ b/maze/task4/maps/level_step5/table/29.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/3.txt b/maze/task4/maps/level_step5/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9afb12ea5b879f7d3d1aee81db7632744fe5e1 --- /dev/null +++ b/maze/task4/maps/level_step5/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/30.txt b/maze/task4/maps/level_step5/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cb1ae58ba0ccd2d81caa01dd388fbacd7ef701b --- /dev/null +++ b/maze/task4/maps/level_step5/table/30.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | * | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task4/maps/level_step5/table/31.txt b/maze/task4/maps/level_step5/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..79fab8a93e45cc567a9c8e57d28bfdde645c5f7b --- /dev/null +++ b/maze/task4/maps/level_step5/table/31.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | diff --git a/maze/task4/maps/level_step5/table/32.txt b/maze/task4/maps/level_step5/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e596765f71f84682ad2c57d6303627b783f01b2 --- /dev/null +++ b/maze/task4/maps/level_step5/table/32.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/33.txt b/maze/task4/maps/level_step5/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..419c8042381b1781ac2fad374e1c39d0b7a7ad54 --- /dev/null +++ b/maze/task4/maps/level_step5/table/33.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step5/table/34.txt b/maze/task4/maps/level_step5/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..01bad990b8df916dad20031887e1b820184fa657 --- /dev/null +++ b/maze/task4/maps/level_step5/table/34.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/35.txt b/maze/task4/maps/level_step5/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f18b432ca7b113f763e08ee6dc6532333bf5715 --- /dev/null +++ b/maze/task4/maps/level_step5/table/35.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/36.txt b/maze/task4/maps/level_step5/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..07f99a8a1d5fc503d84c1acd816d73e8d8b8169b --- /dev/null +++ b/maze/task4/maps/level_step5/table/36.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step5/table/37.txt b/maze/task4/maps/level_step5/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..adabe4db6cc43662fb78296b6404b89fd88c9140 --- /dev/null +++ b/maze/task4/maps/level_step5/table/37.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step5/table/38.txt b/maze/task4/maps/level_step5/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0c9c445aa3e60e17ebb8438cb97605df478ba11 --- /dev/null +++ b/maze/task4/maps/level_step5/table/38.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step5/table/39.txt b/maze/task4/maps/level_step5/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0704e01227f0053492af42b41bc5f3bbc0d5b4b --- /dev/null +++ b/maze/task4/maps/level_step5/table/39.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/4.txt b/maze/task4/maps/level_step5/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a319701482090faefd8ce684edd4b3d512e35984 --- /dev/null +++ b/maze/task4/maps/level_step5/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/40.txt b/maze/task4/maps/level_step5/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcb1ad9fd5d83a2f7e5b26d6f168d5d38131dde5 --- /dev/null +++ b/maze/task4/maps/level_step5/table/40.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/41.txt b/maze/task4/maps/level_step5/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..a69ba0fd6e108e65971aeec453ee42c21f1cc200 --- /dev/null +++ b/maze/task4/maps/level_step5/table/41.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/42.txt b/maze/task4/maps/level_step5/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5ca888d324537967e7b50d07496f5147b5d5358 --- /dev/null +++ b/maze/task4/maps/level_step5/table/42.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | # | * | # | _ | diff --git a/maze/task4/maps/level_step5/table/43.txt b/maze/task4/maps/level_step5/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..bba5c75ca3accaaa374a79977ffb21046bb28e7b --- /dev/null +++ b/maze/task4/maps/level_step5/table/43.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/44.txt b/maze/task4/maps/level_step5/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..80de0959c036469c32805ef6549d2b1ed4c6bedb --- /dev/null +++ b/maze/task4/maps/level_step5/table/44.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | _ | @ | _ | # | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/45.txt b/maze/task4/maps/level_step5/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c18b3e25aecbca606d0717b194804c0ab956f3e --- /dev/null +++ b/maze/task4/maps/level_step5/table/45.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/46.txt b/maze/task4/maps/level_step5/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..636395a5b227de5e2ad0ecc008339faf6d29fe78 --- /dev/null +++ b/maze/task4/maps/level_step5/table/46.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | diff --git a/maze/task4/maps/level_step5/table/47.txt b/maze/task4/maps/level_step5/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..5af81234f05f77e8f6ca8fc2676ed5398e0570b4 --- /dev/null +++ b/maze/task4/maps/level_step5/table/47.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/48.txt b/maze/task4/maps/level_step5/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..e898994592d1711c0d96faca5000b9c57955a9b6 --- /dev/null +++ b/maze/task4/maps/level_step5/table/48.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | @ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | diff --git a/maze/task4/maps/level_step5/table/49.txt b/maze/task4/maps/level_step5/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b25ac0e6906fcdfa9b2ca519414bf1a67a7e37b --- /dev/null +++ b/maze/task4/maps/level_step5/table/49.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/5.txt b/maze/task4/maps/level_step5/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da45b1e61a5685cb46325f1a7c0f88321df2ae --- /dev/null +++ b/maze/task4/maps/level_step5/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step5/table/50.txt b/maze/task4/maps/level_step5/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..b038fe78ef3a147679fd328226bbcdf7cb2b59bb --- /dev/null +++ b/maze/task4/maps/level_step5/table/50.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | # | @ | * | diff --git a/maze/task4/maps/level_step5/table/51.txt b/maze/task4/maps/level_step5/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ae3bdf4ee9c84766e3688359f5eafec2b7257f5 --- /dev/null +++ b/maze/task4/maps/level_step5/table/51.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/52.txt b/maze/task4/maps/level_step5/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..478cf254041f5320388d50efbb6ac9587c2272a2 --- /dev/null +++ b/maze/task4/maps/level_step5/table/52.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/53.txt b/maze/task4/maps/level_step5/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d5ee7e95f64becee9861bbaa79d15ef29571b16 --- /dev/null +++ b/maze/task4/maps/level_step5/table/53.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | _ | _ | +| Row 2 | # | @ | # | _ | _ | +| Row 3 | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step5/table/54.txt b/maze/task4/maps/level_step5/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdc1cc0899d4f700ee77c58e0f4c840f7010f4db --- /dev/null +++ b/maze/task4/maps/level_step5/table/54.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | # | +| Row 5 | _ | @ | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/55.txt b/maze/task4/maps/level_step5/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4a0a66cbd89c844c61a9c663d0c33844d15328d --- /dev/null +++ b/maze/task4/maps/level_step5/table/55.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | # | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/56.txt b/maze/task4/maps/level_step5/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..4487842e169908810a1c49a92afaea00f05c4e9f --- /dev/null +++ b/maze/task4/maps/level_step5/table/56.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/57.txt b/maze/task4/maps/level_step5/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..7121f0a8cdba3718ce9dec29659264ef82187e1a --- /dev/null +++ b/maze/task4/maps/level_step5/table/57.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/58.txt b/maze/task4/maps/level_step5/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4facf5f7b9bd004d8c1c5545d862b78a8ed747eb --- /dev/null +++ b/maze/task4/maps/level_step5/table/58.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/59.txt b/maze/task4/maps/level_step5/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..a944527c0bbc1386a4896c78deb1038293630f88 --- /dev/null +++ b/maze/task4/maps/level_step5/table/59.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step5/table/6.txt b/maze/task4/maps/level_step5/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2521dc5a2e4b78cd93244c384377b6d6b0823192 --- /dev/null +++ b/maze/task4/maps/level_step5/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/60.txt b/maze/task4/maps/level_step5/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..00def527d41c997c53038f0a9dd2efdbfda5a2cf --- /dev/null +++ b/maze/task4/maps/level_step5/table/60.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | _ | _ | +| Row 2 | # | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/61.txt b/maze/task4/maps/level_step5/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..25a949c147d27e07c25bfdb4a30d6ab10cb65b36 --- /dev/null +++ b/maze/task4/maps/level_step5/table/61.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/62.txt b/maze/task4/maps/level_step5/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..66052c016a4f346ecda19ab98dc7c648f20de650 --- /dev/null +++ b/maze/task4/maps/level_step5/table/62.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step5/table/63.txt b/maze/task4/maps/level_step5/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..ced30f73ce6d523e27d98cd9bf4529e0f2c26193 --- /dev/null +++ b/maze/task4/maps/level_step5/table/63.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | * | # | @ | _ | diff --git a/maze/task4/maps/level_step5/table/64.txt b/maze/task4/maps/level_step5/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..dabee75b74fc7048d54ebdf32294b1bbce3f2dc0 --- /dev/null +++ b/maze/task4/maps/level_step5/table/64.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/65.txt b/maze/task4/maps/level_step5/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1832588961f6191e6e1788edc61104055eccf31c --- /dev/null +++ b/maze/task4/maps/level_step5/table/65.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task4/maps/level_step5/table/66.txt b/maze/task4/maps/level_step5/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..6793884685a1edd764a77db5b48558ffe0a9566b --- /dev/null +++ b/maze/task4/maps/level_step5/table/66.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | @ | * | # | +| Row 3 | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/67.txt b/maze/task4/maps/level_step5/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..00510829054cc3fead421eefba92badfeaba0cbb --- /dev/null +++ b/maze/task4/maps/level_step5/table/67.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/68.txt b/maze/task4/maps/level_step5/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..efe850c11ccc373e83cb8ef9a4dcd3561e6c212d --- /dev/null +++ b/maze/task4/maps/level_step5/table/68.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/69.txt b/maze/task4/maps/level_step5/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..82d0f84ca02b6dbadfadf946749eec578f795f01 --- /dev/null +++ b/maze/task4/maps/level_step5/table/69.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/7.txt b/maze/task4/maps/level_step5/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8dba5d2028d1b43ec39b0a8b91ac28929e299b84 --- /dev/null +++ b/maze/task4/maps/level_step5/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/70.txt b/maze/task4/maps/level_step5/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4404e2781df99c6580eeb74e3cfdecd6a84dbe2 --- /dev/null +++ b/maze/task4/maps/level_step5/table/70.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/71.txt b/maze/task4/maps/level_step5/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..a80db76ab6d9b2ba92c99cfe1a7bfcce5fb1fc38 --- /dev/null +++ b/maze/task4/maps/level_step5/table/71.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step5/table/72.txt b/maze/task4/maps/level_step5/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..72c889f737215c6b0c41cf4e115abcd03fc6f2d0 --- /dev/null +++ b/maze/task4/maps/level_step5/table/72.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | # | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | diff --git a/maze/task4/maps/level_step5/table/73.txt b/maze/task4/maps/level_step5/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..05ac59668e3255122188a6a3c2c5e8189a60e5e8 --- /dev/null +++ b/maze/task4/maps/level_step5/table/73.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | # | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/74.txt b/maze/task4/maps/level_step5/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..3faabd2620240c61d2bc74842cf5af9fa9be7eb6 --- /dev/null +++ b/maze/task4/maps/level_step5/table/74.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/75.txt b/maze/task4/maps/level_step5/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..c752c4232c5438ee8b188511af6be60c1b701e90 --- /dev/null +++ b/maze/task4/maps/level_step5/table/75.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | * | _ | _ | +| Row 3 | # | _ | @ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/76.txt b/maze/task4/maps/level_step5/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a6b9654e17b3b50352be483d07a713827f110b --- /dev/null +++ b/maze/task4/maps/level_step5/table/76.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step5/table/77.txt b/maze/task4/maps/level_step5/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d6b8c001221cfd1183df5cfe6045993737433e7 --- /dev/null +++ b/maze/task4/maps/level_step5/table/77.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | # | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/78.txt b/maze/task4/maps/level_step5/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ad3a58c5cde8a32107f3466986df48dedbdf31f --- /dev/null +++ b/maze/task4/maps/level_step5/table/78.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step5/table/79.txt b/maze/task4/maps/level_step5/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..329aed543391d1e10f9a0f779ba6fc526bd7d4b3 --- /dev/null +++ b/maze/task4/maps/level_step5/table/79.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | # | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step5/table/8.txt b/maze/task4/maps/level_step5/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..497f826729be29a0fd82e501b50af79afaa11b73 --- /dev/null +++ b/maze/task4/maps/level_step5/table/8.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/80.txt b/maze/task4/maps/level_step5/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb140437548e911164e6e17a7f26f5b480844df7 --- /dev/null +++ b/maze/task4/maps/level_step5/table/80.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | * | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/81.txt b/maze/task4/maps/level_step5/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9ca416ce0c89402d65167d1db92ffaa4f7484fb --- /dev/null +++ b/maze/task4/maps/level_step5/table/81.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | # | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/82.txt b/maze/task4/maps/level_step5/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..eab81bf5186e77b3975b8e7ffc8ce6c6fd4a741f --- /dev/null +++ b/maze/task4/maps/level_step5/table/82.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/83.txt b/maze/task4/maps/level_step5/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..1410fb2f335cbebbab12502b46ca21277dcbb2e0 --- /dev/null +++ b/maze/task4/maps/level_step5/table/83.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | # | diff --git a/maze/task4/maps/level_step5/table/84.txt b/maze/task4/maps/level_step5/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9aa3dde72a4c16c91ed4a023e251103602d515e --- /dev/null +++ b/maze/task4/maps/level_step5/table/84.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | @ | # | # | # | diff --git a/maze/task4/maps/level_step5/table/85.txt b/maze/task4/maps/level_step5/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..752644e6113eda553503ebaff8d3027fecbf8798 --- /dev/null +++ b/maze/task4/maps/level_step5/table/85.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/86.txt b/maze/task4/maps/level_step5/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..549158c64ed96431696106b86baad27932dbe374 --- /dev/null +++ b/maze/task4/maps/level_step5/table/86.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/87.txt b/maze/task4/maps/level_step5/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..001e3015f7d27b938fc6abd3c7422672ea6c99a8 --- /dev/null +++ b/maze/task4/maps/level_step5/table/87.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | * | @ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/88.txt b/maze/task4/maps/level_step5/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d9706ff6bbf8e975d8e0896c4cde96fccd9d1ab --- /dev/null +++ b/maze/task4/maps/level_step5/table/88.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/89.txt b/maze/task4/maps/level_step5/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f9d067993b4e167b920e279ddd055052e84c911 --- /dev/null +++ b/maze/task4/maps/level_step5/table/89.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step5/table/9.txt b/maze/task4/maps/level_step5/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb06cbad0414c4e4b5ce1df3ec4877cdd2bec6df --- /dev/null +++ b/maze/task4/maps/level_step5/table/9.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | # | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task4/maps/level_step5/table/90.txt b/maze/task4/maps/level_step5/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..663ea411111cc2efcd9fa95e302388de6bb2d85e --- /dev/null +++ b/maze/task4/maps/level_step5/table/90.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/91.txt b/maze/task4/maps/level_step5/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..88ee6eaacd470874981bb45e9466c71632481bb7 --- /dev/null +++ b/maze/task4/maps/level_step5/table/91.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step5/table/92.txt b/maze/task4/maps/level_step5/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..f127bc7294e35835c52ce2713dfbd07d288abe4a --- /dev/null +++ b/maze/task4/maps/level_step5/table/92.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/93.txt b/maze/task4/maps/level_step5/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..76151d0ca02261a09c0cb8ac3784b8d4548b3f74 --- /dev/null +++ b/maze/task4/maps/level_step5/table/93.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step5/table/94.txt b/maze/task4/maps/level_step5/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d3fee3aeaa14249367091411e0d9a68eaf3ccd2 --- /dev/null +++ b/maze/task4/maps/level_step5/table/94.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | @ | _ | # | diff --git a/maze/task4/maps/level_step5/table/95.txt b/maze/task4/maps/level_step5/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cfddeed458210d22a1fdd41d27cfde9b2e2c62f --- /dev/null +++ b/maze/task4/maps/level_step5/table/95.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | diff --git a/maze/task4/maps/level_step5/table/96.txt b/maze/task4/maps/level_step5/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d3617d2351609c05cc950f557011977d2a0ea8 --- /dev/null +++ b/maze/task4/maps/level_step5/table/96.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | @ | _ | diff --git a/maze/task4/maps/level_step5/table/97.txt b/maze/task4/maps/level_step5/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..18326e3e099f68517b35e02e857b8a1073462cda --- /dev/null +++ b/maze/task4/maps/level_step5/table/97.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step5/table/98.txt b/maze/task4/maps/level_step5/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb16aef73ea9ec24bd9bb17984ceb82e5a003245 --- /dev/null +++ b/maze/task4/maps/level_step5/table/98.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | * | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/table/99.txt b/maze/task4/maps/level_step5/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..33d7938b7066fd84a556f9f4f58d83b891a7e093 --- /dev/null +++ b/maze/task4/maps/level_step5/table/99.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step5/text/0.txt b/maze/task4/maps/level_step5/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..0106913420d7781ee2740dc6b9e0eff5c78779ed --- /dev/null +++ b/maze/task4/maps/level_step5/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFFH +FFSFF +GFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/1.txt b/maze/task4/maps/level_step5/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a34c55c2e4e951fa6e13cb32e1e733d6fe05eb24 --- /dev/null +++ b/maze/task4/maps/level_step5/text/1.txt @@ -0,0 +1,5 @@ +FFSFF +FFFHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/10.txt b/maze/task4/maps/level_step5/text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..59e6ae7aa3f95ccf01f4ebd32a41d3888f18ead5 --- /dev/null +++ b/maze/task4/maps/level_step5/text/10.txt @@ -0,0 +1,5 @@ +FFFHF +FFSFF +FFFFF +FHFFG +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/11.txt b/maze/task4/maps/level_step5/text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e8ed4473b9dca191e27ae6e70ca326370811afd --- /dev/null +++ b/maze/task4/maps/level_step5/text/11.txt @@ -0,0 +1,5 @@ +FFFFF +FHFHF +FFFFF +HHFFF +GSFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/12.txt b/maze/task4/maps/level_step5/text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..888e026b512b980a2ce07cdea49cbbf8d23f2883 --- /dev/null +++ b/maze/task4/maps/level_step5/text/12.txt @@ -0,0 +1,5 @@ +FFHFH +FFFFF +FHFFF +FFSFF +FGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/13.txt b/maze/task4/maps/level_step5/text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbd58417efda87f7c7f859a6ddf8452a0145dd44 --- /dev/null +++ b/maze/task4/maps/level_step5/text/13.txt @@ -0,0 +1,5 @@ +HFFFG +HFHHF +FFFHF +SFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/14.txt b/maze/task4/maps/level_step5/text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae0c4a1f50c7c686c0feb6132c6aa57f379da4ce --- /dev/null +++ b/maze/task4/maps/level_step5/text/14.txt @@ -0,0 +1,5 @@ +FFHSF +FFHGF +FFFFF +HFFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/15.txt b/maze/task4/maps/level_step5/text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eaf29b8f805e21d8c0fb0ef6d427e4745807220 --- /dev/null +++ b/maze/task4/maps/level_step5/text/15.txt @@ -0,0 +1,5 @@ +FFFFF +HFFHS +FFFFF +FFHFF +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/16.txt b/maze/task4/maps/level_step5/text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..231fc1515c20ac2410f721a0d2afaef22ab92069 --- /dev/null +++ b/maze/task4/maps/level_step5/text/16.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +FFSHH +GFFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/17.txt b/maze/task4/maps/level_step5/text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8d17c5ea5b1c84c2b4c0b74cd3e346e6a552c33 --- /dev/null +++ b/maze/task4/maps/level_step5/text/17.txt @@ -0,0 +1,5 @@ +FHFHG +FFFFF +FFFSF +FFHFH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/18.txt b/maze/task4/maps/level_step5/text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..15a7f582ac957330aed7ae16f5b9d1b910cf1150 --- /dev/null +++ b/maze/task4/maps/level_step5/text/18.txt @@ -0,0 +1,5 @@ +FFHFF +FFFFF +HFHSH +FFGHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/19.txt b/maze/task4/maps/level_step5/text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..43f66957e4f5b88de8c40b44eb48ced85b671816 --- /dev/null +++ b/maze/task4/maps/level_step5/text/19.txt @@ -0,0 +1,5 @@ +HHFFH +FFFHH +FFFFH +FGFFF +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/2.txt b/maze/task4/maps/level_step5/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cb13026072ba0623bbd69f829f69e99a8eebd14 --- /dev/null +++ b/maze/task4/maps/level_step5/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +FFHHH +FFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/20.txt b/maze/task4/maps/level_step5/text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0f38ca5677738dabe064992e1f609ca17315b01 --- /dev/null +++ b/maze/task4/maps/level_step5/text/20.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFH +FFFHS +FHFFF +FFGFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/21.txt b/maze/task4/maps/level_step5/text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8eb819103d1d273329ea7f5230cb3fde72e9ee8 --- /dev/null +++ b/maze/task4/maps/level_step5/text/21.txt @@ -0,0 +1,5 @@ +FFFFF +FFFSF +FFFFH +HFFFF +FFFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/22.txt b/maze/task4/maps/level_step5/text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..69a80f2f12b7670eef1de99eec6e9a87ef9c100b --- /dev/null +++ b/maze/task4/maps/level_step5/text/22.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFS +FHFHF +HFFFF +HFHHH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/23.txt b/maze/task4/maps/level_step5/text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c5d68325d9c33aad403f0feeadaa803f7f4e355 --- /dev/null +++ b/maze/task4/maps/level_step5/text/23.txt @@ -0,0 +1,5 @@ +FFGFF +FHFFH +FFFFF +SFFHF +HHHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/24.txt b/maze/task4/maps/level_step5/text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8378b2f1e0de611494ed1c672128062f4585165 --- /dev/null +++ b/maze/task4/maps/level_step5/text/24.txt @@ -0,0 +1,5 @@ +GSHHF +FFHFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/25.txt b/maze/task4/maps/level_step5/text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e32256d198c93c47d9633d8bc09313a08758441f --- /dev/null +++ b/maze/task4/maps/level_step5/text/25.txt @@ -0,0 +1,5 @@ +FFFFF +HSFFH +HFGFF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/26.txt b/maze/task4/maps/level_step5/text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ac2776e65f9be8ca799e2265fcb3cb22c6eadf6 --- /dev/null +++ b/maze/task4/maps/level_step5/text/26.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHF +FHHHF +FHSFF +FGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/27.txt b/maze/task4/maps/level_step5/text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b01a42d7bd4290622e86e03a9cb63f2905e10eb --- /dev/null +++ b/maze/task4/maps/level_step5/text/27.txt @@ -0,0 +1,5 @@ +FFHFF +FSFFH +FFHFH +FFFFF +FHFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/28.txt b/maze/task4/maps/level_step5/text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c42f341cf3212c079a96dd41e359cc9c83e3520 --- /dev/null +++ b/maze/task4/maps/level_step5/text/28.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFF +FFFFS +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/29.txt b/maze/task4/maps/level_step5/text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..0923eb5e645d8a314ebdcb5dfee6b8c7f00870bd --- /dev/null +++ b/maze/task4/maps/level_step5/text/29.txt @@ -0,0 +1,5 @@ +FFFFF +SFFFF +FFFHF +HHHFF +GFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/3.txt b/maze/task4/maps/level_step5/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a9e740bd78265bf06ae44f5e44d9c50f1f66bb --- /dev/null +++ b/maze/task4/maps/level_step5/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHFFF +FFFFF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/30.txt b/maze/task4/maps/level_step5/text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..28465da818375140e8586a47221543236152470b --- /dev/null +++ b/maze/task4/maps/level_step5/text/30.txt @@ -0,0 +1,5 @@ +FFFFF +FFHFF +FFFFH +HFFFG +FFHSH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/31.txt b/maze/task4/maps/level_step5/text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..3253f95e50766585f125d60cf6b8d787aba6fa3b --- /dev/null +++ b/maze/task4/maps/level_step5/text/31.txt @@ -0,0 +1,5 @@ +FFFHF +HHFHH +FFHFF +SFFFF +FHFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/32.txt b/maze/task4/maps/level_step5/text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0f2823f98ee1487f0db0e4047fb3806fb934291 --- /dev/null +++ b/maze/task4/maps/level_step5/text/32.txt @@ -0,0 +1,5 @@ +GFFHH +FFFFF +FFFFF +FFSHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/33.txt b/maze/task4/maps/level_step5/text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..247f62e941001677d8eb5fd1131012a7504ac84a --- /dev/null +++ b/maze/task4/maps/level_step5/text/33.txt @@ -0,0 +1,5 @@ +FFFHF +FHHFH +FFFFS +FFFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/34.txt b/maze/task4/maps/level_step5/text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..a28a67b496b37fa6772f738078f06ebba5b09eaf --- /dev/null +++ b/maze/task4/maps/level_step5/text/34.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +FFGHH +SFFFH +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/35.txt b/maze/task4/maps/level_step5/text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..65de68cdd358bdd335fc70396c06ad49bf911a15 --- /dev/null +++ b/maze/task4/maps/level_step5/text/35.txt @@ -0,0 +1,5 @@ +FFFGH +FFFFH +FFFFF +SHHFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/36.txt b/maze/task4/maps/level_step5/text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce5a838a5ce2512a81fc5deab3a2e5acaaaf71f2 --- /dev/null +++ b/maze/task4/maps/level_step5/text/36.txt @@ -0,0 +1,5 @@ +FFFFF +FFHGF +HFFFH +FFSFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/37.txt b/maze/task4/maps/level_step5/text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b03d8128fbf503f46e0184ae969890ba3761de7 --- /dev/null +++ b/maze/task4/maps/level_step5/text/37.txt @@ -0,0 +1,5 @@ +HFFFF +FHFSF +HFFHF +HFFFF +HFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/38.txt b/maze/task4/maps/level_step5/text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..b45f7093d9c43898510d1373957ff81c628fe7f8 --- /dev/null +++ b/maze/task4/maps/level_step5/text/38.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHG +FFFHF +FFFHH +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/39.txt b/maze/task4/maps/level_step5/text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..5247df947e0d3fab49b840774c49afdb77ad68b8 --- /dev/null +++ b/maze/task4/maps/level_step5/text/39.txt @@ -0,0 +1,5 @@ +FFFFG +SHFFF +FFFFH +FFFFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/4.txt b/maze/task4/maps/level_step5/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3cf6eeb8bc7ed068008471ec53393fad67964e0 --- /dev/null +++ b/maze/task4/maps/level_step5/text/4.txt @@ -0,0 +1,5 @@ +FFFFS +FFFFF +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/40.txt b/maze/task4/maps/level_step5/text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd5d9302854a4b01b209a545bcc2134f0b251997 --- /dev/null +++ b/maze/task4/maps/level_step5/text/40.txt @@ -0,0 +1,5 @@ +FFFFF +HHGFF +FHFFF +SFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/41.txt b/maze/task4/maps/level_step5/text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..edcee62ad70358504e7455ed5f3c8e698cda6ee7 --- /dev/null +++ b/maze/task4/maps/level_step5/text/41.txt @@ -0,0 +1,5 @@ +HFHFF +FFFFF +FSFFF +FHFGH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/42.txt b/maze/task4/maps/level_step5/text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c5593e4a8301bb99cf5722d095fb856dc87397a --- /dev/null +++ b/maze/task4/maps/level_step5/text/42.txt @@ -0,0 +1,5 @@ +FFHHH +FFFFF +FFSFF +FFFHH +HHGHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/43.txt b/maze/task4/maps/level_step5/text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..997ab6291f57d3763645bcf5abb3842971968180 --- /dev/null +++ b/maze/task4/maps/level_step5/text/43.txt @@ -0,0 +1,5 @@ +FFSFG +FFHFF +FFFFF +FFFFF +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/44.txt b/maze/task4/maps/level_step5/text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..de08be859b34421d1c68b6f16c9ea57b102df75d --- /dev/null +++ b/maze/task4/maps/level_step5/text/44.txt @@ -0,0 +1,5 @@ +FFFHF +GFFFF +FHFFH +FSFHF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/45.txt b/maze/task4/maps/level_step5/text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7118d7c6287c8ba4092bbb643c03d6d6d1c6832 --- /dev/null +++ b/maze/task4/maps/level_step5/text/45.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFS +FHFFF +FHFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/46.txt b/maze/task4/maps/level_step5/text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bd195ff2006e6d6d5858c72457a18991ad66632 --- /dev/null +++ b/maze/task4/maps/level_step5/text/46.txt @@ -0,0 +1,5 @@ +FFHFF +SHFFF +FHFFF +HFHFF +FGHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/47.txt b/maze/task4/maps/level_step5/text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee3c2aa68a58d95f115512baf31df978f3be1540 --- /dev/null +++ b/maze/task4/maps/level_step5/text/47.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +FGHFF +HHFSF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/48.txt b/maze/task4/maps/level_step5/text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..6dc56596c4eb1e804baac240c9255d64886c0b39 --- /dev/null +++ b/maze/task4/maps/level_step5/text/48.txt @@ -0,0 +1,5 @@ +FHHFS +HFHFF +FFFFF +FFGFF +FHHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/49.txt b/maze/task4/maps/level_step5/text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..78938214ff07bd44b20ae757f54e3578843af918 --- /dev/null +++ b/maze/task4/maps/level_step5/text/49.txt @@ -0,0 +1,5 @@ +HFFFF +HSGHF +FHFFF +HHFFH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/5.txt b/maze/task4/maps/level_step5/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6a477a19a0ceaa1810c7ba9b9493628e24f6350 --- /dev/null +++ b/maze/task4/maps/level_step5/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FFFHF +FSFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/50.txt b/maze/task4/maps/level_step5/text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..923095eba7d1993cb31a1724933fd732bb07530c --- /dev/null +++ b/maze/task4/maps/level_step5/text/50.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFF +FHFFF +FFHFF +FHHSG \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/51.txt b/maze/task4/maps/level_step5/text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fbad4caf1ee713b22defbdf52b24fa7923872e2 --- /dev/null +++ b/maze/task4/maps/level_step5/text/51.txt @@ -0,0 +1,5 @@ +GSHFF +FHFFF +FHFHF +FFFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/52.txt b/maze/task4/maps/level_step5/text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..d243dd5b5760c5389868cfa66f63cf8d8d5af051 --- /dev/null +++ b/maze/task4/maps/level_step5/text/52.txt @@ -0,0 +1,5 @@ +HFFFF +GSFHF +FFFFF +FFFHH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/53.txt b/maze/task4/maps/level_step5/text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef7cc10ce6aa5f64e8542574a25318d086ba9de3 --- /dev/null +++ b/maze/task4/maps/level_step5/text/53.txt @@ -0,0 +1,5 @@ +HGHFF +HSHFF +HFHHF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/54.txt b/maze/task4/maps/level_step5/text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cfb8719dfcdc7bb3a39111b65e0b11c822089dd --- /dev/null +++ b/maze/task4/maps/level_step5/text/54.txt @@ -0,0 +1,5 @@ +FFFFF +GFFFF +FFFFF +FFHHH +FSFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/55.txt b/maze/task4/maps/level_step5/text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..577e74399d56caf93f08181f675cff3d22ce9233 --- /dev/null +++ b/maze/task4/maps/level_step5/text/55.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFF +HFHSH +FHFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/56.txt b/maze/task4/maps/level_step5/text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fe759c968b6359c0e1c26d4c45829cdcd65d208 --- /dev/null +++ b/maze/task4/maps/level_step5/text/56.txt @@ -0,0 +1,5 @@ +FHFFS +FGFFF +FHFFF +FFFFF +HFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/57.txt b/maze/task4/maps/level_step5/text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e80ed1ceee0eb3769975bb14b1715c364724f42 --- /dev/null +++ b/maze/task4/maps/level_step5/text/57.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHS +FGHFF +HFFFF +FHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/58.txt b/maze/task4/maps/level_step5/text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..969d55e8ca6d9e9a3c7b7776d1597f8892ab2263 --- /dev/null +++ b/maze/task4/maps/level_step5/text/58.txt @@ -0,0 +1,5 @@ +HGFFF +FSHHF +FFFFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/59.txt b/maze/task4/maps/level_step5/text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..4207c78bee9d63c2524404354457ec429201b1f1 --- /dev/null +++ b/maze/task4/maps/level_step5/text/59.txt @@ -0,0 +1,5 @@ +FFFFF +FHFSF +FGFFF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/6.txt b/maze/task4/maps/level_step5/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9277db9448443fe0cc50e301886dbfa02862ff92 --- /dev/null +++ b/maze/task4/maps/level_step5/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FFFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/60.txt b/maze/task4/maps/level_step5/text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b744a2854da6212746ba40e34d65eb46096f6395 --- /dev/null +++ b/maze/task4/maps/level_step5/text/60.txt @@ -0,0 +1,5 @@ +HFSFF +HFFFG +FFHFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/61.txt b/maze/task4/maps/level_step5/text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..1db1a7fe6fc07b10e2ce3669588178494b5bd929 --- /dev/null +++ b/maze/task4/maps/level_step5/text/61.txt @@ -0,0 +1,5 @@ +FSFHF +FFGFF +FFFFF +FHFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/62.txt b/maze/task4/maps/level_step5/text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e8bc2fc5fc6f32d14990ae7843243d6fbeb5686 --- /dev/null +++ b/maze/task4/maps/level_step5/text/62.txt @@ -0,0 +1,5 @@ +GFHFF +FFHFH +FFHFF +FHHFH +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/63.txt b/maze/task4/maps/level_step5/text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..682a1d4ad3f79c31f7bc9a75117e82c927ab101f --- /dev/null +++ b/maze/task4/maps/level_step5/text/63.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FFFHF +FFHFF +FGHSF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/64.txt b/maze/task4/maps/level_step5/text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcd8e63ece0f45d2d5d949767f2619ef4fad0424 --- /dev/null +++ b/maze/task4/maps/level_step5/text/64.txt @@ -0,0 +1,5 @@ +FHHFF +FFSFF +FFHFF +FFFGF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/65.txt b/maze/task4/maps/level_step5/text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..140d0e84c78158354891bc460d538253e1981a16 --- /dev/null +++ b/maze/task4/maps/level_step5/text/65.txt @@ -0,0 +1,5 @@ +FHFFF +HFFFH +FFFFF +FSHFF +FFFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/66.txt b/maze/task4/maps/level_step5/text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..26d1a785d095acc427d07edc85a283b24d4736cb --- /dev/null +++ b/maze/task4/maps/level_step5/text/66.txt @@ -0,0 +1,5 @@ +HFFFH +FHSGH +HHFFF +FFFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/67.txt b/maze/task4/maps/level_step5/text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fcc218ce02f344237ab29da277ac6ad05db0c55 --- /dev/null +++ b/maze/task4/maps/level_step5/text/67.txt @@ -0,0 +1,5 @@ +FFFHH +FFFFF +FHHFF +HFFFH +SGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/68.txt b/maze/task4/maps/level_step5/text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..350cba36bc4b5c2dd6600fff26f13385e3bf78d7 --- /dev/null +++ b/maze/task4/maps/level_step5/text/68.txt @@ -0,0 +1,5 @@ +FFFFF +SHFFF +HFFFF +FGFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/69.txt b/maze/task4/maps/level_step5/text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..c90da4f7a142e31e3631acce83522c4e7f38e31d --- /dev/null +++ b/maze/task4/maps/level_step5/text/69.txt @@ -0,0 +1,5 @@ +FFHFF +FHFSH +FFFFH +FHFGH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/7.txt b/maze/task4/maps/level_step5/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..72aa2f5aa703fa6f32714cf2bace5dc50055758c --- /dev/null +++ b/maze/task4/maps/level_step5/text/7.txt @@ -0,0 +1,5 @@ +FFFGF +HFSFF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/70.txt b/maze/task4/maps/level_step5/text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..40f99668819656884f69be6c6f9193835102d36b --- /dev/null +++ b/maze/task4/maps/level_step5/text/70.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +HFSHF +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/71.txt b/maze/task4/maps/level_step5/text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..db12e3cfc4fadaa95a0a000d7f0780c926b84e60 --- /dev/null +++ b/maze/task4/maps/level_step5/text/71.txt @@ -0,0 +1,5 @@ +HFSFG +FFHHF +FHHFF +FHFFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/72.txt b/maze/task4/maps/level_step5/text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..57b53a3880d4b9fa7a9e4f55c76d8799aedc5473 --- /dev/null +++ b/maze/task4/maps/level_step5/text/72.txt @@ -0,0 +1,5 @@ +FFFSH +HHFFH +FHHFF +HFFFF +FFHGF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/73.txt b/maze/task4/maps/level_step5/text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf5c7ce539bcb345a040e739321039824450acfe --- /dev/null +++ b/maze/task4/maps/level_step5/text/73.txt @@ -0,0 +1,5 @@ +HHFFF +FFFHF +FHSFF +FGFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/74.txt b/maze/task4/maps/level_step5/text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..d82d6750c3f506e79602207eb453fa7a7e90289d --- /dev/null +++ b/maze/task4/maps/level_step5/text/74.txt @@ -0,0 +1,5 @@ +HFFFH +FFHFF +FFFFF +GFFFS +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/75.txt b/maze/task4/maps/level_step5/text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..469036439fce6c2b5dfb0a123ee2bd92f052dfc3 --- /dev/null +++ b/maze/task4/maps/level_step5/text/75.txt @@ -0,0 +1,5 @@ +FFFFF +FHGFF +HFSFF +FFHFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/76.txt b/maze/task4/maps/level_step5/text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6aea245ce8af37eedf488c5fd172358d7157a94 --- /dev/null +++ b/maze/task4/maps/level_step5/text/76.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +SFFFH +GHFFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/77.txt b/maze/task4/maps/level_step5/text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1b5b3a98b1138e6e42b79ec92c857bf94a689aa --- /dev/null +++ b/maze/task4/maps/level_step5/text/77.txt @@ -0,0 +1,5 @@ +FFFFF +FFFGF +FFFHF +FFHFF +HSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/78.txt b/maze/task4/maps/level_step5/text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a0d1034f494ad50f9bcb42cc166981e041ef369 --- /dev/null +++ b/maze/task4/maps/level_step5/text/78.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFS +FHHHF +FHFFF +HFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/79.txt b/maze/task4/maps/level_step5/text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..f93a02155f0414d4f640bac0e583e37ccc4892b3 --- /dev/null +++ b/maze/task4/maps/level_step5/text/79.txt @@ -0,0 +1,5 @@ +FFFFG +FFSHF +FFHHH +FFFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/8.txt b/maze/task4/maps/level_step5/text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..41718d4d4c824cf49981e0ff7bc2dfa0ec32111f --- /dev/null +++ b/maze/task4/maps/level_step5/text/8.txt @@ -0,0 +1,5 @@ +FFFGF +HFFFF +FFFHF +HHFHF +FSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/80.txt b/maze/task4/maps/level_step5/text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e8447c7efb712cbbd62183d08edc6407a58ddf3 --- /dev/null +++ b/maze/task4/maps/level_step5/text/80.txt @@ -0,0 +1,5 @@ +HFFFF +FFHFF +FFFFF +HFHFF +GSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/81.txt b/maze/task4/maps/level_step5/text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ffd8a61e762ef26e925c691241e8146bdebab8a --- /dev/null +++ b/maze/task4/maps/level_step5/text/81.txt @@ -0,0 +1,5 @@ +FFHFF +HFGFF +FSFFF +FFFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/82.txt b/maze/task4/maps/level_step5/text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..28d10b9f26990b6d880223bfd20ecaebf88ccdcc --- /dev/null +++ b/maze/task4/maps/level_step5/text/82.txt @@ -0,0 +1,5 @@ +GHFFF +FFFFF +FHFFF +FFFHF +SHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/83.txt b/maze/task4/maps/level_step5/text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ae609d4487d79948579ebd59a6c7ebc6b28a636 --- /dev/null +++ b/maze/task4/maps/level_step5/text/83.txt @@ -0,0 +1,5 @@ +FHHFF +HFFHF +FFFFF +GFFFF +FFFSH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/84.txt b/maze/task4/maps/level_step5/text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe01e1ee68568e43662be494fe395186aa22a4a1 --- /dev/null +++ b/maze/task4/maps/level_step5/text/84.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FGHHF +FFFHF +FSHHH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/85.txt b/maze/task4/maps/level_step5/text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d9c07f5a9c4fc7fcdd4fb735482d1b1bf422619 --- /dev/null +++ b/maze/task4/maps/level_step5/text/85.txt @@ -0,0 +1,5 @@ +HHFHF +FHFHF +FFFFS +FFFHG +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/86.txt b/maze/task4/maps/level_step5/text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..dda180ba0de59bd7c18c06567b55392a336eb91d --- /dev/null +++ b/maze/task4/maps/level_step5/text/86.txt @@ -0,0 +1,5 @@ +FFHHF +FFFFF +SFGHF +HHFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/87.txt b/maze/task4/maps/level_step5/text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f974603b59f0a0cdce532aa562578df44c242c3 --- /dev/null +++ b/maze/task4/maps/level_step5/text/87.txt @@ -0,0 +1,5 @@ +HFFFF +FFHHF +HGSFH +HFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/88.txt b/maze/task4/maps/level_step5/text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..4133d510da32abaaea60667d2df629a44bf3fd59 --- /dev/null +++ b/maze/task4/maps/level_step5/text/88.txt @@ -0,0 +1,5 @@ +FFGHF +HHFFF +HHFSF +HHFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/89.txt b/maze/task4/maps/level_step5/text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..87dca12d5361052e7ba7abc56b9ab1d0f764bfee --- /dev/null +++ b/maze/task4/maps/level_step5/text/89.txt @@ -0,0 +1,5 @@ +FHHFF +SFFGF +HFFFF +FFFFF +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/9.txt b/maze/task4/maps/level_step5/text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a57ae53c21e7c36705f17c5f113bc9de09fb4cbd --- /dev/null +++ b/maze/task4/maps/level_step5/text/9.txt @@ -0,0 +1,5 @@ +HHFFH +HFHGH +HSHFH +FHFFF +HHHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/90.txt b/maze/task4/maps/level_step5/text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..05ce267f9b3c59a3be65631a9312ddae4aa9c93e --- /dev/null +++ b/maze/task4/maps/level_step5/text/90.txt @@ -0,0 +1,5 @@ +FFFFF +FFHFS +FFFFH +GHFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/91.txt b/maze/task4/maps/level_step5/text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbb8841416d3e7ea194632a46d14926670a11e55 --- /dev/null +++ b/maze/task4/maps/level_step5/text/91.txt @@ -0,0 +1,5 @@ +HHFHF +FSFFF +GFFFF +FFHFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/92.txt b/maze/task4/maps/level_step5/text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..c08ee6abff42f7c5ced6a3b2dfb66250281cdff6 --- /dev/null +++ b/maze/task4/maps/level_step5/text/92.txt @@ -0,0 +1,5 @@ +FFSFH +FHFFF +FGFFF +FFFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/93.txt b/maze/task4/maps/level_step5/text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f7f15d78b77681c7fbde3726db5ba9951e97352 --- /dev/null +++ b/maze/task4/maps/level_step5/text/93.txt @@ -0,0 +1,5 @@ +HFFFF +HSFHF +FGHFF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/94.txt b/maze/task4/maps/level_step5/text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..da8cf9cfeae73ff48f9cd08eb62699dc79148d3b --- /dev/null +++ b/maze/task4/maps/level_step5/text/94.txt @@ -0,0 +1,5 @@ +HFFFF +FHFFF +GFFFF +FFFHH +FFSFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/95.txt b/maze/task4/maps/level_step5/text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b8d73fdfd2a4ca5afc95744dc144a556bde332c --- /dev/null +++ b/maze/task4/maps/level_step5/text/95.txt @@ -0,0 +1,5 @@ +GHFFH +FFFFF +FFFSH +FHFFF +FFHFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/96.txt b/maze/task4/maps/level_step5/text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2e11fa0349187aba89005e952dabfd052c8ad94 --- /dev/null +++ b/maze/task4/maps/level_step5/text/96.txt @@ -0,0 +1,5 @@ +HFFFF +HHHFF +FGFFF +FHHFF +FHFSF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/97.txt b/maze/task4/maps/level_step5/text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dff9259ae73b447065883939ff5959a3f00bc68 --- /dev/null +++ b/maze/task4/maps/level_step5/text/97.txt @@ -0,0 +1,5 @@ +GSFFF +HFFFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/98.txt b/maze/task4/maps/level_step5/text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4d3b94d44d2bed49fbadc217b1d820264c5a7af --- /dev/null +++ b/maze/task4/maps/level_step5/text/98.txt @@ -0,0 +1,5 @@ +HSHGF +FFHFF +FHFFF +HFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step5/text/99.txt b/maze/task4/maps/level_step5/text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..120aa1bbd40eb42811ef2485260feec00ab77780 --- /dev/null +++ b/maze/task4/maps/level_step5/text/99.txt @@ -0,0 +1,5 @@ +FFFFF +GHFFS +FFHFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/0.txt b/maze/task4/maps/level_step7/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/0.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/1.txt b/maze/task4/maps/level_step7/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/1.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/10.txt b/maze/task4/maps/level_step7/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/10.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/11.txt b/maze/task4/maps/level_step7/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/11.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/12.txt b/maze/task4/maps/level_step7/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/12.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/13.txt b/maze/task4/maps/level_step7/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/13.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/14.txt b/maze/task4/maps/level_step7/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/14.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/15.txt b/maze/task4/maps/level_step7/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/15.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/16.txt b/maze/task4/maps/level_step7/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/16.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/17.txt b/maze/task4/maps/level_step7/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/17.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/18.txt b/maze/task4/maps/level_step7/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/18.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/19.txt b/maze/task4/maps/level_step7/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/19.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/2.txt b/maze/task4/maps/level_step7/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/2.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/20.txt b/maze/task4/maps/level_step7/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/20.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/21.txt b/maze/task4/maps/level_step7/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/21.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/22.txt b/maze/task4/maps/level_step7/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/22.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/23.txt b/maze/task4/maps/level_step7/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/23.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/24.txt b/maze/task4/maps/level_step7/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/24.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/25.txt b/maze/task4/maps/level_step7/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/26.txt b/maze/task4/maps/level_step7/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/26.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/27.txt b/maze/task4/maps/level_step7/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/27.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/28.txt b/maze/task4/maps/level_step7/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/28.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/29.txt b/maze/task4/maps/level_step7/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/29.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/3.txt b/maze/task4/maps/level_step7/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/3.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/30.txt b/maze/task4/maps/level_step7/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/30.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/31.txt b/maze/task4/maps/level_step7/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/31.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/32.txt b/maze/task4/maps/level_step7/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/32.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/33.txt b/maze/task4/maps/level_step7/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/33.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/34.txt b/maze/task4/maps/level_step7/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/34.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/35.txt b/maze/task4/maps/level_step7/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/35.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/36.txt b/maze/task4/maps/level_step7/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/36.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/37.txt b/maze/task4/maps/level_step7/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/37.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/38.txt b/maze/task4/maps/level_step7/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/38.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/39.txt b/maze/task4/maps/level_step7/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/39.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/4.txt b/maze/task4/maps/level_step7/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/4.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/40.txt b/maze/task4/maps/level_step7/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/40.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/41.txt b/maze/task4/maps/level_step7/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/41.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/42.txt b/maze/task4/maps/level_step7/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/42.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/43.txt b/maze/task4/maps/level_step7/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/43.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/44.txt b/maze/task4/maps/level_step7/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/44.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/45.txt b/maze/task4/maps/level_step7/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/45.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/46.txt b/maze/task4/maps/level_step7/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/46.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/47.txt b/maze/task4/maps/level_step7/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/47.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/48.txt b/maze/task4/maps/level_step7/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/48.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/49.txt b/maze/task4/maps/level_step7/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/49.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/5.txt b/maze/task4/maps/level_step7/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/5.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/50.txt b/maze/task4/maps/level_step7/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/50.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/51.txt b/maze/task4/maps/level_step7/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/51.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/52.txt b/maze/task4/maps/level_step7/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/52.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/53.txt b/maze/task4/maps/level_step7/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/53.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/54.txt b/maze/task4/maps/level_step7/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/54.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/55.txt b/maze/task4/maps/level_step7/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/55.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/56.txt b/maze/task4/maps/level_step7/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/56.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/57.txt b/maze/task4/maps/level_step7/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/57.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/58.txt b/maze/task4/maps/level_step7/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/58.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/59.txt b/maze/task4/maps/level_step7/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/59.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/6.txt b/maze/task4/maps/level_step7/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/6.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/60.txt b/maze/task4/maps/level_step7/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/60.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/61.txt b/maze/task4/maps/level_step7/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/61.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/62.txt b/maze/task4/maps/level_step7/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/62.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/63.txt b/maze/task4/maps/level_step7/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/63.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/64.txt b/maze/task4/maps/level_step7/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/64.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/65.txt b/maze/task4/maps/level_step7/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/65.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/66.txt b/maze/task4/maps/level_step7/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/66.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/67.txt b/maze/task4/maps/level_step7/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/67.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/68.txt b/maze/task4/maps/level_step7/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/68.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/69.txt b/maze/task4/maps/level_step7/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/69.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/7.txt b/maze/task4/maps/level_step7/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/7.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/70.txt b/maze/task4/maps/level_step7/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/70.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/71.txt b/maze/task4/maps/level_step7/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/71.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/72.txt b/maze/task4/maps/level_step7/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/72.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/73.txt b/maze/task4/maps/level_step7/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/73.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/74.txt b/maze/task4/maps/level_step7/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/74.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/75.txt b/maze/task4/maps/level_step7/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/75.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/76.txt b/maze/task4/maps/level_step7/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/76.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/77.txt b/maze/task4/maps/level_step7/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/77.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/78.txt b/maze/task4/maps/level_step7/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/78.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/79.txt b/maze/task4/maps/level_step7/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/79.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/8.txt b/maze/task4/maps/level_step7/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/8.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/80.txt b/maze/task4/maps/level_step7/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/80.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/81.txt b/maze/task4/maps/level_step7/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/81.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/82.txt b/maze/task4/maps/level_step7/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/82.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/83.txt b/maze/task4/maps/level_step7/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/83.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/84.txt b/maze/task4/maps/level_step7/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/84.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/85.txt b/maze/task4/maps/level_step7/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/85.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/86.txt b/maze/task4/maps/level_step7/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/86.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/87.txt b/maze/task4/maps/level_step7/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/87.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/88.txt b/maze/task4/maps/level_step7/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/88.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/89.txt b/maze/task4/maps/level_step7/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/89.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/9.txt b/maze/task4/maps/level_step7/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/9.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/90.txt b/maze/task4/maps/level_step7/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/90.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/91.txt b/maze/task4/maps/level_step7/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/91.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/92.txt b/maze/task4/maps/level_step7/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/92.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/93.txt b/maze/task4/maps/level_step7/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/93.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/94.txt b/maze/task4/maps/level_step7/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/94.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/95.txt b/maze/task4/maps/level_step7/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/95.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/96.txt b/maze/task4/maps/level_step7/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/96.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/97.txt b/maze/task4/maps/level_step7/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/97.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/98.txt b/maze/task4/maps/level_step7/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step7/answer/98.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step7/answer/99.txt b/maze/task4/maps/level_step7/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step7/answer/99.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step7/img/0.png b/maze/task4/maps/level_step7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2033aeb49fd7e4e326f1aba5e6d193dd9ee2868f --- /dev/null +++ b/maze/task4/maps/level_step7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f0308a2afade95436b2e4df973bbd2698d4c2ffca312d6917a68c8d3edf094 +size 9451 diff --git a/maze/task4/maps/level_step7/img/1.png b/maze/task4/maps/level_step7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f343446822ebf94b71b14c3eeb39c63926ce1b75 --- /dev/null +++ b/maze/task4/maps/level_step7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662a2be0231567d54a9bb941372aa13dba653e840e108fc5bd67999b9808970b +size 8576 diff --git a/maze/task4/maps/level_step7/img/10.png b/maze/task4/maps/level_step7/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a0219486ab9babdca68773f1059078c0a840cd2c --- /dev/null +++ b/maze/task4/maps/level_step7/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92415fd6aeae08b036b3f5c0d47e2bdac67a9cecfc12d64b5640abd242ff27f +size 9526 diff --git a/maze/task4/maps/level_step7/img/11.png b/maze/task4/maps/level_step7/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b3168fa7e7e8513096c54ebad58b16b4a0a00da4 --- /dev/null +++ b/maze/task4/maps/level_step7/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5bde6c70d616a8faf65f654d2aeddc6f2a503e8bbe2c062bb6e2e1d8d1fced3 +size 9484 diff --git a/maze/task4/maps/level_step7/img/12.png b/maze/task4/maps/level_step7/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bfd2003867558fc06ddaf724f20d6dc1b375781a --- /dev/null +++ b/maze/task4/maps/level_step7/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2265c0f8251fa2cb878d7c4d331bb1ecfeb3a197325cafc5deac5cda5235c8e6 +size 8693 diff --git a/maze/task4/maps/level_step7/img/13.png b/maze/task4/maps/level_step7/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2e9bcd697c9f9df311a7bcc585551adc45b633 --- /dev/null +++ b/maze/task4/maps/level_step7/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63c693a4e866265c3ab6d440f9edda4aec2f9c6195167ab113d6907cc63582e +size 9460 diff --git a/maze/task4/maps/level_step7/img/14.png b/maze/task4/maps/level_step7/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a959b16b2d47a4ee7034609446712c1c93efda --- /dev/null +++ b/maze/task4/maps/level_step7/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4278d644fee0fcc945ffb661826fba43399479f20849324f828d860ce42896b7 +size 9498 diff --git a/maze/task4/maps/level_step7/img/15.png b/maze/task4/maps/level_step7/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..09d9d19fc832ef7bbf88b2447552c79a00654e7b --- /dev/null +++ b/maze/task4/maps/level_step7/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb1a771f4ffde04d157238c23bf8f1968d4e8fa76bfdf1bee3cb83c14080b5c +size 9379 diff --git a/maze/task4/maps/level_step7/img/16.png b/maze/task4/maps/level_step7/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7973c8fd0e44309ec3e86a3225421c70098fe0 --- /dev/null +++ b/maze/task4/maps/level_step7/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5583b83655c1009808d434d23387310c409754a8d3de67d91a947d9bcaa3c671 +size 10319 diff --git a/maze/task4/maps/level_step7/img/17.png b/maze/task4/maps/level_step7/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..9b2f1464e9d031cc57d28be8f851a4d2d5726863 --- /dev/null +++ b/maze/task4/maps/level_step7/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:decdf289d7206a267a8b4bbb1b5ab1473eea69a03ddd070131a667609c825f8c +size 10272 diff --git a/maze/task4/maps/level_step7/img/18.png b/maze/task4/maps/level_step7/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0e4578441dc93dbe35e39e7258d5bb9f397e26b5 --- /dev/null +++ b/maze/task4/maps/level_step7/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b871b7baa3624a6d3c3f6723fcde0fbabe98e44ec14b697930c24110530d7e +size 9504 diff --git a/maze/task4/maps/level_step7/img/19.png b/maze/task4/maps/level_step7/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..551140540ad4566c657ec80ef466139c2caac9be --- /dev/null +++ b/maze/task4/maps/level_step7/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9143e3286755623d5ba91696a9b3b62dfbd163f76aa4ff0ad682caf415852f40 +size 10432 diff --git a/maze/task4/maps/level_step7/img/2.png b/maze/task4/maps/level_step7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task4/maps/level_step7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task4/maps/level_step7/img/20.png b/maze/task4/maps/level_step7/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..008eb9d774f873f49d9f2aba16a957268416f06c --- /dev/null +++ b/maze/task4/maps/level_step7/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb6e15f6f74538fb484c9175e9f2ed53f31bb2657acdcfcd043ca68a8a31eb6 +size 10260 diff --git a/maze/task4/maps/level_step7/img/21.png b/maze/task4/maps/level_step7/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..3159880dfddac7dde77c48c798370b3351485091 --- /dev/null +++ b/maze/task4/maps/level_step7/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa1e9d8f938e37e6023c89eda68bf03b514f4c762b9012c78be14445f3c4b52 +size 8496 diff --git a/maze/task4/maps/level_step7/img/22.png b/maze/task4/maps/level_step7/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..b43ce1e2773dcc8f88926dbfcc55bd4e30c3300f --- /dev/null +++ b/maze/task4/maps/level_step7/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568fd2b874b4f84a2d182fba9255d2bd0ba319bf21ea04daf9dcc93bd6384ece +size 9431 diff --git a/maze/task4/maps/level_step7/img/23.png b/maze/task4/maps/level_step7/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..0ffa909b6db457a7181220ac11eeb27da341a72a --- /dev/null +++ b/maze/task4/maps/level_step7/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f4bc2bd7b22882c1f60ebe308179e1117ed6c26c93b547139b73c305b1b562b +size 10462 diff --git a/maze/task4/maps/level_step7/img/24.png b/maze/task4/maps/level_step7/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..23c131895128a56aa897fdf0a6ba3ccfd0686041 --- /dev/null +++ b/maze/task4/maps/level_step7/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f509ab94fff6d4358e10282c09f839ca9d39c30aa04faff6fddf6454f43484 +size 10345 diff --git a/maze/task4/maps/level_step7/img/25.png b/maze/task4/maps/level_step7/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..dcaca11c66cd3002cc42b1541e908fc7c7d55487 --- /dev/null +++ b/maze/task4/maps/level_step7/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf361f95f35ac9a0112f7063281e8af77dcc95553bae500b712a502b170f5b4 +size 9481 diff --git a/maze/task4/maps/level_step7/img/26.png b/maze/task4/maps/level_step7/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..cde8b47020ff35a75196e3ca018966c4aea9add0 --- /dev/null +++ b/maze/task4/maps/level_step7/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2bcd0922d51aeaefbaf2f49172a09a1dc1894b815a0ac657f3202f7aec4c6ab +size 10421 diff --git a/maze/task4/maps/level_step7/img/27.png b/maze/task4/maps/level_step7/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..f591e4148b776e15eb1b392b9eb5a3899d71f16e --- /dev/null +++ b/maze/task4/maps/level_step7/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a339a2e62e1162a190da229fa66e13f616e849539aeb08b845c35c77ce2d7a3 +size 10413 diff --git a/maze/task4/maps/level_step7/img/28.png b/maze/task4/maps/level_step7/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7b5e0d421fd9845fedd4e9bf62cf5a40560815 --- /dev/null +++ b/maze/task4/maps/level_step7/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6e842275c7a23fce24f6f4ebc6852f5922d6f914ed4c7c4f2c900d974ed33d +size 7724 diff --git a/maze/task4/maps/level_step7/img/29.png b/maze/task4/maps/level_step7/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..ac2654d31d71f91b201f320c9033547611dd1fe6 --- /dev/null +++ b/maze/task4/maps/level_step7/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b49d480745f12de02faf0ecdd5d452f4b331e9a1c219aafb8d69084eb2fda9e +size 8670 diff --git a/maze/task4/maps/level_step7/img/3.png b/maze/task4/maps/level_step7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task4/maps/level_step7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task4/maps/level_step7/img/30.png b/maze/task4/maps/level_step7/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..d63738871f379090425d544bc204e402814b6b55 --- /dev/null +++ b/maze/task4/maps/level_step7/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34ae1efa396c60bd93b40f3a17ed10a570bf75920a432154f7c19649e8e0994 +size 10233 diff --git a/maze/task4/maps/level_step7/img/31.png b/maze/task4/maps/level_step7/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8414031f76b7066865976aa74936cac7b92311da --- /dev/null +++ b/maze/task4/maps/level_step7/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b760ca6eab9da1ac2bb044b831c20182c4ba148464e6dd749fb724c2317504 +size 10338 diff --git a/maze/task4/maps/level_step7/img/32.png b/maze/task4/maps/level_step7/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..8aa3a9101f18f5cef81a2a0ac8ea133631da8272 --- /dev/null +++ b/maze/task4/maps/level_step7/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6046bda5a18babfb779cd67eafbadc41ef75d339c1e22df72fee2aa6c93c3943 +size 8504 diff --git a/maze/task4/maps/level_step7/img/33.png b/maze/task4/maps/level_step7/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..0bebca99345c5d1894a4ae329be28466c2a50b28 --- /dev/null +++ b/maze/task4/maps/level_step7/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7b2f94ba36b04dd2dbb42233e555715f919536cc144672d8e308197195e785 +size 8604 diff --git a/maze/task4/maps/level_step7/img/34.png b/maze/task4/maps/level_step7/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..6eca727404f5db9e200a713f2572fc81621e5d46 --- /dev/null +++ b/maze/task4/maps/level_step7/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf96890a3a83eff57f3a7e735dfe6df14e9d150e1c63779b2b024b2c73b18a31 +size 9310 diff --git a/maze/task4/maps/level_step7/img/35.png b/maze/task4/maps/level_step7/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..2c0ca423e0b618761e04364f85406d788d29514d --- /dev/null +++ b/maze/task4/maps/level_step7/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db1b42cc8d2d7b556c81859a11b2123c09325d23439f5ae870bfaf3df54caec8 +size 10250 diff --git a/maze/task4/maps/level_step7/img/36.png b/maze/task4/maps/level_step7/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..cfc7abc51f0a4bb093581b3e85a8144b02213e46 --- /dev/null +++ b/maze/task4/maps/level_step7/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4799102cf97fb389686accea8cfe5acdeeeacd995ec4868e13dc39fc2f11b920 +size 9520 diff --git a/maze/task4/maps/level_step7/img/37.png b/maze/task4/maps/level_step7/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..1d2842f14123387a9f8bdb6391afb8435432bcfa --- /dev/null +++ b/maze/task4/maps/level_step7/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1dbfc2d853aee617d09d56f25f81527f16db0f218623b92a567c870bb84545 +size 11151 diff --git a/maze/task4/maps/level_step7/img/38.png b/maze/task4/maps/level_step7/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9a73f72074ae48f5589417c00b18f273052946 --- /dev/null +++ b/maze/task4/maps/level_step7/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9987cc6de5975fc76063e350faeeed07486c46bd4604be48931e5c2292d96aa5 +size 10355 diff --git a/maze/task4/maps/level_step7/img/39.png b/maze/task4/maps/level_step7/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..1320316df32081e30c82f8d7dd70d04b90f4ac1b --- /dev/null +++ b/maze/task4/maps/level_step7/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09a00bf65853c7efa6b2a0db458ef63f7d242aaafeeec9fc938f77cc38cb9f4 +size 8606 diff --git a/maze/task4/maps/level_step7/img/4.png b/maze/task4/maps/level_step7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcf17753a14d717d70601f1726efa48591720d2 --- /dev/null +++ b/maze/task4/maps/level_step7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1527826071149f7d3fe78db8c909ec14d40d7ac2ff90cad4f018091251dbf8c2 +size 7791 diff --git a/maze/task4/maps/level_step7/img/40.png b/maze/task4/maps/level_step7/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..4244f905c38765712ea57da2f22051d001bd12f4 --- /dev/null +++ b/maze/task4/maps/level_step7/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a9cdc9192fc79007eea8b9ed798b41a32e9cb11d29300045f7d5c7054b0617 +size 8615 diff --git a/maze/task4/maps/level_step7/img/41.png b/maze/task4/maps/level_step7/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..a336550fb6b5ee724510355eddbf38e949e814f9 --- /dev/null +++ b/maze/task4/maps/level_step7/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0a2aa504f7ec3efbdc87c449cc23a3a36ae9d9c1553b35432c5e89bcf3dff0 +size 8743 diff --git a/maze/task4/maps/level_step7/img/42.png b/maze/task4/maps/level_step7/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..70740ae04648fbd1b721f208334222cf68100270 --- /dev/null +++ b/maze/task4/maps/level_step7/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b21b8afa8db64642b25eba826f0800fc5c52d1898ff21988584571821527e26 +size 9282 diff --git a/maze/task4/maps/level_step7/img/43.png b/maze/task4/maps/level_step7/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8240fd301b101fc3d6928b8b7837ee8f046508 --- /dev/null +++ b/maze/task4/maps/level_step7/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e450c5211b9cc344c3fdea9a4ac7b6f86afc861e99ce5e8e1bd73c05370aeb +size 8530 diff --git a/maze/task4/maps/level_step7/img/44.png b/maze/task4/maps/level_step7/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..fbc926d0e2b3d98e1dab0a8d75b1d5abba9eee37 --- /dev/null +++ b/maze/task4/maps/level_step7/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ffae263c999fdb644ac5676dff754b4eb3bba3437795940e40daa1af5bf67a +size 10484 diff --git a/maze/task4/maps/level_step7/img/45.png b/maze/task4/maps/level_step7/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..fa357d51bbdeb0678d4148305f56dab8c1d94eec --- /dev/null +++ b/maze/task4/maps/level_step7/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8848ac9b4fb5bb3bec41b2221a5a2a47ce69bca895b40fdde606a4b36f33fc93 +size 9491 diff --git a/maze/task4/maps/level_step7/img/46.png b/maze/task4/maps/level_step7/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d0bce4c0119ffeac19097f9f41a4c38d2a442d --- /dev/null +++ b/maze/task4/maps/level_step7/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4c2f0d9865a8360f4d1c974eca5d0c578296f5b4e8315cffa073c54468cde7 +size 10550 diff --git a/maze/task4/maps/level_step7/img/47.png b/maze/task4/maps/level_step7/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..bbac15eae91964398ecfe336ec7e7d88caab732f --- /dev/null +++ b/maze/task4/maps/level_step7/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b11bdd9da2fa696e133c10e026958d2a2b9c22b64105e96a92ce4175408ace +size 9561 diff --git a/maze/task4/maps/level_step7/img/48.png b/maze/task4/maps/level_step7/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..a5494558c31ab3bbf743d234bc88addc0f20176a --- /dev/null +++ b/maze/task4/maps/level_step7/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2543b447d5489a34daf4d0835a17358829bb4859f2d524e864aa5df93f223995 +size 9527 diff --git a/maze/task4/maps/level_step7/img/49.png b/maze/task4/maps/level_step7/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..42ed24d9c562504ba63fa58f2a8307b0d7cc9847 --- /dev/null +++ b/maze/task4/maps/level_step7/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed72c064c5229fa5ce1bf62b52ec7b2aa3f7fb9ba203d81c7c33bafb9c74194 +size 10373 diff --git a/maze/task4/maps/level_step7/img/5.png b/maze/task4/maps/level_step7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task4/maps/level_step7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task4/maps/level_step7/img/50.png b/maze/task4/maps/level_step7/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..279fd1406a92d5aaee0531fc2ad0f5b0be67df31 --- /dev/null +++ b/maze/task4/maps/level_step7/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679248b59d769bd82dac4133142a7c74b2319c29193ab3d9aefdd83e117ab55 +size 10308 diff --git a/maze/task4/maps/level_step7/img/51.png b/maze/task4/maps/level_step7/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..b2bc2832e2156c1c094adb1ec76d022e12cc3af4 --- /dev/null +++ b/maze/task4/maps/level_step7/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb2021b9e22694b89279ebf3a96f0fe1baf70c80db54b86d8857d3813b81e85 +size 10422 diff --git a/maze/task4/maps/level_step7/img/52.png b/maze/task4/maps/level_step7/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..bc2cf75c26cf2413c1a2ff8785d0d1bf7145152c --- /dev/null +++ b/maze/task4/maps/level_step7/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d99e8ce7303f9492169877d43bf5d6331741ae6de6fde7a249241b70908dad6 +size 9465 diff --git a/maze/task4/maps/level_step7/img/53.png b/maze/task4/maps/level_step7/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..b56567b741d2a6849fdbd9a06f10a221f611854a --- /dev/null +++ b/maze/task4/maps/level_step7/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbbb363cbd4871bd667563335310c2a7b1e044d786a33fc9ac426ab13f9fa92 +size 10460 diff --git a/maze/task4/maps/level_step7/img/54.png b/maze/task4/maps/level_step7/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..f920ca86b117abb67013bb57a9499b0393639cea --- /dev/null +++ b/maze/task4/maps/level_step7/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c43e944b0140c1497f1775468827f0e4d1c41f027cd40778dc0c9189590062 +size 8588 diff --git a/maze/task4/maps/level_step7/img/55.png b/maze/task4/maps/level_step7/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..b7cd9585ed58ff2537515598c55964ef7bab9820 --- /dev/null +++ b/maze/task4/maps/level_step7/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53106fd75e879e3655e754942e5d3947460c00e26f52b713400f3daae45eee00 +size 9525 diff --git a/maze/task4/maps/level_step7/img/56.png b/maze/task4/maps/level_step7/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..63d9ebbafda6dda2d8f9c81afb709a1a4c36e63c --- /dev/null +++ b/maze/task4/maps/level_step7/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c14d51f54b33e8584f9875dab4f95cf745ac9ddd4df54c7b7bc3db9e62d0da +size 9658 diff --git a/maze/task4/maps/level_step7/img/57.png b/maze/task4/maps/level_step7/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..46b8af8ae47e2318fc24cf7e63adf89c23ad0768 --- /dev/null +++ b/maze/task4/maps/level_step7/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfb2f92be0c9aedd215a40e1879bb6cdeec5abfae96393b8899c2c7c126797f +size 11278 diff --git a/maze/task4/maps/level_step7/img/58.png b/maze/task4/maps/level_step7/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..007695ff6c8929f3c578f1e20f352034afc69d5b --- /dev/null +++ b/maze/task4/maps/level_step7/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4011594954c1117ae9981fa7ce16c41cb3266498795e8f487654a7f4ea47e61e +size 8568 diff --git a/maze/task4/maps/level_step7/img/59.png b/maze/task4/maps/level_step7/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..1a86a8a8f02cca9e4782cafcfdcefa1b05863edc --- /dev/null +++ b/maze/task4/maps/level_step7/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7603a2d35fa97cb9b4d05bdbc04f8a5c9130a21fe46269b562a6f151e98fd5a5 +size 9577 diff --git a/maze/task4/maps/level_step7/img/6.png b/maze/task4/maps/level_step7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task4/maps/level_step7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task4/maps/level_step7/img/60.png b/maze/task4/maps/level_step7/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..af8ab86cf41c45007b7cfce49c76e3ff294aa2f6 --- /dev/null +++ b/maze/task4/maps/level_step7/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f19ceb0d0c316a16d11ddeb3238c5ef09285ab68f7796236aa0035a5676c68f +size 10322 diff --git a/maze/task4/maps/level_step7/img/61.png b/maze/task4/maps/level_step7/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..ff89f8493dd94317249eae86639a7f73eb713011 --- /dev/null +++ b/maze/task4/maps/level_step7/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f31b896bf27ca4df2853cd9cf6c0f0544d466ec28b6d1900d38d216f38f0c8b0 +size 9466 diff --git a/maze/task4/maps/level_step7/img/62.png b/maze/task4/maps/level_step7/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..aa9db5517bfb7c0e11609f0b75e8e7118c7f2456 --- /dev/null +++ b/maze/task4/maps/level_step7/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d67a0b7e9f8f6f0a204588461cd6d3348adacc3f30130a3eb7f8be3ffc23789d +size 11256 diff --git a/maze/task4/maps/level_step7/img/63.png b/maze/task4/maps/level_step7/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..333bc42d0e8c8132a744930736394eb828d252de --- /dev/null +++ b/maze/task4/maps/level_step7/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c0da952087c15c47861c6951587da8fb909255d3674885bffbea5ccfcb9c88 +size 10462 diff --git a/maze/task4/maps/level_step7/img/64.png b/maze/task4/maps/level_step7/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..af27e78c65469a37d18cca56246e46dc40071558 --- /dev/null +++ b/maze/task4/maps/level_step7/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705afe8f6778c5550d77725cec8a0a4e3d06a7f07978c19ac149248442bc560f +size 7735 diff --git a/maze/task4/maps/level_step7/img/65.png b/maze/task4/maps/level_step7/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..83e96c3b8c34fbc0d1964c3a34509a80c34425bc --- /dev/null +++ b/maze/task4/maps/level_step7/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab691589396b93fea1f8c2e627d260083dc06c3e8200c008564e85bbe4b351d +size 8715 diff --git a/maze/task4/maps/level_step7/img/66.png b/maze/task4/maps/level_step7/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..d1198a3df020aaf0931a32171bb2eacf6c6c9e62 --- /dev/null +++ b/maze/task4/maps/level_step7/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b090c16cc1315c868aca80a3ea0a9d4a002bae7af3cc50909feeea2d43a8dcd2 +size 10450 diff --git a/maze/task4/maps/level_step7/img/67.png b/maze/task4/maps/level_step7/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..6d016ebafe107cbacb68734220b06aed64f37d4c --- /dev/null +++ b/maze/task4/maps/level_step7/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cc901ec785673687b26427ce086ebbd27f8cd2502dbb104379e8867c631760 +size 9459 diff --git a/maze/task4/maps/level_step7/img/68.png b/maze/task4/maps/level_step7/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..bcaaf350210436f4383e0333ed73e65bd52a678a --- /dev/null +++ b/maze/task4/maps/level_step7/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5846abc853064d63e0fb377fa2b23730d1015f367d01599936d4a3e1fba4f0c +size 8697 diff --git a/maze/task4/maps/level_step7/img/69.png b/maze/task4/maps/level_step7/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..111346baa5e8e81dce82def8b6539b70892a57e0 --- /dev/null +++ b/maze/task4/maps/level_step7/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bc1d785dce00bf0efdfb9cd6888c7b988193a61ffa0216b31059772952a15c +size 11228 diff --git a/maze/task4/maps/level_step7/img/7.png b/maze/task4/maps/level_step7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f814f3af4a4514eea937c4425d373246a0eddf97 --- /dev/null +++ b/maze/task4/maps/level_step7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7524981f599a7d73e4d8fbec30dfe5b20a4391ecea7e63082541a4fb06ee3bfb +size 9570 diff --git a/maze/task4/maps/level_step7/img/70.png b/maze/task4/maps/level_step7/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..d7d9522fdef478962bbf1ae56c58e2e914c5855f --- /dev/null +++ b/maze/task4/maps/level_step7/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f964ac4bbf903fffa406c1474e19146d3f9c106e21c071d0322559e28ff4fe +size 8780 diff --git a/maze/task4/maps/level_step7/img/71.png b/maze/task4/maps/level_step7/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..d1fb47800028bb7f16485253d887ac0789874a3a --- /dev/null +++ b/maze/task4/maps/level_step7/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9fd81aecd0c248ea93315438499f4bc5b6455e049e63e44946a81991716e815 +size 10321 diff --git a/maze/task4/maps/level_step7/img/72.png b/maze/task4/maps/level_step7/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..26b9daaa51c05267ffcc644f08d19a272854b9ac --- /dev/null +++ b/maze/task4/maps/level_step7/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db2044b36cf426a5390c9af00cdaa61af82f20d427cee11905b71717de7af8ad +size 10266 diff --git a/maze/task4/maps/level_step7/img/73.png b/maze/task4/maps/level_step7/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..9e816d23131637f4165f39b1246c84a72fb7759f --- /dev/null +++ b/maze/task4/maps/level_step7/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b156c071886e95aa995517727c842b91688ef238b032d80fe5c58a0aa41022f2 +size 9621 diff --git a/maze/task4/maps/level_step7/img/74.png b/maze/task4/maps/level_step7/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..070f3739720280a97743d79dad3e56dab5f41b86 --- /dev/null +++ b/maze/task4/maps/level_step7/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48bd3b546d81a289f3cfee56906d822df25e6ada5bf19ea59601ca8565d6d0db +size 9529 diff --git a/maze/task4/maps/level_step7/img/75.png b/maze/task4/maps/level_step7/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..93eed9dc47ad2ae321d732ef990201e356a084d8 --- /dev/null +++ b/maze/task4/maps/level_step7/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3d3acdebfc0ac58bd29a87edf66e3e274fd14dd7aa4e6feda5037bea7070d7 +size 9559 diff --git a/maze/task4/maps/level_step7/img/76.png b/maze/task4/maps/level_step7/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..1767ad68765f0ce53e8b51d4cc8579144cf41428 --- /dev/null +++ b/maze/task4/maps/level_step7/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b2a5d8df0428a24da48fa93626113f4278237054514f7bf057bdf9ef265e4e +size 9446 diff --git a/maze/task4/maps/level_step7/img/77.png b/maze/task4/maps/level_step7/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..17023bbbd055427830fcfd176021fb2fc5d6910d --- /dev/null +++ b/maze/task4/maps/level_step7/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c1604221f2c1545f8c8d8a1a0557dd0c7d8300bc470a02052c41ccda1c3887 +size 8661 diff --git a/maze/task4/maps/level_step7/img/78.png b/maze/task4/maps/level_step7/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..e5ebf6ebd8c1ab2690c8d745a86a1c9e538d3ece --- /dev/null +++ b/maze/task4/maps/level_step7/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdba9b73aaf57690324b165978ceecb197849e421522b10175f4f8ae813e392c +size 10411 diff --git a/maze/task4/maps/level_step7/img/79.png b/maze/task4/maps/level_step7/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..10f84b792cf0272b8e2935bdf5b34df73c511225 --- /dev/null +++ b/maze/task4/maps/level_step7/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1c923ccfc9c84e6a32ca615eb232d4ba7bac6ea9b58c24a03a3c659accd86e +size 9435 diff --git a/maze/task4/maps/level_step7/img/8.png b/maze/task4/maps/level_step7/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b783d4f36e2171422604495ee36e749644ce4e2b --- /dev/null +++ b/maze/task4/maps/level_step7/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dbba447ec1e1cdb77f547897ea2c4a87baf7985ca4f97405a7f153585f7d9e +size 9520 diff --git a/maze/task4/maps/level_step7/img/80.png b/maze/task4/maps/level_step7/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..280e049a02628ac679dca258ab3f69e1592c47fb --- /dev/null +++ b/maze/task4/maps/level_step7/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10626e385e262d451167b35ad91340209f0acd766f7e84f91fdefde66ae4411 +size 10176 diff --git a/maze/task4/maps/level_step7/img/81.png b/maze/task4/maps/level_step7/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..6c9b64e479db40b9fd3301b955c326cbb4fa5126 --- /dev/null +++ b/maze/task4/maps/level_step7/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dda06f2b25a6ad82d4b1896bfb3ebf56bb8b4c9a63ade5085fc26d5005ded08 +size 9565 diff --git a/maze/task4/maps/level_step7/img/82.png b/maze/task4/maps/level_step7/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e4afd98ab856f1b49e892d1c8959d0c45076f933 --- /dev/null +++ b/maze/task4/maps/level_step7/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b516f64ea6950be4ac225452351a46ea1244d2dee61ccfe891940be0be952e8 +size 9621 diff --git a/maze/task4/maps/level_step7/img/83.png b/maze/task4/maps/level_step7/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..0a13d0af38171bf0a0af6bcc1335aa7d2c416138 --- /dev/null +++ b/maze/task4/maps/level_step7/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:460d23363880f24dd1924b4aa0f7b268829c9116cbe30c0ab955c60a18fc2bc1 +size 9493 diff --git a/maze/task4/maps/level_step7/img/84.png b/maze/task4/maps/level_step7/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..f196be40a6adeaa2df84f74f46b155e1e3c8f6e4 --- /dev/null +++ b/maze/task4/maps/level_step7/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bc1191781890d53c8eee48f62121340484b45002b11c8eb0ec0206e306442c +size 10376 diff --git a/maze/task4/maps/level_step7/img/85.png b/maze/task4/maps/level_step7/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..e8db157f84159504585e284458fa79b3c90af51a --- /dev/null +++ b/maze/task4/maps/level_step7/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5aff28d5f631ea09873b8dc27d19503e8ad52921c88416664fd25fbd61da2f +size 10391 diff --git a/maze/task4/maps/level_step7/img/86.png b/maze/task4/maps/level_step7/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..41261413e7dd3228eeff5e7010d87cd323d1dfc3 --- /dev/null +++ b/maze/task4/maps/level_step7/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47102eacb760f4fbee2412de1a93f98ad00be71ad00f000fc2988421bdb3436c +size 10333 diff --git a/maze/task4/maps/level_step7/img/87.png b/maze/task4/maps/level_step7/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..85bb6ac7f98a3ebfa60287c5d24b22b4e0ef6a9e --- /dev/null +++ b/maze/task4/maps/level_step7/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10d1716db1f68b07b9f88683877ce6310e9522d698240818680714d9943d79c +size 11010 diff --git a/maze/task4/maps/level_step7/img/88.png b/maze/task4/maps/level_step7/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..de081357b6c4a2b26b5851c19eb10854a145dd4f --- /dev/null +++ b/maze/task4/maps/level_step7/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90cf310b1bf6cfd8effd458bca4e303b2ed000d38681671e452629b3b2619af +size 11179 diff --git a/maze/task4/maps/level_step7/img/89.png b/maze/task4/maps/level_step7/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c25e41839c4eed11a446578ad5562be1ffc0a0 --- /dev/null +++ b/maze/task4/maps/level_step7/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cf54b54206896d7d5fe558e2eb4ffb8997eb1bfbf89093d978b6ec2fc56f97 +size 9489 diff --git a/maze/task4/maps/level_step7/img/9.png b/maze/task4/maps/level_step7/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ec9dee292d733f6e73114d845fdcf06bc1c1c388 --- /dev/null +++ b/maze/task4/maps/level_step7/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f627635793acea9e3bd269d5b61ffe7e2a55e4fc0021d4f281e4380354dc0ca9 +size 11147 diff --git a/maze/task4/maps/level_step7/img/90.png b/maze/task4/maps/level_step7/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..b928987da58d59cdef0b9bb3b1c0286afa17acff --- /dev/null +++ b/maze/task4/maps/level_step7/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db2a395f292ce4ab331d9489f74af2faf2912810f39c80d058e2c235ad8e1cec +size 10337 diff --git a/maze/task4/maps/level_step7/img/91.png b/maze/task4/maps/level_step7/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..72df204957c2f6e150306936eec2127d8f38ee2c --- /dev/null +++ b/maze/task4/maps/level_step7/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745eb23af8b3d9225ac39f3ae773055f5213aa78e483e1d286c52b9d3adc86d8 +size 9526 diff --git a/maze/task4/maps/level_step7/img/92.png b/maze/task4/maps/level_step7/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..211572a9103c01b8b3ab01c0083299ed0390d504 --- /dev/null +++ b/maze/task4/maps/level_step7/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3577483fd88f2b6c9bbbcac8e051da3bdf139d40a2cb3d1df1dcbfa171e7f6f9 +size 10280 diff --git a/maze/task4/maps/level_step7/img/93.png b/maze/task4/maps/level_step7/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..d40773d2335e510a210fb54addcf88d904bcd0c0 --- /dev/null +++ b/maze/task4/maps/level_step7/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66842a5f71a7c23e896f9f649682f125e0ca25e83718967319baf256a3636d53 +size 10379 diff --git a/maze/task4/maps/level_step7/img/94.png b/maze/task4/maps/level_step7/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..e376cb24370d7c7e2d69c113477336d19e863962 --- /dev/null +++ b/maze/task4/maps/level_step7/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b9510d39d3c594aafd9059788bb0cd5ff3d4095f045475c747b326e2fa8f1c +size 10227 diff --git a/maze/task4/maps/level_step7/img/95.png b/maze/task4/maps/level_step7/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..0d320adfcb78f2f7a70c293086a3c9e4657e8b1e --- /dev/null +++ b/maze/task4/maps/level_step7/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9652b51223f250b2f0ea990f04184cecd53a9510a88e23e5d8ab92a02d6d4e +size 10401 diff --git a/maze/task4/maps/level_step7/img/96.png b/maze/task4/maps/level_step7/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..39a077dbfc082e692f25d190c6d9e50d70bb1569 --- /dev/null +++ b/maze/task4/maps/level_step7/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbc6487bc69ca1e0815a0c9ceeeb0295060b1700361ef62b0b5af00dff6664e +size 10440 diff --git a/maze/task4/maps/level_step7/img/97.png b/maze/task4/maps/level_step7/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..748a948c5cd41ad576941a954a691c45002651bc --- /dev/null +++ b/maze/task4/maps/level_step7/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77adb79d8bbc1588ad59543ed98151771cd492efc2dc07e86af7ebb5873a4a67 +size 9374 diff --git a/maze/task4/maps/level_step7/img/98.png b/maze/task4/maps/level_step7/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..feee65d74a4a5cf343e4c5c33bcedfdfc5e67658 --- /dev/null +++ b/maze/task4/maps/level_step7/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:504b1e9147d5348e52f7be1ad068e22b6e405149356a86e1f82270d0bee89fad +size 9500 diff --git a/maze/task4/maps/level_step7/img/99.png b/maze/task4/maps/level_step7/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..fd0f19424d536bacfaf42f01ed3aa7a364b33b72 --- /dev/null +++ b/maze/task4/maps/level_step7/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f911cbdc655da3182a95beeacae299802b0a0f7b2bcdc116a9acffd948f98f +size 9438 diff --git a/maze/task4/maps/level_step7/pure_text/0.txt b/maze/task4/maps/level_step7/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d3609ea7df1d5301efd0ba5c232a58833c05550 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/1.txt b/maze/task4/maps/level_step7/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d0c98b9c25646ad5073a63739579f3fdeea190 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/10.txt b/maze/task4/maps/level_step7/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..b16eb5e5427dc9dbf9de26990c15ee68d98aea86 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/11.txt b/maze/task4/maps/level_step7/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5dd27966ff738ab84e41eae2e8620968fe9ef2d --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 4, Column 2; Row 4, Column 3; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/12.txt b/maze/task4/maps/level_step7/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..5875fd92529c3bfa65512efc0a94786b812af274 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/13.txt b/maze/task4/maps/level_step7/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e6490a182330fd53f62392c91932efb8819c603 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/14.txt b/maze/task4/maps/level_step7/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdb8c4e2d57e515054c0dc54a61f4da7632ec321 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/15.txt b/maze/task4/maps/level_step7/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..eacd01be0374d08e79b13d76afcb5879f8c7b3ae --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 4, Column 3; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/16.txt b/maze/task4/maps/level_step7/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f58b60f80c34719dd14d0ad5666e0adf08a940c --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/17.txt b/maze/task4/maps/level_step7/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fbee4915d9c56375fd0921abd91a1770a190dfa --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 3, Column 5; Row 4, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/18.txt b/maze/task4/maps/level_step7/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4044583674f69b2b3ed307200090daaf0456687 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/19.txt b/maze/task4/maps/level_step7/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3cce55bbf67332da0abb7741543a22520c2ed67 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/2.txt b/maze/task4/maps/level_step7/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/20.txt b/maze/task4/maps/level_step7/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..67b933bd40c003ad8d713ed3a6fde5badcd130d9 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 2, Column 5; Row 3, Column 4; Row 4, Column 2; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/21.txt b/maze/task4/maps/level_step7/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..a23c755b2724e4e5a25a0c791532b4c4cc6dbaa0 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 5; Row 4, Column 1; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/22.txt b/maze/task4/maps/level_step7/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9a7ef211e4b4447e7d912456a49b35a9b0e3e25 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/23.txt b/maze/task4/maps/level_step7/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f9f0dc323e31b0d5a8f7ca9ab9c1cb75f99cac3 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/24.txt b/maze/task4/maps/level_step7/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..567a1d80309adbcd169824ab774e1cec7f3a4924 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/25.txt b/maze/task4/maps/level_step7/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c422fe457c20c1d9786346577788d5ff2ce46c86 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/26.txt b/maze/task4/maps/level_step7/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..471cdda05f67f1da8e76d7d5b691bf648c294f53 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/27.txt b/maze/task4/maps/level_step7/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2f4a77c87ae7d4b2308b6c58f8c2a49b2a0d260 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/28.txt b/maze/task4/maps/level_step7/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d94e848dad0619efab11ead4fb9890a95b4b77b --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/29.txt b/maze/task4/maps/level_step7/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9a00d6475648d72bae9c9803c5e126de227102d --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 1; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/3.txt b/maze/task4/maps/level_step7/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..69e73a8c23f7d57f3e51e58b7901e281cad0f7a0 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/30.txt b/maze/task4/maps/level_step7/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..f10c6cda751fe7118f206e8ef17468879d4fd780 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/31.txt b/maze/task4/maps/level_step7/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..804679724f787c34257c826415e2bb5bb09564a8 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/32.txt b/maze/task4/maps/level_step7/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4745609ba1e3dfff5dcc066231c7bb36111ae09 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/33.txt b/maze/task4/maps/level_step7/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..317866fa271b7cb8f592a79d593290ee707c29a3 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/34.txt b/maze/task4/maps/level_step7/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5410048bab30e3fed7818bf16b4ad7097444f7d --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/35.txt b/maze/task4/maps/level_step7/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf64dc3a846e83b5d17c6f0ef1fb3751b400a668 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; Row 3, Column 2; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/36.txt b/maze/task4/maps/level_step7/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..53c379780663196ea7e0565981fe9d55a3a55863 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/37.txt b/maze/task4/maps/level_step7/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a533f70ee356f5f7fda483b0cae7bf19e683db5 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 5, Column 1; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/38.txt b/maze/task4/maps/level_step7/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f6fcf47b297b9d5b81443069c545e261d47b37b --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/39.txt b/maze/task4/maps/level_step7/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..086d535ffb63042ed6c61e41bfd7a51d1fda5283 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 4; Row 3, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/4.txt b/maze/task4/maps/level_step7/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59ffc168cdb8212ad7ec3dbc639e372f3d7db13 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/40.txt b/maze/task4/maps/level_step7/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..37f867db5afe5419c5649c35e1190a867c8ef74f --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 5, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/41.txt b/maze/task4/maps/level_step7/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9d190660b178c6419b5664db263949f2701555d --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 4, Column 2; Row 4, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/42.txt b/maze/task4/maps/level_step7/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc7a911dcd71685408ee89a7a6280d705a22fb1f --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/43.txt b/maze/task4/maps/level_step7/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3232cf536abf875c58ecd4fa47049dffac73b440 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 5, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/44.txt b/maze/task4/maps/level_step7/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a8eab148a61fbbfd049d44c82f15df72199ccf0 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/45.txt b/maze/task4/maps/level_step7/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5c31d25061fd8a02a164070c2357d0e2ffe2566 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 4, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/46.txt b/maze/task4/maps/level_step7/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fc422e917a57def3a084a0be255bca7bb31f1c --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 4, Column 1; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/47.txt b/maze/task4/maps/level_step7/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f0dc0f42d1e6942b2aac7d8dfafc3cf1c734ee --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/48.txt b/maze/task4/maps/level_step7/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8df0a06af8cc86ccab67cf63d804fc6ecde9f84 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/49.txt b/maze/task4/maps/level_step7/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..f165941f4c6c7fdf6ff230b23228102eed6ef450 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/5.txt b/maze/task4/maps/level_step7/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5a7c360f4d2a91544cb3423491ca285c9a175d1 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/50.txt b/maze/task4/maps/level_step7/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c66cbd2085d4202a0032502747e50092ee80db3 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/51.txt b/maze/task4/maps/level_step7/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..472e3d9804be33b34b708fb2342ed343e30134a3 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/52.txt b/maze/task4/maps/level_step7/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..14692c12d96d78f3c837efdc8dac716c4c743718 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; Row 3, Column 2; Row 4, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/53.txt b/maze/task4/maps/level_step7/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2106621473d9a89917c751ac90e082b2a91e6846 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/54.txt b/maze/task4/maps/level_step7/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e529cb4a7371b0d490d5ee9b3cfba74b0fc6b6f4 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 4, Column 4; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/55.txt b/maze/task4/maps/level_step7/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..b88bdbb92a49502e281210e0ed15d870c91a593c --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/56.txt b/maze/task4/maps/level_step7/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..87e5e8b6fc06117f9323b56019812e5b911b581f --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/57.txt b/maze/task4/maps/level_step7/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..80c622ea71676723763fead953c21d3b9309419c --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 3; Row 4, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/58.txt b/maze/task4/maps/level_step7/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..278735b446a9a0b55d5fede1aa3a48534aa209b7 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/59.txt b/maze/task4/maps/level_step7/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..adb7a54f2398e5b2561136513a800cfe604f1364 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 4, Column 5; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/6.txt b/maze/task4/maps/level_step7/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..090e9c1d826401003433a544b5a036f1e691e749 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/60.txt b/maze/task4/maps/level_step7/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e2e9cc573a97f137abd386cc43b4e735bc3d1c1 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/61.txt b/maze/task4/maps/level_step7/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..62e41f1bff0a84b7c43c2b969976c73629c1f2ef --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/62.txt b/maze/task4/maps/level_step7/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe4e861f2486a9b499e88c670c70ea1a58f7fc3b --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/63.txt b/maze/task4/maps/level_step7/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..611340049c4c56087658b3200a3e5bcb8068aa70 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 4; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/64.txt b/maze/task4/maps/level_step7/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8a49cd41197a2b270bf7d2a0f316f7c857a6524 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/65.txt b/maze/task4/maps/level_step7/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc235faae4ff5518dacdbf2e6e53a651f2aab293 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 5; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/66.txt b/maze/task4/maps/level_step7/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..e95bd73d1e25a720fae1d120db11ee2b23c528ad --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/67.txt b/maze/task4/maps/level_step7/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..e827b288f0aaf5b38e997f08c12df9b60d3755f7 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/68.txt b/maze/task4/maps/level_step7/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f736b45d2605c716f2c985d1a323cfcd5238b578 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 1; Row 5, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/69.txt b/maze/task4/maps/level_step7/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..225be629504b93f3710f79845bb8c392b1091099 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 5; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/7.txt b/maze/task4/maps/level_step7/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cad32fd2f3808ab35f15942baa29e28b809de924 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/70.txt b/maze/task4/maps/level_step7/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a8a92c1901bd5de504b373d1e1f071c97cf29e --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/71.txt b/maze/task4/maps/level_step7/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..88b1aace4b960ea25c5fde28f48325038246c231 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/72.txt b/maze/task4/maps/level_step7/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..eececad1150ec8e8d136664d73ad375ef89e0833 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 5, Column 3; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/73.txt b/maze/task4/maps/level_step7/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..775d3a949f1a8705d52a029e87142e5d68c0b9e0 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 5, Column 2; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/74.txt b/maze/task4/maps/level_step7/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdd0e3f63783c8e17e4af42ee4e0f42e0618ba04 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 3; Row 5, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/75.txt b/maze/task4/maps/level_step7/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..915d740f384ea81f4cf4c86382217b7a0290c305 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/76.txt b/maze/task4/maps/level_step7/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..1376792490f0233abff71e1e1c0a10b657829cfc --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 5; Row 4, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/77.txt b/maze/task4/maps/level_step7/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dc66fa1b6370c5725cb89c2135994a92f220f26 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/78.txt b/maze/task4/maps/level_step7/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..304fe0db7b89f5841f48a950e104a6b14832abe4 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/79.txt b/maze/task4/maps/level_step7/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a3915e8eea24dc20f7b204d597fd142ca57e4b9 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 4; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/8.txt b/maze/task4/maps/level_step7/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..08edb362cb22dbded0ea93839caca4600a4eeb16 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/80.txt b/maze/task4/maps/level_step7/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..33171052a6a50fed6c55d02e8ef51de3eece988b --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/81.txt b/maze/task4/maps/level_step7/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..819b8d0f8ce5cc798c4fd4c78818adcabd6ecbbf --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/82.txt b/maze/task4/maps/level_step7/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c2e984f1c166764303dc2f5a2ee3055093ded15 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/83.txt b/maze/task4/maps/level_step7/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..9de908982fda1aefb56756772c25a02699cac9e5 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/84.txt b/maze/task4/maps/level_step7/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f6c3cc66727f13d4b4524c30cff09d5ec25ae60 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 4; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/85.txt b/maze/task4/maps/level_step7/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..123162a1033debc8586925f03a01a5d76df30616 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/86.txt b/maze/task4/maps/level_step7/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..1314a63ac079354e310dd359ecc90968cd8e493e --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/87.txt b/maze/task4/maps/level_step7/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..13a128ba76c3d80887181bada72a4c529a13bcd8 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 4, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/88.txt b/maze/task4/maps/level_step7/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a970f264f48d75000b066267644c8f5770aeb88c --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 5, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/89.txt b/maze/task4/maps/level_step7/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..94a0d4b048c75ea846ff6f887120a36cdeecdfe0 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 1; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/9.txt b/maze/task4/maps/level_step7/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..0972b50fe337bd6e5b4c3da21aa422fcc6ca5218 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/90.txt b/maze/task4/maps/level_step7/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..f40adbab2993e9aacc3674cd4dd66a423a4b3df4 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 3; Row 3, Column 5; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/91.txt b/maze/task4/maps/level_step7/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c7e29965b5d3594eccb510a034911fed84da20e --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/92.txt b/maze/task4/maps/level_step7/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e7f518e3f935adfbec1a2fe82d9353b221c89e6 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/93.txt b/maze/task4/maps/level_step7/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1c8d6a5d034c346164d20aa74c2e65fbb5b2889 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/94.txt b/maze/task4/maps/level_step7/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f9219bae6ebde73625e6c9c8fb730c237ef09e --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/95.txt b/maze/task4/maps/level_step7/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..92aa4557aa2d22124ee2b3641570ea46108af8bc --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 5; Row 4, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/96.txt b/maze/task4/maps/level_step7/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..40d42a33cdd7057acd6fcf0b74a1f204cc01f71d --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 4, Column 2; Row 4, Column 3; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/97.txt b/maze/task4/maps/level_step7/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..076c01ee6bacfe079d95faf6bc75c95481857fd9 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/98.txt b/maze/task4/maps/level_step7/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d00ab2fa70a2f05e4fe70829bb3f0bf3bf5ed94 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/pure_text/99.txt b/maze/task4/maps/level_step7/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c2733d41da643b3aaeb54d45b0150e952de0586 --- /dev/null +++ b/maze/task4/maps/level_step7/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/0.txt b/maze/task4/maps/level_step7/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3c1c1f4de934154e2cfac2a1d88cbcc8d0ee916 --- /dev/null +++ b/maze/task4/maps/level_step7/question/0.txt @@ -0,0 +1 @@ +DRRLRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/1.txt b/maze/task4/maps/level_step7/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8344972ca6c9fc2806d94b85f7be2fd698a9583 --- /dev/null +++ b/maze/task4/maps/level_step7/question/1.txt @@ -0,0 +1 @@ +LLRDDUL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/10.txt b/maze/task4/maps/level_step7/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..726fd48ffcd8615fd14e32c0c23936ef8d9204db --- /dev/null +++ b/maze/task4/maps/level_step7/question/10.txt @@ -0,0 +1 @@ +DUULLRD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/11.txt b/maze/task4/maps/level_step7/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..04699217d37aa207ea40aab69e0761293afdb94c --- /dev/null +++ b/maze/task4/maps/level_step7/question/11.txt @@ -0,0 +1 @@ +RUULLUU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/12.txt b/maze/task4/maps/level_step7/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..251b661d689f4f3748a4bf34e0cd9963ccacde14 --- /dev/null +++ b/maze/task4/maps/level_step7/question/12.txt @@ -0,0 +1 @@ +RURLDDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/13.txt b/maze/task4/maps/level_step7/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..39734a4ccc262e35888fac8f1344c4dde348c992 --- /dev/null +++ b/maze/task4/maps/level_step7/question/13.txt @@ -0,0 +1 @@ +DURDRRL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/14.txt b/maze/task4/maps/level_step7/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c08baaf8a5e9d450f1cd5ba437531f822dd5cd4 --- /dev/null +++ b/maze/task4/maps/level_step7/question/14.txt @@ -0,0 +1 @@ +RLRLRDL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/15.txt b/maze/task4/maps/level_step7/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c9cff534e4fb4b31312250515fb885f23a0042f --- /dev/null +++ b/maze/task4/maps/level_step7/question/15.txt @@ -0,0 +1 @@ +ULDRLLR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/16.txt b/maze/task4/maps/level_step7/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..71188140b907194edd3b0da2b4eed954313751cf --- /dev/null +++ b/maze/task4/maps/level_step7/question/16.txt @@ -0,0 +1 @@ +DDLLUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/17.txt b/maze/task4/maps/level_step7/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f03b0931ed56fd4c007a328f0c1145cb4fb4685 --- /dev/null +++ b/maze/task4/maps/level_step7/question/17.txt @@ -0,0 +1 @@ +UDRUUDD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/18.txt b/maze/task4/maps/level_step7/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..8672ef875136606fdbbc0b0cd70172a732982814 --- /dev/null +++ b/maze/task4/maps/level_step7/question/18.txt @@ -0,0 +1 @@ +RLRDDLR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/19.txt b/maze/task4/maps/level_step7/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..af257b50526998f1ae31d56742f8f36a46470e47 --- /dev/null +++ b/maze/task4/maps/level_step7/question/19.txt @@ -0,0 +1 @@ +LULDRUL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/2.txt b/maze/task4/maps/level_step7/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..648731219b8496fee027fc43292b1e58fb47f2e9 --- /dev/null +++ b/maze/task4/maps/level_step7/question/2.txt @@ -0,0 +1 @@ +UDUUURR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/20.txt b/maze/task4/maps/level_step7/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..8dbdafc85e7a9f2835e5aeec874d095d9c2e5a24 --- /dev/null +++ b/maze/task4/maps/level_step7/question/20.txt @@ -0,0 +1 @@ +DLLULRL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/21.txt b/maze/task4/maps/level_step7/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f3b70f0f1e02681eba588f7c867895d73fe3162 --- /dev/null +++ b/maze/task4/maps/level_step7/question/21.txt @@ -0,0 +1 @@ +LRDUDRD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/22.txt b/maze/task4/maps/level_step7/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..b87bf982f1248ef45afa596ad349dca0098b8904 --- /dev/null +++ b/maze/task4/maps/level_step7/question/22.txt @@ -0,0 +1 @@ +LLRDLDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/23.txt b/maze/task4/maps/level_step7/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..5734fcf3900d46135591c830a82e2b0cac89949a --- /dev/null +++ b/maze/task4/maps/level_step7/question/23.txt @@ -0,0 +1 @@ +RDUURUR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/24.txt b/maze/task4/maps/level_step7/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..15bad6a1854e62c8c1100abe109225e935b29053 --- /dev/null +++ b/maze/task4/maps/level_step7/question/24.txt @@ -0,0 +1 @@ +DDDURLU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/25.txt b/maze/task4/maps/level_step7/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..afed8053ea3e215cd45292bde9dbb9ad2695a004 --- /dev/null +++ b/maze/task4/maps/level_step7/question/25.txt @@ -0,0 +1 @@ +DDUUDDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/26.txt b/maze/task4/maps/level_step7/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa7cf1949f570d2cf2349370ffb75192d03d0839 --- /dev/null +++ b/maze/task4/maps/level_step7/question/26.txt @@ -0,0 +1 @@ +DURLRRL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/27.txt b/maze/task4/maps/level_step7/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e73f6a0b5bca2ad4caf7594f2d513678452fd43 --- /dev/null +++ b/maze/task4/maps/level_step7/question/27.txt @@ -0,0 +1 @@ +RRUDURL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/28.txt b/maze/task4/maps/level_step7/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae8792c169a41abc289deaac4bb3b08c1b6aab13 --- /dev/null +++ b/maze/task4/maps/level_step7/question/28.txt @@ -0,0 +1 @@ +UDUDULL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/29.txt b/maze/task4/maps/level_step7/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..3330fbc519de59128e5a1dcba646f586e26cf75f --- /dev/null +++ b/maze/task4/maps/level_step7/question/29.txt @@ -0,0 +1 @@ +DUUDRDL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/3.txt b/maze/task4/maps/level_step7/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c9fbd046e3fd43b2955fe0fb35f23a1b97886d8 --- /dev/null +++ b/maze/task4/maps/level_step7/question/3.txt @@ -0,0 +1 @@ +DRLRLRD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/30.txt b/maze/task4/maps/level_step7/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ee162c95115ae493148d562c6da1dc24ac6198d --- /dev/null +++ b/maze/task4/maps/level_step7/question/30.txt @@ -0,0 +1 @@ +UDUUURL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/31.txt b/maze/task4/maps/level_step7/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..a33325d236b0d5775ba01a66981f3fc5afd7e9ad --- /dev/null +++ b/maze/task4/maps/level_step7/question/31.txt @@ -0,0 +1 @@ +RUDRDRL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/32.txt b/maze/task4/maps/level_step7/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..3486ea567f9c6a8bc13ec74d3fb91c269f27949e --- /dev/null +++ b/maze/task4/maps/level_step7/question/32.txt @@ -0,0 +1 @@ +DLLUDUR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/33.txt b/maze/task4/maps/level_step7/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..40c1e563bdc54535d6c8ec9ecadbd47b158563f8 --- /dev/null +++ b/maze/task4/maps/level_step7/question/33.txt @@ -0,0 +1 @@ +LLLLRDR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/34.txt b/maze/task4/maps/level_step7/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfdd7bed5b271bd4703dedf8e51b7de4ef1a5bfe --- /dev/null +++ b/maze/task4/maps/level_step7/question/34.txt @@ -0,0 +1 @@ +UUURLDR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/35.txt b/maze/task4/maps/level_step7/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b352a84d3207169b79ed60b12d3be82226130f9 --- /dev/null +++ b/maze/task4/maps/level_step7/question/35.txt @@ -0,0 +1 @@ +UDUDURR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/36.txt b/maze/task4/maps/level_step7/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e8ff0eb44f315e215ad5699ed5e3e29278240e8 --- /dev/null +++ b/maze/task4/maps/level_step7/question/36.txt @@ -0,0 +1 @@ +LUUDRLU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/37.txt b/maze/task4/maps/level_step7/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cc099db9c759342d27a36d5f1b46695da7c82cd --- /dev/null +++ b/maze/task4/maps/level_step7/question/37.txt @@ -0,0 +1 @@ +RLLULLD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/38.txt b/maze/task4/maps/level_step7/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..d38fb153f0177c5d1a5a61bd182f5797828898c9 --- /dev/null +++ b/maze/task4/maps/level_step7/question/38.txt @@ -0,0 +1 @@ +LLLRULD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/39.txt b/maze/task4/maps/level_step7/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c7aa2e7aeed9b862450350b88f41295a100cd2c --- /dev/null +++ b/maze/task4/maps/level_step7/question/39.txt @@ -0,0 +1 @@ +RLRRDRR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/4.txt b/maze/task4/maps/level_step7/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..990524f8252b7a9700b4b81ba84565c86030d828 --- /dev/null +++ b/maze/task4/maps/level_step7/question/4.txt @@ -0,0 +1 @@ +LDDDDRU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/40.txt b/maze/task4/maps/level_step7/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ab77000fb0b1de3ffe62ef47c4e086c396a90c3 --- /dev/null +++ b/maze/task4/maps/level_step7/question/40.txt @@ -0,0 +1 @@ +DRRUUUU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/41.txt b/maze/task4/maps/level_step7/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..73e4ee1c37961f180eb3e298fe153f06caf16916 --- /dev/null +++ b/maze/task4/maps/level_step7/question/41.txt @@ -0,0 +1 @@ +URDDRUU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/42.txt b/maze/task4/maps/level_step7/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..3135eb388f2a4e4a2a5ae75f5aa9187de40aae7b --- /dev/null +++ b/maze/task4/maps/level_step7/question/42.txt @@ -0,0 +1 @@ +LUUDULR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/43.txt b/maze/task4/maps/level_step7/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e766336a92fb92a658f34ec736757fb1ae4bc0f --- /dev/null +++ b/maze/task4/maps/level_step7/question/43.txt @@ -0,0 +1 @@ +RRLLRRL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/44.txt b/maze/task4/maps/level_step7/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1f88cdacb86634d3055a575b93c95432e477ca1 --- /dev/null +++ b/maze/task4/maps/level_step7/question/44.txt @@ -0,0 +1 @@ +LDUUUDR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/45.txt b/maze/task4/maps/level_step7/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..47b4d28382c5c1a640a34d8a99b265d0b425bf35 --- /dev/null +++ b/maze/task4/maps/level_step7/question/45.txt @@ -0,0 +1 @@ +LLLRLLR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/46.txt b/maze/task4/maps/level_step7/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1e6f6ba2d4d8a11b244cfe38eb5337c0efe5298 --- /dev/null +++ b/maze/task4/maps/level_step7/question/46.txt @@ -0,0 +1 @@ +UDDUUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/47.txt b/maze/task4/maps/level_step7/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..a09b7414e6ec3c8f176eead747b5658c1c7ca5ec --- /dev/null +++ b/maze/task4/maps/level_step7/question/47.txt @@ -0,0 +1 @@ +RLDLLRR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/48.txt b/maze/task4/maps/level_step7/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..d63f1e723247083e8139d2ea8b6858be7fb7ab09 --- /dev/null +++ b/maze/task4/maps/level_step7/question/48.txt @@ -0,0 +1 @@ +DULLDLD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/49.txt b/maze/task4/maps/level_step7/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..e67c11efe4244c85f5a5be660544a858ef4fd5df --- /dev/null +++ b/maze/task4/maps/level_step7/question/49.txt @@ -0,0 +1 @@ +ULDUDUR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/5.txt b/maze/task4/maps/level_step7/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..8afea57b68f8f8f6b0076247229fe8898150e58c --- /dev/null +++ b/maze/task4/maps/level_step7/question/5.txt @@ -0,0 +1 @@ +RUDRLDR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/50.txt b/maze/task4/maps/level_step7/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..b60ba21b24de5d1f91048031d4b8c58d8f0db4c3 --- /dev/null +++ b/maze/task4/maps/level_step7/question/50.txt @@ -0,0 +1 @@ +RUUDDLU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/51.txt b/maze/task4/maps/level_step7/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3c82712a25517746909095bf464d830d3758845 --- /dev/null +++ b/maze/task4/maps/level_step7/question/51.txt @@ -0,0 +1 @@ +LDDDRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/52.txt b/maze/task4/maps/level_step7/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca67c67dd7d44a2c24a678b9f06f733be8c02b71 --- /dev/null +++ b/maze/task4/maps/level_step7/question/52.txt @@ -0,0 +1 @@ +ULRRLDD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/53.txt b/maze/task4/maps/level_step7/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b41d2de613290401ab2a66a44a4d74fd7a7cffe --- /dev/null +++ b/maze/task4/maps/level_step7/question/53.txt @@ -0,0 +1 @@ +DUDDLDR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/54.txt b/maze/task4/maps/level_step7/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..66d7b448e23d06904fde4f393dd1f67f847e85ea --- /dev/null +++ b/maze/task4/maps/level_step7/question/54.txt @@ -0,0 +1 @@ +URDUDRL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/55.txt b/maze/task4/maps/level_step7/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9fd4f57b318ef9c9cc16ea46758664037afcb5f --- /dev/null +++ b/maze/task4/maps/level_step7/question/55.txt @@ -0,0 +1 @@ +DLDLLUR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/56.txt b/maze/task4/maps/level_step7/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..f71764fd9921606ce68748aa0f2d2a430135a41f --- /dev/null +++ b/maze/task4/maps/level_step7/question/56.txt @@ -0,0 +1 @@ +LLDRULR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/57.txt b/maze/task4/maps/level_step7/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8317814a5dbe4a0db3557d70cdeadec9e71e8a7 --- /dev/null +++ b/maze/task4/maps/level_step7/question/57.txt @@ -0,0 +1 @@ +DLRDLDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/58.txt b/maze/task4/maps/level_step7/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..9309efe82e10febe75dda3c2481b7bbb16b98b33 --- /dev/null +++ b/maze/task4/maps/level_step7/question/58.txt @@ -0,0 +1 @@ +URRLLRR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/59.txt b/maze/task4/maps/level_step7/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8bec3d8df2fcfa3235fdb7ea68530034f3be82d --- /dev/null +++ b/maze/task4/maps/level_step7/question/59.txt @@ -0,0 +1 @@ +DRDLDLL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/6.txt b/maze/task4/maps/level_step7/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b7937caa04fc59c81e04d8e1d4602d4dce8c728 --- /dev/null +++ b/maze/task4/maps/level_step7/question/6.txt @@ -0,0 +1 @@ +ULRDURR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/60.txt b/maze/task4/maps/level_step7/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..866411a30c5d97d8640006694d280262f311bce2 --- /dev/null +++ b/maze/task4/maps/level_step7/question/60.txt @@ -0,0 +1 @@ +RDDURLU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/61.txt b/maze/task4/maps/level_step7/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b20465ec4637ceddd7dd11c569f323e238e8b0d --- /dev/null +++ b/maze/task4/maps/level_step7/question/61.txt @@ -0,0 +1 @@ +LRLRLDD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/62.txt b/maze/task4/maps/level_step7/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..86584d1c435333b6258f5b22cd76bf41fcf8241a --- /dev/null +++ b/maze/task4/maps/level_step7/question/62.txt @@ -0,0 +1 @@ +LURDUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/63.txt b/maze/task4/maps/level_step7/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..809eb2d238962c3fad332b7e4d49249340411571 --- /dev/null +++ b/maze/task4/maps/level_step7/question/63.txt @@ -0,0 +1 @@ +RLLRRUL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/64.txt b/maze/task4/maps/level_step7/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ae84826dd5da641f02cd15e3fc8af95edc28dbf --- /dev/null +++ b/maze/task4/maps/level_step7/question/64.txt @@ -0,0 +1 @@ +DRRDLRU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/65.txt b/maze/task4/maps/level_step7/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fd1a1823359fce4b60c63a9006e5a4279f073ee --- /dev/null +++ b/maze/task4/maps/level_step7/question/65.txt @@ -0,0 +1 @@ +DRRRLRL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/66.txt b/maze/task4/maps/level_step7/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca3c539a02aa3a9ef1a07e5aed3899417a71be05 --- /dev/null +++ b/maze/task4/maps/level_step7/question/66.txt @@ -0,0 +1 @@ +DLRRRDL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/67.txt b/maze/task4/maps/level_step7/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..426471ac49ec29de8b38f21977ff0f4681cdaf18 --- /dev/null +++ b/maze/task4/maps/level_step7/question/67.txt @@ -0,0 +1 @@ +RURLDLR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/68.txt b/maze/task4/maps/level_step7/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..7328b7ae70217b2001b0506a58db1e0d3dcc46f8 --- /dev/null +++ b/maze/task4/maps/level_step7/question/68.txt @@ -0,0 +1 @@ +RDDRRRU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/69.txt b/maze/task4/maps/level_step7/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..a540a3d1c0508f307fdce694ee69a5b8137e5bbd --- /dev/null +++ b/maze/task4/maps/level_step7/question/69.txt @@ -0,0 +1 @@ +LRDLLLU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/7.txt b/maze/task4/maps/level_step7/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bbc9892e87332d7ac4469fe1acaf985ee76ab8b --- /dev/null +++ b/maze/task4/maps/level_step7/question/7.txt @@ -0,0 +1 @@ +DDDLRUD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/70.txt b/maze/task4/maps/level_step7/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c536dcd4d71e2a0a8286622c3b503b8c0e8eeb7 --- /dev/null +++ b/maze/task4/maps/level_step7/question/70.txt @@ -0,0 +1 @@ +RLRDDLL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/71.txt b/maze/task4/maps/level_step7/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb913d247787788845c6c88dd7f9349956cb6981 --- /dev/null +++ b/maze/task4/maps/level_step7/question/71.txt @@ -0,0 +1 @@ +LLDDDRL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/72.txt b/maze/task4/maps/level_step7/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cbc08a891c057007938c700f426f3cb938fd479 --- /dev/null +++ b/maze/task4/maps/level_step7/question/72.txt @@ -0,0 +1 @@ +DDURULL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/73.txt b/maze/task4/maps/level_step7/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca2f2bc0ed491baa582bff0037113bf69a6c415f --- /dev/null +++ b/maze/task4/maps/level_step7/question/73.txt @@ -0,0 +1 @@ +ULRRLDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/74.txt b/maze/task4/maps/level_step7/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a2a46a89b6f40ee7aa35d1473614715623a0ed7 --- /dev/null +++ b/maze/task4/maps/level_step7/question/74.txt @@ -0,0 +1 @@ +UULRUDD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/75.txt b/maze/task4/maps/level_step7/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..17fe21dcdebf6c1704e5d47f27cb1e6bfa339167 --- /dev/null +++ b/maze/task4/maps/level_step7/question/75.txt @@ -0,0 +1 @@ +DULRDRR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/76.txt b/maze/task4/maps/level_step7/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..71bb1d48300781dcb4f866973497f9c3d1c2ca56 --- /dev/null +++ b/maze/task4/maps/level_step7/question/76.txt @@ -0,0 +1 @@ +UDRRLDD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/77.txt b/maze/task4/maps/level_step7/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..96ec04a48846ec8d81b2f385cadc8ab8b12cd3cd --- /dev/null +++ b/maze/task4/maps/level_step7/question/77.txt @@ -0,0 +1 @@ +URULDRR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/78.txt b/maze/task4/maps/level_step7/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..b539c63e8093f2fd053a591a63a87802999a8a85 --- /dev/null +++ b/maze/task4/maps/level_step7/question/78.txt @@ -0,0 +1 @@ +DLRUULL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/79.txt b/maze/task4/maps/level_step7/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..3415e99c75ea6e870a545b7c6326b546f8bdf233 --- /dev/null +++ b/maze/task4/maps/level_step7/question/79.txt @@ -0,0 +1 @@ +LURLDDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/8.txt b/maze/task4/maps/level_step7/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1421a4cb86ba5f626735c8200c8db2769c528fd --- /dev/null +++ b/maze/task4/maps/level_step7/question/8.txt @@ -0,0 +1 @@ +LRRRRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/80.txt b/maze/task4/maps/level_step7/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b9e210310f154a6bff5d8b2891a3d9aab610f50 --- /dev/null +++ b/maze/task4/maps/level_step7/question/80.txt @@ -0,0 +1 @@ +UDRURRU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/81.txt b/maze/task4/maps/level_step7/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..03965df35e6299c7cc25f534e6a6f74ca6e34483 --- /dev/null +++ b/maze/task4/maps/level_step7/question/81.txt @@ -0,0 +1 @@ +UDDRLLR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/82.txt b/maze/task4/maps/level_step7/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..58dd17092c78fa58680ea9e30b25b0771b513408 --- /dev/null +++ b/maze/task4/maps/level_step7/question/82.txt @@ -0,0 +1 @@ +URRUDDR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/83.txt b/maze/task4/maps/level_step7/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d3a508f4f1ca02f2a85c85d72e6c27c8ae9f4d2 --- /dev/null +++ b/maze/task4/maps/level_step7/question/83.txt @@ -0,0 +1 @@ +ULLRUUU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/84.txt b/maze/task4/maps/level_step7/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..009c666cc848b0b3deb1e94b31713e59f382252f --- /dev/null +++ b/maze/task4/maps/level_step7/question/84.txt @@ -0,0 +1 @@ +RUDULUD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/85.txt b/maze/task4/maps/level_step7/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..b80314b7e6a59adfa9fafb002704e807ea6c3102 --- /dev/null +++ b/maze/task4/maps/level_step7/question/85.txt @@ -0,0 +1 @@ +LRLRDUD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/86.txt b/maze/task4/maps/level_step7/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..251b661d689f4f3748a4bf34e0cd9963ccacde14 --- /dev/null +++ b/maze/task4/maps/level_step7/question/86.txt @@ -0,0 +1 @@ +RURLDDU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/87.txt b/maze/task4/maps/level_step7/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..81af7c62c4d2a6a92de9f5b39525818af40e9ac1 --- /dev/null +++ b/maze/task4/maps/level_step7/question/87.txt @@ -0,0 +1 @@ +DRDUDUR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/88.txt b/maze/task4/maps/level_step7/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b0181f94c3fc24966158364fddb00dc61e789c4 --- /dev/null +++ b/maze/task4/maps/level_step7/question/88.txt @@ -0,0 +1 @@ +ULUDULL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/89.txt b/maze/task4/maps/level_step7/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6d2dc18526a8948615d7e57c0545b3f85bdec40 --- /dev/null +++ b/maze/task4/maps/level_step7/question/89.txt @@ -0,0 +1 @@ +RDRLURD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/9.txt b/maze/task4/maps/level_step7/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e0c0a00b3a4d6881b3f758c52099f74e35605a4 --- /dev/null +++ b/maze/task4/maps/level_step7/question/9.txt @@ -0,0 +1 @@ +UDURLRR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/90.txt b/maze/task4/maps/level_step7/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..a48e907e73e51f5d35469c92ca49ba401b2311cd --- /dev/null +++ b/maze/task4/maps/level_step7/question/90.txt @@ -0,0 +1 @@ +UDLURLD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/91.txt b/maze/task4/maps/level_step7/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..1101c7d5eeb3d5eb5b3a06cf79357cf3aa6117d2 --- /dev/null +++ b/maze/task4/maps/level_step7/question/91.txt @@ -0,0 +1 @@ +RUDRLRR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/92.txt b/maze/task4/maps/level_step7/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bd6bea6b8f79ca3ae776052c827080d5126f1e5 --- /dev/null +++ b/maze/task4/maps/level_step7/question/92.txt @@ -0,0 +1 @@ +DULRRDL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/93.txt b/maze/task4/maps/level_step7/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..f841601d594f5ef31a4f856e0353d1b9b1f318e7 --- /dev/null +++ b/maze/task4/maps/level_step7/question/93.txt @@ -0,0 +1 @@ +RLUDDDR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/94.txt b/maze/task4/maps/level_step7/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8c42e0b65a8bb2811cba911969a2e45d9369a6c --- /dev/null +++ b/maze/task4/maps/level_step7/question/94.txt @@ -0,0 +1 @@ +RLUURRU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/95.txt b/maze/task4/maps/level_step7/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebf7d312da8838c323ec417c80f7af681ea5472e --- /dev/null +++ b/maze/task4/maps/level_step7/question/95.txt @@ -0,0 +1 @@ +DLRLRLU \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/96.txt b/maze/task4/maps/level_step7/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b08d448c901671e0205e228675cf12011089036 --- /dev/null +++ b/maze/task4/maps/level_step7/question/96.txt @@ -0,0 +1 @@ +RLUURDD \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/97.txt b/maze/task4/maps/level_step7/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..5733e4e24387e1c452cb5d5dc47b9079008a3566 --- /dev/null +++ b/maze/task4/maps/level_step7/question/97.txt @@ -0,0 +1 @@ +RRLLLRR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/98.txt b/maze/task4/maps/level_step7/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c04c3b05b3994af914222a07f8ad72b2faf10e8 --- /dev/null +++ b/maze/task4/maps/level_step7/question/98.txt @@ -0,0 +1 @@ +DDLURLR \ No newline at end of file diff --git a/maze/task4/maps/level_step7/question/99.txt b/maze/task4/maps/level_step7/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fc52a664e320658ee7b2e3e1d3aae950a91b808 --- /dev/null +++ b/maze/task4/maps/level_step7/question/99.txt @@ -0,0 +1 @@ +ULDLULL \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/0.txt b/maze/task4/maps/level_step7/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..420ca255e50bcca69de73d30d0a57ea293c7b899 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +____# +__@__ +*__#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/1.txt b/maze/task4/maps/level_step7/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..36493eafb5edfef8d172c61adcf5ca23b3a51a87 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/1.txt @@ -0,0 +1,5 @@ +__@__ +___#_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/10.txt b/maze/task4/maps/level_step7/special_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..aabea86b87fbff1d349c785627ef91064c4841a5 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/10.txt @@ -0,0 +1,5 @@ +__##_ +__@__ +_____ +_#__* +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/11.txt b/maze/task4/maps/level_step7/special_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..56d141d224b3ca2172508096b566657e71ab4d07 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/11.txt @@ -0,0 +1,5 @@ +_____ +_#_#_ +_____ +_##__ +*@_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/12.txt b/maze/task4/maps/level_step7/special_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef1c1ce3a69115405d7230319cb2e6281c9a93f2 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/12.txt @@ -0,0 +1,5 @@ +__#_# +_____ +_#_#_ +__@__ +_*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/13.txt b/maze/task4/maps/level_step7/special_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1a36100bee4fff583c1677dbe5d3a1a933b5b30 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/13.txt @@ -0,0 +1,5 @@ +#___* +__##_ +___#_ +@____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/14.txt b/maze/task4/maps/level_step7/special_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e0ddf89ac03e81ea86e73ab11b1ba85598c4849 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/14.txt @@ -0,0 +1,5 @@ +__#@_ +__#*_ +_____ +#__#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/15.txt b/maze/task4/maps/level_step7/special_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..119a4ca05cab26c1afcf6a97fe7190d666276167 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/15.txt @@ -0,0 +1,5 @@ +____# +#___@ +_____ +__#__ +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/16.txt b/maze/task4/maps/level_step7/special_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ef8c6c90c43a36a8d8ab69d756c9b6b8e0cdcc --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/16.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +__@## +*__#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/17.txt b/maze/task4/maps/level_step7/special_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..9aeeb8e837ea753e9998a6ae6a0f8107e90694b0 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/17.txt @@ -0,0 +1,5 @@ +_#_#* +_____ +___@# +__#__ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/18.txt b/maze/task4/maps/level_step7/special_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc0af769dc2c16a76ecb668e97cca5186d8b8ff5 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/18.txt @@ -0,0 +1,5 @@ +__#__ +_____ +#_#@_ +__*#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/19.txt b/maze/task4/maps/level_step7/special_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..82e85645c0b0754630d409de9d02e4b1c2f5f476 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/19.txt @@ -0,0 +1,5 @@ +##__# +___## +____# +_*___ +___#@ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/2.txt b/maze/task4/maps/level_step7/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..048936f4edf772d59f702bd13490217b5ce9d207 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +__### +_____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/20.txt b/maze/task4/maps/level_step7/special_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..42987cf8aa4bc39bc4a012cb7113b3af81634ca1 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/20.txt @@ -0,0 +1,5 @@ +_____ +____# +___#@ +_#___ +__*_# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/21.txt b/maze/task4/maps/level_step7/special_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..55973d6eccbbd89d2c4dd9b68a9de01e9ecf2685 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/21.txt @@ -0,0 +1,5 @@ +_____ +___@_ +____# +#____ +____* \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/22.txt b/maze/task4/maps/level_step7/special_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b0b9fe332e5eebee889f200348a219df310df7a --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/22.txt @@ -0,0 +1,5 @@ +__*__ +____@ +_#___ +#____ +#_### \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/23.txt b/maze/task4/maps/level_step7/special_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fa4afde85095b71ae5b0c3de29af2f90527abb3 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/23.txt @@ -0,0 +1,5 @@ +__*__ +_#__# +_#___ +@__#_ +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/24.txt b/maze/task4/maps/level_step7/special_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..70dca46fbfeeb5cac0dfb4f51708f42ff317132d --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/24.txt @@ -0,0 +1,5 @@ +*@##_ +_##__ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/25.txt b/maze/task4/maps/level_step7/special_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..667de56b26576b5c1e594c4993b5bf8401b94f5b --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/25.txt @@ -0,0 +1,5 @@ +_____ +#@__# +#_*__ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/26.txt b/maze/task4/maps/level_step7/special_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..6814af7d62871973595ad147e45c8fb278967310 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/26.txt @@ -0,0 +1,5 @@ +__#__ +__##_ +_##__ +_#@#_ +_*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/27.txt b/maze/task4/maps/level_step7/special_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f810ac4f5ad2096a8075b1f34f21225c87d66e9 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/27.txt @@ -0,0 +1,5 @@ +__#__ +_@__# +__#_# +_____ +_#_*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/28.txt b/maze/task4/maps/level_step7/special_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe4f6951a13305bc8a3ebac101f52ac2df1d8d8d --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/28.txt @@ -0,0 +1,5 @@ +____# +_____ +____@ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/29.txt b/maze/task4/maps/level_step7/special_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f399428d9bd0279229d7633d959b8cb8fb07b6c --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/29.txt @@ -0,0 +1,5 @@ +_____ +@____ +#__#_ +_##__ +*____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/3.txt b/maze/task4/maps/level_step7/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..db97ae9d4b28569612d83923a1d3d5a271c0f04b --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_#___ +_____ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/30.txt b/maze/task4/maps/level_step7/special_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ff179791e452917063ab980e0aea48ed74b88fe --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/30.txt @@ -0,0 +1,5 @@ +_____ +__#__ +____# +#___* +__#@# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/31.txt b/maze/task4/maps/level_step7/special_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3e3cb7c92734ec14c47b6f2290398aa83255732 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/31.txt @@ -0,0 +1,5 @@ +___#_ +##_## +__#__ +@____ +_#__* \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/32.txt b/maze/task4/maps/level_step7/special_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a4fc05ffa3df75dfb9c3c98a349a779e321dc9a --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/32.txt @@ -0,0 +1,5 @@ +*__## +_____ +_____ +__@#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/33.txt b/maze/task4/maps/level_step7/special_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e369f79292a43424db7abeb80c7e13f47ba769a --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/33.txt @@ -0,0 +1,5 @@ +___#_ +_##_# +____@ +_____ +___*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/34.txt b/maze/task4/maps/level_step7/special_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c6bad0506035459e9a71741ab93dca828e05be7 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/34.txt @@ -0,0 +1,5 @@ +#____ +_____ +__*## +@___# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/35.txt b/maze/task4/maps/level_step7/special_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d8a748e315670ef95d6c60884a7a3c16ce43902 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/35.txt @@ -0,0 +1,5 @@ +___*# +____# +_#___ +@##_# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/36.txt b/maze/task4/maps/level_step7/special_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..6918e8a07f364de3aa0ac596235ebc06e9b75d1f --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/36.txt @@ -0,0 +1,5 @@ +_____ +__#*_ +##__# +__@__ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/37.txt b/maze/task4/maps/level_step7/special_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..37f887e39f858ae25ed554c2d1aa01950d9937ad --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/37.txt @@ -0,0 +1,5 @@ +#____ +_##@_ +#__#_ +#____ +#__*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/38.txt b/maze/task4/maps/level_step7/special_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..53d4c0962eaccd88b92dd3b5ef8b880e924f0549 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/38.txt @@ -0,0 +1,5 @@ +__#__ +__##* +___#_ +___#_ +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/39.txt b/maze/task4/maps/level_step7/special_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac3400802c62d3a185035baa85961147c2f85619 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/39.txt @@ -0,0 +1,5 @@ +____* +@____ +___## +_____ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/4.txt b/maze/task4/maps/level_step7/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..502e775fe3e2fca70814b0024f0c4843bcb1d419 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/4.txt @@ -0,0 +1,5 @@ +____@ +_____ +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/40.txt b/maze/task4/maps/level_step7/special_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..606c38d4b7d86d249bcaeea8a1f2037c93be65f5 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/40.txt @@ -0,0 +1,5 @@ +_____ +##*__ +_____ +@____ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/41.txt b/maze/task4/maps/level_step7/special_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..566751fb311af38ac73d78153cd77dff21488226 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/41.txt @@ -0,0 +1,5 @@ +#_#__ +_____ +_@___ +_#_*# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/42.txt b/maze/task4/maps/level_step7/special_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..1997aeed41f08dbd46a07f194617ad401f9282ad --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/42.txt @@ -0,0 +1,5 @@ +_#### +_____ +__@__ +___## +##*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/43.txt b/maze/task4/maps/level_step7/special_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..c229d5f2ebed8676850e04df8ecb2d7dbe792fc5 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/43.txt @@ -0,0 +1,5 @@ +__@_* +__#__ +_____ +_____ +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/44.txt b/maze/task4/maps/level_step7/special_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..98e1371697734fe4bc87170681fc345e1717d849 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/44.txt @@ -0,0 +1,5 @@ +___#_ +*____ +_#__# +_@_#_ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/45.txt b/maze/task4/maps/level_step7/special_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..eae621b6cdb39463843ae427e40348b071087230 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/45.txt @@ -0,0 +1,5 @@ +__*__ +____@ +_#___ +_#__# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/46.txt b/maze/task4/maps/level_step7/special_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..36fc9a723467d43fc642ed71e32ebd67b0723a45 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/46.txt @@ -0,0 +1,5 @@ +__#__ +@#___ +_____ +#_#__ +_*#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/47.txt b/maze/task4/maps/level_step7/special_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fc02bf24d77a06a6b9b322a3b27dedbe5410898 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/47.txt @@ -0,0 +1,5 @@ +_____ +_____ +_*#__ +##_@_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/48.txt b/maze/task4/maps/level_step7/special_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c59ace18afe397442fdf6c4f5999cf5b88515b3 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/48.txt @@ -0,0 +1,5 @@ +_##_@ +#_#_# +_____ +__*__ +_##__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/49.txt b/maze/task4/maps/level_step7/special_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..da75b9de1c2c1d8e3cf3c041f7df4bcb16aa3b19 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/49.txt @@ -0,0 +1,5 @@ +#____ +#@*#_ +_____ +##__# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/5.txt b/maze/task4/maps/level_step7/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da829c21a8c7e84d7331b0713ca8ff4103eb23a --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +___#_ +_@___ +___*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/50.txt b/maze/task4/maps/level_step7/special_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..64ef642a00921039b7d535cbce10e8c84df2a1bd --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/50.txt @@ -0,0 +1,5 @@ +____# +_____ +_#___ +__#_# +_#_@* \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/51.txt b/maze/task4/maps/level_step7/special_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..e23c8ed711ed757b658f2a33c27dd29b5722bf1e --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/51.txt @@ -0,0 +1,5 @@ +*@#__ +_____ +_#_#_ +_#___ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/52.txt b/maze/task4/maps/level_step7/special_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf8aae814da6ef52b67673d4c78d707e4104da7f --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/52.txt @@ -0,0 +1,5 @@ +_____ +*@_#_ +_#___ +___## +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/53.txt b/maze/task4/maps/level_step7/special_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d12fc1b942f2a7bc3156f95f0e25211ddb00df6b --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/53.txt @@ -0,0 +1,5 @@ +#*#__ +#@#__ +#_##_ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/54.txt b/maze/task4/maps/level_step7/special_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..b06f294b3ea58c7614f151b1e22e986f5b1041d1 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/54.txt @@ -0,0 +1,5 @@ +_____ +*____ +_____ +___## +_@__# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/55.txt b/maze/task4/maps/level_step7/special_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a45759e1fa57aec4c9d22c4b2e6bcec7fb90826 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/55.txt @@ -0,0 +1,5 @@ +__*__ +_____ +#_#@_ +_#_#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/56.txt b/maze/task4/maps/level_step7/special_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9258b085a83d50701369b971c0b2c70a07124c2 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/56.txt @@ -0,0 +1,5 @@ +__#_@ +_*___ +_#___ +_____ +#__#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/57.txt b/maze/task4/maps/level_step7/special_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..77f56834a9065a20a11110d7b4e1069a846ff453 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/57.txt @@ -0,0 +1,5 @@ +__#__ +__#_@ +_*#__ +#____ +_#__# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/58.txt b/maze/task4/maps/level_step7/special_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..12dbc939bfcc060a05984cb19276832fda6b5e63 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/58.txt @@ -0,0 +1,5 @@ +#*___ +_@##_ +_____ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/59.txt b/maze/task4/maps/level_step7/special_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..d24288d1a1bffa5b766fd4ed87aebb0a4fc3b4b3 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/59.txt @@ -0,0 +1,5 @@ +_____ +_#_@_ +_*___ +____# +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/6.txt b/maze/task4/maps/level_step7/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..06ac61b196846a33b6224efe7ab1f762ac624cf4 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +____# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/60.txt b/maze/task4/maps/level_step7/special_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9d32ec97dca5117fac0245541e8052a96e54867 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/60.txt @@ -0,0 +1,5 @@ +#_@__ +#___* +__#__ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/61.txt b/maze/task4/maps/level_step7/special_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..52e8680d89b6268e2656fb206c3b99a8e7b31428 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/61.txt @@ -0,0 +1,5 @@ +_@_#_ +__*__ +#____ +_#_#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/62.txt b/maze/task4/maps/level_step7/special_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9de24d3a6552f1cf9dec1a0908da92f31310a91 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/62.txt @@ -0,0 +1,5 @@ +*_#__ +__#_# +__#__ +_##_# +___#@ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/63.txt b/maze/task4/maps/level_step7/special_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8ba5f067983416b3c08e56b0d5e9eb20507e07a --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/63.txt @@ -0,0 +1,5 @@ +___#_ +_____ +___#_ +__#__ +_*#@_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/64.txt b/maze/task4/maps/level_step7/special_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0c241fe74be1b4ccb9a3766b4b7e12ba9a9aeb3 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/64.txt @@ -0,0 +1,5 @@ +_##__ +__@__ +_____ +___*_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/65.txt b/maze/task4/maps/level_step7/special_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d0ec4e54ecc97178acc246e7d3d6108f33b2c11 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/65.txt @@ -0,0 +1,5 @@ +_#___ +#___# +_____ +_@___ +____* \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/66.txt b/maze/task4/maps/level_step7/special_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..659eea688502e85f0be77475b9c668018c233e47 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/66.txt @@ -0,0 +1,5 @@ +#___# +_#@*# +#____ +_____ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/67.txt b/maze/task4/maps/level_step7/special_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..8937c0371631c1de93af8fe33dc7e2f4d5c01a47 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/67.txt @@ -0,0 +1,5 @@ +___## +_____ +_##__ +____# +@*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/68.txt b/maze/task4/maps/level_step7/special_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4dd2d7756dbe9dd03094ee12599ae06644dfad6 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/68.txt @@ -0,0 +1,5 @@ +_____ +@____ +#____ +_*___ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/69.txt b/maze/task4/maps/level_step7/special_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dffa8b0097e6908fd1d8293817547ae9c00c985 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/69.txt @@ -0,0 +1,5 @@ +__#__ +_#_@# +____# +_#_*# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/7.txt b/maze/task4/maps/level_step7/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..16c288d9912871111553377ec177e0645df42889 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/7.txt @@ -0,0 +1,5 @@ +___*_ +__@__ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/70.txt b/maze/task4/maps/level_step7/special_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f9572cc2911c9ce5b6d72399e40ec3aed7a55e4 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/70.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +#_@#_ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/71.txt b/maze/task4/maps/level_step7/special_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec547806f0cef4d8621d8b7ac7e35d966001a329 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/71.txt @@ -0,0 +1,5 @@ +__@_* +__##_ +###__ +_#___ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/72.txt b/maze/task4/maps/level_step7/special_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dd76be36b72991bf946da290650fc8521bcde01 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/72.txt @@ -0,0 +1,5 @@ +___@_ +##_## +_##__ +#____ +__#*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/73.txt b/maze/task4/maps/level_step7/special_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..746070c6c9d5bf224470149b7a2b6c7191cfcae4 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/73.txt @@ -0,0 +1,5 @@ +##___ +__##_ +__@__ +_*___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/74.txt b/maze/task4/maps/level_step7/special_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed36693a062ec2c15a72eb6d2228e4c31883eaa --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/74.txt @@ -0,0 +1,5 @@ +#___# +__#__ +_____ +*___@ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/75.txt b/maze/task4/maps/level_step7/special_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..4743758d365e554a2d43d3719da63dd01e165a97 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/75.txt @@ -0,0 +1,5 @@ +_____ +_#*__ +#_@__ +_____ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/76.txt b/maze/task4/maps/level_step7/special_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e88d942c35a39e83672b15e7e85c8d1244ec787 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/76.txt @@ -0,0 +1,5 @@ +_____ +_____ +@___# +*#___ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/77.txt b/maze/task4/maps/level_step7/special_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..182b09ef1a1c5994f3d7fb596bd4a62d4770d069 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/77.txt @@ -0,0 +1,5 @@ +_____ +___*_ +___#_ +__#__ +_@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/78.txt b/maze/task4/maps/level_step7/special_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ff0764234999b3e3212d974321f8d294d192e67 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/78.txt @@ -0,0 +1,5 @@ +___#_ +____@ +_##__ +_#___ +#_*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/79.txt b/maze/task4/maps/level_step7/special_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b2fa48cf7e2a2c2799e159269dc38ccbf798dc4 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/79.txt @@ -0,0 +1,5 @@ +____* +__@#_ +___## +_____ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/8.txt b/maze/task4/maps/level_step7/special_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6c796052f0100022fe2c081e835f47b1f55424b --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/8.txt @@ -0,0 +1,5 @@ +___*_ +#____ +___#_ +##_#_ +_@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/80.txt b/maze/task4/maps/level_step7/special_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e5129b786813628f7f82afa5849e23a616f7f6a --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/80.txt @@ -0,0 +1,5 @@ +#____ +__#__ +____# +#____ +*@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/81.txt b/maze/task4/maps/level_step7/special_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7e67fec53cdf145b350622211eee509d84eb2e5 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/81.txt @@ -0,0 +1,5 @@ +__#__ +__*__ +_@___ +_#___ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/82.txt b/maze/task4/maps/level_step7/special_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a48fc447b762ba64f2761ea190d6de97801e18e --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/82.txt @@ -0,0 +1,5 @@ +*#___ +_____ +_____ +___#_ +@#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/83.txt b/maze/task4/maps/level_step7/special_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..dba76953acd63eae94d7b2be8e98461fed868866 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/83.txt @@ -0,0 +1,5 @@ +_##__ +#_##_ +_____ +*____ +___@# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/84.txt b/maze/task4/maps/level_step7/special_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e8c25db78cb20df75cd2b9f18f1b5cae7b209a5 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/84.txt @@ -0,0 +1,5 @@ +___#_ +_____ +_*##_ +___#_ +_@_## \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/85.txt b/maze/task4/maps/level_step7/special_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..8df2e33145ce9ec5d3ff530a7060e8ce040f0636 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/85.txt @@ -0,0 +1,5 @@ +##_#_ +_#_#_ +___#@ +___#* +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/86.txt b/maze/task4/maps/level_step7/special_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a740b13ce899bc4fc84217a221c2ce136f8b4ea7 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/86.txt @@ -0,0 +1,5 @@ +__##_ +_____ +@_*#_ +##___ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/87.txt b/maze/task4/maps/level_step7/special_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f7b80f1bf5e5a494f1f26058b613284e074f097 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/87.txt @@ -0,0 +1,5 @@ +#____ +__##_ +#*@__ +#____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/88.txt b/maze/task4/maps/level_step7/special_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..575af80e1b3cc351860c53381214dd1f7ca426af --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/88.txt @@ -0,0 +1,5 @@ +__*#_ +##___ +##_@_ +##___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/89.txt b/maze/task4/maps/level_step7/special_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ead45168e535a1c6d1f8143e1f0f0d6ec8ea4cb --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/89.txt @@ -0,0 +1,5 @@ +_##__ +@__*_ +#____ +_____ +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/9.txt b/maze/task4/maps/level_step7/special_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..9affa76b75defec3d7ab79e54925d66b4c85963b --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/9.txt @@ -0,0 +1,5 @@ +##__# +##_*# +#@#_# +_#___ +####_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/90.txt b/maze/task4/maps/level_step7/special_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..22a0b9e4b89879924092f7765e7f0b3b99048392 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/90.txt @@ -0,0 +1,5 @@ +___#_ +__#_@ +____# +*#___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/91.txt b/maze/task4/maps/level_step7/special_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd253a282f1d58bb09da208dd609a1ec662aa09e --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/91.txt @@ -0,0 +1,5 @@ +_#_#_ +_@___ +*____ +__#__ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/92.txt b/maze/task4/maps/level_step7/special_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..035d413ea0181b16d955f9031d67afe8b54ebe34 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/92.txt @@ -0,0 +1,5 @@ +__@_# +_#___ +_*___ +____# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/93.txt b/maze/task4/maps/level_step7/special_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c109e94ab4ce1f02782ebfc75e5703470621d4b8 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/93.txt @@ -0,0 +1,5 @@ +#____ +_@##_ +_*#__ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/94.txt b/maze/task4/maps/level_step7/special_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..38abe560d2898d6906a99f76cb8a7e264c93d002 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/94.txt @@ -0,0 +1,5 @@ +#____ +_#___ +*____ +____# +__@_# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/95.txt b/maze/task4/maps/level_step7/special_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..53a13f63227891c075ddc58c9f79a3db401e0891 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/95.txt @@ -0,0 +1,5 @@ +*#__# +_____ +___@# +_#___ +__#_# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/96.txt b/maze/task4/maps/level_step7/special_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..920797d247e860e011462a92ad14c8defa1d7f21 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/96.txt @@ -0,0 +1,5 @@ +#____ +###__ +_*___ +_##__ +_#_@# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/97.txt b/maze/task4/maps/level_step7/special_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..59bf883a805c94d2453febf4cb9fa47b20264bac --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/97.txt @@ -0,0 +1,5 @@ +*@___ +#____ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/98.txt b/maze/task4/maps/level_step7/special_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..40e758a50dc10f059a4bf203f3e861b891a0a976 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/98.txt @@ -0,0 +1,5 @@ +#@#*_ +__#__ +_____ +#____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/special_text/99.txt b/maze/task4/maps/level_step7/special_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2028c9602836d2a5ea4b9829de9485784167394 --- /dev/null +++ b/maze/task4/maps/level_step7/special_text/99.txt @@ -0,0 +1,5 @@ +#____ +*#__@ +__#__ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step7/table/0.txt b/maze/task4/maps/level_step7/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..fab879d580d7b6bb4164444cfba31e584f6b5f59 --- /dev/null +++ b/maze/task4/maps/level_step7/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/1.txt b/maze/task4/maps/level_step7/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9644ba4395c19da791aa1dca093cacf7aa2e64e1 --- /dev/null +++ b/maze/task4/maps/level_step7/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step7/table/10.txt b/maze/task4/maps/level_step7/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..9246b1acdc1e26be1fe1d8f48713be6d083239eb --- /dev/null +++ b/maze/task4/maps/level_step7/table/10.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step7/table/11.txt b/maze/task4/maps/level_step7/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..230afc9e39ab99fb3d4aaea820ec2f190aa20160 --- /dev/null +++ b/maze/task4/maps/level_step7/table/11.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | @ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/12.txt b/maze/task4/maps/level_step7/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..57c11254307ba773fea60b02a124869dd0d61b0b --- /dev/null +++ b/maze/task4/maps/level_step7/table/12.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/13.txt b/maze/task4/maps/level_step7/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea2d1614a3e9f80e878f1bd25d564f7871c1b2bb --- /dev/null +++ b/maze/task4/maps/level_step7/table/13.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/14.txt b/maze/task4/maps/level_step7/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..74c766497f20046fdef1a548c283f61b3c2045b6 --- /dev/null +++ b/maze/task4/maps/level_step7/table/14.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/15.txt b/maze/task4/maps/level_step7/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..696c99ee25533ec2b613eb00e30371f231ffa842 --- /dev/null +++ b/maze/task4/maps/level_step7/table/15.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step7/table/16.txt b/maze/task4/maps/level_step7/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdaadcc660885d8cc036c56eb3d8c6166734d251 --- /dev/null +++ b/maze/task4/maps/level_step7/table/16.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/17.txt b/maze/task4/maps/level_step7/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d58591e15c69f0229ae6b698ed58828fde57ad0 --- /dev/null +++ b/maze/task4/maps/level_step7/table/17.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/18.txt b/maze/task4/maps/level_step7/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..a988766c4a28498fcf3f8af21390c2e490902b19 --- /dev/null +++ b/maze/task4/maps/level_step7/table/18.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/19.txt b/maze/task4/maps/level_step7/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..dff5ea733aea4468dfc8369de202df0c4526c95f --- /dev/null +++ b/maze/task4/maps/level_step7/table/19.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | @ | diff --git a/maze/task4/maps/level_step7/table/2.txt b/maze/task4/maps/level_step7/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task4/maps/level_step7/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/20.txt b/maze/task4/maps/level_step7/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..60f96585de5bee9fac2aca2fcaa5747c6122c86d --- /dev/null +++ b/maze/task4/maps/level_step7/table/20.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | diff --git a/maze/task4/maps/level_step7/table/21.txt b/maze/task4/maps/level_step7/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bdb7f9d38c363607edebca795b8efda2fd58943 --- /dev/null +++ b/maze/task4/maps/level_step7/table/21.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task4/maps/level_step7/table/22.txt b/maze/task4/maps/level_step7/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5b15e5f4ef092a1f78e2eb5159296b39c695bfa --- /dev/null +++ b/maze/task4/maps/level_step7/table/22.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | diff --git a/maze/task4/maps/level_step7/table/23.txt b/maze/task4/maps/level_step7/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..881ed227bf08887bc485be9824912925626ae07b --- /dev/null +++ b/maze/task4/maps/level_step7/table/23.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step7/table/24.txt b/maze/task4/maps/level_step7/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a46158cd5ecabbe51eeb45c513af7168897e33c --- /dev/null +++ b/maze/task4/maps/level_step7/table/24.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | # | _ | +| Row 2 | _ | # | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/25.txt b/maze/task4/maps/level_step7/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2ecfa107864966d52a237d3a7578f7c4255db56 --- /dev/null +++ b/maze/task4/maps/level_step7/table/25.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/26.txt b/maze/task4/maps/level_step7/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..207d60ab0a9e8bb8132ed9c4b868e6faeaa340d6 --- /dev/null +++ b/maze/task4/maps/level_step7/table/26.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | # | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/27.txt b/maze/task4/maps/level_step7/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..78bbcfe6501df2fa4d5998e438299642be5337aa --- /dev/null +++ b/maze/task4/maps/level_step7/table/27.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | * | _ | diff --git a/maze/task4/maps/level_step7/table/28.txt b/maze/task4/maps/level_step7/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..60ac347fd4a84043ca0e33430e4979c51a670c85 --- /dev/null +++ b/maze/task4/maps/level_step7/table/28.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/29.txt b/maze/task4/maps/level_step7/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2bad87d618bf7eafda3b9decc428a7b6cc29fd3 --- /dev/null +++ b/maze/task4/maps/level_step7/table/29.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/3.txt b/maze/task4/maps/level_step7/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9afb12ea5b879f7d3d1aee81db7632744fe5e1 --- /dev/null +++ b/maze/task4/maps/level_step7/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/30.txt b/maze/task4/maps/level_step7/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cb1ae58ba0ccd2d81caa01dd388fbacd7ef701b --- /dev/null +++ b/maze/task4/maps/level_step7/table/30.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | * | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task4/maps/level_step7/table/31.txt b/maze/task4/maps/level_step7/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..79fab8a93e45cc567a9c8e57d28bfdde645c5f7b --- /dev/null +++ b/maze/task4/maps/level_step7/table/31.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | diff --git a/maze/task4/maps/level_step7/table/32.txt b/maze/task4/maps/level_step7/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e596765f71f84682ad2c57d6303627b783f01b2 --- /dev/null +++ b/maze/task4/maps/level_step7/table/32.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/33.txt b/maze/task4/maps/level_step7/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..419c8042381b1781ac2fad374e1c39d0b7a7ad54 --- /dev/null +++ b/maze/task4/maps/level_step7/table/33.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step7/table/34.txt b/maze/task4/maps/level_step7/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..566bb80615e6d824c4a8f021f7c58e9ec5f7998a --- /dev/null +++ b/maze/task4/maps/level_step7/table/34.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/35.txt b/maze/task4/maps/level_step7/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..36ecb46c08a824f725f9b4783ff055742966e887 --- /dev/null +++ b/maze/task4/maps/level_step7/table/35.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/36.txt b/maze/task4/maps/level_step7/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b5485637d80812baba1acdf1b3a89d61ae504c2 --- /dev/null +++ b/maze/task4/maps/level_step7/table/36.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | # | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step7/table/37.txt b/maze/task4/maps/level_step7/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f9ad7f1e1ff9588a3ac424b6613bbd044b5ab7c --- /dev/null +++ b/maze/task4/maps/level_step7/table/37.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | @ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step7/table/38.txt b/maze/task4/maps/level_step7/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3846e4c3e55d0e44804705a43989b2e23cf8b0e0 --- /dev/null +++ b/maze/task4/maps/level_step7/table/38.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step7/table/39.txt b/maze/task4/maps/level_step7/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6f2866c22a34b17a90a893e64a9a6f532c221e9 --- /dev/null +++ b/maze/task4/maps/level_step7/table/39.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/4.txt b/maze/task4/maps/level_step7/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a319701482090faefd8ce684edd4b3d512e35984 --- /dev/null +++ b/maze/task4/maps/level_step7/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/40.txt b/maze/task4/maps/level_step7/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..54a24c913e97823bbc5629351cdbc96ef03f449e --- /dev/null +++ b/maze/task4/maps/level_step7/table/40.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/41.txt b/maze/task4/maps/level_step7/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..a69ba0fd6e108e65971aeec453ee42c21f1cc200 --- /dev/null +++ b/maze/task4/maps/level_step7/table/41.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/42.txt b/maze/task4/maps/level_step7/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3f79b409138f52b13db888a3c66a0b2e14197bd --- /dev/null +++ b/maze/task4/maps/level_step7/table/42.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | # | * | _ | _ | diff --git a/maze/task4/maps/level_step7/table/43.txt b/maze/task4/maps/level_step7/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..bba5c75ca3accaaa374a79977ffb21046bb28e7b --- /dev/null +++ b/maze/task4/maps/level_step7/table/43.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/44.txt b/maze/task4/maps/level_step7/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..80de0959c036469c32805ef6549d2b1ed4c6bedb --- /dev/null +++ b/maze/task4/maps/level_step7/table/44.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | _ | @ | _ | # | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/45.txt b/maze/task4/maps/level_step7/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c18b3e25aecbca606d0717b194804c0ab956f3e --- /dev/null +++ b/maze/task4/maps/level_step7/table/45.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/46.txt b/maze/task4/maps/level_step7/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..52e9ac1f1c0a84951c51f3ae469355badac706b3 --- /dev/null +++ b/maze/task4/maps/level_step7/table/46.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | diff --git a/maze/task4/maps/level_step7/table/47.txt b/maze/task4/maps/level_step7/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..8248788308d1f5978c1d713f73beea09fae8c955 --- /dev/null +++ b/maze/task4/maps/level_step7/table/47.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/48.txt b/maze/task4/maps/level_step7/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..af6f3d0d58ce7959a05c02d97ea91cdda147da66 --- /dev/null +++ b/maze/task4/maps/level_step7/table/48.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | @ | +| Row 2 | # | _ | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | diff --git a/maze/task4/maps/level_step7/table/49.txt b/maze/task4/maps/level_step7/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..aba73571fcfc3bae5e9941c21772f6fa26131013 --- /dev/null +++ b/maze/task4/maps/level_step7/table/49.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/5.txt b/maze/task4/maps/level_step7/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da45b1e61a5685cb46325f1a7c0f88321df2ae --- /dev/null +++ b/maze/task4/maps/level_step7/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step7/table/50.txt b/maze/task4/maps/level_step7/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..b97612cd519d7a08838e237d743335a329e49528 --- /dev/null +++ b/maze/task4/maps/level_step7/table/50.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | _ | # | _ | @ | * | diff --git a/maze/task4/maps/level_step7/table/51.txt b/maze/task4/maps/level_step7/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..08a6ebdda49dbe7c6da77bba93f3a1c2d4e98936 --- /dev/null +++ b/maze/task4/maps/level_step7/table/51.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/52.txt b/maze/task4/maps/level_step7/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..7914664132667cfded304d979547b28e9eefd50e --- /dev/null +++ b/maze/task4/maps/level_step7/table/52.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/53.txt b/maze/task4/maps/level_step7/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d5ee7e95f64becee9861bbaa79d15ef29571b16 --- /dev/null +++ b/maze/task4/maps/level_step7/table/53.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | _ | _ | +| Row 2 | # | @ | # | _ | _ | +| Row 3 | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step7/table/54.txt b/maze/task4/maps/level_step7/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e81c6d453858ec23b49ec7bf6b3f642608e809c --- /dev/null +++ b/maze/task4/maps/level_step7/table/54.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/55.txt b/maze/task4/maps/level_step7/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2e6d7933b828afbb9bca303bc84e643f00ef395 --- /dev/null +++ b/maze/task4/maps/level_step7/table/55.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/56.txt b/maze/task4/maps/level_step7/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6a30597d43d4dcb53b1e8ce2449984cfc679b4f --- /dev/null +++ b/maze/task4/maps/level_step7/table/56.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/57.txt b/maze/task4/maps/level_step7/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6647db1330aed2c4002abe3f7ae3882ef94c8e96 --- /dev/null +++ b/maze/task4/maps/level_step7/table/57.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/58.txt b/maze/task4/maps/level_step7/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4facf5f7b9bd004d8c1c5545d862b78a8ed747eb --- /dev/null +++ b/maze/task4/maps/level_step7/table/58.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/59.txt b/maze/task4/maps/level_step7/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..9546ec6960def1281c9500d921010d5b85edded1 --- /dev/null +++ b/maze/task4/maps/level_step7/table/59.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step7/table/6.txt b/maze/task4/maps/level_step7/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2521dc5a2e4b78cd93244c384377b6d6b0823192 --- /dev/null +++ b/maze/task4/maps/level_step7/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/60.txt b/maze/task4/maps/level_step7/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..00def527d41c997c53038f0a9dd2efdbfda5a2cf --- /dev/null +++ b/maze/task4/maps/level_step7/table/60.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | _ | _ | +| Row 2 | # | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/61.txt b/maze/task4/maps/level_step7/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6fde9f59f42d2d90657ed1cde0923f2be88bd6c --- /dev/null +++ b/maze/task4/maps/level_step7/table/61.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/62.txt b/maze/task4/maps/level_step7/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbcd1054e808bd8bf6c475f8da9d093fa9999a05 --- /dev/null +++ b/maze/task4/maps/level_step7/table/62.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | # | @ | diff --git a/maze/task4/maps/level_step7/table/63.txt b/maze/task4/maps/level_step7/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..ced30f73ce6d523e27d98cd9bf4529e0f2c26193 --- /dev/null +++ b/maze/task4/maps/level_step7/table/63.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | * | # | @ | _ | diff --git a/maze/task4/maps/level_step7/table/64.txt b/maze/task4/maps/level_step7/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f61479e7d8140061c4b760334409912a1e6f628 --- /dev/null +++ b/maze/task4/maps/level_step7/table/64.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/65.txt b/maze/task4/maps/level_step7/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1278d25010ff27a783403263a4a2c870393ae901 --- /dev/null +++ b/maze/task4/maps/level_step7/table/65.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task4/maps/level_step7/table/66.txt b/maze/task4/maps/level_step7/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5da0ff14dc3fb5998a4a229eedca0c5f6ed590e --- /dev/null +++ b/maze/task4/maps/level_step7/table/66.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | @ | * | # | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/67.txt b/maze/task4/maps/level_step7/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..34ce4a21faf5689ff7ea97ad691d943c83be3c2f --- /dev/null +++ b/maze/task4/maps/level_step7/table/67.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/68.txt b/maze/task4/maps/level_step7/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a40ccda9898fe8360fc6c0b63390b6fc383a81 --- /dev/null +++ b/maze/task4/maps/level_step7/table/68.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/69.txt b/maze/task4/maps/level_step7/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..82d0f84ca02b6dbadfadf946749eec578f795f01 --- /dev/null +++ b/maze/task4/maps/level_step7/table/69.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/7.txt b/maze/task4/maps/level_step7/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc02ca1df883fa37a50dfdd0cd46b7626d287d31 --- /dev/null +++ b/maze/task4/maps/level_step7/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/70.txt b/maze/task4/maps/level_step7/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4404e2781df99c6580eeb74e3cfdecd6a84dbe2 --- /dev/null +++ b/maze/task4/maps/level_step7/table/70.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/71.txt b/maze/task4/maps/level_step7/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..13b7bc20a2399d11b44af72357fcf88f81e1bdfb --- /dev/null +++ b/maze/task4/maps/level_step7/table/71.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step7/table/72.txt b/maze/task4/maps/level_step7/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..25fd7de62a2dcb8601d19db153d6b68b55982278 --- /dev/null +++ b/maze/task4/maps/level_step7/table/72.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | diff --git a/maze/task4/maps/level_step7/table/73.txt b/maze/task4/maps/level_step7/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..031b7d038d130046de2515c19b501ea59cbdc63c --- /dev/null +++ b/maze/task4/maps/level_step7/table/73.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/74.txt b/maze/task4/maps/level_step7/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..3faabd2620240c61d2bc74842cf5af9fa9be7eb6 --- /dev/null +++ b/maze/task4/maps/level_step7/table/74.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/75.txt b/maze/task4/maps/level_step7/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c5cd02d4849b9732bff70934bf3ea07e35f6b06 --- /dev/null +++ b/maze/task4/maps/level_step7/table/75.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | * | _ | _ | +| Row 3 | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/76.txt b/maze/task4/maps/level_step7/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a6b9654e17b3b50352be483d07a713827f110b --- /dev/null +++ b/maze/task4/maps/level_step7/table/76.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step7/table/77.txt b/maze/task4/maps/level_step7/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fb899cc097e94935ef92f986f60d0143565e241 --- /dev/null +++ b/maze/task4/maps/level_step7/table/77.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/78.txt b/maze/task4/maps/level_step7/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..a83712ec92b40253ea9745c5dd18a0cb782d38f4 --- /dev/null +++ b/maze/task4/maps/level_step7/table/78.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step7/table/79.txt b/maze/task4/maps/level_step7/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a64e850682e33895bc152ffe44465805ed1634 --- /dev/null +++ b/maze/task4/maps/level_step7/table/79.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step7/table/8.txt b/maze/task4/maps/level_step7/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..497f826729be29a0fd82e501b50af79afaa11b73 --- /dev/null +++ b/maze/task4/maps/level_step7/table/8.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/80.txt b/maze/task4/maps/level_step7/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..eea8327c3189254d824c140502523df956371132 --- /dev/null +++ b/maze/task4/maps/level_step7/table/80.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | * | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/81.txt b/maze/task4/maps/level_step7/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..803866105d1f073568c9dfb087f768d08d4b712b --- /dev/null +++ b/maze/task4/maps/level_step7/table/81.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/82.txt b/maze/task4/maps/level_step7/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..88bda35ba160112dff20969fe1697ae01ee5ede6 --- /dev/null +++ b/maze/task4/maps/level_step7/table/82.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/83.txt b/maze/task4/maps/level_step7/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..de4c061f51405de6c63b43b2fb983ce2970b74ce --- /dev/null +++ b/maze/task4/maps/level_step7/table/83.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | # | diff --git a/maze/task4/maps/level_step7/table/84.txt b/maze/task4/maps/level_step7/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..45d952294d09a3f547fa4b6fc6187d865fc7f09a --- /dev/null +++ b/maze/task4/maps/level_step7/table/84.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | # | diff --git a/maze/task4/maps/level_step7/table/85.txt b/maze/task4/maps/level_step7/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bf21726c7e945dc7b50370a232b8af49fdea45c --- /dev/null +++ b/maze/task4/maps/level_step7/table/85.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/86.txt b/maze/task4/maps/level_step7/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..549158c64ed96431696106b86baad27932dbe374 --- /dev/null +++ b/maze/task4/maps/level_step7/table/86.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/87.txt b/maze/task4/maps/level_step7/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..17e8384b0a94fdc511f2fa0f1e25d28edf0c44f5 --- /dev/null +++ b/maze/task4/maps/level_step7/table/87.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | * | @ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/88.txt b/maze/task4/maps/level_step7/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d9706ff6bbf8e975d8e0896c4cde96fccd9d1ab --- /dev/null +++ b/maze/task4/maps/level_step7/table/88.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/89.txt b/maze/task4/maps/level_step7/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f9d067993b4e167b920e279ddd055052e84c911 --- /dev/null +++ b/maze/task4/maps/level_step7/table/89.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step7/table/9.txt b/maze/task4/maps/level_step7/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..daf00fa6f8ec908702ef72b30d3883d1c2a84d77 --- /dev/null +++ b/maze/task4/maps/level_step7/table/9.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | # | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task4/maps/level_step7/table/90.txt b/maze/task4/maps/level_step7/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..32f6883f066753a6601f259e57fa30bdf3da7eae --- /dev/null +++ b/maze/task4/maps/level_step7/table/90.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/91.txt b/maze/task4/maps/level_step7/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1b2831af4f52d4ba82532f39a69fd443df65b12 --- /dev/null +++ b/maze/task4/maps/level_step7/table/91.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step7/table/92.txt b/maze/task4/maps/level_step7/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..f127bc7294e35835c52ce2713dfbd07d288abe4a --- /dev/null +++ b/maze/task4/maps/level_step7/table/92.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/93.txt b/maze/task4/maps/level_step7/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..91138b26bb789e7f68beb07cd9e7ea163208e4c6 --- /dev/null +++ b/maze/task4/maps/level_step7/table/93.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step7/table/94.txt b/maze/task4/maps/level_step7/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd36699cc97c9e1261cc3c2beb6509ebfd0fc54f --- /dev/null +++ b/maze/task4/maps/level_step7/table/94.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | diff --git a/maze/task4/maps/level_step7/table/95.txt b/maze/task4/maps/level_step7/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cfddeed458210d22a1fdd41d27cfde9b2e2c62f --- /dev/null +++ b/maze/task4/maps/level_step7/table/95.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | diff --git a/maze/task4/maps/level_step7/table/96.txt b/maze/task4/maps/level_step7/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..3647c330c25afda186c77d3c2e39f51635f28c25 --- /dev/null +++ b/maze/task4/maps/level_step7/table/96.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | @ | # | diff --git a/maze/task4/maps/level_step7/table/97.txt b/maze/task4/maps/level_step7/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..18326e3e099f68517b35e02e857b8a1073462cda --- /dev/null +++ b/maze/task4/maps/level_step7/table/97.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step7/table/98.txt b/maze/task4/maps/level_step7/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..31107581bdcc9fdb56ca838c91627ed423008483 --- /dev/null +++ b/maze/task4/maps/level_step7/table/98.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | * | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/table/99.txt b/maze/task4/maps/level_step7/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b13db2830734ed2d6630ea86a324ad745def353 --- /dev/null +++ b/maze/task4/maps/level_step7/table/99.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step7/text/0.txt b/maze/task4/maps/level_step7/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..05d9780984f554484a06a72724db1106143db1f5 --- /dev/null +++ b/maze/task4/maps/level_step7/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFFH +FFSFF +GFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/1.txt b/maze/task4/maps/level_step7/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a34c55c2e4e951fa6e13cb32e1e733d6fe05eb24 --- /dev/null +++ b/maze/task4/maps/level_step7/text/1.txt @@ -0,0 +1,5 @@ +FFSFF +FFFHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/10.txt b/maze/task4/maps/level_step7/text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e24fadd64c8e7eea46d5d00acf9a0578cfd5720 --- /dev/null +++ b/maze/task4/maps/level_step7/text/10.txt @@ -0,0 +1,5 @@ +FFHHF +FFSFF +FFFFF +FHFFG +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/11.txt b/maze/task4/maps/level_step7/text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e4fd9ed59c17e2bc67c3df6f13051303a28d646 --- /dev/null +++ b/maze/task4/maps/level_step7/text/11.txt @@ -0,0 +1,5 @@ +FFFFF +FHFHF +FFFFF +FHHFF +GSFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/12.txt b/maze/task4/maps/level_step7/text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..22bdf5c1af205edf9bb87d533adf3bdce8ebffcf --- /dev/null +++ b/maze/task4/maps/level_step7/text/12.txt @@ -0,0 +1,5 @@ +FFHFH +FFFFF +FHFHF +FFSFF +FGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/13.txt b/maze/task4/maps/level_step7/text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed08431d6972bf96ffcc3634a9de904e934aa7c7 --- /dev/null +++ b/maze/task4/maps/level_step7/text/13.txt @@ -0,0 +1,5 @@ +HFFFG +FFHHF +FFFHF +SFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/14.txt b/maze/task4/maps/level_step7/text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae0c4a1f50c7c686c0feb6132c6aa57f379da4ce --- /dev/null +++ b/maze/task4/maps/level_step7/text/14.txt @@ -0,0 +1,5 @@ +FFHSF +FFHGF +FFFFF +HFFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/15.txt b/maze/task4/maps/level_step7/text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..94c6e62ca1d973c5cc62d74663486398116e2b86 --- /dev/null +++ b/maze/task4/maps/level_step7/text/15.txt @@ -0,0 +1,5 @@ +FFFFH +HFFFS +FFFFF +FFHFF +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/16.txt b/maze/task4/maps/level_step7/text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..231fc1515c20ac2410f721a0d2afaef22ab92069 --- /dev/null +++ b/maze/task4/maps/level_step7/text/16.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +FFSHH +GFFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/17.txt b/maze/task4/maps/level_step7/text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..88157090231afcf9b5d09f9875d7b51bc9005279 --- /dev/null +++ b/maze/task4/maps/level_step7/text/17.txt @@ -0,0 +1,5 @@ +FHFHG +FFFFF +FFFSH +FFHFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/18.txt b/maze/task4/maps/level_step7/text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..121eea290576d5f58a667b0f8b780bcbb7d8ccbc --- /dev/null +++ b/maze/task4/maps/level_step7/text/18.txt @@ -0,0 +1,5 @@ +FFHFF +FFFFF +HFHSF +FFGHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/19.txt b/maze/task4/maps/level_step7/text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4e978c7147b1fd0e9b13adc48dc32ae2511dc38 --- /dev/null +++ b/maze/task4/maps/level_step7/text/19.txt @@ -0,0 +1,5 @@ +HHFFH +FFFHH +FFFFH +FGFFF +FFFHS \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/2.txt b/maze/task4/maps/level_step7/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cb13026072ba0623bbd69f829f69e99a8eebd14 --- /dev/null +++ b/maze/task4/maps/level_step7/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +FFHHH +FFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/20.txt b/maze/task4/maps/level_step7/text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0f38ca5677738dabe064992e1f609ca17315b01 --- /dev/null +++ b/maze/task4/maps/level_step7/text/20.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFH +FFFHS +FHFFF +FFGFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/21.txt b/maze/task4/maps/level_step7/text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8eb819103d1d273329ea7f5230cb3fde72e9ee8 --- /dev/null +++ b/maze/task4/maps/level_step7/text/21.txt @@ -0,0 +1,5 @@ +FFFFF +FFFSF +FFFFH +HFFFF +FFFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/22.txt b/maze/task4/maps/level_step7/text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f9c0700acc53f89bfadf777ad908a38fc20409e --- /dev/null +++ b/maze/task4/maps/level_step7/text/22.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFS +FHFFF +HFFFF +HFHHH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/23.txt b/maze/task4/maps/level_step7/text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b7585bed617f5920d3b40f92c02779cfea5f29a --- /dev/null +++ b/maze/task4/maps/level_step7/text/23.txt @@ -0,0 +1,5 @@ +FFGFF +FHFFH +FHFFF +SFFHF +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/24.txt b/maze/task4/maps/level_step7/text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1a1c81f04f6ee575f393c7dbb89ab592d5e3dbf --- /dev/null +++ b/maze/task4/maps/level_step7/text/24.txt @@ -0,0 +1,5 @@ +GSHHF +FHHFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/25.txt b/maze/task4/maps/level_step7/text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e32256d198c93c47d9633d8bc09313a08758441f --- /dev/null +++ b/maze/task4/maps/level_step7/text/25.txt @@ -0,0 +1,5 @@ +FFFFF +HSFFH +HFGFF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/26.txt b/maze/task4/maps/level_step7/text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..d338144dee9f6cdf0d52f685dcff5cf89d3d91d9 --- /dev/null +++ b/maze/task4/maps/level_step7/text/26.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHF +FHHFF +FHSHF +FGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/27.txt b/maze/task4/maps/level_step7/text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b01a42d7bd4290622e86e03a9cb63f2905e10eb --- /dev/null +++ b/maze/task4/maps/level_step7/text/27.txt @@ -0,0 +1,5 @@ +FFHFF +FSFFH +FFHFH +FFFFF +FHFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/28.txt b/maze/task4/maps/level_step7/text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c42f341cf3212c079a96dd41e359cc9c83e3520 --- /dev/null +++ b/maze/task4/maps/level_step7/text/28.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFF +FFFFS +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/29.txt b/maze/task4/maps/level_step7/text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..66e767153df268a844e9a066dec88681f12035b2 --- /dev/null +++ b/maze/task4/maps/level_step7/text/29.txt @@ -0,0 +1,5 @@ +FFFFF +SFFFF +HFFHF +FHHFF +GFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/3.txt b/maze/task4/maps/level_step7/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a9e740bd78265bf06ae44f5e44d9c50f1f66bb --- /dev/null +++ b/maze/task4/maps/level_step7/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHFFF +FFFFF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/30.txt b/maze/task4/maps/level_step7/text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..28465da818375140e8586a47221543236152470b --- /dev/null +++ b/maze/task4/maps/level_step7/text/30.txt @@ -0,0 +1,5 @@ +FFFFF +FFHFF +FFFFH +HFFFG +FFHSH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/31.txt b/maze/task4/maps/level_step7/text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..3253f95e50766585f125d60cf6b8d787aba6fa3b --- /dev/null +++ b/maze/task4/maps/level_step7/text/31.txt @@ -0,0 +1,5 @@ +FFFHF +HHFHH +FFHFF +SFFFF +FHFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/32.txt b/maze/task4/maps/level_step7/text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0f2823f98ee1487f0db0e4047fb3806fb934291 --- /dev/null +++ b/maze/task4/maps/level_step7/text/32.txt @@ -0,0 +1,5 @@ +GFFHH +FFFFF +FFFFF +FFSHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/33.txt b/maze/task4/maps/level_step7/text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..247f62e941001677d8eb5fd1131012a7504ac84a --- /dev/null +++ b/maze/task4/maps/level_step7/text/33.txt @@ -0,0 +1,5 @@ +FFFHF +FHHFH +FFFFS +FFFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/34.txt b/maze/task4/maps/level_step7/text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..001cc66e4927d8fa78b6bd656f06804b47808042 --- /dev/null +++ b/maze/task4/maps/level_step7/text/34.txt @@ -0,0 +1,5 @@ +HFFFF +FFFFF +FFGHH +SFFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/35.txt b/maze/task4/maps/level_step7/text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..877c626def590d1bfa2b6e7d062f48b7df62a7cd --- /dev/null +++ b/maze/task4/maps/level_step7/text/35.txt @@ -0,0 +1,5 @@ +FFFGH +FFFFH +FHFFF +SHHFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/36.txt b/maze/task4/maps/level_step7/text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..689f1cd675aba027c5850d79e0547f32d4b8f705 --- /dev/null +++ b/maze/task4/maps/level_step7/text/36.txt @@ -0,0 +1,5 @@ +FFFFF +FFHGF +HHFFH +FFSFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/37.txt b/maze/task4/maps/level_step7/text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bb2c7524e92386b432c9dc8d358100675cf9725 --- /dev/null +++ b/maze/task4/maps/level_step7/text/37.txt @@ -0,0 +1,5 @@ +HFFFF +FHHSF +HFFHF +HFFFF +HFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/38.txt b/maze/task4/maps/level_step7/text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..60dc29135b8762e0a2a61ad8570315bc81036cfe --- /dev/null +++ b/maze/task4/maps/level_step7/text/38.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHG +FFFHF +FFFHF +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/39.txt b/maze/task4/maps/level_step7/text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b6016612c1d9afadd91e88e7c67119ed2e77918 --- /dev/null +++ b/maze/task4/maps/level_step7/text/39.txt @@ -0,0 +1,5 @@ +FFFFG +SFFFF +FFFHH +FFFFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/4.txt b/maze/task4/maps/level_step7/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3cf6eeb8bc7ed068008471ec53393fad67964e0 --- /dev/null +++ b/maze/task4/maps/level_step7/text/4.txt @@ -0,0 +1,5 @@ +FFFFS +FFFFF +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/40.txt b/maze/task4/maps/level_step7/text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f65e68209a9f0f12639529a15bd74b9fd662efbf --- /dev/null +++ b/maze/task4/maps/level_step7/text/40.txt @@ -0,0 +1,5 @@ +FFFFF +HHGFF +FFFFF +SFFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/41.txt b/maze/task4/maps/level_step7/text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..edcee62ad70358504e7455ed5f3c8e698cda6ee7 --- /dev/null +++ b/maze/task4/maps/level_step7/text/41.txt @@ -0,0 +1,5 @@ +HFHFF +FFFFF +FSFFF +FHFGH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/42.txt b/maze/task4/maps/level_step7/text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..076fd96b6bc0cc919c69ed2635c9395fe389c478 --- /dev/null +++ b/maze/task4/maps/level_step7/text/42.txt @@ -0,0 +1,5 @@ +FHHHH +FFFFF +FFSFF +FFFHH +HHGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/43.txt b/maze/task4/maps/level_step7/text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..997ab6291f57d3763645bcf5abb3842971968180 --- /dev/null +++ b/maze/task4/maps/level_step7/text/43.txt @@ -0,0 +1,5 @@ +FFSFG +FFHFF +FFFFF +FFFFF +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/44.txt b/maze/task4/maps/level_step7/text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..de08be859b34421d1c68b6f16c9ea57b102df75d --- /dev/null +++ b/maze/task4/maps/level_step7/text/44.txt @@ -0,0 +1,5 @@ +FFFHF +GFFFF +FHFFH +FSFHF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/45.txt b/maze/task4/maps/level_step7/text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7118d7c6287c8ba4092bbb643c03d6d6d1c6832 --- /dev/null +++ b/maze/task4/maps/level_step7/text/45.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFS +FHFFF +FHFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/46.txt b/maze/task4/maps/level_step7/text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0499cddf07cc5367bf3bba71e8e470eb1b24bc6 --- /dev/null +++ b/maze/task4/maps/level_step7/text/46.txt @@ -0,0 +1,5 @@ +FFHFF +SHFFF +FFFFF +HFHFF +FGHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/47.txt b/maze/task4/maps/level_step7/text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..47ef78805642bb75381a9cc512273e9fb21257d4 --- /dev/null +++ b/maze/task4/maps/level_step7/text/47.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +FGHFF +HHFSF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/48.txt b/maze/task4/maps/level_step7/text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..f445b78d0e7d8e30ddaf2ca1bd2412fef013992a --- /dev/null +++ b/maze/task4/maps/level_step7/text/48.txt @@ -0,0 +1,5 @@ +FHHFS +HFHFH +FFFFF +FFGFF +FHHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/49.txt b/maze/task4/maps/level_step7/text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..181f2bede753801d9f951a4f36aab10c65701f4c --- /dev/null +++ b/maze/task4/maps/level_step7/text/49.txt @@ -0,0 +1,5 @@ +HFFFF +HSGHF +FFFFF +HHFFH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/5.txt b/maze/task4/maps/level_step7/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6a477a19a0ceaa1810c7ba9b9493628e24f6350 --- /dev/null +++ b/maze/task4/maps/level_step7/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FFFHF +FSFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/50.txt b/maze/task4/maps/level_step7/text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..8398bef5ade09353da308c2c527f537a1cd14132 --- /dev/null +++ b/maze/task4/maps/level_step7/text/50.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFF +FHFFF +FFHFH +FHFSG \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/51.txt b/maze/task4/maps/level_step7/text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f6f08189f7ae077247fccf2fc482e6ab9e911c8 --- /dev/null +++ b/maze/task4/maps/level_step7/text/51.txt @@ -0,0 +1,5 @@ +GSHFF +FFFFF +FHFHF +FHFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/52.txt b/maze/task4/maps/level_step7/text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..6997c8c157d771975af2bc37f092ca8e7063046d --- /dev/null +++ b/maze/task4/maps/level_step7/text/52.txt @@ -0,0 +1,5 @@ +FFFFF +GSFHF +FHFFF +FFFHH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/53.txt b/maze/task4/maps/level_step7/text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef7cc10ce6aa5f64e8542574a25318d086ba9de3 --- /dev/null +++ b/maze/task4/maps/level_step7/text/53.txt @@ -0,0 +1,5 @@ +HGHFF +HSHFF +HFHHF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/54.txt b/maze/task4/maps/level_step7/text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..5512aa69d8efe00df5a5dbfae819bacfc64d8032 --- /dev/null +++ b/maze/task4/maps/level_step7/text/54.txt @@ -0,0 +1,5 @@ +FFFFF +GFFFF +FFFFF +FFFHH +FSFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/55.txt b/maze/task4/maps/level_step7/text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..28b1c6316851d0b49af7e7de7273c22c42706833 --- /dev/null +++ b/maze/task4/maps/level_step7/text/55.txt @@ -0,0 +1,5 @@ +FFGFF +FFFFF +HFHSF +FHFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/56.txt b/maze/task4/maps/level_step7/text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..31d4a93bdf3c499c5989c1e058095d603b57b897 --- /dev/null +++ b/maze/task4/maps/level_step7/text/56.txt @@ -0,0 +1,5 @@ +FFHFS +FGFFF +FHFFF +FFFFF +HFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/57.txt b/maze/task4/maps/level_step7/text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..b17b4bc4c9c0a03ee5b69b237680700368ba17f6 --- /dev/null +++ b/maze/task4/maps/level_step7/text/57.txt @@ -0,0 +1,5 @@ +FFHFF +FFHFS +FGHFF +HFFFF +FHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/58.txt b/maze/task4/maps/level_step7/text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..969d55e8ca6d9e9a3c7b7776d1597f8892ab2263 --- /dev/null +++ b/maze/task4/maps/level_step7/text/58.txt @@ -0,0 +1,5 @@ +HGFFF +FSHHF +FFFFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/59.txt b/maze/task4/maps/level_step7/text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..067052f0919060a8dc4a770b7935c12966285876 --- /dev/null +++ b/maze/task4/maps/level_step7/text/59.txt @@ -0,0 +1,5 @@ +FFFFF +FHFSF +FGFFF +FFFFH +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/6.txt b/maze/task4/maps/level_step7/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9277db9448443fe0cc50e301886dbfa02862ff92 --- /dev/null +++ b/maze/task4/maps/level_step7/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FFFFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/60.txt b/maze/task4/maps/level_step7/text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b744a2854da6212746ba40e34d65eb46096f6395 --- /dev/null +++ b/maze/task4/maps/level_step7/text/60.txt @@ -0,0 +1,5 @@ +HFSFF +HFFFG +FFHFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/61.txt b/maze/task4/maps/level_step7/text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..975da7eadc25381ba4224a15ea9c361200efe2a0 --- /dev/null +++ b/maze/task4/maps/level_step7/text/61.txt @@ -0,0 +1,5 @@ +FSFHF +FFGFF +HFFFF +FHFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/62.txt b/maze/task4/maps/level_step7/text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0a79bb67b3b9f0b0e9b7f019fb0e0584e7531d6 --- /dev/null +++ b/maze/task4/maps/level_step7/text/62.txt @@ -0,0 +1,5 @@ +GFHFF +FFHFH +FFHFF +FHHFH +FFFHS \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/63.txt b/maze/task4/maps/level_step7/text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..682a1d4ad3f79c31f7bc9a75117e82c927ab101f --- /dev/null +++ b/maze/task4/maps/level_step7/text/63.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FFFHF +FFHFF +FGHSF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/64.txt b/maze/task4/maps/level_step7/text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1146d08e1f8a9cb735c5894c17e1b6acc4be7abc --- /dev/null +++ b/maze/task4/maps/level_step7/text/64.txt @@ -0,0 +1,5 @@ +FHHFF +FFSFF +FFFFF +FFFGF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/65.txt b/maze/task4/maps/level_step7/text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2bca436126922b631a690efc68e221bf7c6ff83 --- /dev/null +++ b/maze/task4/maps/level_step7/text/65.txt @@ -0,0 +1,5 @@ +FHFFF +HFFFH +FFFFF +FSFFF +FFFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/66.txt b/maze/task4/maps/level_step7/text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..9193e96e774332c715c2877881ec4acfcaa07520 --- /dev/null +++ b/maze/task4/maps/level_step7/text/66.txt @@ -0,0 +1,5 @@ +HFFFH +FHSGH +HFFFF +FFFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/67.txt b/maze/task4/maps/level_step7/text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..110882c702f2ff17bcae7976428e6e97a39fb7f1 --- /dev/null +++ b/maze/task4/maps/level_step7/text/67.txt @@ -0,0 +1,5 @@ +FFFHH +FFFFF +FHHFF +FFFFH +SGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/68.txt b/maze/task4/maps/level_step7/text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..79907c8a4797d52fa568b6ed5df77f25d7c6977d --- /dev/null +++ b/maze/task4/maps/level_step7/text/68.txt @@ -0,0 +1,5 @@ +FFFFF +SFFFF +HFFFF +FGFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/69.txt b/maze/task4/maps/level_step7/text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..c90da4f7a142e31e3631acce83522c4e7f38e31d --- /dev/null +++ b/maze/task4/maps/level_step7/text/69.txt @@ -0,0 +1,5 @@ +FFHFF +FHFSH +FFFFH +FHFGH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/7.txt b/maze/task4/maps/level_step7/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1cd6ef21cd427b57e3ed724a1df59f577d2dc96 --- /dev/null +++ b/maze/task4/maps/level_step7/text/7.txt @@ -0,0 +1,5 @@ +FFFGF +FFSFF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/70.txt b/maze/task4/maps/level_step7/text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..40f99668819656884f69be6c6f9193835102d36b --- /dev/null +++ b/maze/task4/maps/level_step7/text/70.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +HFSHF +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/71.txt b/maze/task4/maps/level_step7/text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1b8ade70787bf64f6238113507ee327351fbc07 --- /dev/null +++ b/maze/task4/maps/level_step7/text/71.txt @@ -0,0 +1,5 @@ +FFSFG +FFHHF +HHHFF +FHFFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/72.txt b/maze/task4/maps/level_step7/text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bb65834358ae51e2103fec9aadde58174dee503 --- /dev/null +++ b/maze/task4/maps/level_step7/text/72.txt @@ -0,0 +1,5 @@ +FFFSF +HHFHH +FHHFF +HFFFF +FFHGF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/73.txt b/maze/task4/maps/level_step7/text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce85cc9d0de11cbc7f1c8f4b139b694b5553e52b --- /dev/null +++ b/maze/task4/maps/level_step7/text/73.txt @@ -0,0 +1,5 @@ +HHFFF +FFHHF +FFSFF +FGFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/74.txt b/maze/task4/maps/level_step7/text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..d82d6750c3f506e79602207eb453fa7a7e90289d --- /dev/null +++ b/maze/task4/maps/level_step7/text/74.txt @@ -0,0 +1,5 @@ +HFFFH +FFHFF +FFFFF +GFFFS +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/75.txt b/maze/task4/maps/level_step7/text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..02df58bd1a3299b661a19b7a0684a7c5db93bc70 --- /dev/null +++ b/maze/task4/maps/level_step7/text/75.txt @@ -0,0 +1,5 @@ +FFFFF +FHGFF +HFSFF +FFFFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/76.txt b/maze/task4/maps/level_step7/text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6aea245ce8af37eedf488c5fd172358d7157a94 --- /dev/null +++ b/maze/task4/maps/level_step7/text/76.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +SFFFH +GHFFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/77.txt b/maze/task4/maps/level_step7/text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc42e4e9bb88223495894d2bb90c6ffca8cdeab1 --- /dev/null +++ b/maze/task4/maps/level_step7/text/77.txt @@ -0,0 +1,5 @@ +FFFFF +FFFGF +FFFHF +FFHFF +FSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/78.txt b/maze/task4/maps/level_step7/text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..b48a7ce896dcce11c5a49f7f6d3eb37194595757 --- /dev/null +++ b/maze/task4/maps/level_step7/text/78.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFS +FHHFF +FHFFF +HFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/79.txt b/maze/task4/maps/level_step7/text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..45cd7cb1e540ae8621d45f4013c4b98d2e6208df --- /dev/null +++ b/maze/task4/maps/level_step7/text/79.txt @@ -0,0 +1,5 @@ +FFFFG +FFSHF +FFFHH +FFFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/8.txt b/maze/task4/maps/level_step7/text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..41718d4d4c824cf49981e0ff7bc2dfa0ec32111f --- /dev/null +++ b/maze/task4/maps/level_step7/text/8.txt @@ -0,0 +1,5 @@ +FFFGF +HFFFF +FFFHF +HHFHF +FSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/80.txt b/maze/task4/maps/level_step7/text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c533d795bc59f880578f7a2593da1d4dc400fd71 --- /dev/null +++ b/maze/task4/maps/level_step7/text/80.txt @@ -0,0 +1,5 @@ +HFFFF +FFHFF +FFFFH +HFFFF +GSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/81.txt b/maze/task4/maps/level_step7/text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ee0146ee43e2a6dae028257c93eafefc2e48462 --- /dev/null +++ b/maze/task4/maps/level_step7/text/81.txt @@ -0,0 +1,5 @@ +FFHFF +FFGFF +FSFFF +FHFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/82.txt b/maze/task4/maps/level_step7/text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..890c75b0ae74d5408543d2af224ccd499bc9dc21 --- /dev/null +++ b/maze/task4/maps/level_step7/text/82.txt @@ -0,0 +1,5 @@ +GHFFF +FFFFF +FFFFF +FFFHF +SHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/83.txt b/maze/task4/maps/level_step7/text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..7aa27e264e1eb90f31ac51328002dc9b5d2b910c --- /dev/null +++ b/maze/task4/maps/level_step7/text/83.txt @@ -0,0 +1,5 @@ +FHHFF +HFHHF +FFFFF +GFFFF +FFFSH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/84.txt b/maze/task4/maps/level_step7/text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..f781bda19040e929c129e09cdc5fe335054da80a --- /dev/null +++ b/maze/task4/maps/level_step7/text/84.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FGHHF +FFFHF +FSFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/85.txt b/maze/task4/maps/level_step7/text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6b9d164ce8ac35f19fc964846599594ec447317 --- /dev/null +++ b/maze/task4/maps/level_step7/text/85.txt @@ -0,0 +1,5 @@ +HHFHF +FHFHF +FFFHS +FFFHG +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/86.txt b/maze/task4/maps/level_step7/text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..dda180ba0de59bd7c18c06567b55392a336eb91d --- /dev/null +++ b/maze/task4/maps/level_step7/text/86.txt @@ -0,0 +1,5 @@ +FFHHF +FFFFF +SFGHF +HHFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/87.txt b/maze/task4/maps/level_step7/text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc49bd0756d64d6b18d33a4c4764c79c3fd0f12e --- /dev/null +++ b/maze/task4/maps/level_step7/text/87.txt @@ -0,0 +1,5 @@ +HFFFF +FFHHF +HGSFF +HFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/88.txt b/maze/task4/maps/level_step7/text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..4133d510da32abaaea60667d2df629a44bf3fd59 --- /dev/null +++ b/maze/task4/maps/level_step7/text/88.txt @@ -0,0 +1,5 @@ +FFGHF +HHFFF +HHFSF +HHFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/89.txt b/maze/task4/maps/level_step7/text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..87dca12d5361052e7ba7abc56b9ab1d0f764bfee --- /dev/null +++ b/maze/task4/maps/level_step7/text/89.txt @@ -0,0 +1,5 @@ +FHHFF +SFFGF +HFFFF +FFFFF +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/9.txt b/maze/task4/maps/level_step7/text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..366abb248f5a5489005bc8b59ff0ac2f776f6cea --- /dev/null +++ b/maze/task4/maps/level_step7/text/9.txt @@ -0,0 +1,5 @@ +HHFFH +HHFGH +HSHFH +FHFFF +HHHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/90.txt b/maze/task4/maps/level_step7/text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..e120dc249ca31544702d15cbb90750939a75c21b --- /dev/null +++ b/maze/task4/maps/level_step7/text/90.txt @@ -0,0 +1,5 @@ +FFFHF +FFHFS +FFFFH +GHFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/91.txt b/maze/task4/maps/level_step7/text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..0de34eee463ea16f0c1f892fddd836ef4effd2c8 --- /dev/null +++ b/maze/task4/maps/level_step7/text/91.txt @@ -0,0 +1,5 @@ +FHFHF +FSFFF +GFFFF +FFHFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/92.txt b/maze/task4/maps/level_step7/text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..c08ee6abff42f7c5ced6a3b2dfb66250281cdff6 --- /dev/null +++ b/maze/task4/maps/level_step7/text/92.txt @@ -0,0 +1,5 @@ +FFSFH +FHFFF +FGFFF +FFFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/93.txt b/maze/task4/maps/level_step7/text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..142e91ffbf60b5fcad1c881b67adfe6b49aed3e8 --- /dev/null +++ b/maze/task4/maps/level_step7/text/93.txt @@ -0,0 +1,5 @@ +HFFFF +FSHHF +FGHFF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/94.txt b/maze/task4/maps/level_step7/text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..390be0a3c7a40608f7705dab77e7d111f95cd57d --- /dev/null +++ b/maze/task4/maps/level_step7/text/94.txt @@ -0,0 +1,5 @@ +HFFFF +FHFFF +GFFFF +FFFFH +FFSFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/95.txt b/maze/task4/maps/level_step7/text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b8d73fdfd2a4ca5afc95744dc144a556bde332c --- /dev/null +++ b/maze/task4/maps/level_step7/text/95.txt @@ -0,0 +1,5 @@ +GHFFH +FFFFF +FFFSH +FHFFF +FFHFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/96.txt b/maze/task4/maps/level_step7/text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..adbaa9dee89cde470f30916216b84d52e0fdb259 --- /dev/null +++ b/maze/task4/maps/level_step7/text/96.txt @@ -0,0 +1,5 @@ +HFFFF +HHHFF +FGFFF +FHHFF +FHFSH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/97.txt b/maze/task4/maps/level_step7/text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dff9259ae73b447065883939ff5959a3f00bc68 --- /dev/null +++ b/maze/task4/maps/level_step7/text/97.txt @@ -0,0 +1,5 @@ +GSFFF +HFFFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/98.txt b/maze/task4/maps/level_step7/text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..c808504263ee8139550be585df30cdc5f2dec983 --- /dev/null +++ b/maze/task4/maps/level_step7/text/98.txt @@ -0,0 +1,5 @@ +HSHGF +FFHFF +FFFFF +HFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step7/text/99.txt b/maze/task4/maps/level_step7/text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ca7d82762ce58b21151a16f0bcc659436c4ccf8 --- /dev/null +++ b/maze/task4/maps/level_step7/text/99.txt @@ -0,0 +1,5 @@ +HFFFF +GHFFS +FFHFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/0.txt b/maze/task4/maps/level_step9/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/0.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/1.txt b/maze/task4/maps/level_step9/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/1.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/10.txt b/maze/task4/maps/level_step9/answer/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/10.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/11.txt b/maze/task4/maps/level_step9/answer/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/11.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/12.txt b/maze/task4/maps/level_step9/answer/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/12.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/13.txt b/maze/task4/maps/level_step9/answer/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/13.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/14.txt b/maze/task4/maps/level_step9/answer/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/14.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/15.txt b/maze/task4/maps/level_step9/answer/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/15.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/16.txt b/maze/task4/maps/level_step9/answer/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/16.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/17.txt b/maze/task4/maps/level_step9/answer/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/17.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/18.txt b/maze/task4/maps/level_step9/answer/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/18.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/19.txt b/maze/task4/maps/level_step9/answer/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/19.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/2.txt b/maze/task4/maps/level_step9/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/2.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/20.txt b/maze/task4/maps/level_step9/answer/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/20.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/21.txt b/maze/task4/maps/level_step9/answer/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/21.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/22.txt b/maze/task4/maps/level_step9/answer/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/22.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/23.txt b/maze/task4/maps/level_step9/answer/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/23.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/24.txt b/maze/task4/maps/level_step9/answer/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/24.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/25.txt b/maze/task4/maps/level_step9/answer/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/25.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/26.txt b/maze/task4/maps/level_step9/answer/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/26.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/27.txt b/maze/task4/maps/level_step9/answer/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/27.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/28.txt b/maze/task4/maps/level_step9/answer/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/28.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/29.txt b/maze/task4/maps/level_step9/answer/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/29.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/3.txt b/maze/task4/maps/level_step9/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/3.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/30.txt b/maze/task4/maps/level_step9/answer/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/30.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/31.txt b/maze/task4/maps/level_step9/answer/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/31.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/32.txt b/maze/task4/maps/level_step9/answer/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/32.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/33.txt b/maze/task4/maps/level_step9/answer/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/33.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/34.txt b/maze/task4/maps/level_step9/answer/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/34.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/35.txt b/maze/task4/maps/level_step9/answer/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/35.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/36.txt b/maze/task4/maps/level_step9/answer/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/36.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/37.txt b/maze/task4/maps/level_step9/answer/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/37.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/38.txt b/maze/task4/maps/level_step9/answer/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/38.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/39.txt b/maze/task4/maps/level_step9/answer/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/39.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/4.txt b/maze/task4/maps/level_step9/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/4.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/40.txt b/maze/task4/maps/level_step9/answer/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/40.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/41.txt b/maze/task4/maps/level_step9/answer/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/41.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/42.txt b/maze/task4/maps/level_step9/answer/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/42.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/43.txt b/maze/task4/maps/level_step9/answer/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/43.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/44.txt b/maze/task4/maps/level_step9/answer/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/44.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/45.txt b/maze/task4/maps/level_step9/answer/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/45.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/46.txt b/maze/task4/maps/level_step9/answer/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/46.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/47.txt b/maze/task4/maps/level_step9/answer/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/47.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/48.txt b/maze/task4/maps/level_step9/answer/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/48.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/49.txt b/maze/task4/maps/level_step9/answer/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/49.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/5.txt b/maze/task4/maps/level_step9/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/5.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/50.txt b/maze/task4/maps/level_step9/answer/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/50.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/51.txt b/maze/task4/maps/level_step9/answer/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/51.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/52.txt b/maze/task4/maps/level_step9/answer/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/52.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/53.txt b/maze/task4/maps/level_step9/answer/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/53.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/54.txt b/maze/task4/maps/level_step9/answer/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/54.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/55.txt b/maze/task4/maps/level_step9/answer/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/55.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/56.txt b/maze/task4/maps/level_step9/answer/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/56.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/57.txt b/maze/task4/maps/level_step9/answer/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/57.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/58.txt b/maze/task4/maps/level_step9/answer/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/58.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/59.txt b/maze/task4/maps/level_step9/answer/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/59.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/6.txt b/maze/task4/maps/level_step9/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/6.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/60.txt b/maze/task4/maps/level_step9/answer/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/60.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/61.txt b/maze/task4/maps/level_step9/answer/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/61.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/62.txt b/maze/task4/maps/level_step9/answer/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/62.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/63.txt b/maze/task4/maps/level_step9/answer/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/63.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/64.txt b/maze/task4/maps/level_step9/answer/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/64.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/65.txt b/maze/task4/maps/level_step9/answer/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/65.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/66.txt b/maze/task4/maps/level_step9/answer/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/66.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/67.txt b/maze/task4/maps/level_step9/answer/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/67.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/68.txt b/maze/task4/maps/level_step9/answer/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/68.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/69.txt b/maze/task4/maps/level_step9/answer/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/69.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/7.txt b/maze/task4/maps/level_step9/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/7.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/70.txt b/maze/task4/maps/level_step9/answer/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/70.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/71.txt b/maze/task4/maps/level_step9/answer/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/71.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/72.txt b/maze/task4/maps/level_step9/answer/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/72.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/73.txt b/maze/task4/maps/level_step9/answer/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/73.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/74.txt b/maze/task4/maps/level_step9/answer/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/74.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/75.txt b/maze/task4/maps/level_step9/answer/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/75.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/76.txt b/maze/task4/maps/level_step9/answer/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/76.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/77.txt b/maze/task4/maps/level_step9/answer/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/77.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/78.txt b/maze/task4/maps/level_step9/answer/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/78.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/79.txt b/maze/task4/maps/level_step9/answer/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/79.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/8.txt b/maze/task4/maps/level_step9/answer/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/8.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/80.txt b/maze/task4/maps/level_step9/answer/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/80.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/81.txt b/maze/task4/maps/level_step9/answer/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/81.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/82.txt b/maze/task4/maps/level_step9/answer/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/82.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/83.txt b/maze/task4/maps/level_step9/answer/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/83.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/84.txt b/maze/task4/maps/level_step9/answer/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/84.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/85.txt b/maze/task4/maps/level_step9/answer/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/85.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/86.txt b/maze/task4/maps/level_step9/answer/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/86.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/87.txt b/maze/task4/maps/level_step9/answer/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/87.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/88.txt b/maze/task4/maps/level_step9/answer/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/88.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/89.txt b/maze/task4/maps/level_step9/answer/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/89.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/9.txt b/maze/task4/maps/level_step9/answer/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/9.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/90.txt b/maze/task4/maps/level_step9/answer/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/90.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/91.txt b/maze/task4/maps/level_step9/answer/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/91.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/92.txt b/maze/task4/maps/level_step9/answer/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/92.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/93.txt b/maze/task4/maps/level_step9/answer/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/93.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/94.txt b/maze/task4/maps/level_step9/answer/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/94.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/95.txt b/maze/task4/maps/level_step9/answer/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/95.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/96.txt b/maze/task4/maps/level_step9/answer/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/96.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/97.txt b/maze/task4/maps/level_step9/answer/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/97.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/98.txt b/maze/task4/maps/level_step9/answer/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..24de910c13bb1e60fc5ec37a1058d356b1f2fa4d --- /dev/null +++ b/maze/task4/maps/level_step9/answer/98.txt @@ -0,0 +1 @@ +Y \ No newline at end of file diff --git a/maze/task4/maps/level_step9/answer/99.txt b/maze/task4/maps/level_step9/answer/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f94675b7cc5772325e379fc48538156958bab62 --- /dev/null +++ b/maze/task4/maps/level_step9/answer/99.txt @@ -0,0 +1 @@ +N \ No newline at end of file diff --git a/maze/task4/maps/level_step9/img/0.png b/maze/task4/maps/level_step9/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..784ddf397d5871620b5e56b99321684a249f536b --- /dev/null +++ b/maze/task4/maps/level_step9/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7ac9dc21f10e4ba5bd082bf9e89ca6eaca1cb227a39ba26a3c1f365894e3c2 +size 9520 diff --git a/maze/task4/maps/level_step9/img/1.png b/maze/task4/maps/level_step9/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f1ed29bb8579c25af86d59cdd7be43be8174bea5 --- /dev/null +++ b/maze/task4/maps/level_step9/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f5cf4a7527ff400d36d0ec43167bb53bd217435490e1461d5ef17bff52d592 +size 8609 diff --git a/maze/task4/maps/level_step9/img/10.png b/maze/task4/maps/level_step9/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..36afe96af778ab9f51ea10ad579e7cfc72bf656c --- /dev/null +++ b/maze/task4/maps/level_step9/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d8a4ef9af3d832ffef7907e5bd8f7ed70a602d733273507c5ff1d184503df1 +size 9540 diff --git a/maze/task4/maps/level_step9/img/11.png b/maze/task4/maps/level_step9/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c2239d093ce5e7dd6e805864b254621d9eb650f3 --- /dev/null +++ b/maze/task4/maps/level_step9/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4860243522efca6af708508f740435b9c157f2a7c91a5fd8a277ae925c01b72c +size 10368 diff --git a/maze/task4/maps/level_step9/img/12.png b/maze/task4/maps/level_step9/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..961a186623ee0011ec0d5087f124ba6956dd303c --- /dev/null +++ b/maze/task4/maps/level_step9/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2c3ba8f3794820f29c4621ad30015477f75a684effd0f43c13791ef2b6e84e +size 8732 diff --git a/maze/task4/maps/level_step9/img/13.png b/maze/task4/maps/level_step9/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2da83fd0effb889b9959dbc7cf92a1cca71d5ae0 --- /dev/null +++ b/maze/task4/maps/level_step9/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f0c81ecbbac426273cb9f8fbeb4556c477c83171819c17ec07b0a46954f17f +size 10312 diff --git a/maze/task4/maps/level_step9/img/14.png b/maze/task4/maps/level_step9/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a959b16b2d47a4ee7034609446712c1c93efda --- /dev/null +++ b/maze/task4/maps/level_step9/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4278d644fee0fcc945ffb661826fba43399479f20849324f828d860ce42896b7 +size 9498 diff --git a/maze/task4/maps/level_step9/img/15.png b/maze/task4/maps/level_step9/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb4459dadcd568c2617420f493cb6c647050001 --- /dev/null +++ b/maze/task4/maps/level_step9/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0f34aa1726792f861b04dc97b31cc2a646d248e5d44b4b360106c0bebf6fa0 +size 8569 diff --git a/maze/task4/maps/level_step9/img/16.png b/maze/task4/maps/level_step9/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7973c8fd0e44309ec3e86a3225421c70098fe0 --- /dev/null +++ b/maze/task4/maps/level_step9/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5583b83655c1009808d434d23387310c409754a8d3de67d91a947d9bcaa3c671 +size 10319 diff --git a/maze/task4/maps/level_step9/img/17.png b/maze/task4/maps/level_step9/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..89b88669e049ee2b40eb2964f6e3be9983d5841d --- /dev/null +++ b/maze/task4/maps/level_step9/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433a8057d4c23e0dd2814e9f57b18737e38ac85dad3d9122b606ff160b61592f +size 9481 diff --git a/maze/task4/maps/level_step9/img/18.png b/maze/task4/maps/level_step9/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0e4578441dc93dbe35e39e7258d5bb9f397e26b5 --- /dev/null +++ b/maze/task4/maps/level_step9/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b871b7baa3624a6d3c3f6723fcde0fbabe98e44ec14b697930c24110530d7e +size 9504 diff --git a/maze/task4/maps/level_step9/img/19.png b/maze/task4/maps/level_step9/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..1342eed8c66f157f6a0ee50a553bce9900d7b153 --- /dev/null +++ b/maze/task4/maps/level_step9/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f12b2c82dce79ca3024ad9ceeab1d87e148064972cf0f0d35cedef9f199494 +size 9487 diff --git a/maze/task4/maps/level_step9/img/2.png b/maze/task4/maps/level_step9/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c6bbf941e0e4ab7edf3e49e94a09015c1fff36e2 --- /dev/null +++ b/maze/task4/maps/level_step9/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fef414e02d0820755596a1c1dda91c1fa8569d7d11dfd954c165f2466221b30 +size 9617 diff --git a/maze/task4/maps/level_step9/img/20.png b/maze/task4/maps/level_step9/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..008eb9d774f873f49d9f2aba16a957268416f06c --- /dev/null +++ b/maze/task4/maps/level_step9/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb6e15f6f74538fb484c9175e9f2ed53f31bb2657acdcfcd043ca68a8a31eb6 +size 10260 diff --git a/maze/task4/maps/level_step9/img/21.png b/maze/task4/maps/level_step9/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..3159880dfddac7dde77c48c798370b3351485091 --- /dev/null +++ b/maze/task4/maps/level_step9/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa1e9d8f938e37e6023c89eda68bf03b514f4c762b9012c78be14445f3c4b52 +size 8496 diff --git a/maze/task4/maps/level_step9/img/22.png b/maze/task4/maps/level_step9/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..70aab564a94a89c385e09dd752e9667d9e6e32b3 --- /dev/null +++ b/maze/task4/maps/level_step9/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bd720ca78908b05b0c71ebdeed304fc93a914123eca6c2a6f7847949ebd8a1 +size 10368 diff --git a/maze/task4/maps/level_step9/img/23.png b/maze/task4/maps/level_step9/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..20f0b17f43b51948ae22724e5cf5864cf2721003 --- /dev/null +++ b/maze/task4/maps/level_step9/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3abb23bc444af284b5c5746f91aadd54a01618cd05026337da9ca9a2d57f323 +size 9629 diff --git a/maze/task4/maps/level_step9/img/24.png b/maze/task4/maps/level_step9/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..9a6d1f5f4396d39be6b747b2245ca74e57dad2d8 --- /dev/null +++ b/maze/task4/maps/level_step9/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce73082473f6a8019fcddc4e20d0befd63af5607686e7d96fc44f9e76224fcf9 +size 10360 diff --git a/maze/task4/maps/level_step9/img/25.png b/maze/task4/maps/level_step9/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..dcaca11c66cd3002cc42b1541e908fc7c7d55487 --- /dev/null +++ b/maze/task4/maps/level_step9/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf361f95f35ac9a0112f7063281e8af77dcc95553bae500b712a502b170f5b4 +size 9481 diff --git a/maze/task4/maps/level_step9/img/26.png b/maze/task4/maps/level_step9/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..88d38b45575e484b87f3659c89f184a8b4c31777 --- /dev/null +++ b/maze/task4/maps/level_step9/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e08cecbc5dcded62bef20c43555a41d7e33c8e94fdb496ad3c1daa08278d4545 +size 10522 diff --git a/maze/task4/maps/level_step9/img/27.png b/maze/task4/maps/level_step9/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..640546915f111642da74b5b4107151a9b7ad77c4 --- /dev/null +++ b/maze/task4/maps/level_step9/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a8bba4c09de8abf2d1ab699114bf0ced1edaec9bbf9ae4ab2f32a5edea9b41 +size 11256 diff --git a/maze/task4/maps/level_step9/img/28.png b/maze/task4/maps/level_step9/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..68f7c248806d759496fc237524844c796bc39ad6 --- /dev/null +++ b/maze/task4/maps/level_step9/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f442f7697d37dab78d1d86748a3c1ed7bce4692c9e8b19aba51a6a8a49b9b90 +size 8546 diff --git a/maze/task4/maps/level_step9/img/29.png b/maze/task4/maps/level_step9/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..f2985e99e6622133cbda24b5bc905b13ff69cde1 --- /dev/null +++ b/maze/task4/maps/level_step9/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03e815c3c859dd63c4ecf483a57e4162acda5572d796484bc3e3bd75d42191c +size 9572 diff --git a/maze/task4/maps/level_step9/img/3.png b/maze/task4/maps/level_step9/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c25c1b020fcde96454b879a1f48a811814a486bb --- /dev/null +++ b/maze/task4/maps/level_step9/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624e0aff1e2a1672b802f545d23d3a4dd5927bb2b5d4ef7cd2440ff7145ea013 +size 11183 diff --git a/maze/task4/maps/level_step9/img/30.png b/maze/task4/maps/level_step9/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..bf4587eaedd30279ed2ed8afcf157128fd1de506 --- /dev/null +++ b/maze/task4/maps/level_step9/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20801575c082d2f817b6c012fa847a02e662853f42d7042477a3e8aa62deeb3d +size 10212 diff --git a/maze/task4/maps/level_step9/img/31.png b/maze/task4/maps/level_step9/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..ea42da027bc500cb7196762e8ccf618dfc9d7339 --- /dev/null +++ b/maze/task4/maps/level_step9/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9873e3f521564654b0f4bd9eab9816ea63f3c0bca6e348528b2ffe6866b2910c +size 10338 diff --git a/maze/task4/maps/level_step9/img/32.png b/maze/task4/maps/level_step9/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..8aa3a9101f18f5cef81a2a0ac8ea133631da8272 --- /dev/null +++ b/maze/task4/maps/level_step9/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6046bda5a18babfb779cd67eafbadc41ef75d339c1e22df72fee2aa6c93c3943 +size 8504 diff --git a/maze/task4/maps/level_step9/img/33.png b/maze/task4/maps/level_step9/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..bd050376e1da18fcd6804ec7f793a911156f71e5 --- /dev/null +++ b/maze/task4/maps/level_step9/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd6ef8e4bf03f1e919608b410c1dcbff5466194c99c50cb366333ed621515d8 +size 9431 diff --git a/maze/task4/maps/level_step9/img/34.png b/maze/task4/maps/level_step9/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..39cec4cb90c0932557faa2c4344326e7e5a2944e --- /dev/null +++ b/maze/task4/maps/level_step9/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c286ae002f55f2a5849789e7f93c390e8078e5842563dad219d89f0df40e19e +size 9342 diff --git a/maze/task4/maps/level_step9/img/35.png b/maze/task4/maps/level_step9/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..0dcccbdde8c06d23b2a3fd409778c087119d7b1a --- /dev/null +++ b/maze/task4/maps/level_step9/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c5cdbace6e9b727622cf498cd44c572f8538faf2fecb209501e3f1743ee079 +size 9374 diff --git a/maze/task4/maps/level_step9/img/36.png b/maze/task4/maps/level_step9/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..b9852152d7696761ee038bbc6195fe898f567da6 --- /dev/null +++ b/maze/task4/maps/level_step9/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369baca6210fe2e760c2799e065731a650553eb711755715981d52d264679359 +size 9546 diff --git a/maze/task4/maps/level_step9/img/37.png b/maze/task4/maps/level_step9/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..27f9ce99490c05a04894f62fda9c8566bff0f3e0 --- /dev/null +++ b/maze/task4/maps/level_step9/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92f6006c6fcb34ca5bab418ddb7f976cba1c9aded278d5312b49e0b981ae387 +size 11159 diff --git a/maze/task4/maps/level_step9/img/38.png b/maze/task4/maps/level_step9/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9a73f72074ae48f5589417c00b18f273052946 --- /dev/null +++ b/maze/task4/maps/level_step9/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9987cc6de5975fc76063e350faeeed07486c46bd4604be48931e5c2292d96aa5 +size 10355 diff --git a/maze/task4/maps/level_step9/img/39.png b/maze/task4/maps/level_step9/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..46cfb1f679d417e62c266708fb126a02cda0bf83 --- /dev/null +++ b/maze/task4/maps/level_step9/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7928e1bfe7fbd5034618bf5cc151ad3e5e01209de1122397a1aa9d40c2abb0ed +size 8570 diff --git a/maze/task4/maps/level_step9/img/4.png b/maze/task4/maps/level_step9/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcf17753a14d717d70601f1726efa48591720d2 --- /dev/null +++ b/maze/task4/maps/level_step9/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1527826071149f7d3fe78db8c909ec14d40d7ac2ff90cad4f018091251dbf8c2 +size 7791 diff --git a/maze/task4/maps/level_step9/img/40.png b/maze/task4/maps/level_step9/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..59d8dc54d430157ea699b48de5b8739c5a29f340 --- /dev/null +++ b/maze/task4/maps/level_step9/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13e13c1f4de2479770ce1303e97e33d6e8579b4ec67fb7fb8b6448b75ae0f07 +size 8512 diff --git a/maze/task4/maps/level_step9/img/41.png b/maze/task4/maps/level_step9/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..a336550fb6b5ee724510355eddbf38e949e814f9 --- /dev/null +++ b/maze/task4/maps/level_step9/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0a2aa504f7ec3efbdc87c449cc23a3a36ae9d9c1553b35432c5e89bcf3dff0 +size 8743 diff --git a/maze/task4/maps/level_step9/img/42.png b/maze/task4/maps/level_step9/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..e856d73908a9cc7d534b877162988525569b9668 --- /dev/null +++ b/maze/task4/maps/level_step9/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f6d38b24d3f09c69970c5332c8892755512adb46838d5499665865c897f55e +size 9376 diff --git a/maze/task4/maps/level_step9/img/43.png b/maze/task4/maps/level_step9/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8240fd301b101fc3d6928b8b7837ee8f046508 --- /dev/null +++ b/maze/task4/maps/level_step9/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e450c5211b9cc344c3fdea9a4ac7b6f86afc861e99ce5e8e1bd73c05370aeb +size 8530 diff --git a/maze/task4/maps/level_step9/img/44.png b/maze/task4/maps/level_step9/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ea8c8b43531c6e27ef5f3d37d4466def2735ea --- /dev/null +++ b/maze/task4/maps/level_step9/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fb405d285539369e602e0920d214b0a3d57fddc26483d9b8582c5dcd3dacb2 +size 10461 diff --git a/maze/task4/maps/level_step9/img/45.png b/maze/task4/maps/level_step9/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..cb96bb7880e869e58aef02c7fef344f6d7dc18e8 --- /dev/null +++ b/maze/task4/maps/level_step9/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b0a9844bd7bb0ef810cc8e9bed26758527d4f56530d457e13311b5eea04ab0 +size 10404 diff --git a/maze/task4/maps/level_step9/img/46.png b/maze/task4/maps/level_step9/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d0bce4c0119ffeac19097f9f41a4c38d2a442d --- /dev/null +++ b/maze/task4/maps/level_step9/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4c2f0d9865a8360f4d1c974eca5d0c578296f5b4e8315cffa073c54468cde7 +size 10550 diff --git a/maze/task4/maps/level_step9/img/47.png b/maze/task4/maps/level_step9/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..61f9ef0def0f721f159208bb3aa769cefa7f4431 --- /dev/null +++ b/maze/task4/maps/level_step9/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bbd0e6a07a60df2a50c7f077a2675e34106d15e375efe469a077b768d6b48b +size 8667 diff --git a/maze/task4/maps/level_step9/img/48.png b/maze/task4/maps/level_step9/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..a5494558c31ab3bbf743d234bc88addc0f20176a --- /dev/null +++ b/maze/task4/maps/level_step9/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2543b447d5489a34daf4d0835a17358829bb4859f2d524e864aa5df93f223995 +size 9527 diff --git a/maze/task4/maps/level_step9/img/49.png b/maze/task4/maps/level_step9/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..42ed24d9c562504ba63fa58f2a8307b0d7cc9847 --- /dev/null +++ b/maze/task4/maps/level_step9/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed72c064c5229fa5ce1bf62b52ec7b2aa3f7fb9ba203d81c7c33bafb9c74194 +size 10373 diff --git a/maze/task4/maps/level_step9/img/5.png b/maze/task4/maps/level_step9/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task4/maps/level_step9/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task4/maps/level_step9/img/50.png b/maze/task4/maps/level_step9/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..a10f7605b5adcd31425b5fc82f6391618c60dcce --- /dev/null +++ b/maze/task4/maps/level_step9/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1fa51fc530f52434841bf5f5804b0f0ffbb044d7e829d335d4060e8ffbcc8f +size 10311 diff --git a/maze/task4/maps/level_step9/img/51.png b/maze/task4/maps/level_step9/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5eb285b8ff06ddcfe7301346541ce202b37419 --- /dev/null +++ b/maze/task4/maps/level_step9/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92c2243e404e0ab629e4529ab56766a05dd34c0213c3e20c4910fb4fb86e831 +size 9542 diff --git a/maze/task4/maps/level_step9/img/52.png b/maze/task4/maps/level_step9/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..9d4bdeb5444e9f0d9e1e9d46f7e786aea65d45b6 --- /dev/null +++ b/maze/task4/maps/level_step9/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c23311f94b63d8b58f2d6c15f516982e316f20bc7f57586ab87f742b301b20e +size 8627 diff --git a/maze/task4/maps/level_step9/img/53.png b/maze/task4/maps/level_step9/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..b56567b741d2a6849fdbd9a06f10a221f611854a --- /dev/null +++ b/maze/task4/maps/level_step9/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbbb363cbd4871bd667563335310c2a7b1e044d786a33fc9ac426ab13f9fa92 +size 10460 diff --git a/maze/task4/maps/level_step9/img/54.png b/maze/task4/maps/level_step9/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..bad180a50971f7f5733324d228067626aad64cdd --- /dev/null +++ b/maze/task4/maps/level_step9/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45e9d43fd3ad34d257e593610a6efc76af3a487b4c89e83a8ed9c3ea63edfdf0 +size 8598 diff --git a/maze/task4/maps/level_step9/img/55.png b/maze/task4/maps/level_step9/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..3970c32049be6bcb6720d98b26c414e3b4b89e6e --- /dev/null +++ b/maze/task4/maps/level_step9/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323afc6ed8df712196f50c209456baaae6614fb23ba796a6f310423c56b4501e +size 10368 diff --git a/maze/task4/maps/level_step9/img/56.png b/maze/task4/maps/level_step9/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..e0556e2098e7897be839b2fa466ecb4e2ebfc45e --- /dev/null +++ b/maze/task4/maps/level_step9/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b5a100b686fbd05354618ee53c366ebdf04c197fa87c0d50f4460b81298a54e +size 8780 diff --git a/maze/task4/maps/level_step9/img/57.png b/maze/task4/maps/level_step9/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..46b8af8ae47e2318fc24cf7e63adf89c23ad0768 --- /dev/null +++ b/maze/task4/maps/level_step9/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfb2f92be0c9aedd215a40e1879bb6cdeec5abfae96393b8899c2c7c126797f +size 11278 diff --git a/maze/task4/maps/level_step9/img/58.png b/maze/task4/maps/level_step9/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..007695ff6c8929f3c578f1e20f352034afc69d5b --- /dev/null +++ b/maze/task4/maps/level_step9/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4011594954c1117ae9981fa7ce16c41cb3266498795e8f487654a7f4ea47e61e +size 8568 diff --git a/maze/task4/maps/level_step9/img/59.png b/maze/task4/maps/level_step9/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..783bdee385c0a0eef8797024804679a2cb97629b --- /dev/null +++ b/maze/task4/maps/level_step9/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f597e4c46866313b7947e9cb1761cd53881ecbbe15d4fdf7fe3291755b0bcd +size 8756 diff --git a/maze/task4/maps/level_step9/img/6.png b/maze/task4/maps/level_step9/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..94e81bb8e050c6acda8f172b29e876c792d13348 --- /dev/null +++ b/maze/task4/maps/level_step9/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30474a1c062eb3bf3d0505f827ffe6804b399f33adf8a2b7606e6436aa718ece +size 11046 diff --git a/maze/task4/maps/level_step9/img/60.png b/maze/task4/maps/level_step9/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..af8ab86cf41c45007b7cfce49c76e3ff294aa2f6 --- /dev/null +++ b/maze/task4/maps/level_step9/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f19ceb0d0c316a16d11ddeb3238c5ef09285ab68f7796236aa0035a5676c68f +size 10322 diff --git a/maze/task4/maps/level_step9/img/61.png b/maze/task4/maps/level_step9/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..d5a479c65cb42324a8806e73a2651e20cf70f08e --- /dev/null +++ b/maze/task4/maps/level_step9/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b58ec3a71ab3abb8df325845f732ab77ce474560e2736f7d4f79e521d20fc72 +size 8627 diff --git a/maze/task4/maps/level_step9/img/62.png b/maze/task4/maps/level_step9/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..33cfe602364bc6dd682c246276cfb8f1404ef595 --- /dev/null +++ b/maze/task4/maps/level_step9/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0e338d527661874a9c46027013ed1381ad655fa2165f92ba6c74bdccc1b4c4 +size 10351 diff --git a/maze/task4/maps/level_step9/img/63.png b/maze/task4/maps/level_step9/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..5268d47a1da820b21d1ba486de5ecc9d7e64b203 --- /dev/null +++ b/maze/task4/maps/level_step9/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aef3c0e696e8df57eebf70c96781a32274f2c0b0b98450415427f2b1c544e6f +size 9557 diff --git a/maze/task4/maps/level_step9/img/64.png b/maze/task4/maps/level_step9/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..af27e78c65469a37d18cca56246e46dc40071558 --- /dev/null +++ b/maze/task4/maps/level_step9/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705afe8f6778c5550d77725cec8a0a4e3d06a7f07978c19ac149248442bc560f +size 7735 diff --git a/maze/task4/maps/level_step9/img/65.png b/maze/task4/maps/level_step9/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..83e96c3b8c34fbc0d1964c3a34509a80c34425bc --- /dev/null +++ b/maze/task4/maps/level_step9/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab691589396b93fea1f8c2e627d260083dc06c3e8200c008564e85bbe4b351d +size 8715 diff --git a/maze/task4/maps/level_step9/img/66.png b/maze/task4/maps/level_step9/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..d1198a3df020aaf0931a32171bb2eacf6c6c9e62 --- /dev/null +++ b/maze/task4/maps/level_step9/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b090c16cc1315c868aca80a3ea0a9d4a002bae7af3cc50909feeea2d43a8dcd2 +size 10450 diff --git a/maze/task4/maps/level_step9/img/67.png b/maze/task4/maps/level_step9/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..704fcea3c9309bf98a4137c38afa51e85fa8ae6d --- /dev/null +++ b/maze/task4/maps/level_step9/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d72b628bb06689c3046c3492ba6e82d69c792ffbdbefc85197a79320b10b2c +size 9451 diff --git a/maze/task4/maps/level_step9/img/68.png b/maze/task4/maps/level_step9/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..675eb16f6b01456b2ec7be16e37f0df57d7be6ff --- /dev/null +++ b/maze/task4/maps/level_step9/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37aba2687eb4a8c9d42c872d46fbe92502b2b1f65f8ae164e582035a1fb28296 +size 9617 diff --git a/maze/task4/maps/level_step9/img/69.png b/maze/task4/maps/level_step9/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..bd949e547813f8f2b9757cba31bf9c0eb3b00107 --- /dev/null +++ b/maze/task4/maps/level_step9/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7d27e0f37dd24d074cbc793f948c291209115cb967e0ebd719f59b7b801701 +size 11218 diff --git a/maze/task4/maps/level_step9/img/7.png b/maze/task4/maps/level_step9/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e7fd10e1de723513605eab81815a402003976fdc --- /dev/null +++ b/maze/task4/maps/level_step9/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541ba361ccae84694f0e16016346ba42feabd1f1bb9a5331a2660620384c9d43 +size 10436 diff --git a/maze/task4/maps/level_step9/img/70.png b/maze/task4/maps/level_step9/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..d7d9522fdef478962bbf1ae56c58e2e914c5855f --- /dev/null +++ b/maze/task4/maps/level_step9/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f964ac4bbf903fffa406c1474e19146d3f9c106e21c071d0322559e28ff4fe +size 8780 diff --git a/maze/task4/maps/level_step9/img/71.png b/maze/task4/maps/level_step9/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..beb976f0cbfd54916fe8e0be18df2bc9108275af --- /dev/null +++ b/maze/task4/maps/level_step9/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ee8ab29dc3a229e6242ae737444cd175d7d8e3f5215e4d6bac98b7317a6fd4 +size 10314 diff --git a/maze/task4/maps/level_step9/img/72.png b/maze/task4/maps/level_step9/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..ca0b95a3e088771ab726cb539e5dac8013bc9c86 --- /dev/null +++ b/maze/task4/maps/level_step9/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75b8f78d7649f7a45f04539ba76ad715ce7ee982c8a96be24ee25c19fbbdfce +size 10255 diff --git a/maze/task4/maps/level_step9/img/73.png b/maze/task4/maps/level_step9/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..f88dfab626fa7c5fb363d58de200004b96209b1b --- /dev/null +++ b/maze/task4/maps/level_step9/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433e3ecd94a75856ad7720bf7b7a14c206ca551dfd7cdb6458168750957e6144 +size 9621 diff --git a/maze/task4/maps/level_step9/img/74.png b/maze/task4/maps/level_step9/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..f4261f82e703741c80844be2261b49976e0842ac --- /dev/null +++ b/maze/task4/maps/level_step9/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f9792b34302bde59f61fe04bfaebc2fea35f776ed70996c9ceea31dbd322fc +size 10448 diff --git a/maze/task4/maps/level_step9/img/75.png b/maze/task4/maps/level_step9/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..93eed9dc47ad2ae321d732ef990201e356a084d8 --- /dev/null +++ b/maze/task4/maps/level_step9/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3d3acdebfc0ac58bd29a87edf66e3e274fd14dd7aa4e6feda5037bea7070d7 +size 9559 diff --git a/maze/task4/maps/level_step9/img/76.png b/maze/task4/maps/level_step9/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..1767ad68765f0ce53e8b51d4cc8579144cf41428 --- /dev/null +++ b/maze/task4/maps/level_step9/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b2a5d8df0428a24da48fa93626113f4278237054514f7bf057bdf9ef265e4e +size 9446 diff --git a/maze/task4/maps/level_step9/img/77.png b/maze/task4/maps/level_step9/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..17023bbbd055427830fcfd176021fb2fc5d6910d --- /dev/null +++ b/maze/task4/maps/level_step9/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c1604221f2c1545f8c8d8a1a0557dd0c7d8300bc470a02052c41ccda1c3887 +size 8661 diff --git a/maze/task4/maps/level_step9/img/78.png b/maze/task4/maps/level_step9/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..77943c92fcc18208b2c04866482640cf8d60878a --- /dev/null +++ b/maze/task4/maps/level_step9/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6dab09d288576c613b7637832a8ef62905a8fbcdebfc4643bb8769312aea235 +size 9527 diff --git a/maze/task4/maps/level_step9/img/79.png b/maze/task4/maps/level_step9/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..10f84b792cf0272b8e2935bdf5b34df73c511225 --- /dev/null +++ b/maze/task4/maps/level_step9/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1c923ccfc9c84e6a32ca615eb232d4ba7bac6ea9b58c24a03a3c659accd86e +size 9435 diff --git a/maze/task4/maps/level_step9/img/8.png b/maze/task4/maps/level_step9/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b783d4f36e2171422604495ee36e749644ce4e2b --- /dev/null +++ b/maze/task4/maps/level_step9/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dbba447ec1e1cdb77f547897ea2c4a87baf7985ca4f97405a7f153585f7d9e +size 9520 diff --git a/maze/task4/maps/level_step9/img/80.png b/maze/task4/maps/level_step9/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..d38be801924540141877d22c09c57a6aafae6aba --- /dev/null +++ b/maze/task4/maps/level_step9/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ad52f6b2e6d19a310dae34f39abc796d5fa062a4f472a9f71d3c873d414f12 +size 9477 diff --git a/maze/task4/maps/level_step9/img/81.png b/maze/task4/maps/level_step9/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..9ee58d38f18e58bdc72a2d3ff9a9dabf96d9094d --- /dev/null +++ b/maze/task4/maps/level_step9/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:250a8a43bcb5d1a8e61033b221d4138f1037a8a968a56ee16e3bf8e98645734d +size 9539 diff --git a/maze/task4/maps/level_step9/img/82.png b/maze/task4/maps/level_step9/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e4afd98ab856f1b49e892d1c8959d0c45076f933 --- /dev/null +++ b/maze/task4/maps/level_step9/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b516f64ea6950be4ac225452351a46ea1244d2dee61ccfe891940be0be952e8 +size 9621 diff --git a/maze/task4/maps/level_step9/img/83.png b/maze/task4/maps/level_step9/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..2b4f1990d536fad6f1e8ad7be958c26b6ffe9d9c --- /dev/null +++ b/maze/task4/maps/level_step9/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f51bad0f2ab0498873bbcdc99742634a56d4e84f55cce1792d9cb20a0557b5b +size 9523 diff --git a/maze/task4/maps/level_step9/img/84.png b/maze/task4/maps/level_step9/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..c20f928a67696ac9b7621c5df5dac520ae5ffafb --- /dev/null +++ b/maze/task4/maps/level_step9/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b409f2ed7b7474e8927f70925d8c7d5ec5ef502cbabdb8644505f3013dc74a +size 10365 diff --git a/maze/task4/maps/level_step9/img/85.png b/maze/task4/maps/level_step9/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..2b04b8b4e6430b30c5505609dc642700d988be70 --- /dev/null +++ b/maze/task4/maps/level_step9/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc9d00dc9b80f1693dc7134f8ed438926305e024a5dc26e8e03ad82b4608f0b +size 9491 diff --git a/maze/task4/maps/level_step9/img/86.png b/maze/task4/maps/level_step9/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..62388f5d44b35a33d7344b87538079f25683a98e --- /dev/null +++ b/maze/task4/maps/level_step9/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d5c824b2d9f8f038eab88b3e999f5e242fe5fb53f4090f221b751337625462 +size 11204 diff --git a/maze/task4/maps/level_step9/img/87.png b/maze/task4/maps/level_step9/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..85bb6ac7f98a3ebfa60287c5d24b22b4e0ef6a9e --- /dev/null +++ b/maze/task4/maps/level_step9/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10d1716db1f68b07b9f88683877ce6310e9522d698240818680714d9943d79c +size 11010 diff --git a/maze/task4/maps/level_step9/img/88.png b/maze/task4/maps/level_step9/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..8c881bff2994201ae763b042e79653e5410ccf71 --- /dev/null +++ b/maze/task4/maps/level_step9/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c84ced9b6261785bfea749df9e390c8fdc06803aa3509d1cae53ed17eae398 +size 11162 diff --git a/maze/task4/maps/level_step9/img/89.png b/maze/task4/maps/level_step9/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..e6d7f95f63c1637e4c1a830292d7a222ce959309 --- /dev/null +++ b/maze/task4/maps/level_step9/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ce6fd6ff081b23db9a1797ddd77981606a0988b5d0e295aa8a3d1779aacec5 +size 10481 diff --git a/maze/task4/maps/level_step9/img/9.png b/maze/task4/maps/level_step9/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..58fed855e22af0897daeb41c04cd87048322e11b --- /dev/null +++ b/maze/task4/maps/level_step9/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba907e17952d0a68214808d067646f0d97ef64b27d9e453a9c505779f03553eb +size 11128 diff --git a/maze/task4/maps/level_step9/img/90.png b/maze/task4/maps/level_step9/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..f5bc1b587d0ac1b21d21776fae9d639a77d6fe7e --- /dev/null +++ b/maze/task4/maps/level_step9/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fc2677c4de6c82c039447d7ed0096ef58ba4462a8373278ef22d63785053ba +size 10338 diff --git a/maze/task4/maps/level_step9/img/91.png b/maze/task4/maps/level_step9/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..72df204957c2f6e150306936eec2127d8f38ee2c --- /dev/null +++ b/maze/task4/maps/level_step9/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745eb23af8b3d9225ac39f3ae773055f5213aa78e483e1d286c52b9d3adc86d8 +size 9526 diff --git a/maze/task4/maps/level_step9/img/92.png b/maze/task4/maps/level_step9/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..4c31096c2f0ca225176d84189f103535b74730a2 --- /dev/null +++ b/maze/task4/maps/level_step9/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1b7ee191111cbb66b0d7e55f932d921ee48a9c9f5286241fd8b8a9e1ee0ee6 +size 10464 diff --git a/maze/task4/maps/level_step9/img/93.png b/maze/task4/maps/level_step9/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5c6e234b9f935f08a4fd68f91bbcf291b90426 --- /dev/null +++ b/maze/task4/maps/level_step9/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce939a10cc069cf6712137df96d9eeecde0871626566111d58e23e4eaf2cdf35 +size 10407 diff --git a/maze/task4/maps/level_step9/img/94.png b/maze/task4/maps/level_step9/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..a0aca33dd3cfe0bb054be356d366681a4bf0f6ea --- /dev/null +++ b/maze/task4/maps/level_step9/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2866353d9506bdd7c1817a70be00455aedd4178a87cbc83886461535c63a57b5 +size 10229 diff --git a/maze/task4/maps/level_step9/img/95.png b/maze/task4/maps/level_step9/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..523e6c4d5182edd9904839695ae672b05749216c --- /dev/null +++ b/maze/task4/maps/level_step9/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4ba1cc2312adfb5a4e4cbc48152210f783bcf7c054284de9b94d5b31cf7105 +size 10376 diff --git a/maze/task4/maps/level_step9/img/96.png b/maze/task4/maps/level_step9/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..a397a33557d280b851373d4d88add121f6538204 --- /dev/null +++ b/maze/task4/maps/level_step9/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0567a842e9c66a3501c566f6e4aa684464b0bd08de7aa6a824fdb9d73128fce7 +size 10458 diff --git a/maze/task4/maps/level_step9/img/97.png b/maze/task4/maps/level_step9/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..748a948c5cd41ad576941a954a691c45002651bc --- /dev/null +++ b/maze/task4/maps/level_step9/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77adb79d8bbc1588ad59543ed98151771cd492efc2dc07e86af7ebb5873a4a67 +size 9374 diff --git a/maze/task4/maps/level_step9/img/98.png b/maze/task4/maps/level_step9/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..feee65d74a4a5cf343e4c5c33bcedfdfc5e67658 --- /dev/null +++ b/maze/task4/maps/level_step9/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:504b1e9147d5348e52f7be1ad068e22b6e405149356a86e1f82270d0bee89fad +size 9500 diff --git a/maze/task4/maps/level_step9/img/99.png b/maze/task4/maps/level_step9/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..d6bd9ecf67aa1f7de93eebdc0e48abc85bb467bf --- /dev/null +++ b/maze/task4/maps/level_step9/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570147872954af71e957d7629438d5014810bb6ec0cb216e45e41a69154b7259 +size 8604 diff --git a/maze/task4/maps/level_step9/pure_text/0.txt b/maze/task4/maps/level_step9/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4c06f1bd9b8b7242a496c606ebec044b3d58231 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; Row 4, Column 2; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/1.txt b/maze/task4/maps/level_step9/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbb8f40d8c75f91eaa729d86284cbf74c98be1bd --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/10.txt b/maze/task4/maps/level_step9/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..c57e03a22c3727d041e5d13c3a7afa763801af6e --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/11.txt b/maze/task4/maps/level_step9/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd05b86229106fa3f4b12d3853f5f38edb2f79c6 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/12.txt b/maze/task4/maps/level_step9/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..165f44b11e38b580c20c46d28807b3caac0a2614 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 3, Column 2; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/13.txt b/maze/task4/maps/level_step9/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4496b3007d7df58916be5e72e52b6e85aaeb48e --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 5, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/14.txt b/maze/task4/maps/level_step9/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdb8c4e2d57e515054c0dc54a61f4da7632ec321 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/15.txt b/maze/task4/maps/level_step9/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..64391656b5d60ff9aacf2687c8668f0263563427 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 1; Row 4, Column 3; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/16.txt b/maze/task4/maps/level_step9/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f58b60f80c34719dd14d0ad5666e0adf08a940c --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/17.txt b/maze/task4/maps/level_step9/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..320b7d538d04af75ace729ab9d8049172bdb542d --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/18.txt b/maze/task4/maps/level_step9/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4044583674f69b2b3ed307200090daaf0456687 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/19.txt b/maze/task4/maps/level_step9/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdcdf82f73b3e07de44c8668dad4def529e2afc1 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/2.txt b/maze/task4/maps/level_step9/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef4e1f945768ae2423294c774d0ec1a4e54d374d --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/20.txt b/maze/task4/maps/level_step9/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..67b933bd40c003ad8d713ed3a6fde5badcd130d9 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 2, Column 5; Row 3, Column 4; Row 4, Column 2; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/21.txt b/maze/task4/maps/level_step9/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..a23c755b2724e4e5a25a0c791532b4c4cc6dbaa0 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 5; Row 4, Column 1; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/22.txt b/maze/task4/maps/level_step9/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..e88c36fbbe006236efda2a4ba67c803647dde0b7 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 2; Row 3, Column 2; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/23.txt b/maze/task4/maps/level_step9/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d906d0da3f637fca49cdb3d8e816363b7e7a6d6 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 5; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/24.txt b/maze/task4/maps/level_step9/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9898a8063d3b37859ea38c0e0799213ef632e58 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/25.txt b/maze/task4/maps/level_step9/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c422fe457c20c1d9786346577788d5ff2ce46c86 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/26.txt b/maze/task4/maps/level_step9/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7240252af23b700a58301fa934e8c1d45e40bab7 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 4, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/27.txt b/maze/task4/maps/level_step9/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6d34d0b728b4ebba351dc01f5c83fd746c1113e --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/28.txt b/maze/task4/maps/level_step9/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..937efde11835c1fc43faf50cfa46d724acc6bd8e --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/29.txt b/maze/task4/maps/level_step9/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..d77068c1b6754c44acb66f7f9b3a3e3af4678ce8 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/3.txt b/maze/task4/maps/level_step9/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b49376a26eac5704c3f3f6bf4a7fd6e09275b020 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 3, Column 4; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/30.txt b/maze/task4/maps/level_step9/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..b84b5ff1a88317391d3d6bc4647e62063731348a --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/31.txt b/maze/task4/maps/level_step9/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed3de2fcde0be386a2a5d65cab4de2f3a692c1e7 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/32.txt b/maze/task4/maps/level_step9/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4745609ba1e3dfff5dcc066231c7bb36111ae09 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/33.txt b/maze/task4/maps/level_step9/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..f71b36e49c667a0585201da5160ddfd3a33a7d8d --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 4, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/34.txt b/maze/task4/maps/level_step9/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f0122b2252e4afecbd8fd941488de88053dc9b --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; Row 5, Column 3; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/35.txt b/maze/task4/maps/level_step9/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e6eced5f42ddf7dfa970c3b2128ad1d2616aae --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/36.txt b/maze/task4/maps/level_step9/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bee6b6b1bda9de2f32004899c06a6c0d20fea26 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; Row 3, Column 5; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/37.txt b/maze/task4/maps/level_step9/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..14dc6ad1878c1cc148d50bcd8a95104df0c82b3f --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 5, Column 1; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/38.txt b/maze/task4/maps/level_step9/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f6fcf47b297b9d5b81443069c545e261d47b37b --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/39.txt b/maze/task4/maps/level_step9/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..4838ec81c241d9d2115c7a0f9a838c1ffff5d2c4 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/4.txt b/maze/task4/maps/level_step9/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59ffc168cdb8212ad7ec3dbc639e372f3d7db13 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/40.txt b/maze/task4/maps/level_step9/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..be9f3580f3365e1b255a89528e4fe4c52c5ebd0c --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/41.txt b/maze/task4/maps/level_step9/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9d190660b178c6419b5664db263949f2701555d --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 4, Column 2; Row 4, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/42.txt b/maze/task4/maps/level_step9/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..acc253d02810ca4cd1a5959f93f519d878d2c962 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/43.txt b/maze/task4/maps/level_step9/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3232cf536abf875c58ecd4fa47049dffac73b440 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 5, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/44.txt b/maze/task4/maps/level_step9/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..d15c3f369cff1c70d5310f69e4868083a27e6e6f --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/45.txt b/maze/task4/maps/level_step9/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..edc5006e39d7125d3b6015587b5fc04e6eb2a9dc --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 4; Row 3, Column 2; Row 4, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/46.txt b/maze/task4/maps/level_step9/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fc422e917a57def3a084a0be255bca7bb31f1c --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 4, Column 1; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/47.txt b/maze/task4/maps/level_step9/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ab5f0d78652c951e50db6ff3f8feda882bfd9b1 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/48.txt b/maze/task4/maps/level_step9/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8df0a06af8cc86ccab67cf63d804fc6ecde9f84 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/49.txt b/maze/task4/maps/level_step9/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..f165941f4c6c7fdf6ff230b23228102eed6ef450 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/5.txt b/maze/task4/maps/level_step9/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5a7c360f4d2a91544cb3423491ca285c9a175d1 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/50.txt b/maze/task4/maps/level_step9/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..da945a81c0cd21dc3e2ea76f58177594e3ded594 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/51.txt b/maze/task4/maps/level_step9/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b7bd5193551578f98b26bb714f9e3fda3e664e5 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; Row 3, Column 4; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/52.txt b/maze/task4/maps/level_step9/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0bb14689a02d46a5b8333119862fd01fe79945a --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 4, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/53.txt b/maze/task4/maps/level_step9/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2106621473d9a89917c751ac90e082b2a91e6846 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/54.txt b/maze/task4/maps/level_step9/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..224e10808344f43e9f79a4d0f07301d9558617ec --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/55.txt b/maze/task4/maps/level_step9/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..454bf2b08c853f8664fd706a1678023aa12ec7bd --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/56.txt b/maze/task4/maps/level_step9/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..39ae5251ce4b2c45f04c9b956bc13c31013eb226 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 3, Column 2; Row 3, Column 5; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/57.txt b/maze/task4/maps/level_step9/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..80c622ea71676723763fead953c21d3b9309419c --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 3; Row 4, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/58.txt b/maze/task4/maps/level_step9/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..278735b446a9a0b55d5fede1aa3a48534aa209b7 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/59.txt b/maze/task4/maps/level_step9/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..7801b488546a8358bf28d18020c6f1b861a9a295 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/6.txt b/maze/task4/maps/level_step9/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..81c21a3ee501f4dc2d601d644d0df3c03b9fd67f --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; Row 5, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/60.txt b/maze/task4/maps/level_step9/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e2e9cc573a97f137abd386cc43b4e735bc3d1c1 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/61.txt b/maze/task4/maps/level_step9/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..b98dce1a9af589870e64ae9e1f3c5cd5c17956a7 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/62.txt b/maze/task4/maps/level_step9/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e9c53d4fba2738db99715000abfde4fcc4e9676 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/63.txt b/maze/task4/maps/level_step9/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..c544f3bbd7b436125f57e45fdb2a689f9a8c52fb --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 4; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/64.txt b/maze/task4/maps/level_step9/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8a49cd41197a2b270bf7d2a0f316f7c857a6524 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/65.txt b/maze/task4/maps/level_step9/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc235faae4ff5518dacdbf2e6e53a651f2aab293 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 5; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/66.txt b/maze/task4/maps/level_step9/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..e95bd73d1e25a720fae1d120db11ee2b23c528ad --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/67.txt b/maze/task4/maps/level_step9/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad5abfc1329e6fcbc2d3241ad2189e9b86bdb677 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/68.txt b/maze/task4/maps/level_step9/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f990ce38b51c61e37f765db7a8ba57129c096c6 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; Row 5, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/69.txt b/maze/task4/maps/level_step9/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c96d3084ee207842b41372989dd691b66508d97 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 5; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/7.txt b/maze/task4/maps/level_step9/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3622c81d6a9c3009f683e953e57b247b6936253 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/70.txt b/maze/task4/maps/level_step9/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a8a92c1901bd5de504b373d1e1f071c97cf29e --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/71.txt b/maze/task4/maps/level_step9/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d33fb283d0f725b06dd43fc912f439278b32eec --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/72.txt b/maze/task4/maps/level_step9/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f785c1beff8b86517892313f8003e40ad8f713e --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 5, Column 3; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/73.txt b/maze/task4/maps/level_step9/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..8419ea69e12459f716ea561fe38ed7a356f59b00 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 4; Row 5, Column 2; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/74.txt b/maze/task4/maps/level_step9/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cd29f812d02701f426f82e5e6617f2bc9020640 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 3; Row 4, Column 2; Row 5, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/75.txt b/maze/task4/maps/level_step9/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..915d740f384ea81f4cf4c86382217b7a0290c305 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/76.txt b/maze/task4/maps/level_step9/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..1376792490f0233abff71e1e1c0a10b657829cfc --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 5; Row 4, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/77.txt b/maze/task4/maps/level_step9/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dc66fa1b6370c5725cb89c2135994a92f220f26 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/78.txt b/maze/task4/maps/level_step9/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..46283791e54968360d69a2a369960cc47ff820f7 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/79.txt b/maze/task4/maps/level_step9/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a3915e8eea24dc20f7b204d597fd142ca57e4b9 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 4; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/8.txt b/maze/task4/maps/level_step9/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..08edb362cb22dbded0ea93839caca4600a4eeb16 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/80.txt b/maze/task4/maps/level_step9/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8f8173bd0c61225c90fd43b7a64b02f2941c48d --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/81.txt b/maze/task4/maps/level_step9/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d052d1474fe719417e0138b4b5312f4a8e24236 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/82.txt b/maze/task4/maps/level_step9/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c2e984f1c166764303dc2f5a2ee3055093ded15 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/83.txt b/maze/task4/maps/level_step9/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..077e19c7808dd1ee83acdb763d35196fc8efedec --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/84.txt b/maze/task4/maps/level_step9/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7ba9e712e1e7bbf90fc466312752c6cc710d1db --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 3; Row 4, Column 4; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/85.txt b/maze/task4/maps/level_step9/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee2506d3c62f246176ebeaa3418f1cda7988af0b --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/86.txt b/maze/task4/maps/level_step9/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..001238e6e7ed913334ddb9cbfc29b1c47685d76a --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/87.txt b/maze/task4/maps/level_step9/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..13a128ba76c3d80887181bada72a4c529a13bcd8 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 4, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/88.txt b/maze/task4/maps/level_step9/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..96c6aa6e65bffd3e8aa0203bd318d2d81a14ba2e --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; Row 5, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/89.txt b/maze/task4/maps/level_step9/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3d03724703e9bc2dcbe8560771f911d012ca306 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 2; Row 3, Column 1; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/9.txt b/maze/task4/maps/level_step9/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..e331e360b9da15923123b2957ca0cea7c92c20cc --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/90.txt b/maze/task4/maps/level_step9/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..92db8473cc994e2fc986cb0c70ef85ad7ec9ac01 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 5; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/91.txt b/maze/task4/maps/level_step9/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c7e29965b5d3594eccb510a034911fed84da20e --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/92.txt b/maze/task4/maps/level_step9/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb38404d97ff4b3282cae2a0389d932066cff95d --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/93.txt b/maze/task4/maps/level_step9/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..99e8587ad626e4e76a45776ec0df7dfc107a9994 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 4; Row 3, Column 3; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/94.txt b/maze/task4/maps/level_step9/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4e024a7f92e05f706d4b55124477e876fc6df8a --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 4, Column 5; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/95.txt b/maze/task4/maps/level_step9/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..742728be8dec2aa49b4eafaf1acf6bb7e33a5c72 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/96.txt b/maze/task4/maps/level_step9/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..15455aebe4fb0d54b814b005305a1e47e65fd0de --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/97.txt b/maze/task4/maps/level_step9/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..076c01ee6bacfe079d95faf6bc75c95481857fd9 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/98.txt b/maze/task4/maps/level_step9/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d00ab2fa70a2f05e4fe70829bb3f0bf3bf5ed94 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/pure_text/99.txt b/maze/task4/maps/level_step9/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e83fcadcc53346222267fe68467d7f53b2e90601 --- /dev/null +++ b/maze/task4/maps/level_step9/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/0.txt b/maze/task4/maps/level_step9/question/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..14afa7afd9be9f1cab25819a8610ef39c6fb97ce --- /dev/null +++ b/maze/task4/maps/level_step9/question/0.txt @@ -0,0 +1 @@ +LRLDRRLUL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/1.txt b/maze/task4/maps/level_step9/question/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c994322c8033090686b1cf769fbe3c6664335060 --- /dev/null +++ b/maze/task4/maps/level_step9/question/1.txt @@ -0,0 +1 @@ +LLDRLUDRD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/10.txt b/maze/task4/maps/level_step9/question/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..f622317dde0323b38fca99e6f644d88cbd75c0c8 --- /dev/null +++ b/maze/task4/maps/level_step9/question/10.txt @@ -0,0 +1 @@ +RLRDDUUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/11.txt b/maze/task4/maps/level_step9/question/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5b0ecc211cd805e82c3027eb030eafaa3c6f936 --- /dev/null +++ b/maze/task4/maps/level_step9/question/11.txt @@ -0,0 +1 @@ +RUURLDUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/12.txt b/maze/task4/maps/level_step9/question/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f6d4f1f5aa90a112e315175142ddaef2c8ff5a6 --- /dev/null +++ b/maze/task4/maps/level_step9/question/12.txt @@ -0,0 +1 @@ +LLUURULRL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/13.txt b/maze/task4/maps/level_step9/question/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..192a5866673ff7afa49ec652985a4ee1bca1e117 --- /dev/null +++ b/maze/task4/maps/level_step9/question/13.txt @@ -0,0 +1 @@ +DURDULDUU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/14.txt b/maze/task4/maps/level_step9/question/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..baf00ed7205aa71c6d4cf6b6290e50f8be9d21ce --- /dev/null +++ b/maze/task4/maps/level_step9/question/14.txt @@ -0,0 +1 @@ +DRUDDULLD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/15.txt b/maze/task4/maps/level_step9/question/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..a77db4bda4789f74c05da13c45a9d7e9fb94ea8d --- /dev/null +++ b/maze/task4/maps/level_step9/question/15.txt @@ -0,0 +1 @@ +ULRLDLRUD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/16.txt b/maze/task4/maps/level_step9/question/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..903d52da7038d196b2d6ec7fcbfb9d33d860308a --- /dev/null +++ b/maze/task4/maps/level_step9/question/16.txt @@ -0,0 +1 @@ +LUULRLRDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/17.txt b/maze/task4/maps/level_step9/question/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ece9a9e156d3180cbc1c8b9509855cbbce545de --- /dev/null +++ b/maze/task4/maps/level_step9/question/17.txt @@ -0,0 +1 @@ +RLUDLRRDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/18.txt b/maze/task4/maps/level_step9/question/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..023705e758e6630aafccdb9f4b4d334bc0d678be --- /dev/null +++ b/maze/task4/maps/level_step9/question/18.txt @@ -0,0 +1 @@ +UUDLLUDRL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/19.txt b/maze/task4/maps/level_step9/question/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3ed6565bf34c60ad4578e63492ed246f3c0396b --- /dev/null +++ b/maze/task4/maps/level_step9/question/19.txt @@ -0,0 +1 @@ +ULRLRDLLR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/2.txt b/maze/task4/maps/level_step9/question/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..1583edadefe884bacd84e9c68614d01866ebe1ef --- /dev/null +++ b/maze/task4/maps/level_step9/question/2.txt @@ -0,0 +1 @@ +URLRLUDUD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/20.txt b/maze/task4/maps/level_step9/question/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..7648feb0e48f0806be740bb38637659147da6d07 --- /dev/null +++ b/maze/task4/maps/level_step9/question/20.txt @@ -0,0 +1 @@ +DUDLRUDLL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/21.txt b/maze/task4/maps/level_step9/question/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..b114400cf6173448457ee7674b3cc9953c0008db --- /dev/null +++ b/maze/task4/maps/level_step9/question/21.txt @@ -0,0 +1 @@ +DLRUUDURD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/22.txt b/maze/task4/maps/level_step9/question/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec57aaa49fbc9bcc06456eb8b378afd4a4181df0 --- /dev/null +++ b/maze/task4/maps/level_step9/question/22.txt @@ -0,0 +1 @@ +LRULLLDUL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/23.txt b/maze/task4/maps/level_step9/question/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e49de4e250191bead0aacdfaad84d72e1b0489b --- /dev/null +++ b/maze/task4/maps/level_step9/question/23.txt @@ -0,0 +1 @@ +RRRDLUDLL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/24.txt b/maze/task4/maps/level_step9/question/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..b687514b63ba1048a367a6074e22e9d7f5228463 --- /dev/null +++ b/maze/task4/maps/level_step9/question/24.txt @@ -0,0 +1 @@ +DLRDUULDR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/25.txt b/maze/task4/maps/level_step9/question/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e6f0978195803e45c0d6615d41f53422a247fd4 --- /dev/null +++ b/maze/task4/maps/level_step9/question/25.txt @@ -0,0 +1 @@ +DRLDLDRUL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/26.txt b/maze/task4/maps/level_step9/question/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..58b7a3125cb422c9ba987b53d85c72a7fe8f8134 --- /dev/null +++ b/maze/task4/maps/level_step9/question/26.txt @@ -0,0 +1 @@ +DLLRRRRUL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/27.txt b/maze/task4/maps/level_step9/question/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..76757cda7b3b4c8758e2f1092346e71b8a43d3cb --- /dev/null +++ b/maze/task4/maps/level_step9/question/27.txt @@ -0,0 +1 @@ +DDRRDLUDR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/28.txt b/maze/task4/maps/level_step9/question/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0beab7b979f6a0e06e0b5918776462567c26644 --- /dev/null +++ b/maze/task4/maps/level_step9/question/28.txt @@ -0,0 +1 @@ +UUDDLLRLL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/29.txt b/maze/task4/maps/level_step9/question/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5b167c267067480e1346d6ed4cb232c002e2e22 --- /dev/null +++ b/maze/task4/maps/level_step9/question/29.txt @@ -0,0 +1 @@ +UDRULRDUL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/3.txt b/maze/task4/maps/level_step9/question/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..56a3ef8a8f8eaee198eaab237f3556f539b82de7 --- /dev/null +++ b/maze/task4/maps/level_step9/question/3.txt @@ -0,0 +1 @@ +DDLRLULUR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/30.txt b/maze/task4/maps/level_step9/question/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..0be0f774bf89dff4730aca61b164fdf3fab968c9 --- /dev/null +++ b/maze/task4/maps/level_step9/question/30.txt @@ -0,0 +1 @@ +UUDDULLLD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/31.txt b/maze/task4/maps/level_step9/question/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8da4cd49730b8be5012ef381d8d6a1be147b2b3 --- /dev/null +++ b/maze/task4/maps/level_step9/question/31.txt @@ -0,0 +1 @@ +URDUUDDLR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/32.txt b/maze/task4/maps/level_step9/question/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c9cf396649440b16282ae7b4eb8a8bfa4231816 --- /dev/null +++ b/maze/task4/maps/level_step9/question/32.txt @@ -0,0 +1 @@ +DUDUDLULR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/33.txt b/maze/task4/maps/level_step9/question/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..88733fab052959f0ef7a90a1fdf35834ba07c7f4 --- /dev/null +++ b/maze/task4/maps/level_step9/question/33.txt @@ -0,0 +1 @@ +DLDRLUUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/34.txt b/maze/task4/maps/level_step9/question/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..808bff2566df77e3dd080fb12c2b632e02825633 --- /dev/null +++ b/maze/task4/maps/level_step9/question/34.txt @@ -0,0 +1 @@ +UDRRRDRLL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/35.txt b/maze/task4/maps/level_step9/question/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2c84c058b6806d8b8d7e6a63034f761e33cfabd --- /dev/null +++ b/maze/task4/maps/level_step9/question/35.txt @@ -0,0 +1 @@ +DRLRRRLLL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/36.txt b/maze/task4/maps/level_step9/question/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..4627b5292a2fe5407bb8e288f4f4581d954245f9 --- /dev/null +++ b/maze/task4/maps/level_step9/question/36.txt @@ -0,0 +1 @@ +URLLULRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/37.txt b/maze/task4/maps/level_step9/question/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e6c25028d157301016a012ccda1c8e3979269e2 --- /dev/null +++ b/maze/task4/maps/level_step9/question/37.txt @@ -0,0 +1 @@ +RDUUDLRDD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/38.txt b/maze/task4/maps/level_step9/question/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..b865114407c1dd38caeec23dabb045a1f53c7db8 --- /dev/null +++ b/maze/task4/maps/level_step9/question/38.txt @@ -0,0 +1 @@ +UUDULULUR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/39.txt b/maze/task4/maps/level_step9/question/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..42c04fbe1715ebb9422f5a4fdabbbce6753c142c --- /dev/null +++ b/maze/task4/maps/level_step9/question/39.txt @@ -0,0 +1 @@ +DURDLUDRU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/4.txt b/maze/task4/maps/level_step9/question/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0559d2424b5745d09ddaef646221eab807b24c6 --- /dev/null +++ b/maze/task4/maps/level_step9/question/4.txt @@ -0,0 +1 @@ +LLLDULDRR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/40.txt b/maze/task4/maps/level_step9/question/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..39c93b134931568669546527baa5951ee1604bc0 --- /dev/null +++ b/maze/task4/maps/level_step9/question/40.txt @@ -0,0 +1 @@ +UURDDUULD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/41.txt b/maze/task4/maps/level_step9/question/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..20837002e02f1e6347c47c77ee3e3ab9e7b84567 --- /dev/null +++ b/maze/task4/maps/level_step9/question/41.txt @@ -0,0 +1 @@ +RRDDULDLL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/42.txt b/maze/task4/maps/level_step9/question/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..088d4782e765fa75d3f3fa9f36bd60e42fd6fff1 --- /dev/null +++ b/maze/task4/maps/level_step9/question/42.txt @@ -0,0 +1 @@ +ULULDRRRR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/43.txt b/maze/task4/maps/level_step9/question/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..572f5b0cfed5b9c394fd2f96d8920731833be863 --- /dev/null +++ b/maze/task4/maps/level_step9/question/43.txt @@ -0,0 +1 @@ +LLRRLRLRR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/44.txt b/maze/task4/maps/level_step9/question/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..07e74174f8e5f61cb8f5fc09db917af13d9cf568 --- /dev/null +++ b/maze/task4/maps/level_step9/question/44.txt @@ -0,0 +1 @@ +LDUUUDDDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/45.txt b/maze/task4/maps/level_step9/question/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..067b6e9c141c855f47a93b1b3e6b59255835ee70 --- /dev/null +++ b/maze/task4/maps/level_step9/question/45.txt @@ -0,0 +1 @@ +LLRUDRDUL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/46.txt b/maze/task4/maps/level_step9/question/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..f29b4af99859e0fcdec4903a88009e1995be1441 --- /dev/null +++ b/maze/task4/maps/level_step9/question/46.txt @@ -0,0 +1 @@ +DRLRRRLRU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/47.txt b/maze/task4/maps/level_step9/question/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..adbe618cad80a421f90007b801474375f7f3d89d --- /dev/null +++ b/maze/task4/maps/level_step9/question/47.txt @@ -0,0 +1 @@ +RDULLDLRL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/48.txt b/maze/task4/maps/level_step9/question/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc899ee65defc1b2c8f73c636e86b5281e8704a4 --- /dev/null +++ b/maze/task4/maps/level_step9/question/48.txt @@ -0,0 +1 @@ +DLDDLUUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/49.txt b/maze/task4/maps/level_step9/question/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..094caeeaf4ad54323609eb636cde93526d08944b --- /dev/null +++ b/maze/task4/maps/level_step9/question/49.txt @@ -0,0 +1 @@ +DURURRLLD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/5.txt b/maze/task4/maps/level_step9/question/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..24d694c1f40fe88aac119779a69c10ce2558e852 --- /dev/null +++ b/maze/task4/maps/level_step9/question/5.txt @@ -0,0 +1 @@ +LRLUDURRL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/50.txt b/maze/task4/maps/level_step9/question/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..68b4d2008f5db6257e9bc97f8eee0ae07144614f --- /dev/null +++ b/maze/task4/maps/level_step9/question/50.txt @@ -0,0 +1 @@ +URLUDDLRL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/51.txt b/maze/task4/maps/level_step9/question/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..949c5b64907d3a86ab79564a3d2001203e01c921 --- /dev/null +++ b/maze/task4/maps/level_step9/question/51.txt @@ -0,0 +1 @@ +LDRLRRDDD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/52.txt b/maze/task4/maps/level_step9/question/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f4b8a5b6066524314795e11e304516cefd20a90 --- /dev/null +++ b/maze/task4/maps/level_step9/question/52.txt @@ -0,0 +1 @@ +UDULRRRLD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/53.txt b/maze/task4/maps/level_step9/question/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d3e3228402d21b141d2d43f429baed496030c77 --- /dev/null +++ b/maze/task4/maps/level_step9/question/53.txt @@ -0,0 +1 @@ +UDUDDUDDD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/54.txt b/maze/task4/maps/level_step9/question/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..137c6cd04569b9ea8b70b9b493630edca503765e --- /dev/null +++ b/maze/task4/maps/level_step9/question/54.txt @@ -0,0 +1 @@ +RRLULDLUD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/55.txt b/maze/task4/maps/level_step9/question/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..65066e2bd4999cb6a1800adeb655633710a691b9 --- /dev/null +++ b/maze/task4/maps/level_step9/question/55.txt @@ -0,0 +1 @@ +RLRLUDUUL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/56.txt b/maze/task4/maps/level_step9/question/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..8afb9f2682eaf9e633c124eea43000187a86b48a --- /dev/null +++ b/maze/task4/maps/level_step9/question/56.txt @@ -0,0 +1 @@ +LDDRLDURD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/57.txt b/maze/task4/maps/level_step9/question/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3c655b3694337f9969e373fd41dda3e13f0e6d9 --- /dev/null +++ b/maze/task4/maps/level_step9/question/57.txt @@ -0,0 +1 @@ +DLDLDRUUR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/58.txt b/maze/task4/maps/level_step9/question/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..6572048f9edbf0171a92231f8ec8d24a7a5da665 --- /dev/null +++ b/maze/task4/maps/level_step9/question/58.txt @@ -0,0 +1 @@ +URLDLDRRD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/59.txt b/maze/task4/maps/level_step9/question/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..96e8d2cf8a3ace8a306d67b8a3b99a0eaaa4ed79 --- /dev/null +++ b/maze/task4/maps/level_step9/question/59.txt @@ -0,0 +1 @@ +DLUDRLRDL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/6.txt b/maze/task4/maps/level_step9/question/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8dd6b1624d47144ccaa041ebf0305436f9c4079 --- /dev/null +++ b/maze/task4/maps/level_step9/question/6.txt @@ -0,0 +1 @@ +LLDDRLRUR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/60.txt b/maze/task4/maps/level_step9/question/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d0d2b07b3895b5de7154a295a9e4e48289297ad --- /dev/null +++ b/maze/task4/maps/level_step9/question/60.txt @@ -0,0 +1 @@ +RRLDRLLRU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/61.txt b/maze/task4/maps/level_step9/question/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bf81befcc248a47f7b994eab08c99a257440ee8 --- /dev/null +++ b/maze/task4/maps/level_step9/question/61.txt @@ -0,0 +1 @@ +LRDRUDDRU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/62.txt b/maze/task4/maps/level_step9/question/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b810fed3fca56ff9daf634d5a59add524f44d7b --- /dev/null +++ b/maze/task4/maps/level_step9/question/62.txt @@ -0,0 +1 @@ +LLLLRRUDR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/63.txt b/maze/task4/maps/level_step9/question/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dea167265ceda1e5721bf92be35c960da20ca68 --- /dev/null +++ b/maze/task4/maps/level_step9/question/63.txt @@ -0,0 +1 @@ +RLUDUDRUL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/64.txt b/maze/task4/maps/level_step9/question/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c1b5b2d4dc212f64d1c9d30f5717e1d69c3aa43 --- /dev/null +++ b/maze/task4/maps/level_step9/question/64.txt @@ -0,0 +1 @@ +LLUDDDURD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/65.txt b/maze/task4/maps/level_step9/question/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..59abc1ff7b407335a414e54613e5c3b7571afdcd --- /dev/null +++ b/maze/task4/maps/level_step9/question/65.txt @@ -0,0 +1 @@ +RLDRRRULU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/66.txt b/maze/task4/maps/level_step9/question/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd1e3eab378cc754ba3102c01e252eb098469f45 --- /dev/null +++ b/maze/task4/maps/level_step9/question/66.txt @@ -0,0 +1 @@ +RLDLDURRR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/67.txt b/maze/task4/maps/level_step9/question/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..df66ee1b703d03fe8d7be789e5bd7ca575c566d9 --- /dev/null +++ b/maze/task4/maps/level_step9/question/67.txt @@ -0,0 +1 @@ +UDUUUURRD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/68.txt b/maze/task4/maps/level_step9/question/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdbc599fc8dbec007e12e7c7d7f26b0dd9c7287c --- /dev/null +++ b/maze/task4/maps/level_step9/question/68.txt @@ -0,0 +1 @@ +RULRLRRDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/69.txt b/maze/task4/maps/level_step9/question/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..58efca81aaa3a9045938441ea7245d4e14db924b --- /dev/null +++ b/maze/task4/maps/level_step9/question/69.txt @@ -0,0 +1 @@ +DUURLRLRD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/7.txt b/maze/task4/maps/level_step9/question/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7d87faddfd27728f50eb8debd08ac9846a1d2ed --- /dev/null +++ b/maze/task4/maps/level_step9/question/7.txt @@ -0,0 +1 @@ +ULLRRRRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/70.txt b/maze/task4/maps/level_step9/question/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..8dad54a77fa9fa320bc924f4b415100cfa8b5730 --- /dev/null +++ b/maze/task4/maps/level_step9/question/70.txt @@ -0,0 +1 @@ +LUDUUDURL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/71.txt b/maze/task4/maps/level_step9/question/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..66549341bf39717e82a491ed658b44596376822c --- /dev/null +++ b/maze/task4/maps/level_step9/question/71.txt @@ -0,0 +1 @@ +LLDURRLRR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/72.txt b/maze/task4/maps/level_step9/question/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebdf0661f6c74b921cb2344260ba85936cd5676d --- /dev/null +++ b/maze/task4/maps/level_step9/question/72.txt @@ -0,0 +1 @@ +LLRDLURRL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/73.txt b/maze/task4/maps/level_step9/question/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..0df1885896241454e2530b2a382b428448f1dba1 --- /dev/null +++ b/maze/task4/maps/level_step9/question/73.txt @@ -0,0 +1 @@ +DLLUDRRUR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/74.txt b/maze/task4/maps/level_step9/question/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..827e36e5d630fd00fd5c889eb82e7b8ddff45736 --- /dev/null +++ b/maze/task4/maps/level_step9/question/74.txt @@ -0,0 +1 @@ +LLLDRLRLR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/75.txt b/maze/task4/maps/level_step9/question/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ec9b2ebd2ab29cc6b6e31dd7541644466ba3c47 --- /dev/null +++ b/maze/task4/maps/level_step9/question/75.txt @@ -0,0 +1 @@ +LDRDUURUD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/76.txt b/maze/task4/maps/level_step9/question/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7184cd997a9d4cc741f22138ba4418b7311b72c --- /dev/null +++ b/maze/task4/maps/level_step9/question/76.txt @@ -0,0 +1 @@ +RLRLUURDD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/77.txt b/maze/task4/maps/level_step9/question/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..68177a6d59ddc72a3821166e3b2eb503de7429b0 --- /dev/null +++ b/maze/task4/maps/level_step9/question/77.txt @@ -0,0 +1 @@ +UUUURRRLL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/78.txt b/maze/task4/maps/level_step9/question/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..a23c8f5566314e13e694e166484bcac6bf6140c5 --- /dev/null +++ b/maze/task4/maps/level_step9/question/78.txt @@ -0,0 +1 @@ +LURDUDULD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/79.txt b/maze/task4/maps/level_step9/question/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..0180fc412efe00d07acc9044b03a1d9d9d879a11 --- /dev/null +++ b/maze/task4/maps/level_step9/question/79.txt @@ -0,0 +1 @@ +DLURURLDL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/8.txt b/maze/task4/maps/level_step9/question/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..54684887303bb4674502bd7346118c16ad026edb --- /dev/null +++ b/maze/task4/maps/level_step9/question/8.txt @@ -0,0 +1 @@ +LUUDUDURD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/80.txt b/maze/task4/maps/level_step9/question/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..730a157b50ed18eedaffa0d63376a85751b68125 --- /dev/null +++ b/maze/task4/maps/level_step9/question/80.txt @@ -0,0 +1 @@ +RRULLUDRD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/81.txt b/maze/task4/maps/level_step9/question/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbd8c4513a21aa1af6e611eb8432d9157cb82560 --- /dev/null +++ b/maze/task4/maps/level_step9/question/81.txt @@ -0,0 +1 @@ +DRDLUUUUR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/82.txt b/maze/task4/maps/level_step9/question/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee80b7825d954137f2a3045403065a2a9ecae0ed --- /dev/null +++ b/maze/task4/maps/level_step9/question/82.txt @@ -0,0 +1 @@ +UUDURUDLU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/83.txt b/maze/task4/maps/level_step9/question/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..962ac51d57d95f983ba65c14293ec1d98302ee23 --- /dev/null +++ b/maze/task4/maps/level_step9/question/83.txt @@ -0,0 +1 @@ +LLULRLUDR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/84.txt b/maze/task4/maps/level_step9/question/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6412599a6001aa207a2408f8abdba0d347b7a713 --- /dev/null +++ b/maze/task4/maps/level_step9/question/84.txt @@ -0,0 +1 @@ +URDUURRDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/85.txt b/maze/task4/maps/level_step9/question/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d5e3617179e2a18b42e3821121b3e6d3ad352a9 --- /dev/null +++ b/maze/task4/maps/level_step9/question/85.txt @@ -0,0 +1 @@ +ULRLLLDRR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/86.txt b/maze/task4/maps/level_step9/question/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..65d917f0c6113a74e9bfcef1a3ecf93c054a59ba --- /dev/null +++ b/maze/task4/maps/level_step9/question/86.txt @@ -0,0 +1 @@ +URRLDLURD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/87.txt b/maze/task4/maps/level_step9/question/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..9060eaadd328b751eb7e3a6d43c1a39948f7f381 --- /dev/null +++ b/maze/task4/maps/level_step9/question/87.txt @@ -0,0 +1 @@ +DRDURULRU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/88.txt b/maze/task4/maps/level_step9/question/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3ca7cca7d7f515920ced414de042ba30ddaf8db --- /dev/null +++ b/maze/task4/maps/level_step9/question/88.txt @@ -0,0 +1 @@ +LUDLUURRD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/89.txt b/maze/task4/maps/level_step9/question/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..8970277b9b32e31569fe6b88711abd837152fbab --- /dev/null +++ b/maze/task4/maps/level_step9/question/89.txt @@ -0,0 +1 @@ +RRLDRDLUU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/9.txt b/maze/task4/maps/level_step9/question/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..639d1f0e6d67e7361457b1401fc389477af3ee18 --- /dev/null +++ b/maze/task4/maps/level_step9/question/9.txt @@ -0,0 +1 @@ +URLRLRUDL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/90.txt b/maze/task4/maps/level_step9/question/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..97d0bad234ca875e7ca59771671399a9ec8c52d3 --- /dev/null +++ b/maze/task4/maps/level_step9/question/90.txt @@ -0,0 +1 @@ +LULLRLRDD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/91.txt b/maze/task4/maps/level_step9/question/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..8eef0d92387564ae7e746db1ccc123f1d795591d --- /dev/null +++ b/maze/task4/maps/level_step9/question/91.txt @@ -0,0 +1 @@ +LDDUDUDRU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/92.txt b/maze/task4/maps/level_step9/question/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..5363e87da31f3cf7e58d9f6434350bdb90fa310e --- /dev/null +++ b/maze/task4/maps/level_step9/question/92.txt @@ -0,0 +1 @@ +RLLLDRDRR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/93.txt b/maze/task4/maps/level_step9/question/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b79864dd194ad49b2081b1704d53d7ca0003dd9 --- /dev/null +++ b/maze/task4/maps/level_step9/question/93.txt @@ -0,0 +1 @@ +DLUDUDRLD \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/94.txt b/maze/task4/maps/level_step9/question/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..386284200146a20e728e1dfe156febbf028770c5 --- /dev/null +++ b/maze/task4/maps/level_step9/question/94.txt @@ -0,0 +1 @@ +ULRRDRUDU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/95.txt b/maze/task4/maps/level_step9/question/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..00bc655340862b4b0214e26c02c7b85b3ea5e722 --- /dev/null +++ b/maze/task4/maps/level_step9/question/95.txt @@ -0,0 +1 @@ +LLULDDDUR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/96.txt b/maze/task4/maps/level_step9/question/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..70a4f7d909c96b6b0e5046d921b936b588995333 --- /dev/null +++ b/maze/task4/maps/level_step9/question/96.txt @@ -0,0 +1 @@ +LRLRRUULR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/97.txt b/maze/task4/maps/level_step9/question/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..419d04eacb7f03378b3ef97fb53dc3eb5feaf111 --- /dev/null +++ b/maze/task4/maps/level_step9/question/97.txt @@ -0,0 +1 @@ +LRDUDULRL \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/98.txt b/maze/task4/maps/level_step9/question/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..c513a192531e44f47dba28a7f0ad3736a3b734a6 --- /dev/null +++ b/maze/task4/maps/level_step9/question/98.txt @@ -0,0 +1 @@ +DDULRDLRU \ No newline at end of file diff --git a/maze/task4/maps/level_step9/question/99.txt b/maze/task4/maps/level_step9/question/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..84a81a57f4c65e2e48a2ea07c4e68f8cda80900f --- /dev/null +++ b/maze/task4/maps/level_step9/question/99.txt @@ -0,0 +1 @@ +LLRLDDLRR \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/0.txt b/maze/task4/maps/level_step9/special_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..bee63489d14a3355b68117368eea2af833311b2f --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/0.txt @@ -0,0 +1,5 @@ +_____ +_#___ +____# +_#@__ +*____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/1.txt b/maze/task4/maps/level_step9/special_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..64a0bc24c1753678c220ed09130cb94b24707ad4 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/1.txt @@ -0,0 +1,5 @@ +__@__ +#__#_ +_____ +____# +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/10.txt b/maze/task4/maps/level_step9/special_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..edf48415345ac6a4064c02465f0bdfd42b134919 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/10.txt @@ -0,0 +1,5 @@ +___#_ +__@__ +_____ +_#__* +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/11.txt b/maze/task4/maps/level_step9/special_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8c44493d7cb96d8e61b90aa0f064e7a1ad978f3 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/11.txt @@ -0,0 +1,5 @@ +_____ +_#_#_ +___#_ +_#___ +*@_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/12.txt b/maze/task4/maps/level_step9/special_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..908f4314979a348d097345fdf210bd7224d335f8 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/12.txt @@ -0,0 +1,5 @@ +__#_# +_____ +_#___ +__@__ +_*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/13.txt b/maze/task4/maps/level_step9/special_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f7ac21c7ff26e68415cbd4ccb8627759277fa46 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/13.txt @@ -0,0 +1,5 @@ +#___* +__##_ +___#_ +@____ +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/14.txt b/maze/task4/maps/level_step9/special_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e0ddf89ac03e81ea86e73ab11b1ba85598c4849 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/14.txt @@ -0,0 +1,5 @@ +__#@_ +__#*_ +_____ +#__#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/15.txt b/maze/task4/maps/level_step9/special_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..f57955f2bd918fd70441ebbee41788dda5a02521 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/15.txt @@ -0,0 +1,5 @@ +_____ +#___@ +_____ +__#__ +__*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/16.txt b/maze/task4/maps/level_step9/special_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ef8c6c90c43a36a8d8ab69d756c9b6b8e0cdcc --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/16.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +__@## +*__#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/17.txt b/maze/task4/maps/level_step9/special_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..421b1f486997696c08ed3f1bba41e2f311d6dab2 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/17.txt @@ -0,0 +1,5 @@ +_#_#* +_____ +___@_ +__#__ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/18.txt b/maze/task4/maps/level_step9/special_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc0af769dc2c16a76ecb668e97cca5186d8b8ff5 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/18.txt @@ -0,0 +1,5 @@ +__#__ +_____ +#_#@_ +__*#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/19.txt b/maze/task4/maps/level_step9/special_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a5c2ec057b19a087016bd61d8dd5c9d4e84df1 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/19.txt @@ -0,0 +1,5 @@ +##__# +___## +____# +_*___ +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/2.txt b/maze/task4/maps/level_step9/special_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb8b69e67cc2362a1309fad1b7a1373fcc6a2ea6 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/2.txt @@ -0,0 +1,5 @@ +_____ +#_### +_____ +@#_*_ +##__# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/20.txt b/maze/task4/maps/level_step9/special_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..42987cf8aa4bc39bc4a012cb7113b3af81634ca1 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/20.txt @@ -0,0 +1,5 @@ +_____ +____# +___#@ +_#___ +__*_# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/21.txt b/maze/task4/maps/level_step9/special_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..55973d6eccbbd89d2c4dd9b68a9de01e9ecf2685 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/21.txt @@ -0,0 +1,5 @@ +_____ +___@_ +____# +#____ +____* \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/22.txt b/maze/task4/maps/level_step9/special_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5c93cfa1fd6354f1ab740f85d5e956702a56048 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/22.txt @@ -0,0 +1,5 @@ +_#*__ +____@ +_#___ +#____ +#_### \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/23.txt b/maze/task4/maps/level_step9/special_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..e046ed64e5c845adb2ef9486019ba92abcae7dbc --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/23.txt @@ -0,0 +1,5 @@ +__*__ +_#__# +_____ +@_##_ +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/24.txt b/maze/task4/maps/level_step9/special_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..eda3e43552eb1d24ba587693364a6e45aada62ec --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/24.txt @@ -0,0 +1,5 @@ +*@##_ +__#__ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/25.txt b/maze/task4/maps/level_step9/special_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..667de56b26576b5c1e594c4993b5bf8401b94f5b --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/25.txt @@ -0,0 +1,5 @@ +_____ +#@__# +#_*__ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/26.txt b/maze/task4/maps/level_step9/special_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..da1d5c68671fc3af913da13e82afbe0564bcb465 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/26.txt @@ -0,0 +1,5 @@ +__#__ +__##_ +_##__ +_#@_# +_*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/27.txt b/maze/task4/maps/level_step9/special_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..e212030bc714cde9a61db738a3f5b8a90daa6f1e --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/27.txt @@ -0,0 +1,5 @@ +__#__ +_@__# +__#_# +___#_ +_#_*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/28.txt b/maze/task4/maps/level_step9/special_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2618dc8eed0ba1366845232792128222b39307a --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/28.txt @@ -0,0 +1,5 @@ +____# +____# +____@ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/29.txt b/maze/task4/maps/level_step9/special_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..f20277c28044e5842e40415790a6dc7cacccb639 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/29.txt @@ -0,0 +1,5 @@ +_____ +@#___ +___#_ +_##__ +*____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/3.txt b/maze/task4/maps/level_step9/special_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..136a38974156f6ca7aa4ffcb03b50d30518bbef1 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/3.txt @@ -0,0 +1,5 @@ +_*_@# +_#___ +___#_ +__#_# +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/30.txt b/maze/task4/maps/level_step9/special_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..decfc28d320d3ac4be3bd6ffd072394d383d05c6 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/30.txt @@ -0,0 +1,5 @@ +_____ +__#__ +____# +##__* +__#@# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/31.txt b/maze/task4/maps/level_step9/special_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..d261c5824dfb3e5d8a7a1937e63e33514659c73f --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/31.txt @@ -0,0 +1,5 @@ +___#_ +##_## +_##__ +@____ +_#__* \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/32.txt b/maze/task4/maps/level_step9/special_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a4fc05ffa3df75dfb9c3c98a349a779e321dc9a --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/32.txt @@ -0,0 +1,5 @@ +*__## +_____ +_____ +__@#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/33.txt b/maze/task4/maps/level_step9/special_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7089811a70fef7c2fe19940886b812d197f9be7 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/33.txt @@ -0,0 +1,5 @@ +___#_ +_##_# +____@ +____# +___*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/34.txt b/maze/task4/maps/level_step9/special_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..36a9549c8309bb534145454a5c223d48f132c7e9 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/34.txt @@ -0,0 +1,5 @@ +_____ +_____ +__*## +@___# +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/35.txt b/maze/task4/maps/level_step9/special_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a324c3fd52ad76e773e0621cde09c0001a1295d9 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/35.txt @@ -0,0 +1,5 @@ +___*# +____# +_____ +@##_# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/36.txt b/maze/task4/maps/level_step9/special_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..50e0715303cf2fc01c326b54e82959e885aa66b4 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/36.txt @@ -0,0 +1,5 @@ +_____ +__#*_ +#___# +__@__ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/37.txt b/maze/task4/maps/level_step9/special_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..e58444379dfd16686fafb8129616984c264b7171 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/37.txt @@ -0,0 +1,5 @@ +#____ +_#_@_ +#__#_ +#____ +#__*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/38.txt b/maze/task4/maps/level_step9/special_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..53d4c0962eaccd88b92dd3b5ef8b880e924f0549 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/38.txt @@ -0,0 +1,5 @@ +__#__ +__##* +___#_ +___#_ +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/39.txt b/maze/task4/maps/level_step9/special_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4993eb3927183345b454ae613257b8e640360fe --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/39.txt @@ -0,0 +1,5 @@ +____* +@____ +____# +_____ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/4.txt b/maze/task4/maps/level_step9/special_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..502e775fe3e2fca70814b0024f0c4843bcb1d419 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/4.txt @@ -0,0 +1,5 @@ +____@ +_____ +_*___ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/40.txt b/maze/task4/maps/level_step9/special_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..41eec7eb728e2cd8d55208726489bf175bd3342f --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/40.txt @@ -0,0 +1,5 @@ +_____ +##*__ +#____ +@____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/41.txt b/maze/task4/maps/level_step9/special_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..566751fb311af38ac73d78153cd77dff21488226 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/41.txt @@ -0,0 +1,5 @@ +#_#__ +_____ +_@___ +_#_*# +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/42.txt b/maze/task4/maps/level_step9/special_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6ddee2f75310af21a2735b4d03e1e382eb4fab9 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/42.txt @@ -0,0 +1,5 @@ +__### +_____ +__@__ +___## +##*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/43.txt b/maze/task4/maps/level_step9/special_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..c229d5f2ebed8676850e04df8ecb2d7dbe792fc5 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/43.txt @@ -0,0 +1,5 @@ +__@_* +__#__ +_____ +_____ +#____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/44.txt b/maze/task4/maps/level_step9/special_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..18999af338294410b52c3f3928326930e8c1c20a --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/44.txt @@ -0,0 +1,5 @@ +___#_ +*____ +_#__# +_@_#_ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/45.txt b/maze/task4/maps/level_step9/special_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..603a1e7e54e20c2cc8b334fdc490684e14c3e285 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/45.txt @@ -0,0 +1,5 @@ +__*__ +___#@ +_#___ +_#__# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/46.txt b/maze/task4/maps/level_step9/special_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..36fc9a723467d43fc642ed71e32ebd67b0723a45 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/46.txt @@ -0,0 +1,5 @@ +__#__ +@#___ +_____ +#_#__ +_*#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/47.txt b/maze/task4/maps/level_step9/special_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3b1bdb35036f0ad4723f736503b576126387c3e --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/47.txt @@ -0,0 +1,5 @@ +_____ +_____ +_*#__ +##_@_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/48.txt b/maze/task4/maps/level_step9/special_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c59ace18afe397442fdf6c4f5999cf5b88515b3 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/48.txt @@ -0,0 +1,5 @@ +_##_@ +#_#_# +_____ +__*__ +_##__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/49.txt b/maze/task4/maps/level_step9/special_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..da75b9de1c2c1d8e3cf3c041f7df4bcb16aa3b19 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/49.txt @@ -0,0 +1,5 @@ +#____ +#@*#_ +_____ +##__# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/5.txt b/maze/task4/maps/level_step9/special_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da829c21a8c7e84d7331b0713ca8ff4103eb23a --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/5.txt @@ -0,0 +1,5 @@ +_#___ +__#__ +___#_ +_@___ +___*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/50.txt b/maze/task4/maps/level_step9/special_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccf93a9f1e31f62347e73fcc6f8b132ed9094ae0 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/50.txt @@ -0,0 +1,5 @@ +____# +_____ +_#___ +__#__ +_#_@* \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/51.txt b/maze/task4/maps/level_step9/special_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3555df6436cbacb9a42342cc97483570c008d61 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/51.txt @@ -0,0 +1,5 @@ +*@#__ +_____ +_#_#_ +_____ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/52.txt b/maze/task4/maps/level_step9/special_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..c94f50a33266971702004503e31304a0df1d938e --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/52.txt @@ -0,0 +1,5 @@ +_____ +*@##_ +_____ +___## +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/53.txt b/maze/task4/maps/level_step9/special_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..d12fc1b942f2a7bc3156f95f0e25211ddb00df6b --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/53.txt @@ -0,0 +1,5 @@ +#*#__ +#@#__ +#_##_ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/54.txt b/maze/task4/maps/level_step9/special_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5866f4595b34cb425b9a8a03dc3c80b285640a1 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/54.txt @@ -0,0 +1,5 @@ +_____ +*____ +_____ +___## +#@__# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/55.txt b/maze/task4/maps/level_step9/special_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..a8d3344a9eaa3df9ae9ac63b428d05e41ef88d1e --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/55.txt @@ -0,0 +1,5 @@ +__*#_ +_____ +#_#@_ +_#_#_ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/56.txt b/maze/task4/maps/level_step9/special_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2493ba8c4d881ec9d93a1ca87b6411b2fbcc8c4f --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/56.txt @@ -0,0 +1,5 @@ +____@ +_*___ +_#__# +_____ +#__#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/57.txt b/maze/task4/maps/level_step9/special_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..77f56834a9065a20a11110d7b4e1069a846ff453 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/57.txt @@ -0,0 +1,5 @@ +__#__ +__#_@ +_*#__ +#____ +_#__# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/58.txt b/maze/task4/maps/level_step9/special_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..12dbc939bfcc060a05984cb19276832fda6b5e63 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/58.txt @@ -0,0 +1,5 @@ +#*___ +_@##_ +_____ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/59.txt b/maze/task4/maps/level_step9/special_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dc4339baf9608e27936e5303d203a8c77ab9264 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/59.txt @@ -0,0 +1,5 @@ +_____ +_#_@_ +_*___ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/6.txt b/maze/task4/maps/level_step9/special_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..41d6608dadf4400948e80f52837378cd3f1de656 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/6.txt @@ -0,0 +1,5 @@ +____# +#*___ +__@#_ +____# +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/60.txt b/maze/task4/maps/level_step9/special_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9d32ec97dca5117fac0245541e8052a96e54867 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/60.txt @@ -0,0 +1,5 @@ +#_@__ +#___* +__#__ +__#__ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/61.txt b/maze/task4/maps/level_step9/special_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..80fde912cd99284d3f3773492a2e1631c4904fc8 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/61.txt @@ -0,0 +1,5 @@ +_@_#_ +__*__ +_____ +_#_#_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/62.txt b/maze/task4/maps/level_step9/special_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fa48a73df607def45b79bcf1798656a8f58e52a --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/62.txt @@ -0,0 +1,5 @@ +*_#__ +__#_# +__#__ +_##_# +____@ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/63.txt b/maze/task4/maps/level_step9/special_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..41eb04220607ed25e7c3a5214e2315e2958d13dd --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/63.txt @@ -0,0 +1,5 @@ +___#_ +_____ +___#_ +__#_# +_*_@_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/64.txt b/maze/task4/maps/level_step9/special_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0c241fe74be1b4ccb9a3766b4b7e12ba9a9aeb3 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/64.txt @@ -0,0 +1,5 @@ +_##__ +__@__ +_____ +___*_ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/65.txt b/maze/task4/maps/level_step9/special_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d0ec4e54ecc97178acc246e7d3d6108f33b2c11 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/65.txt @@ -0,0 +1,5 @@ +_#___ +#___# +_____ +_@___ +____* \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/66.txt b/maze/task4/maps/level_step9/special_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..659eea688502e85f0be77475b9c668018c233e47 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/66.txt @@ -0,0 +1,5 @@ +#___# +_#@*# +#____ +_____ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/67.txt b/maze/task4/maps/level_step9/special_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d7f8467dbe2d58919d6b5e2b10ac4bc9549c3b1 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/67.txt @@ -0,0 +1,5 @@ +__### +_____ +_##__ +____# +@*___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/68.txt b/maze/task4/maps/level_step9/special_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcb3ffb34d0910e5615455931e27ccedd26c361c --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/68.txt @@ -0,0 +1,5 @@ +_#___ +@____ +#____ +_*___ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/69.txt b/maze/task4/maps/level_step9/special_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1ee50cf5f171c8bf1ff2097c57af6039b86c8cc --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/69.txt @@ -0,0 +1,5 @@ +__##_ +_#_@# +____# +_#_*# +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/7.txt b/maze/task4/maps/level_step9/special_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d685d5de6a286ad2d7139e570a84a8ba5804462 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/7.txt @@ -0,0 +1,5 @@ +__#*_ +__@__ +_#_#_ +##_#_ +#___# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/70.txt b/maze/task4/maps/level_step9/special_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f9572cc2911c9ce5b6d72399e40ec3aed7a55e4 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/70.txt @@ -0,0 +1,5 @@ +_____ +#_#__ +#_@#_ +_*___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/71.txt b/maze/task4/maps/level_step9/special_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..930c59f441e2cba1f2f01ed3a601fcf615464e4d --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/71.txt @@ -0,0 +1,5 @@ +__@_* +__##_ +_##__ +_#___ +__#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/72.txt b/maze/task4/maps/level_step9/special_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..986fb3b3c7560c15a2f20f7f0891bf40119c8f4c --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/72.txt @@ -0,0 +1,5 @@ +___@_ +###_# +_##__ +#____ +__#*_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/73.txt b/maze/task4/maps/level_step9/special_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e5fce6811c2c824bbd4174f8cb14966f6bf92b0 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/73.txt @@ -0,0 +1,5 @@ +##___ +___#_ +__@__ +_*___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/74.txt b/maze/task4/maps/level_step9/special_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c3dd42e16454f4d02c4ed764e0174b44521b439 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/74.txt @@ -0,0 +1,5 @@ +#___# +__#__ +_____ +*#__@ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/75.txt b/maze/task4/maps/level_step9/special_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..4743758d365e554a2d43d3719da63dd01e165a97 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/75.txt @@ -0,0 +1,5 @@ +_____ +_#*__ +#_@__ +_____ +_#_#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/76.txt b/maze/task4/maps/level_step9/special_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e88d942c35a39e83672b15e7e85c8d1244ec787 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/76.txt @@ -0,0 +1,5 @@ +_____ +_____ +@___# +*#___ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/77.txt b/maze/task4/maps/level_step9/special_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..182b09ef1a1c5994f3d7fb596bd4a62d4770d069 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/77.txt @@ -0,0 +1,5 @@ +_____ +___*_ +___#_ +__#__ +_@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/78.txt b/maze/task4/maps/level_step9/special_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..26903a9e14dbdf3366e6dc16caa326c8258ac333 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/78.txt @@ -0,0 +1,5 @@ +_____ +____@ +_##__ +_#___ +#_*__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/79.txt b/maze/task4/maps/level_step9/special_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b2fa48cf7e2a2c2799e159269dc38ccbf798dc4 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/79.txt @@ -0,0 +1,5 @@ +____* +__@#_ +___## +_____ +___#_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/8.txt b/maze/task4/maps/level_step9/special_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6c796052f0100022fe2c081e835f47b1f55424b --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/8.txt @@ -0,0 +1,5 @@ +___*_ +#____ +___#_ +##_#_ +_@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/80.txt b/maze/task4/maps/level_step9/special_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b7fdbaa85d2830e9233f1a3bc9343d5e628273c --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/80.txt @@ -0,0 +1,5 @@ +#____ +__#__ +_____ +#_#__ +*@___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/81.txt b/maze/task4/maps/level_step9/special_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..f559562a915005f92380b8b08ae52477e2fb6c59 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/81.txt @@ -0,0 +1,5 @@ +__#__ +__*__ +_@___ +__#__ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/82.txt b/maze/task4/maps/level_step9/special_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a48fc447b762ba64f2761ea190d6de97801e18e --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/82.txt @@ -0,0 +1,5 @@ +*#___ +_____ +_____ +___#_ +@#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/83.txt b/maze/task4/maps/level_step9/special_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..a685c4eab8bbd106745faa06bc4e2dc96cc50304 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/83.txt @@ -0,0 +1,5 @@ +_##__ +#__#_ +_____ +*____ +__#@# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/84.txt b/maze/task4/maps/level_step9/special_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c9601a83f53ba21fe8ba748ef2d6537ad4506e1 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/84.txt @@ -0,0 +1,5 @@ +___#_ +_____ +_*##_ +__##_ +_@_## \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/85.txt b/maze/task4/maps/level_step9/special_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..f64a2eec83e5fd88906e2af5080f59935c77609f --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/85.txt @@ -0,0 +1,5 @@ +##_#_ +_#_#_ +____@ +___#* +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/86.txt b/maze/task4/maps/level_step9/special_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c1be08220b918d1cecd505e2c652460651e1a6f --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/86.txt @@ -0,0 +1,5 @@ +__##_ +_#___ +@_*#_ +##___ +##___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/87.txt b/maze/task4/maps/level_step9/special_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f7b80f1bf5e5a494f1f26058b613284e074f097 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/87.txt @@ -0,0 +1,5 @@ +#____ +__##_ +#*@__ +#____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/88.txt b/maze/task4/maps/level_step9/special_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddc0a0fb8d2542f38e02f223f821fbaf3c74f18b --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/88.txt @@ -0,0 +1,5 @@ +__*#_ +##___ +###@_ +##___ +_#___ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/89.txt b/maze/task4/maps/level_step9/special_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d06c7c569786ef11238b14970b1012201f2f946 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/89.txt @@ -0,0 +1,5 @@ +_##__ +@#_*_ +#____ +_____ +#_#__ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/9.txt b/maze/task4/maps/level_step9/special_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd1e590ddb6ff33ca670294c06a664f81f9a97ca --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/9.txt @@ -0,0 +1,5 @@ +##__# +#__*# +#@#_# +_#___ +####_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/90.txt b/maze/task4/maps/level_step9/special_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..57738a9bb9f40685663c9f35d8275e4a474e95cd --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/90.txt @@ -0,0 +1,5 @@ +__#__ +__#_@ +____# +*#___ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/91.txt b/maze/task4/maps/level_step9/special_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd253a282f1d58bb09da208dd609a1ec662aa09e --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/91.txt @@ -0,0 +1,5 @@ +_#_#_ +_@___ +*____ +__#__ +___## \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/92.txt b/maze/task4/maps/level_step9/special_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..089b8cfcdb88fb11852bcc078905b61d4efcf5da --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/92.txt @@ -0,0 +1,5 @@ +_#@_# +_#___ +_*___ +____# +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/93.txt b/maze/task4/maps/level_step9/special_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..e63c3446725c839b51e996856e27af1b6aa9c044 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/93.txt @@ -0,0 +1,5 @@ +#____ +_@_#_ +_*#__ +_____ +__##_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/94.txt b/maze/task4/maps/level_step9/special_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..158d7ee4ab93123ae7c5b49de8938bddc3b6193d --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/94.txt @@ -0,0 +1,5 @@ +#____ +_#___ +*____ +____# +__@## \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/95.txt b/maze/task4/maps/level_step9/special_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..59256f979e453f63f59cf72648ec67b5e69664c8 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/95.txt @@ -0,0 +1,5 @@ +*#__# +_____ +___@# +##___ +__#_# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/96.txt b/maze/task4/maps/level_step9/special_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..65bf53af47cfd6f38391eedf5cd3c80c6af4c98d --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/96.txt @@ -0,0 +1,5 @@ +#____ +###__ +_*___ +_##_# +_#_@_ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/97.txt b/maze/task4/maps/level_step9/special_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..59bf883a805c94d2453febf4cb9fa47b20264bac --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/97.txt @@ -0,0 +1,5 @@ +*@___ +#____ +___#_ +_____ +____# \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/98.txt b/maze/task4/maps/level_step9/special_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..40e758a50dc10f059a4bf203f3e861b891a0a976 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/98.txt @@ -0,0 +1,5 @@ +#@#*_ +__#__ +_____ +#____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/special_text/99.txt b/maze/task4/maps/level_step9/special_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..dde4c4c3f39b7aca7754d070558b6b34235032b0 --- /dev/null +++ b/maze/task4/maps/level_step9/special_text/99.txt @@ -0,0 +1,5 @@ +_____ +*#__@ +__#__ +_____ +_____ \ No newline at end of file diff --git a/maze/task4/maps/level_step9/table/0.txt b/maze/task4/maps/level_step9/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d64928d4871d3ce3683989db51c865e1c04c50d7 --- /dev/null +++ b/maze/task4/maps/level_step9/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/1.txt b/maze/task4/maps/level_step9/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..78a92eca4efcf585b2c456d2615e3395e42b50b5 --- /dev/null +++ b/maze/task4/maps/level_step9/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step9/table/10.txt b/maze/task4/maps/level_step9/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0211bef6e0797f5185afb256ab03b4c8aaff905 --- /dev/null +++ b/maze/task4/maps/level_step9/table/10.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step9/table/11.txt b/maze/task4/maps/level_step9/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b3afe75445b039b0bbe2685c0cd278cd9b59674 --- /dev/null +++ b/maze/task4/maps/level_step9/table/11.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/12.txt b/maze/task4/maps/level_step9/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..946812b87c7105aa6fbfdf6be1118cf04d91e848 --- /dev/null +++ b/maze/task4/maps/level_step9/table/12.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/13.txt b/maze/task4/maps/level_step9/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..26e3f4be757a49f31a521182e37ac25823b953eb --- /dev/null +++ b/maze/task4/maps/level_step9/table/13.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/14.txt b/maze/task4/maps/level_step9/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..74c766497f20046fdef1a548c283f61b3c2045b6 --- /dev/null +++ b/maze/task4/maps/level_step9/table/14.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/15.txt b/maze/task4/maps/level_step9/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2ecfcc4b5fe86a6ed7a4113791bbbd3ab0ed872 --- /dev/null +++ b/maze/task4/maps/level_step9/table/15.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step9/table/16.txt b/maze/task4/maps/level_step9/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdaadcc660885d8cc036c56eb3d8c6166734d251 --- /dev/null +++ b/maze/task4/maps/level_step9/table/16.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/17.txt b/maze/task4/maps/level_step9/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..51cfae6b5cab1c10e4372fc6b0381b6e816248d3 --- /dev/null +++ b/maze/task4/maps/level_step9/table/17.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/18.txt b/maze/task4/maps/level_step9/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..a988766c4a28498fcf3f8af21390c2e490902b19 --- /dev/null +++ b/maze/task4/maps/level_step9/table/18.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/19.txt b/maze/task4/maps/level_step9/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..dddc27c4db2023865999858bf4fdbe566b5266f7 --- /dev/null +++ b/maze/task4/maps/level_step9/table/19.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step9/table/2.txt b/maze/task4/maps/level_step9/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f99d98edf4ae605970fc4b76df4dfb6d92d826a --- /dev/null +++ b/maze/task4/maps/level_step9/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/20.txt b/maze/task4/maps/level_step9/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..60f96585de5bee9fac2aca2fcaa5747c6122c86d --- /dev/null +++ b/maze/task4/maps/level_step9/table/20.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | diff --git a/maze/task4/maps/level_step9/table/21.txt b/maze/task4/maps/level_step9/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bdb7f9d38c363607edebca795b8efda2fd58943 --- /dev/null +++ b/maze/task4/maps/level_step9/table/21.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task4/maps/level_step9/table/22.txt b/maze/task4/maps/level_step9/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8dceda9dba417355d034305bcf2245c25440516 --- /dev/null +++ b/maze/task4/maps/level_step9/table/22.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | diff --git a/maze/task4/maps/level_step9/table/23.txt b/maze/task4/maps/level_step9/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ca102ff2485e0f5cb4d2bad8201718bf23bdae0 --- /dev/null +++ b/maze/task4/maps/level_step9/table/23.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | # | # | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step9/table/24.txt b/maze/task4/maps/level_step9/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bbb681c3461cff5d1235131dc0199e120a5cbb7 --- /dev/null +++ b/maze/task4/maps/level_step9/table/24.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/25.txt b/maze/task4/maps/level_step9/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2ecfa107864966d52a237d3a7578f7c4255db56 --- /dev/null +++ b/maze/task4/maps/level_step9/table/25.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/26.txt b/maze/task4/maps/level_step9/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccef35792a34dfb8077ced0413e8fd5e5a1e3ce6 --- /dev/null +++ b/maze/task4/maps/level_step9/table/26.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | # | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/27.txt b/maze/task4/maps/level_step9/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..98c2a1b8bd55d6d602fdbc5094f9b59261091d50 --- /dev/null +++ b/maze/task4/maps/level_step9/table/27.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | # | _ | * | _ | diff --git a/maze/task4/maps/level_step9/table/28.txt b/maze/task4/maps/level_step9/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c9bab87ba1e5eb43bd853c1cc6230e504bad346 --- /dev/null +++ b/maze/task4/maps/level_step9/table/28.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/29.txt b/maze/task4/maps/level_step9/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb39c399aac013faa697673e59a2a3f8a4cfa33c --- /dev/null +++ b/maze/task4/maps/level_step9/table/29.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/3.txt b/maze/task4/maps/level_step9/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d7c8cb20526a94e627d8c3220c4df7398698e2c --- /dev/null +++ b/maze/task4/maps/level_step9/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/30.txt b/maze/task4/maps/level_step9/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..123d4b3632cea7482c223d95fb9e1e274c6ec94f --- /dev/null +++ b/maze/task4/maps/level_step9/table/30.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | # | _ | _ | * | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task4/maps/level_step9/table/31.txt b/maze/task4/maps/level_step9/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..a396dc26b557b0843abd692365b99c2aa46debd3 --- /dev/null +++ b/maze/task4/maps/level_step9/table/31.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | diff --git a/maze/task4/maps/level_step9/table/32.txt b/maze/task4/maps/level_step9/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e596765f71f84682ad2c57d6303627b783f01b2 --- /dev/null +++ b/maze/task4/maps/level_step9/table/32.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/33.txt b/maze/task4/maps/level_step9/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1a7094f979be81075a237cc14688b6b2dc15a22 --- /dev/null +++ b/maze/task4/maps/level_step9/table/33.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step9/table/34.txt b/maze/task4/maps/level_step9/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d6f7b8dbbaf356a8e1c44e000c508d36f7aee29 --- /dev/null +++ b/maze/task4/maps/level_step9/table/34.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step9/table/35.txt b/maze/task4/maps/level_step9/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f18b432ca7b113f763e08ee6dc6532333bf5715 --- /dev/null +++ b/maze/task4/maps/level_step9/table/35.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/36.txt b/maze/task4/maps/level_step9/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..07f99a8a1d5fc503d84c1acd816d73e8d8b8169b --- /dev/null +++ b/maze/task4/maps/level_step9/table/36.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step9/table/37.txt b/maze/task4/maps/level_step9/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..adabe4db6cc43662fb78296b6404b89fd88c9140 --- /dev/null +++ b/maze/task4/maps/level_step9/table/37.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step9/table/38.txt b/maze/task4/maps/level_step9/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3846e4c3e55d0e44804705a43989b2e23cf8b0e0 --- /dev/null +++ b/maze/task4/maps/level_step9/table/38.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step9/table/39.txt b/maze/task4/maps/level_step9/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..b56378bb0df60965b7dfd00ff119179cb6064d8e --- /dev/null +++ b/maze/task4/maps/level_step9/table/39.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/4.txt b/maze/task4/maps/level_step9/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a319701482090faefd8ce684edd4b3d512e35984 --- /dev/null +++ b/maze/task4/maps/level_step9/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/40.txt b/maze/task4/maps/level_step9/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9ef79f346b85c5c0afaa1a6c9c8086066b6bf92 --- /dev/null +++ b/maze/task4/maps/level_step9/table/40.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/41.txt b/maze/task4/maps/level_step9/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..a69ba0fd6e108e65971aeec453ee42c21f1cc200 --- /dev/null +++ b/maze/task4/maps/level_step9/table/41.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/42.txt b/maze/task4/maps/level_step9/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fca2c0c17f61f58dcf6b6299e1ce5c42eb799ce --- /dev/null +++ b/maze/task4/maps/level_step9/table/42.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | # | * | _ | _ | diff --git a/maze/task4/maps/level_step9/table/43.txt b/maze/task4/maps/level_step9/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..bba5c75ca3accaaa374a79977ffb21046bb28e7b --- /dev/null +++ b/maze/task4/maps/level_step9/table/43.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/44.txt b/maze/task4/maps/level_step9/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c84f8ab214954e351301e28bbcf9b11b55f9219 --- /dev/null +++ b/maze/task4/maps/level_step9/table/44.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | _ | @ | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/45.txt b/maze/task4/maps/level_step9/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..d93c12d4d3c8767ee85b5c67326c56e46897b61b --- /dev/null +++ b/maze/task4/maps/level_step9/table/45.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | # | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/46.txt b/maze/task4/maps/level_step9/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..52e9ac1f1c0a84951c51f3ae469355badac706b3 --- /dev/null +++ b/maze/task4/maps/level_step9/table/46.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | diff --git a/maze/task4/maps/level_step9/table/47.txt b/maze/task4/maps/level_step9/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..5af81234f05f77e8f6ca8fc2676ed5398e0570b4 --- /dev/null +++ b/maze/task4/maps/level_step9/table/47.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/48.txt b/maze/task4/maps/level_step9/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..af6f3d0d58ce7959a05c02d97ea91cdda147da66 --- /dev/null +++ b/maze/task4/maps/level_step9/table/48.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | @ | +| Row 2 | # | _ | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | diff --git a/maze/task4/maps/level_step9/table/49.txt b/maze/task4/maps/level_step9/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..aba73571fcfc3bae5e9941c21772f6fa26131013 --- /dev/null +++ b/maze/task4/maps/level_step9/table/49.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/5.txt b/maze/task4/maps/level_step9/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da45b1e61a5685cb46325f1a7c0f88321df2ae --- /dev/null +++ b/maze/task4/maps/level_step9/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task4/maps/level_step9/table/50.txt b/maze/task4/maps/level_step9/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cd186e80b157cee5759440638299a74c844fc7a --- /dev/null +++ b/maze/task4/maps/level_step9/table/50.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | diff --git a/maze/task4/maps/level_step9/table/51.txt b/maze/task4/maps/level_step9/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a0815eef8fa94d279ec60f49d1f91ec6a6b1448 --- /dev/null +++ b/maze/task4/maps/level_step9/table/51.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/52.txt b/maze/task4/maps/level_step9/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dd5f124392cef09b6436e0d92078abe08988f34 --- /dev/null +++ b/maze/task4/maps/level_step9/table/52.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/53.txt b/maze/task4/maps/level_step9/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d5ee7e95f64becee9861bbaa79d15ef29571b16 --- /dev/null +++ b/maze/task4/maps/level_step9/table/53.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | _ | _ | +| Row 2 | # | @ | # | _ | _ | +| Row 3 | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step9/table/54.txt b/maze/task4/maps/level_step9/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..5211353be2c2c9fd8fa20c321775c20d316a7439 --- /dev/null +++ b/maze/task4/maps/level_step9/table/54.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | @ | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/55.txt b/maze/task4/maps/level_step9/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..766cd2a4b0ed7cd02c769b1d757140d50d77cc44 --- /dev/null +++ b/maze/task4/maps/level_step9/table/55.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/56.txt b/maze/task4/maps/level_step9/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..26fd629d59e84bd454ccb21756e73980f20dd67c --- /dev/null +++ b/maze/task4/maps/level_step9/table/56.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/57.txt b/maze/task4/maps/level_step9/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6647db1330aed2c4002abe3f7ae3882ef94c8e96 --- /dev/null +++ b/maze/task4/maps/level_step9/table/57.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/58.txt b/maze/task4/maps/level_step9/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4facf5f7b9bd004d8c1c5545d862b78a8ed747eb --- /dev/null +++ b/maze/task4/maps/level_step9/table/58.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/59.txt b/maze/task4/maps/level_step9/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..a944527c0bbc1386a4896c78deb1038293630f88 --- /dev/null +++ b/maze/task4/maps/level_step9/table/59.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step9/table/6.txt b/maze/task4/maps/level_step9/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bab2e689a20f88b807fbed2a5e977037f10ae75 --- /dev/null +++ b/maze/task4/maps/level_step9/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/60.txt b/maze/task4/maps/level_step9/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..00def527d41c997c53038f0a9dd2efdbfda5a2cf --- /dev/null +++ b/maze/task4/maps/level_step9/table/60.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | _ | _ | +| Row 2 | # | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/61.txt b/maze/task4/maps/level_step9/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..25a949c147d27e07c25bfdb4a30d6ab10cb65b36 --- /dev/null +++ b/maze/task4/maps/level_step9/table/61.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/62.txt b/maze/task4/maps/level_step9/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..66052c016a4f346ecda19ab98dc7c648f20de650 --- /dev/null +++ b/maze/task4/maps/level_step9/table/62.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task4/maps/level_step9/table/63.txt b/maze/task4/maps/level_step9/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4f755ea28afb5e6e48a15e8cfb37bdeaeed4990 --- /dev/null +++ b/maze/task4/maps/level_step9/table/63.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | _ | * | _ | @ | _ | diff --git a/maze/task4/maps/level_step9/table/64.txt b/maze/task4/maps/level_step9/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f61479e7d8140061c4b760334409912a1e6f628 --- /dev/null +++ b/maze/task4/maps/level_step9/table/64.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/65.txt b/maze/task4/maps/level_step9/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1278d25010ff27a783403263a4a2c870393ae901 --- /dev/null +++ b/maze/task4/maps/level_step9/table/65.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task4/maps/level_step9/table/66.txt b/maze/task4/maps/level_step9/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5da0ff14dc3fb5998a4a229eedca0c5f6ed590e --- /dev/null +++ b/maze/task4/maps/level_step9/table/66.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | @ | * | # | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/67.txt b/maze/task4/maps/level_step9/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ecc026866563890c833b56808b52ef0ba033281 --- /dev/null +++ b/maze/task4/maps/level_step9/table/67.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/68.txt b/maze/task4/maps/level_step9/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f575e7bb310e78ec5160e9e63197d56c1e2f7a67 --- /dev/null +++ b/maze/task4/maps/level_step9/table/68.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/69.txt b/maze/task4/maps/level_step9/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..0708888f0d6ce668a5779302ea68c75802ff5125 --- /dev/null +++ b/maze/task4/maps/level_step9/table/69.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/7.txt b/maze/task4/maps/level_step9/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eaf0dad0a556988412e655854d5bd210ad36a2e --- /dev/null +++ b/maze/task4/maps/level_step9/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/70.txt b/maze/task4/maps/level_step9/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4404e2781df99c6580eeb74e3cfdecd6a84dbe2 --- /dev/null +++ b/maze/task4/maps/level_step9/table/70.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/71.txt b/maze/task4/maps/level_step9/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..f629a7fc01107700c1b7bece7858243a5a0e356b --- /dev/null +++ b/maze/task4/maps/level_step9/table/71.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step9/table/72.txt b/maze/task4/maps/level_step9/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..780bc9b917389e8e48be62fd16dbc5927655b579 --- /dev/null +++ b/maze/task4/maps/level_step9/table/72.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | # | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | diff --git a/maze/task4/maps/level_step9/table/73.txt b/maze/task4/maps/level_step9/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..db68a4d37d6554ce78cbe7ef6c34f4a5afa11b33 --- /dev/null +++ b/maze/task4/maps/level_step9/table/73.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/74.txt b/maze/task4/maps/level_step9/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f84e4d842427a1dd1f7e68ec56e378ca12008eb --- /dev/null +++ b/maze/task4/maps/level_step9/table/74.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | # | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/75.txt b/maze/task4/maps/level_step9/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c5cd02d4849b9732bff70934bf3ea07e35f6b06 --- /dev/null +++ b/maze/task4/maps/level_step9/table/75.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | * | _ | _ | +| Row 3 | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/76.txt b/maze/task4/maps/level_step9/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a6b9654e17b3b50352be483d07a713827f110b --- /dev/null +++ b/maze/task4/maps/level_step9/table/76.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step9/table/77.txt b/maze/task4/maps/level_step9/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fb899cc097e94935ef92f986f60d0143565e241 --- /dev/null +++ b/maze/task4/maps/level_step9/table/77.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/78.txt b/maze/task4/maps/level_step9/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4a3d4a32feec93bd6ac7418221c3f0999354fbb --- /dev/null +++ b/maze/task4/maps/level_step9/table/78.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | diff --git a/maze/task4/maps/level_step9/table/79.txt b/maze/task4/maps/level_step9/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a64e850682e33895bc152ffe44465805ed1634 --- /dev/null +++ b/maze/task4/maps/level_step9/table/79.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task4/maps/level_step9/table/8.txt b/maze/task4/maps/level_step9/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..497f826729be29a0fd82e501b50af79afaa11b73 --- /dev/null +++ b/maze/task4/maps/level_step9/table/8.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/80.txt b/maze/task4/maps/level_step9/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb140437548e911164e6e17a7f26f5b480844df7 --- /dev/null +++ b/maze/task4/maps/level_step9/table/80.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | * | @ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/81.txt b/maze/task4/maps/level_step9/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbc9ddaf2074858668affdbcde650b2217fb948a --- /dev/null +++ b/maze/task4/maps/level_step9/table/81.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/82.txt b/maze/task4/maps/level_step9/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..88bda35ba160112dff20969fe1697ae01ee5ede6 --- /dev/null +++ b/maze/task4/maps/level_step9/table/82.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/83.txt b/maze/task4/maps/level_step9/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f1b9f6b9618952d063d82fe396f7509c45efb9e --- /dev/null +++ b/maze/task4/maps/level_step9/table/83.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task4/maps/level_step9/table/84.txt b/maze/task4/maps/level_step9/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..42832186e618184c9bb1e95a0445116db513404f --- /dev/null +++ b/maze/task4/maps/level_step9/table/84.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | # | # | _ | +| Row 5 | _ | @ | _ | # | # | diff --git a/maze/task4/maps/level_step9/table/85.txt b/maze/task4/maps/level_step9/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..752644e6113eda553503ebaff8d3027fecbf8798 --- /dev/null +++ b/maze/task4/maps/level_step9/table/85.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/86.txt b/maze/task4/maps/level_step9/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d99d561643789eff6cd740a10244717a18d9196 --- /dev/null +++ b/maze/task4/maps/level_step9/table/86.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/87.txt b/maze/task4/maps/level_step9/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..17e8384b0a94fdc511f2fa0f1e25d28edf0c44f5 --- /dev/null +++ b/maze/task4/maps/level_step9/table/87.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | * | @ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/88.txt b/maze/task4/maps/level_step9/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..2958695af7aeeaafe0b52f49812632ed292a2829 --- /dev/null +++ b/maze/task4/maps/level_step9/table/88.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | # | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/89.txt b/maze/task4/maps/level_step9/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..044edd34bbd8b78d82d163a9c584827eb99073d5 --- /dev/null +++ b/maze/task4/maps/level_step9/table/89.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | # | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task4/maps/level_step9/table/9.txt b/maze/task4/maps/level_step9/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5ac58126560887cf9902b5a659a786e16e5de26 --- /dev/null +++ b/maze/task4/maps/level_step9/table/9.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task4/maps/level_step9/table/90.txt b/maze/task4/maps/level_step9/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bae148d87bd8635a5a1d65193d0bb3a5948c466 --- /dev/null +++ b/maze/task4/maps/level_step9/table/90.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/91.txt b/maze/task4/maps/level_step9/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1b2831af4f52d4ba82532f39a69fd443df65b12 --- /dev/null +++ b/maze/task4/maps/level_step9/table/91.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task4/maps/level_step9/table/92.txt b/maze/task4/maps/level_step9/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5ad2807fcc1f22b116b6321ce2d77111f1c5005 --- /dev/null +++ b/maze/task4/maps/level_step9/table/92.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/93.txt b/maze/task4/maps/level_step9/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3a551f73f6ed945abc68ec321d51c622f8214d3 --- /dev/null +++ b/maze/task4/maps/level_step9/table/93.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task4/maps/level_step9/table/94.txt b/maze/task4/maps/level_step9/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..51b7975a69ded4a9daec7f87178cc6005559b579 --- /dev/null +++ b/maze/task4/maps/level_step9/table/94.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | @ | # | # | diff --git a/maze/task4/maps/level_step9/table/95.txt b/maze/task4/maps/level_step9/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e6f3db98eb248128573ad7c61ced631562aa4f0 --- /dev/null +++ b/maze/task4/maps/level_step9/table/95.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | diff --git a/maze/task4/maps/level_step9/table/96.txt b/maze/task4/maps/level_step9/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6de8617398f0c977c3ee3c78b91f13ca0034aec --- /dev/null +++ b/maze/task4/maps/level_step9/table/96.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | # | _ | @ | _ | diff --git a/maze/task4/maps/level_step9/table/97.txt b/maze/task4/maps/level_step9/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..18326e3e099f68517b35e02e857b8a1073462cda --- /dev/null +++ b/maze/task4/maps/level_step9/table/97.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task4/maps/level_step9/table/98.txt b/maze/task4/maps/level_step9/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..31107581bdcc9fdb56ca838c91627ed423008483 --- /dev/null +++ b/maze/task4/maps/level_step9/table/98.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | * | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/table/99.txt b/maze/task4/maps/level_step9/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..33d7938b7066fd84a556f9f4f58d83b891a7e093 --- /dev/null +++ b/maze/task4/maps/level_step9/table/99.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task4/maps/level_step9/text/0.txt b/maze/task4/maps/level_step9/text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcccf59b8feb7f77476d258d59a2f44ea13ac9e2 --- /dev/null +++ b/maze/task4/maps/level_step9/text/0.txt @@ -0,0 +1,5 @@ +FFFFF +FHFFF +FFFFH +FHSFF +GFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/1.txt b/maze/task4/maps/level_step9/text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..a81bbcca0b300b551431927749303a67a0fd73d6 --- /dev/null +++ b/maze/task4/maps/level_step9/text/1.txt @@ -0,0 +1,5 @@ +FFSFF +HFFHF +FFFFF +FFFFH +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/10.txt b/maze/task4/maps/level_step9/text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..59e6ae7aa3f95ccf01f4ebd32a41d3888f18ead5 --- /dev/null +++ b/maze/task4/maps/level_step9/text/10.txt @@ -0,0 +1,5 @@ +FFFHF +FFSFF +FFFFF +FHFFG +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/11.txt b/maze/task4/maps/level_step9/text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..9577c59253d96e16d19510c0becd350db16320af --- /dev/null +++ b/maze/task4/maps/level_step9/text/11.txt @@ -0,0 +1,5 @@ +FFFFF +FHFHF +FFFHF +FHFFF +GSFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/12.txt b/maze/task4/maps/level_step9/text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..888e026b512b980a2ce07cdea49cbbf8d23f2883 --- /dev/null +++ b/maze/task4/maps/level_step9/text/12.txt @@ -0,0 +1,5 @@ +FFHFH +FFFFF +FHFFF +FFSFF +FGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/13.txt b/maze/task4/maps/level_step9/text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..aeca6ff2ca1cf361208e1304df4ef7da39eb6838 --- /dev/null +++ b/maze/task4/maps/level_step9/text/13.txt @@ -0,0 +1,5 @@ +HFFFG +FFHHF +FFFHF +SFFFF +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/14.txt b/maze/task4/maps/level_step9/text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae0c4a1f50c7c686c0feb6132c6aa57f379da4ce --- /dev/null +++ b/maze/task4/maps/level_step9/text/14.txt @@ -0,0 +1,5 @@ +FFHSF +FFHGF +FFFFF +HFFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/15.txt b/maze/task4/maps/level_step9/text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..c523afba7d09cfd6df81fc1dfbf25eb04cc895f2 --- /dev/null +++ b/maze/task4/maps/level_step9/text/15.txt @@ -0,0 +1,5 @@ +FFFFF +HFFFS +FFFFF +FFHFF +FFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/16.txt b/maze/task4/maps/level_step9/text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..231fc1515c20ac2410f721a0d2afaef22ab92069 --- /dev/null +++ b/maze/task4/maps/level_step9/text/16.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +FFSHH +GFFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/17.txt b/maze/task4/maps/level_step9/text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..73dab1ba95175bec5aa12ba3b55d753db6c52945 --- /dev/null +++ b/maze/task4/maps/level_step9/text/17.txt @@ -0,0 +1,5 @@ +FHFHG +FFFFF +FFFSF +FFHFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/18.txt b/maze/task4/maps/level_step9/text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..121eea290576d5f58a667b0f8b780bcbb7d8ccbc --- /dev/null +++ b/maze/task4/maps/level_step9/text/18.txt @@ -0,0 +1,5 @@ +FFHFF +FFFFF +HFHSF +FFGHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/19.txt b/maze/task4/maps/level_step9/text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..43f66957e4f5b88de8c40b44eb48ced85b671816 --- /dev/null +++ b/maze/task4/maps/level_step9/text/19.txt @@ -0,0 +1,5 @@ +HHFFH +FFFHH +FFFFH +FGFFF +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/2.txt b/maze/task4/maps/level_step9/text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..58a423e96447aee97b90c15db95c523fe5ee25cd --- /dev/null +++ b/maze/task4/maps/level_step9/text/2.txt @@ -0,0 +1,5 @@ +FFFFF +HFHHH +FFFFF +SHFGF +HHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/20.txt b/maze/task4/maps/level_step9/text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b0f38ca5677738dabe064992e1f609ca17315b01 --- /dev/null +++ b/maze/task4/maps/level_step9/text/20.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFH +FFFHS +FHFFF +FFGFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/21.txt b/maze/task4/maps/level_step9/text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8eb819103d1d273329ea7f5230cb3fde72e9ee8 --- /dev/null +++ b/maze/task4/maps/level_step9/text/21.txt @@ -0,0 +1,5 @@ +FFFFF +FFFSF +FFFFH +HFFFF +FFFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/22.txt b/maze/task4/maps/level_step9/text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cd318a799290f6161791c7c0cd3647dbd32f633 --- /dev/null +++ b/maze/task4/maps/level_step9/text/22.txt @@ -0,0 +1,5 @@ +FHGFF +FFFFS +FHFFF +HFFFF +HFHHH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/23.txt b/maze/task4/maps/level_step9/text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..0357978c0459117c75d5e2af2f9f6d9170add28b --- /dev/null +++ b/maze/task4/maps/level_step9/text/23.txt @@ -0,0 +1,5 @@ +FFGFF +FHFFH +FFFFF +SFHHF +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/24.txt b/maze/task4/maps/level_step9/text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8378b2f1e0de611494ed1c672128062f4585165 --- /dev/null +++ b/maze/task4/maps/level_step9/text/24.txt @@ -0,0 +1,5 @@ +GSHHF +FFHFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/25.txt b/maze/task4/maps/level_step9/text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e32256d198c93c47d9633d8bc09313a08758441f --- /dev/null +++ b/maze/task4/maps/level_step9/text/25.txt @@ -0,0 +1,5 @@ +FFFFF +HSFFH +HFGFF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/26.txt b/maze/task4/maps/level_step9/text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b959d812c76fcdf7b16d4249c3e6c9621184018 --- /dev/null +++ b/maze/task4/maps/level_step9/text/26.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHF +FHHFF +FHSFH +FGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/27.txt b/maze/task4/maps/level_step9/text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c3ae440b56d0bc3b8c4b0daa2169d8c443b9f88 --- /dev/null +++ b/maze/task4/maps/level_step9/text/27.txt @@ -0,0 +1,5 @@ +FFHFF +FSFFH +FFHFH +FFFHF +FHFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/28.txt b/maze/task4/maps/level_step9/text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..117ed53125c817ce770dc7764dff179734b7178e --- /dev/null +++ b/maze/task4/maps/level_step9/text/28.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFH +FFFFS +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/29.txt b/maze/task4/maps/level_step9/text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5e65f1a0da76f3ea6c13cb16ed4194725677e1c --- /dev/null +++ b/maze/task4/maps/level_step9/text/29.txt @@ -0,0 +1,5 @@ +FFFFF +SHFFF +FFFHF +FHHFF +GFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/3.txt b/maze/task4/maps/level_step9/text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..9668662d8cf314320ea617dba4bd817518c88285 --- /dev/null +++ b/maze/task4/maps/level_step9/text/3.txt @@ -0,0 +1,5 @@ +FGFSH +FHFFF +FFFHF +FFHFH +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/30.txt b/maze/task4/maps/level_step9/text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2f5ef2ef3ab710327e793342b25de437e9e26bb --- /dev/null +++ b/maze/task4/maps/level_step9/text/30.txt @@ -0,0 +1,5 @@ +FFFFF +FFHFF +FFFFH +HHFFG +FFHSH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/31.txt b/maze/task4/maps/level_step9/text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1e524040cb57ab0866f36e9b8880f76fdb7ef2d --- /dev/null +++ b/maze/task4/maps/level_step9/text/31.txt @@ -0,0 +1,5 @@ +FFFHF +HHFHH +FHHFF +SFFFF +FHFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/32.txt b/maze/task4/maps/level_step9/text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0f2823f98ee1487f0db0e4047fb3806fb934291 --- /dev/null +++ b/maze/task4/maps/level_step9/text/32.txt @@ -0,0 +1,5 @@ +GFFHH +FFFFF +FFFFF +FFSHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/33.txt b/maze/task4/maps/level_step9/text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..05014179e0ca1799ffaf70ea6df54ecc156f65ab --- /dev/null +++ b/maze/task4/maps/level_step9/text/33.txt @@ -0,0 +1,5 @@ +FFFHF +FHHFH +FFFFS +FFFFH +FFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/34.txt b/maze/task4/maps/level_step9/text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c0662f2f7425c9d9525808a21d8939bd5c5497b --- /dev/null +++ b/maze/task4/maps/level_step9/text/34.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +FFGHH +SFFFH +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/35.txt b/maze/task4/maps/level_step9/text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..65de68cdd358bdd335fc70396c06ad49bf911a15 --- /dev/null +++ b/maze/task4/maps/level_step9/text/35.txt @@ -0,0 +1,5 @@ +FFFGH +FFFFH +FFFFF +SHHFH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/36.txt b/maze/task4/maps/level_step9/text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce5a838a5ce2512a81fc5deab3a2e5acaaaf71f2 --- /dev/null +++ b/maze/task4/maps/level_step9/text/36.txt @@ -0,0 +1,5 @@ +FFFFF +FFHGF +HFFFH +FFSFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/37.txt b/maze/task4/maps/level_step9/text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..4b03d8128fbf503f46e0184ae969890ba3761de7 --- /dev/null +++ b/maze/task4/maps/level_step9/text/37.txt @@ -0,0 +1,5 @@ +HFFFF +FHFSF +HFFHF +HFFFF +HFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/38.txt b/maze/task4/maps/level_step9/text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..60dc29135b8762e0a2a61ad8570315bc81036cfe --- /dev/null +++ b/maze/task4/maps/level_step9/text/38.txt @@ -0,0 +1,5 @@ +FFHFF +FFHHG +FFFHF +FFFHF +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/39.txt b/maze/task4/maps/level_step9/text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce6f801b0314a793ccb98afbe3d6154360100a95 --- /dev/null +++ b/maze/task4/maps/level_step9/text/39.txt @@ -0,0 +1,5 @@ +FFFFG +SFFFF +FFFFH +FFFFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/4.txt b/maze/task4/maps/level_step9/text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3cf6eeb8bc7ed068008471ec53393fad67964e0 --- /dev/null +++ b/maze/task4/maps/level_step9/text/4.txt @@ -0,0 +1,5 @@ +FFFFS +FFFFF +FGFFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/40.txt b/maze/task4/maps/level_step9/text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..d499c9f6389c122f3b76cfa7b3c5b2c071bb3aab --- /dev/null +++ b/maze/task4/maps/level_step9/text/40.txt @@ -0,0 +1,5 @@ +FFFFF +HHGFF +HFFFF +SFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/41.txt b/maze/task4/maps/level_step9/text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..edcee62ad70358504e7455ed5f3c8e698cda6ee7 --- /dev/null +++ b/maze/task4/maps/level_step9/text/41.txt @@ -0,0 +1,5 @@ +HFHFF +FFFFF +FSFFF +FHFGH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/42.txt b/maze/task4/maps/level_step9/text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..5925e3e0b5789dc761cc0f543ceb236c6c9c022f --- /dev/null +++ b/maze/task4/maps/level_step9/text/42.txt @@ -0,0 +1,5 @@ +FFHHH +FFFFF +FFSFF +FFFHH +HHGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/43.txt b/maze/task4/maps/level_step9/text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..997ab6291f57d3763645bcf5abb3842971968180 --- /dev/null +++ b/maze/task4/maps/level_step9/text/43.txt @@ -0,0 +1,5 @@ +FFSFG +FFHFF +FFFFF +FFFFF +HFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/44.txt b/maze/task4/maps/level_step9/text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef26ce49595d85d6cda22b34f14cb401eb37c0cf --- /dev/null +++ b/maze/task4/maps/level_step9/text/44.txt @@ -0,0 +1,5 @@ +FFFHF +GFFFF +FHFFH +FSFHF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/45.txt b/maze/task4/maps/level_step9/text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..1859a523bbe271826ddd11e8d1092327d84eb889 --- /dev/null +++ b/maze/task4/maps/level_step9/text/45.txt @@ -0,0 +1,5 @@ +FFGFF +FFFHS +FHFFF +FHFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/46.txt b/maze/task4/maps/level_step9/text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0499cddf07cc5367bf3bba71e8e470eb1b24bc6 --- /dev/null +++ b/maze/task4/maps/level_step9/text/46.txt @@ -0,0 +1,5 @@ +FFHFF +SHFFF +FFFFF +HFHFF +FGHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/47.txt b/maze/task4/maps/level_step9/text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee3c2aa68a58d95f115512baf31df978f3be1540 --- /dev/null +++ b/maze/task4/maps/level_step9/text/47.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +FGHFF +HHFSF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/48.txt b/maze/task4/maps/level_step9/text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..f445b78d0e7d8e30ddaf2ca1bd2412fef013992a --- /dev/null +++ b/maze/task4/maps/level_step9/text/48.txt @@ -0,0 +1,5 @@ +FHHFS +HFHFH +FFFFF +FFGFF +FHHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/49.txt b/maze/task4/maps/level_step9/text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..181f2bede753801d9f951a4f36aab10c65701f4c --- /dev/null +++ b/maze/task4/maps/level_step9/text/49.txt @@ -0,0 +1,5 @@ +HFFFF +HSGHF +FFFFF +HHFFH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/5.txt b/maze/task4/maps/level_step9/text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6a477a19a0ceaa1810c7ba9b9493628e24f6350 --- /dev/null +++ b/maze/task4/maps/level_step9/text/5.txt @@ -0,0 +1,5 @@ +FHFFF +FFHFF +FFFHF +FSFFF +FFFGF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/50.txt b/maze/task4/maps/level_step9/text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d3250e7aeaaec11b6f8d3ce100eb4725d41bc48 --- /dev/null +++ b/maze/task4/maps/level_step9/text/50.txt @@ -0,0 +1,5 @@ +FFFFH +FFFFF +FHFFF +FFHFF +FHFSG \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/51.txt b/maze/task4/maps/level_step9/text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..f53147d5a68d0e6c3d754f0e625de97b2e4860de --- /dev/null +++ b/maze/task4/maps/level_step9/text/51.txt @@ -0,0 +1,5 @@ +GSHFF +FFFFF +FHFHF +FFFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/52.txt b/maze/task4/maps/level_step9/text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce2c01efe545fab301423d52131bdbf229f75aa5 --- /dev/null +++ b/maze/task4/maps/level_step9/text/52.txt @@ -0,0 +1,5 @@ +FFFFF +GSHHF +FFFFF +FFFHH +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/53.txt b/maze/task4/maps/level_step9/text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef7cc10ce6aa5f64e8542574a25318d086ba9de3 --- /dev/null +++ b/maze/task4/maps/level_step9/text/53.txt @@ -0,0 +1,5 @@ +HGHFF +HSHFF +HFHHF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/54.txt b/maze/task4/maps/level_step9/text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..43a509a68577c2653bd96877c6c350c80948e71e --- /dev/null +++ b/maze/task4/maps/level_step9/text/54.txt @@ -0,0 +1,5 @@ +FFFFF +GFFFF +FFFFF +FFFHH +HSFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/55.txt b/maze/task4/maps/level_step9/text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..923a53f20e1a13ae81607702f76e714108aec31a --- /dev/null +++ b/maze/task4/maps/level_step9/text/55.txt @@ -0,0 +1,5 @@ +FFGHF +FFFFF +HFHSF +FHFHF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/56.txt b/maze/task4/maps/level_step9/text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f4ff3fe067a84e31f8a7f716ce7d5d5b9e2d7c9 --- /dev/null +++ b/maze/task4/maps/level_step9/text/56.txt @@ -0,0 +1,5 @@ +FFFFS +FGFFF +FHFFH +FFFFF +HFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/57.txt b/maze/task4/maps/level_step9/text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..b17b4bc4c9c0a03ee5b69b237680700368ba17f6 --- /dev/null +++ b/maze/task4/maps/level_step9/text/57.txt @@ -0,0 +1,5 @@ +FFHFF +FFHFS +FGHFF +HFFFF +FHFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/58.txt b/maze/task4/maps/level_step9/text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..969d55e8ca6d9e9a3c7b7776d1597f8892ab2263 --- /dev/null +++ b/maze/task4/maps/level_step9/text/58.txt @@ -0,0 +1,5 @@ +HGFFF +FSHHF +FFFFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/59.txt b/maze/task4/maps/level_step9/text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..4207c78bee9d63c2524404354457ec429201b1f1 --- /dev/null +++ b/maze/task4/maps/level_step9/text/59.txt @@ -0,0 +1,5 @@ +FFFFF +FHFSF +FGFFF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/6.txt b/maze/task4/maps/level_step9/text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c5eca1f0f6d2e19023cbb616e400a00fe01068e --- /dev/null +++ b/maze/task4/maps/level_step9/text/6.txt @@ -0,0 +1,5 @@ +FFFFH +HGFFF +FFSHF +FFFFH +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/60.txt b/maze/task4/maps/level_step9/text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b744a2854da6212746ba40e34d65eb46096f6395 --- /dev/null +++ b/maze/task4/maps/level_step9/text/60.txt @@ -0,0 +1,5 @@ +HFSFF +HFFFG +FFHFF +FFHFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/61.txt b/maze/task4/maps/level_step9/text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..1db1a7fe6fc07b10e2ce3669588178494b5bd929 --- /dev/null +++ b/maze/task4/maps/level_step9/text/61.txt @@ -0,0 +1,5 @@ +FSFHF +FFGFF +FFFFF +FHFHF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/62.txt b/maze/task4/maps/level_step9/text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e8bc2fc5fc6f32d14990ae7843243d6fbeb5686 --- /dev/null +++ b/maze/task4/maps/level_step9/text/62.txt @@ -0,0 +1,5 @@ +GFHFF +FFHFH +FFHFF +FHHFH +FFFFS \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/63.txt b/maze/task4/maps/level_step9/text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..67a309bb7c2688e91e96e53c351e56796860c8fe --- /dev/null +++ b/maze/task4/maps/level_step9/text/63.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FFFHF +FFHFH +FGFSF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/64.txt b/maze/task4/maps/level_step9/text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1146d08e1f8a9cb735c5894c17e1b6acc4be7abc --- /dev/null +++ b/maze/task4/maps/level_step9/text/64.txt @@ -0,0 +1,5 @@ +FHHFF +FFSFF +FFFFF +FFFGF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/65.txt b/maze/task4/maps/level_step9/text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2bca436126922b631a690efc68e221bf7c6ff83 --- /dev/null +++ b/maze/task4/maps/level_step9/text/65.txt @@ -0,0 +1,5 @@ +FHFFF +HFFFH +FFFFF +FSFFF +FFFFG \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/66.txt b/maze/task4/maps/level_step9/text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..9193e96e774332c715c2877881ec4acfcaa07520 --- /dev/null +++ b/maze/task4/maps/level_step9/text/66.txt @@ -0,0 +1,5 @@ +HFFFH +FHSGH +HFFFF +FFFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/67.txt b/maze/task4/maps/level_step9/text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..462c4f44e7b83d62622f99d270747e72579d453b --- /dev/null +++ b/maze/task4/maps/level_step9/text/67.txt @@ -0,0 +1,5 @@ +FFHHH +FFFFF +FHHFF +FFFFH +SGFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/68.txt b/maze/task4/maps/level_step9/text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..784c8ea5f78b522ddeba4c752a803a6c548a21c0 --- /dev/null +++ b/maze/task4/maps/level_step9/text/68.txt @@ -0,0 +1,5 @@ +FHFFF +SFFFF +HFFFF +FGFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/69.txt b/maze/task4/maps/level_step9/text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda78f153de3ce23d5438d2c2fa9e8ad127f1641 --- /dev/null +++ b/maze/task4/maps/level_step9/text/69.txt @@ -0,0 +1,5 @@ +FFHHF +FHFSH +FFFFH +FHFGH +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/7.txt b/maze/task4/maps/level_step9/text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdc2f8f8780ad63da8e74ed8e457ea918725a1e5 --- /dev/null +++ b/maze/task4/maps/level_step9/text/7.txt @@ -0,0 +1,5 @@ +FFHGF +FFSFF +FHFHF +HHFHF +HFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/70.txt b/maze/task4/maps/level_step9/text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..40f99668819656884f69be6c6f9193835102d36b --- /dev/null +++ b/maze/task4/maps/level_step9/text/70.txt @@ -0,0 +1,5 @@ +FFFFF +HFHFF +HFSHF +FGFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/71.txt b/maze/task4/maps/level_step9/text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..314334c85371851c814d49d687cc5b278693b537 --- /dev/null +++ b/maze/task4/maps/level_step9/text/71.txt @@ -0,0 +1,5 @@ +FFSFG +FFHHF +FHHFF +FHFFF +FFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/72.txt b/maze/task4/maps/level_step9/text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fafd7efe580e3e1beb620662fc51a71bef40638 --- /dev/null +++ b/maze/task4/maps/level_step9/text/72.txt @@ -0,0 +1,5 @@ +FFFSF +HHHFH +FHHFF +HFFFF +FFHGF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/73.txt b/maze/task4/maps/level_step9/text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ede5687e1dd1759aa6d930093ea15b44c848337 --- /dev/null +++ b/maze/task4/maps/level_step9/text/73.txt @@ -0,0 +1,5 @@ +HHFFF +FFFHF +FFSFF +FGFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/74.txt b/maze/task4/maps/level_step9/text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c5fa232bbe99abf865a2c50a384a9609c69d09c --- /dev/null +++ b/maze/task4/maps/level_step9/text/74.txt @@ -0,0 +1,5 @@ +HFFFH +FFHFF +FFFFF +GHFFS +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/75.txt b/maze/task4/maps/level_step9/text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..02df58bd1a3299b661a19b7a0684a7c5db93bc70 --- /dev/null +++ b/maze/task4/maps/level_step9/text/75.txt @@ -0,0 +1,5 @@ +FFFFF +FHGFF +HFSFF +FFFFF +FHFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/76.txt b/maze/task4/maps/level_step9/text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6aea245ce8af37eedf488c5fd172358d7157a94 --- /dev/null +++ b/maze/task4/maps/level_step9/text/76.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFF +SFFFH +GHFFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/77.txt b/maze/task4/maps/level_step9/text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc42e4e9bb88223495894d2bb90c6ffca8cdeab1 --- /dev/null +++ b/maze/task4/maps/level_step9/text/77.txt @@ -0,0 +1,5 @@ +FFFFF +FFFGF +FFFHF +FFHFF +FSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/78.txt b/maze/task4/maps/level_step9/text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e25ebbeb1097045d66703f503545ced804715a4 --- /dev/null +++ b/maze/task4/maps/level_step9/text/78.txt @@ -0,0 +1,5 @@ +FFFFF +FFFFS +FHHFF +FHFFF +HFGFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/79.txt b/maze/task4/maps/level_step9/text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..45cd7cb1e540ae8621d45f4013c4b98d2e6208df --- /dev/null +++ b/maze/task4/maps/level_step9/text/79.txt @@ -0,0 +1,5 @@ +FFFFG +FFSHF +FFFHH +FFFFF +FFFHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/8.txt b/maze/task4/maps/level_step9/text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..41718d4d4c824cf49981e0ff7bc2dfa0ec32111f --- /dev/null +++ b/maze/task4/maps/level_step9/text/8.txt @@ -0,0 +1,5 @@ +FFFGF +HFFFF +FFFHF +HHFHF +FSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/80.txt b/maze/task4/maps/level_step9/text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e8447c7efb712cbbd62183d08edc6407a58ddf3 --- /dev/null +++ b/maze/task4/maps/level_step9/text/80.txt @@ -0,0 +1,5 @@ +HFFFF +FFHFF +FFFFF +HFHFF +GSFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/81.txt b/maze/task4/maps/level_step9/text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..53bad2b89d9ad00f0d8875e15337a39bbe792615 --- /dev/null +++ b/maze/task4/maps/level_step9/text/81.txt @@ -0,0 +1,5 @@ +FFHFF +FFGFF +FSFFF +FFHFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/82.txt b/maze/task4/maps/level_step9/text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..890c75b0ae74d5408543d2af224ccd499bc9dc21 --- /dev/null +++ b/maze/task4/maps/level_step9/text/82.txt @@ -0,0 +1,5 @@ +GHFFF +FFFFF +FFFFF +FFFHF +SHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/83.txt b/maze/task4/maps/level_step9/text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..7092e39f47a95ff2e8c08df0576dfc7c6bfb80c9 --- /dev/null +++ b/maze/task4/maps/level_step9/text/83.txt @@ -0,0 +1,5 @@ +FHHFF +HFFHF +FFFFF +GFFFF +FFHSH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/84.txt b/maze/task4/maps/level_step9/text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e3f5ed46a974e95439b03b4e44f716cb821651a --- /dev/null +++ b/maze/task4/maps/level_step9/text/84.txt @@ -0,0 +1,5 @@ +FFFHF +FFFFF +FGHHF +FFHHF +FSFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/85.txt b/maze/task4/maps/level_step9/text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d9c07f5a9c4fc7fcdd4fb735482d1b1bf422619 --- /dev/null +++ b/maze/task4/maps/level_step9/text/85.txt @@ -0,0 +1,5 @@ +HHFHF +FHFHF +FFFFS +FFFHG +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/86.txt b/maze/task4/maps/level_step9/text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..29c6942eb7abac25a9192b1dc27748e825d2892a --- /dev/null +++ b/maze/task4/maps/level_step9/text/86.txt @@ -0,0 +1,5 @@ +FFHHF +FHFFF +SFGHF +HHFFF +HHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/87.txt b/maze/task4/maps/level_step9/text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc49bd0756d64d6b18d33a4c4764c79c3fd0f12e --- /dev/null +++ b/maze/task4/maps/level_step9/text/87.txt @@ -0,0 +1,5 @@ +HFFFF +FFHHF +HGSFF +HFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/88.txt b/maze/task4/maps/level_step9/text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..81c85319fcb2a2a158549b24f965f9367866fb50 --- /dev/null +++ b/maze/task4/maps/level_step9/text/88.txt @@ -0,0 +1,5 @@ +FFGHF +HHFFF +HHHSF +HHFFF +FHFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/89.txt b/maze/task4/maps/level_step9/text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a80e081162547a1e22403f0a340e85f04b3e112 --- /dev/null +++ b/maze/task4/maps/level_step9/text/89.txt @@ -0,0 +1,5 @@ +FHHFF +SHFGF +HFFFF +FFFFF +HFHFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/9.txt b/maze/task4/maps/level_step9/text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8233e7016eea56e41f863f782b38a3b93ac95d7 --- /dev/null +++ b/maze/task4/maps/level_step9/text/9.txt @@ -0,0 +1,5 @@ +HHFFH +HFFGH +HSHFH +FHFFF +HHHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/90.txt b/maze/task4/maps/level_step9/text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab4821203ddb7271131a789fdc81cecbde0d3ca7 --- /dev/null +++ b/maze/task4/maps/level_step9/text/90.txt @@ -0,0 +1,5 @@ +FFHFF +FFHFS +FFFFH +GHFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/91.txt b/maze/task4/maps/level_step9/text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..0de34eee463ea16f0c1f892fddd836ef4effd2c8 --- /dev/null +++ b/maze/task4/maps/level_step9/text/91.txt @@ -0,0 +1,5 @@ +FHFHF +FSFFF +GFFFF +FFHFF +FFFHH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/92.txt b/maze/task4/maps/level_step9/text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc60ee05a3676be1d8a381283d048c49e6937a61 --- /dev/null +++ b/maze/task4/maps/level_step9/text/92.txt @@ -0,0 +1,5 @@ +FHSFH +FHFFF +FGFFF +FFFFH +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/93.txt b/maze/task4/maps/level_step9/text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d2120b79cc6b7576bb77b360d7559f9bc319ff --- /dev/null +++ b/maze/task4/maps/level_step9/text/93.txt @@ -0,0 +1,5 @@ +HFFFF +FSFHF +FGHFF +FFFFF +FFHHF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/94.txt b/maze/task4/maps/level_step9/text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b6a7cdd1534df8c8a74337c5bc9243fdf99e14f --- /dev/null +++ b/maze/task4/maps/level_step9/text/94.txt @@ -0,0 +1,5 @@ +HFFFF +FHFFF +GFFFF +FFFFH +FFSHH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/95.txt b/maze/task4/maps/level_step9/text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fb23e59663b7af1f843ef1d06e31a3b6bad4a5f --- /dev/null +++ b/maze/task4/maps/level_step9/text/95.txt @@ -0,0 +1,5 @@ +GHFFH +FFFFF +FFFSH +HHFFF +FFHFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/96.txt b/maze/task4/maps/level_step9/text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa92f15f9ec4a26e81c480c6db3d11878b211200 --- /dev/null +++ b/maze/task4/maps/level_step9/text/96.txt @@ -0,0 +1,5 @@ +HFFFF +HHHFF +FGFFF +FHHFH +FHFSF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/97.txt b/maze/task4/maps/level_step9/text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..4dff9259ae73b447065883939ff5959a3f00bc68 --- /dev/null +++ b/maze/task4/maps/level_step9/text/97.txt @@ -0,0 +1,5 @@ +GSFFF +HFFFF +FFFHF +FFFFF +FFFFH \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/98.txt b/maze/task4/maps/level_step9/text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..c808504263ee8139550be585df30cdc5f2dec983 --- /dev/null +++ b/maze/task4/maps/level_step9/text/98.txt @@ -0,0 +1,5 @@ +HSHGF +FFHFF +FFFFF +HFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/maps/level_step9/text/99.txt b/maze/task4/maps/level_step9/text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..120aa1bbd40eb42811ef2485260feec00ab77780 --- /dev/null +++ b/maze/task4/maps/level_step9/text/99.txt @@ -0,0 +1,5 @@ +FFFFF +GHFFS +FFHFF +FFFFF +FFFFF \ No newline at end of file diff --git a/maze/task4/prompt-text/prompt-text.txt b/maze/task4/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5dbf43eeca9264068c712db9e633ad513fdfdc7 --- /dev/null +++ b/maze/task4/prompt-text/prompt-text.txt @@ -0,0 +1,45 @@ +You are a maze-solving agent playing a pixelated maze videogame. +Mazes are presented on grid maps, where each tile can be empty land, or contain a player, hole, or goal. +Each of the above tile types are represented as square pixel art images. + +In this task, you will analyze a grid-based map and determine if a provided action plan is safe. A safe action plan avoids stepping into holes in the map. +The following figure illustrates the appearances of the player, holes, lands, and the goal within the maze. + + + +## Moving Rules +- The action plan involves a series of moves: 'L' (left), 'R' (right), 'U' (up), or 'D' (down). +- Each move transfers the player to the adjacent square in that direction, provided it is a safe square. The player cannot move more than one square at a time. +- Moving off the edge of the map has no effect. The player will remain at the same square. +- DO NOT MOVE INTO A HOLE! Falling into a hole results in defeat. +- Locating at the grid containing the goal results in victory. +We provide an example to further illustrate the rules. + + + +In this provided example: +- The player is at Row 1, Column 1; +- The goal is at Row 4, Column 4; +- There are two holes: one at Row 1, Column 2, and another at Row 4, Column 1. +- The player can move DOWN. This is because moving down brings them to Row 2, Column 1, and this cell is safe (without holes). +- Moving UP has no effects. This is because the player is already in the topmost row. +- Similarly, moving LEFT has no effects because the player is already in the left-most column. +- Moving RIGHT places the player at Row 1, Column 2. Since there is a hole at this grid, this move results in a loss. + +## Procedure and Output +Your output should include the following parts: +1. First, interpret map. List where the player is at now, where is the goal, and where are the holes. +2. Then, reasoning by following the given action plan. At each step, you should check: + (a) Where the current move leads the player to (the row and column); + (b) What is in that grid. Is it a hole? Is it the goal? Is it an empty space? + (c) Determine if that is a safe action. +3. Output if the action sequence is safe using " Yes" or " No". A safe action sequence should not include any unsafe actions. + +Now please determine if the action sequence is safe for this given maze: + + + +The action sequence is: + + + diff --git a/maze/task4/prompt-visual-images/system-figure-1.png b/maze/task4/prompt-visual-images/system-figure-1.png new file mode 100644 index 0000000000000000000000000000000000000000..3ea294f723f08b14abfe02349587a8bcfde5fe2d --- /dev/null +++ b/maze/task4/prompt-visual-images/system-figure-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7321fc3f75b4a763f4c2e5965a513c281bd8542cec31bb90b9f60eff63035b08 +size 159667 diff --git a/maze/task4/prompt-visual-images/system-figure-2.png b/maze/task4/prompt-visual-images/system-figure-2.png new file mode 100644 index 0000000000000000000000000000000000000000..b453ba1a67610367a9480fa7ab711530aaabd58a --- /dev/null +++ b/maze/task4/prompt-visual-images/system-figure-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc4ae6e6474849687801599ffa7b112ce7044ae74bbd612fa01c8619afff9c1 +size 7099 diff --git a/maze/task4/test.py b/maze/task4/test.py new file mode 100644 index 0000000000000000000000000000000000000000..d6c974d7e7965f10bbe13b777d84f31b985d8ae8 --- /dev/null +++ b/maze/task4/test.py @@ -0,0 +1,166 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +from IPython.display import display +from IPython.display import Markdown + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) + # torch.manual_seed(seed) + # torch.cuda.manual_seed(seed) + # torch.backends.cudnn.deterministic = True + # env.seed(seed) +seed_everything(1) + +levels = [1,3,5,7,9] +in_context_example_num = 0 # 0, 1, 2, 4, 8 +formal_action_dict = {'D': "Down", 'U': "Up", 'L': "Left", 'R': "Right"} + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +EXAMPLE_DICT = { + 1: [], + 3: [], + 5: [], + 7: [], + 9: [], +} + +# Prepare examples +for level in levels: + for example_id in range(8): + curr_example_pack = {} + curr_example_pack["image_path"] = "example/level_step%d/img/%d.png"%(level, example_id) + with open("example/level_step%d/question/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["question"] = f.read() + with open("example/level_step%d/analysis/%d.txt"%(level, example_id), 'r') as f: + curr_example_pack["answer"] = f.read() + EXAMPLE_DICT[level].append(curr_example_pack) + +# import ipdb; ipdb.set_trace() +example_img_1 = PIL.Image.open('prompt-visual-images/system-figure-1.png') +example_img_2 = PIL.Image.open('prompt-visual-images/system-figure-2.png') +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + input_img_path = "maps/level_step%d/img/"%(level) + input_txt_path = "maps/level_step%d/question/"%(level) + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + prompt_input_1 = ''' +You are a maze-solving agent playing a pixelated maze videogame. +Mazes are presented on grid maps, where each tile can be empty land, or contain a player, hole, or goal. +Each of the above tile types are represented as square pixel art images. + +In this task, you will analyze a grid-based map and determine if a provided action plan is safe. A safe action plan avoids stepping into holes in the map. +The following figure illustrates the appearances of the player, holes, lands, and the goal within the maze. +''' + + prompt_input_2 = ''' +## Moving Rules +- The action plan involves a series of moves: 'L' (left), 'R' (right), 'U' (up), or 'D' (down). +- Each move transfers the player to the adjacent square in that direction, provided it is a safe square. The player cannot move more than one square at a time. +- Moving off the edge of the map has no effect. The player will remain at the same square. +- DO NOT MOVE INTO A HOLE! Falling into a hole results in defeat. +- Locating at the grid containing the goal results in victory. +We provide an example to further illustrate the rules. +''' + + prompt_input_3 = ''' +In this provided example: +- The player is at Row 1, Column 1; +- The goal is at Row 4, Column 4; +- There are two holes: one at Row 1, Column 2, and another at Row 4, Column 1. +- The player can move DOWN. This is because moving down brings them to Row 2, Column 1, and this cell is safe (without holes). +- Moving UP has no effects. This is because the player is already in the topmost row. +- Similarly, moving LEFT has no effects because the player is already in the left-most column. +- Moving RIGHT places the player at Row 1, Column 2. Since there is a hole at this grid, this move results in a loss. + +## Procedure and Output +Your output should include the following parts: +1. First, interpret map. List where the player is at now, where is the goal, and where are the holes. +2. Then, reasoning by following the given action plan. At each step, you should check: + (a) Where the current move leads the player to (the row and column); + (b) What is in that grid. Is it a hole? Is it the goal? Is it an empty space? + (c) Determine if that is a safe action. +3. Output if the action sequence is safe using " Yes" or " No". A safe action sequence should not include any unsafe actions. +''' + prompt_examples = [] + image_examples = [] + if in_context_example_num > 0: + prompt_examples.append("## Example:\n") + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + this_action = this_example["question"] + asking_action_sequence = "" + for each_action_char in this_action: + asking_action_sequence += formal_action_dict[each_action_char] + asking_action_sequence += ", " + asking_action_sequence = asking_action_sequence[:-2] + image_examples.append(PIL.Image.open(this_example["image_path"])) + prompt_examples.append("\nThe action sequence is:\n" + asking_action_sequence + "\n" + this_example["answer"] + "\n") + prompt_input_4 = "\n\nNow please determine if the action sequence is safe for this given maze:" + prompt_input_5 = "\nThe action sequence is:\n" + begin_img = PIL.Image.open('maps/level_step%d/img/%d.png'%(level, curr_id)) + with open(input_txt_path + "%d.txt"%(curr_id), 'r') as f: + question = f.read() + asking_action_sequence = "" + for each_action_char in question: + asking_action_sequence += formal_action_dict[each_action_char] + asking_action_sequence += ", " + asking_action_sequence = asking_action_sequence[:-2] + model_input_seq = [prompt_input_1, example_img_1, prompt_input_2, example_img_2, prompt_input_3] + if in_context_example_num > 0: + assert len(prompt_examples) == len(image_examples) + 1 + assert len(prompt_examples) == in_context_example_num + 1 + model_input_seq.append(prompt_examples[0]) + for example_index in range(in_context_example_num): + model_input_seq.append(image_examples[example_index]) + model_input_seq.append(prompt_examples[example_index+1]) + model_input_seq += [prompt_input_4, begin_img, prompt_input_5, asking_action_sequence] + + response = model.generate_content(model_input_seq) + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass + + + diff --git a/maze/task5/.DS_Store b/maze/task5/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..4035cc6c6900be9a37c4e1108a2b8087cf2c1f04 Binary files /dev/null and b/maze/task5/.DS_Store differ diff --git a/maze/task5/eval.py b/maze/task5/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..e725bdac0162503b047ac8d52f282f54c3aa46e5 --- /dev/null +++ b/maze/task5/eval.py @@ -0,0 +1,72 @@ +# read a map, receive a solution, determine if the solution reaches the goal + +import gym +from gym.envs.toy_text.frozen_lake import generate_random_map +import random +import os +import numpy as np +# from PIL import Image + +count = 0 +correct = 0 + +level = 5 + +check_map_dir = "../maps/level%d_text/"%(level) +check_answer_dir = "output/output_img_8/" +# check_answer_dir = "output/output_pure_text_1/" +# check_answer_dir = "output/output_table_2/" + + +# import ipdb; ipdb.set_trace() + +for test_id in range(100): + try: + # print(test_id) + # map + with open(check_map_dir + '%d.txt'%(test_id), 'r') as f: + contents = f.read() + rows = contents.split('\n') + + # action + with open(check_answer_dir + 'level%d/%d.txt'%(level, test_id), 'r') as f: + contents = f.read() + answer_index = contents.find('Action plan: ') + if answer_index == -1: + answer_index = contents.find('Action Plan: ') + answer = contents[answer_index+13:] + answer = answer.split(',') + for answer_index in range(len(answer)): + answer[answer_index] = answer[answer_index].replace('"', '') + answer[answer_index] = answer[answer_index].replace("'", '') + answer[answer_index] = answer[answer_index].replace("\n", '') + answer[answer_index] = answer[answer_index].replace(".", '') + answer[answer_index] = answer[answer_index].lstrip() + answer[answer_index] = answer[answer_index].rstrip() + + env = gym.make('FrozenLake-v1', desc=rows, map_name="4x4", is_slippery=False) + env.reset(seed=42) + # temp = env.render() + # import ipdb; ipdb.set_trace() + + action_number_map = {'L':0, 'D':1, 'R':2, 'U':3} + for action_index in range(len(answer)): + observation, reward, terminated, truncated, info = env.step(action_number_map[answer[action_index]]) + # temp = env.render() + + if terminated or truncated: + if reward > 0: + correct += 1 + observation, info = env.reset() + break + count += 1 + + env.close() + except: + # If not + count += 1 + # import ipdb; ipdb.set_trace() + pass + +print("Total tested: %d"%(count)) +print("Total correct: %d"%(correct)) diff --git a/maze/task5/example/level3/answer/0.txt b/maze/task5/example/level3/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e620a21edcc0bf361d28a6470de1495d1ba936ca --- /dev/null +++ b/maze/task5/example/level3/answer/0.txt @@ -0,0 +1,11 @@ + +The player is at row 1, column 1, and the goal is at row 2, column 2. +There are 2 holes. They are at: row 3, column 2; row 3, column 3. + +- Moving Right (R). The player is now at row 1, column 2. This grid is safe. +- Moving Down (D). The player is now at row 2, column 2. This grid is the goal, so we stop here. + +1. Right to row 1, column 2 (safe) +2. Down to row 2, column 2 (goal) + +Action plan: R,D \ No newline at end of file diff --git a/maze/task5/example/level3/answer/1.txt b/maze/task5/example/level3/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe854e1acfa31ba7061a779b240e700f6ab9d0fc --- /dev/null +++ b/maze/task5/example/level3/answer/1.txt @@ -0,0 +1,13 @@ + +The player is at row 1, column 3, and the goal is at row 2, column 1. +There is 1 hole. It is at: row 3, column 2. + +- Moving Left (L). The player is now at row 1, column 2. This grid is safe. +- Moving Down (D). The player is now at row 2, column 2. This grid is safe. +- Moving Left (L). The player is now at row 2, column 1. This grid is the goal, so we stop here. + +1. Left to row 1, column 2 (safe) +2. Down to row 2, column 2 (safe) +3. Left to row 2, column 1 (goal) + +Action plan: L,D,L \ No newline at end of file diff --git a/maze/task5/example/level3/answer/2.txt b/maze/task5/example/level3/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc992140ae149019560aaacbfcd67b9075ea7677 --- /dev/null +++ b/maze/task5/example/level3/answer/2.txt @@ -0,0 +1,13 @@ + +The player is at row 3, column 1, and the goal is at row 2, column 3. +There is no holes. + +- Moving Right (R). The player is now at row 3, column 2. This grid is safe. +- Moving Right (R). The player is now at row 3, column 3. This grid is safe. +- Moving Up (U). The player is now at row 2, column 3. This grid is the goal, so we stop here. + +1. Right to row 3, column 2 (safe) +2. Right to row 3, column 3 (safe) +3. Up to row 2, column 3 (goal) + +Action plan: R,R,U \ No newline at end of file diff --git a/maze/task5/example/level3/answer/3.txt b/maze/task5/example/level3/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3571fd6a16b7d9163237af0963ad51ef6974e78 --- /dev/null +++ b/maze/task5/example/level3/answer/3.txt @@ -0,0 +1,11 @@ + +The player is at row 3, column 2, and the goal is at row 2, column 1. +There is no holes. + +- Moving Up (U). The player is now at row 2, column 2. This grid is safe. +- Moving Left (L). The player is now at row 2, column 1. This grid is the goal, so we stop here. + +1. Up to row 2, column 2 (safe) +2. Left to row 2, column 1 (goal) + +Action plan: U,L \ No newline at end of file diff --git a/maze/task5/example/level3/answer/4.txt b/maze/task5/example/level3/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbf01c5ad96381292223642d914b5c56212ec6c1 --- /dev/null +++ b/maze/task5/example/level3/answer/4.txt @@ -0,0 +1,9 @@ + +The player is at row 2, column 2, and the goal is at row 2, column 3. +There are 3 holes. They are at: row 1, column 1; row 2, column 1; row 2, column 3. + +- Moving Down (D). The player is now at row 3, column 2. This grid is the goal, so we stop here. + +1. Down to row 3, column 2 (goal) + +Action plan: D \ No newline at end of file diff --git a/maze/task5/example/level3/answer/5.txt b/maze/task5/example/level3/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bebe4c770b43a16dfc70fd4666b9c4dad548838 --- /dev/null +++ b/maze/task5/example/level3/answer/5.txt @@ -0,0 +1,11 @@ + +The player is at row 2, column 1, and the goal is at row 3, column 2. +There is 1 hole. It is at: row 2, column 3. + +- Moving Right (R). The player is now at row 2, column 2. This grid is safe. +- Moving Down (D). The player is now at row 3, column 2. This grid is the goal, so we stop here. + +1. Right to row 2, column 2 (safe) +2. Down to row 3, column 2 (goal) + +Action plan: R,D \ No newline at end of file diff --git a/maze/task5/example/level3/answer/6.txt b/maze/task5/example/level3/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd7b304f16a952ddd28a59efc5be9e841281ec55 --- /dev/null +++ b/maze/task5/example/level3/answer/6.txt @@ -0,0 +1,14 @@ + +The player is at row 3, column 2, and the goal is at row 1, column 1. +There are 3 holes. They are at: row 1, column 2; row 3, column 1; row 3, column 3. + +- Moving Up (U). The player is now at row 2, column 2. This grid is safe. +- Moving Up (U). The player is now at row 1, column 2. This grid contains a hole! Revert this step - the player is still at row 2, column 2. +- Replan: Moving Left (L). The player is now at row 2, column 1. This grid is safe. +- Moving Up (U). The player is now at row 1, column 1. This grid is the goal, so we stop here. + +1. Up to row 2, column 2 (safe) +2. Left to row 2, column 1 (safe) +3. Up to row 1, column 1 (goal) + +Action plan: U,L,U \ No newline at end of file diff --git a/maze/task5/example/level3/answer/7.txt b/maze/task5/example/level3/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a66cff4175da4c056eb7b4a521795b2745cdbf7 --- /dev/null +++ b/maze/task5/example/level3/answer/7.txt @@ -0,0 +1,12 @@ + +The player is at row 2, column 3, and the goal is at row 1, column 2. +There is 1 hole. It is at: row 1, column 3. + +- Moving Up (U). The player is now at row 1, column 3. This grid contains a hole! Revert this step - the player is still at row 2, column 3. +- Replan: Moving Left (L). The player is now at row 2, column 2. This grid is safe. +- Moving Up (U). The player is now at row 1, column 2. This grid is the goal, so we stop here. + +1. Left to row 2, column 2 (safe) +2. Up to row 1, column 2 (goal) + +Action plan: L,U \ No newline at end of file diff --git a/maze/task5/example/level3/img/0.png b/maze/task5/example/level3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e69efe3beee37e8258543ba5d82b419b0dc26146 --- /dev/null +++ b/maze/task5/example/level3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:256f750ccc57362cb386440528992167aebe85e471ca042ff982c49f1078c3c1 +size 4897 diff --git a/maze/task5/example/level3/img/1.png b/maze/task5/example/level3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2f9faefbc26fd3b2347b21792c71bc7da18fc37f --- /dev/null +++ b/maze/task5/example/level3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0575e17453c04eaed425af2cb9bb2fb2b979f78bd33bb42090ff5f74fb24cdb +size 4856 diff --git a/maze/task5/example/level3/img/2.png b/maze/task5/example/level3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a47bd83bc451ca9d08d45a1f596b8f06dc77ed15 --- /dev/null +++ b/maze/task5/example/level3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3dc7afeebf2ed0b1bc3f97acd5712e25cdd3e4246de6d13f41539527a347f9 +size 4014 diff --git a/maze/task5/example/level3/img/3.png b/maze/task5/example/level3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..397c3b91ddcfdb9c45d5d19fb0202bcbdfaf383c --- /dev/null +++ b/maze/task5/example/level3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea9edc8e57a64c37cc679d53b2f195d8837321d30569c37eff9a4e609d84203 +size 4071 diff --git a/maze/task5/example/level3/img/4.png b/maze/task5/example/level3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..853c1abd4fa416f0d9cc38e2871e362e09041b44 --- /dev/null +++ b/maze/task5/example/level3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f09a54a84f47f30af7af4e63bb26a2561f1629b754e93c806f47429ba8f61873 +size 5641 diff --git a/maze/task5/example/level3/img/5.png b/maze/task5/example/level3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5dcfd7b042745dd12f27b2589d097d8912438f43 --- /dev/null +++ b/maze/task5/example/level3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb8439978f0e4da1228c52f6650a66ea2a9855be76aab94ab82b102b81171f9 +size 4970 diff --git a/maze/task5/example/level3/img/6.png b/maze/task5/example/level3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5ba04a3f5f021e6340cd8ae24058e985c9edcaf2 --- /dev/null +++ b/maze/task5/example/level3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce02898472e0dae909101f23664d4e12526aeaadf4a27e07cc46d292617b0e96 +size 5725 diff --git a/maze/task5/example/level3/img/7.png b/maze/task5/example/level3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f98c5a830f3ee0a8136a2cd3a12977f3f3c926e8 --- /dev/null +++ b/maze/task5/example/level3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03cfc3d9196a7a02fb90d3da9f337acc01f90f746fdbcf2bc23cbf1f81c348d4 +size 4849 diff --git a/maze/task5/example/level3/pure_text/0.txt b/maze/task5/example/level3/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2de5e3fcd3fab227cf715852294436ec8026bbc --- /dev/null +++ b/maze/task5/example/level3/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level3/pure_text/1.txt b/maze/task5/example/level3/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7b3336651e28c79305c68bf01148ac0ecb9d59f --- /dev/null +++ b/maze/task5/example/level3/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 3, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level3/pure_text/2.txt b/maze/task5/example/level3/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e536d1a1e4520d9838a526b72452ec27c4a634f8 --- /dev/null +++ b/maze/task5/example/level3/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +There is no holes in this map; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/example/level3/pure_text/3.txt b/maze/task5/example/level3/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..652f610a2f740e261b855cb980cec65ad64fac68 --- /dev/null +++ b/maze/task5/example/level3/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level3/pure_text/4.txt b/maze/task5/example/level3/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..033b4c874cdca766b7fbf81d30c210a98597789c --- /dev/null +++ b/maze/task5/example/level3/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level3/pure_text/5.txt b/maze/task5/example/level3/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5437f43cf00a4010a1f8e1c1617ac90db67ae2c7 --- /dev/null +++ b/maze/task5/example/level3/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level3/pure_text/6.txt b/maze/task5/example/level3/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..036b8bc78fa40736a78993c4a110ffb56b2df96c --- /dev/null +++ b/maze/task5/example/level3/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level3/pure_text/7.txt b/maze/task5/example/level3/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..80451514cada60984558f7cd3e72eb5c653065d8 --- /dev/null +++ b/maze/task5/example/level3/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level3/table/0.txt b/maze/task5/example/level3/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..00c40508a9c4676b5dc70d5e42cb0fc2e847b845 --- /dev/null +++ b/maze/task5/example/level3/table/0.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | # | # | diff --git a/maze/task5/example/level3/table/1.txt b/maze/task5/example/level3/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b50c62de63786c5e91c19e9374ec40f1f2f6306 --- /dev/null +++ b/maze/task5/example/level3/table/1.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | * | _ | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task5/example/level3/table/2.txt b/maze/task5/example/level3/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bc97a40e4868bc66be895e24d72540ae1a3ddfe --- /dev/null +++ b/maze/task5/example/level3/table/2.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | * | +| Row 3 | @ | _ | _ | diff --git a/maze/task5/example/level3/table/3.txt b/maze/task5/example/level3/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9d18d846f6c2ad13e4e8b082d6bd571cc529024 --- /dev/null +++ b/maze/task5/example/level3/table/3.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task5/example/level3/table/4.txt b/maze/task5/example/level3/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..75bcdbc01c3ab7cedbed62bd92f90aeb57cb81d7 --- /dev/null +++ b/maze/task5/example/level3/table/4.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | # | @ | # | +| Row 3 | _ | * | _ | diff --git a/maze/task5/example/level3/table/5.txt b/maze/task5/example/level3/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..10b169e2c48db9e54e9ed479d7562e3d0441afd7 --- /dev/null +++ b/maze/task5/example/level3/table/5.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | * | _ | diff --git a/maze/task5/example/level3/table/6.txt b/maze/task5/example/level3/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..219b7ff5db07e151a9ab5df09f776afa00a4e62a --- /dev/null +++ b/maze/task5/example/level3/table/6.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | # | diff --git a/maze/task5/example/level3/table/7.txt b/maze/task5/example/level3/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cec6f68474f3e36467f21994c9719bb1ba0ed4b8 --- /dev/null +++ b/maze/task5/example/level3/table/7.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/example/level4/answer/0.txt b/maze/task5/example/level4/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2518d6c8978e9c9b6be0acdb7654280cd019f49a --- /dev/null +++ b/maze/task5/example/level4/answer/0.txt @@ -0,0 +1,15 @@ + +The player is at row 4, column 1, and the goal is at row 1, column 2. +There is 1 hole. It is at: row 1, column 3. + +- Moving Right (R). The player is now at row 4, column 2. This grid is safe. +- Moving Up (U). The player is now at row 3, column 2. This grid is safe. +- Moving Up (U). The player is now at row 2, column 2. This grid is safe. +- Moving Up (U). The player is now at row 1, column 2. This grid is the goal, so we stop here. + +1. Right to row 4, column 2 (safe) +2. Up to row 3, column 2 (safe) +3. Up to row 2, column 2 (safe) +4. Up to row 1, column 2 (goal) + +Action plan: R,U,U,U \ No newline at end of file diff --git a/maze/task5/example/level4/answer/1.txt b/maze/task5/example/level4/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6daeaf2b0877e945b425f578a22199bfa96915a3 --- /dev/null +++ b/maze/task5/example/level4/answer/1.txt @@ -0,0 +1,14 @@ + +The player is at row 2, column 4, and the goal is at row 3, column 2. +There are 5 holes. They are at: row 1, column 4; row 2, column 1; row 3, column 1; row 3, column 3; row 4, column 3. + +- Moving Left (L). The player is now at row 2, column 3. This grid is safe. +- Moving Down (D). The player is now at row 3, column 3. This grid contains a hole! Revert this step - the player is still at row 2, column 3. +- Replan: Moving Left (L). The player is now at row 2, column 2. This grid is safe. +- Moving Down (D). The player is now at row 3, column 2. This grid is the goal, so we stop here. + +1. Left to row 2, column 3 (safe) +2. Left to row 2, column 2 (safe) +3. Down to row 3, column 2 (goal) + +Action plan: L,L,D \ No newline at end of file diff --git a/maze/task5/example/level4/answer/2.txt b/maze/task5/example/level4/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..025843115c165dee48b861769dbe1abbeb7d7c62 --- /dev/null +++ b/maze/task5/example/level4/answer/2.txt @@ -0,0 +1,13 @@ + +The player is at row 1, column 1, and the goal is at row 3, column 2. +There are 4 holes. They are at: row 1, column 2; row 2, column 2; row 3, column 3; row 4, column 4. + +- Moving Down (D). The player is now at row 2, column 1. This grid is safe. +- Moving Down (D). The player is now at row 3, column 1. This grid is safe. +- Moving Right (R). The player is now at row 3, column 2. This grid is the goal, so we stop here. + +1. Down to row 2, column 1 (safe) +2. Down to row 3, column 1 (safe) +3. Right to row 3, column 2 (goal) + +Action plan: D,D,R \ No newline at end of file diff --git a/maze/task5/example/level4/answer/3.txt b/maze/task5/example/level4/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f43379f6bb05bc150616fade5ebed601db4e33c9 --- /dev/null +++ b/maze/task5/example/level4/answer/3.txt @@ -0,0 +1,9 @@ + +The player is at row 3, column 1, and the goal is at row 2, column 1. +There are two holes. They are at: row 3, column 3; row 4, column 4. + +- Moving Up (U). The player is now at row 2, column 1. This grid is the goal, so we stop here. + +1. Up to row 2, column 1 (goal) + +Action plan: U \ No newline at end of file diff --git a/maze/task5/example/level4/answer/4.txt b/maze/task5/example/level4/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..aeed6d1e7c37918f8dec4a3380bef29df39f15df --- /dev/null +++ b/maze/task5/example/level4/answer/4.txt @@ -0,0 +1,13 @@ + +The player is at row 1, column 3, and the goal is at row 4, column 3. +There are 3 holes. They are at: row 1, column 2; row 4, column 2; row 4, column 4. + +- Moving Down (D). The player is now at row 2, column 3. This grid is safe. +- Moving Down (D). The player is now at row 3, column 3. This grid is safe. +- Moving Down (D). The player is now at row 4, column 3. This grid is the goal, so we stop here. + +1. Down to row 2, column 3 (safe) +2. Down to row 3, column 3 (safe) +3. Down to row 4, column 3 (goal) + +Action plan: D,D,D \ No newline at end of file diff --git a/maze/task5/example/level4/answer/5.txt b/maze/task5/example/level4/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..95c95141468db6df5ec4bddf892b991571c2fa7d --- /dev/null +++ b/maze/task5/example/level4/answer/5.txt @@ -0,0 +1,14 @@ + +The player is at row 3, column 3, and the goal is at row 1, column 4. +There are 3 holes. They are at: row 2, column 2; row 3, column 1; row 3, column 4. + +- Moving Right (R). The player is now at row 3, column 4. This grid contains a hole! Revert this step - the player is still at row 3, column 3. +- Replan: Moving Up (U). The player is now at row 2, column 3. This grid is safe. +- Moving Up (U). The player is now at row 1, column 3. This grid is safe. +- Moving Right (R). The player is now at row 1, column 4. This grid is the goal, so we stop here. + +1. Up to row 2, column 3 (safe) +2. Up to row 1, column 3 (safe) +3. Right to row 1, column 4 (goal) + +Action plan: U,U,R \ No newline at end of file diff --git a/maze/task5/example/level4/answer/6.txt b/maze/task5/example/level4/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c8c3bc609709d9ce8a790d91341bd5bb4310234 --- /dev/null +++ b/maze/task5/example/level4/answer/6.txt @@ -0,0 +1,15 @@ + +The player is at row 2, column 1, and the goal is at row 3, column 4. +There are 2 holes. They are at: row 1, column 3; row 3, column 2. + +- Moving Right (R). The player is now at row 2, column 2. This grid is safe. +- Moving Right (R). The player is now at row 2, column 3. This grid is safe. +- Moving Right (R). The player is now at row 2, column 4. This grid is safe. +- Moving Down (D). The player is now at row 3, column 4. This grid is the goal, so we stop here. + +1. Right to row 2, column 2 (safe) +2. Right to row 2, column 3 (safe) +3. Right to row 2, column 4 (safe) +4. Down to row 3, column 4 (goal) + +Action plan: R,R,R,D \ No newline at end of file diff --git a/maze/task5/example/level4/answer/7.txt b/maze/task5/example/level4/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d740f4fc4e53c1bcbddc55bab36d1070893d1cd --- /dev/null +++ b/maze/task5/example/level4/answer/7.txt @@ -0,0 +1,14 @@ + +The player is at row 4, column 1, and the goal is at row 3, column 3. +There are 4 holes. They are at: row 2, column 3; row 2, column 4; row 3, column 2; row 3, column 4. + +- Moving Right (R). The player is now at row 4, column 2. This grid is safe. +- Moving Up (U). The player is now at row 3, column 2. This grid contains a hole! Revert this step - the player is still at row 4, column 2. +- Replan: Moving Left (R). The player is now at row 4, column 3. This grid is safe. +- Moving Up (U). The player is now at row 3, column 3. This grid is the goal, so we stop here. + +1. Right to row 4, column 2 (safe) +2. Right to row 4, column 3 (safe) +3. Up to row 3, column 3 (goal) + +Action plan: R,R,U \ No newline at end of file diff --git a/maze/task5/example/level4/img/0.png b/maze/task5/example/level4/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c074c9dc702f7b92a9ec9ad521a6c586ca4f459e --- /dev/null +++ b/maze/task5/example/level4/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25592c71462fe5f55b364dd00da91b2cdee432b629ae3cba637b95456d07a592 +size 6232 diff --git a/maze/task5/example/level4/img/1.png b/maze/task5/example/level4/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed99e7af18fd0c7b08336597145aa0341828d56 --- /dev/null +++ b/maze/task5/example/level4/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c5bed43c76a123f06b50a38730d88692854d81fe67084cccbad61483edd40d +size 8657 diff --git a/maze/task5/example/level4/img/2.png b/maze/task5/example/level4/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d32da5ff0d58f43fd518b8cac5040ed426fb77 --- /dev/null +++ b/maze/task5/example/level4/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7ebf8c35c853e1b6dd29a8ebd398d700313b9adf7fa703399fe2c95e22cc0b +size 8847 diff --git a/maze/task5/example/level4/img/3.png b/maze/task5/example/level4/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dd920256d0699c093a4b6beec1f30a61a684d0a3 --- /dev/null +++ b/maze/task5/example/level4/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b30c02646632b0ee4220b4828db84b64ff9bab153cb38c57b597ef361a882c +size 7066 diff --git a/maze/task5/example/level4/img/4.png b/maze/task5/example/level4/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..89487cf5f04dd9f480026eb7388a9f5c5e2c5097 --- /dev/null +++ b/maze/task5/example/level4/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03bea8593fc946ee54381924b2c22d655db08105f455c4df62773b196efbb5e +size 7137 diff --git a/maze/task5/example/level4/img/5.png b/maze/task5/example/level4/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0c6c0cc6a6ec3382df2731ebc84e565d34e124 --- /dev/null +++ b/maze/task5/example/level4/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e546e87bdaa563f43144753cc637a543340a3d244989a37a3009461a972ea2 +size 7091 diff --git a/maze/task5/example/level4/img/6.png b/maze/task5/example/level4/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..487c89794e5b4262f4df94194d870899d3d61951 --- /dev/null +++ b/maze/task5/example/level4/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ef04692ebdd21df54384d2a7f0624805ef62e88445f846fddb518872e20c86 +size 7093 diff --git a/maze/task5/example/level4/img/7.png b/maze/task5/example/level4/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..37c20da02df2ff06dedd67e313ecc433c323b4c4 --- /dev/null +++ b/maze/task5/example/level4/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5800ae68bd7c990eda0472906080d5458ba211e069e329c2b8f5250aa4681c +size 6992 diff --git a/maze/task5/example/level4/pure_text/0.txt b/maze/task5/example/level4/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..483a1d4516511fca9b7764affa29c5ee41cde520 --- /dev/null +++ b/maze/task5/example/level4/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level4/pure_text/1.txt b/maze/task5/example/level4/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba7ef85b06e2229ff6148f70cc0da129daa60832 --- /dev/null +++ b/maze/task5/example/level4/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level4/pure_text/2.txt b/maze/task5/example/level4/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e069b4c82b87012c3163e2e796cc788f973997f --- /dev/null +++ b/maze/task5/example/level4/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level4/pure_text/3.txt b/maze/task5/example/level4/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a8196519358c7c0c9f459c415a2fca1dd878bc --- /dev/null +++ b/maze/task5/example/level4/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level4/pure_text/4.txt b/maze/task5/example/level4/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..877ac0fc1aaa46f2cc7b7e6af3e6c72f52fe770b --- /dev/null +++ b/maze/task5/example/level4/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/example/level4/pure_text/5.txt b/maze/task5/example/level4/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a7a2a3a3d3a1879a486eba4692b9c39835cb5e6 --- /dev/null +++ b/maze/task5/example/level4/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/example/level4/pure_text/6.txt b/maze/task5/example/level4/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9cd663d3cc66e9667e32ba33f461bbeb399b987 --- /dev/null +++ b/maze/task5/example/level4/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/example/level4/pure_text/7.txt b/maze/task5/example/level4/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..205bec47b55c081a13d0cc189b3fc819d78e9334 --- /dev/null +++ b/maze/task5/example/level4/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/example/level4/table/0.txt b/maze/task5/example/level4/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..815594278835ff16e844e4e7d79e7fd83889783e --- /dev/null +++ b/maze/task5/example/level4/table/0.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task5/example/level4/table/1.txt b/maze/task5/example/level4/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..38400a2e54f20e192e2df90786376abcbd40db0d --- /dev/null +++ b/maze/task5/example/level4/table/1.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | _ | _ | @ | +| Row 3 | # | * | # | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/example/level4/table/2.txt b/maze/task5/example/level4/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e7412d463dab9f3da9532e6ab75b2bd820952a2 --- /dev/null +++ b/maze/task5/example/level4/table/2.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | * | # | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task5/example/level4/table/3.txt b/maze/task5/example/level4/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..de9f64857c4f765bc122f867933421e3441771d7 --- /dev/null +++ b/maze/task5/example/level4/table/3.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task5/example/level4/table/4.txt b/maze/task5/example/level4/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..597fa54933b1340266037ea6765adb19a98cd07d --- /dev/null +++ b/maze/task5/example/level4/table/4.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | # | * | # | diff --git a/maze/task5/example/level4/table/5.txt b/maze/task5/example/level4/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2622837a53939c32d55fdb03b3bd2811e8d5164 --- /dev/null +++ b/maze/task5/example/level4/table/5.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/example/level4/table/6.txt b/maze/task5/example/level4/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a757c56d184c278014532e6b830ef98a884c3a --- /dev/null +++ b/maze/task5/example/level4/table/6.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/example/level4/table/7.txt b/maze/task5/example/level4/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0e9c85563ed1572231c5dd7076d123685f98882 --- /dev/null +++ b/maze/task5/example/level4/table/7.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | +| Row 3 | _ | # | * | # | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task5/example/level5/answer/0.txt b/maze/task5/example/level5/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e27ee1b9362cdeaeca3e5af374af45ae257c8f40 --- /dev/null +++ b/maze/task5/example/level5/answer/0.txt @@ -0,0 +1,14 @@ + +The player is at row 5, column 1, and the goal is at row 4, column 3. +There are 2 holes. They are at: row 4, column 1; row 3, column 2. + +- Moving Up (U). The player is now at row 4, column 1. This grid contains a hole! Revert this step - the player is still at row 5, column 1. +- Replan: Moving Right (R). The player is now at row 5, column 2. This grid is safe. +- Moving Right (R). The player is now at row 5, column 3. This grid is safe. +- Moving Up (U). The player is now at row 4, column 3. This grid is the goal, so we stop here. + +1. Right to row 5, column 2 (safe) +2. Right to row 5, column 3 (safe) +3. Up to row 4, column 3 (goal) + +Action plan: R,R,U \ No newline at end of file diff --git a/maze/task5/example/level5/answer/1.txt b/maze/task5/example/level5/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba85938f4272055274e0a66a35879eea263afd3e --- /dev/null +++ b/maze/task5/example/level5/answer/1.txt @@ -0,0 +1,17 @@ + +The player is at row 1, column 3, and the goal is at row 4, column 1. +There are 5 holes. They are at: row 1, column 5; row 2, column 3; row 3, column 2; row 3, column 5; row 4, column 5. + +- Moving Left (L). The player is now at row 1, column 2. This grid is safe. +- Moving Left (L). The player is now at row 1, column 1. This grid is safe. +- Moving Down (D). The player is now at row 2, column 1. This grid is safe. +- Moving Down (D). The player is now at row 3, column 1. This grid is safe. +- Moving Down (D). The player is now at row 4, column 1. This grid is the goal, so we stop here. + +1. Left to row 1, column 2 (safe) +2. Left to row 1, column 1 (safe) +3. Down to row 2, column 1 (safe) +4. Down to row 2, column 2 (safe) +5. Down to row 2, column 3 (goal) + +Action plan: L,L,D,D,D \ No newline at end of file diff --git a/maze/task5/example/level5/answer/2.txt b/maze/task5/example/level5/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..8dc784b9cedad4890c5ebf922ba8dc3f73c39813 --- /dev/null +++ b/maze/task5/example/level5/answer/2.txt @@ -0,0 +1,11 @@ + +The player is at row 4, column 2, and the goal is at row 3, column 3. +There are 4 holes. They are at: row 2, column 2; row 3, column 2; row 3, column 5; row 5, column 4. + +- Moving Right (R). The player is now at row 4, column 3. This grid is safe. +- Moving Right (U). The player is now at row 3, column 3. This grid is the goal, so we stop here. + +1. Right to row 4, column 3 (safe) +2. Up to row 3, column 3 (goal) + +Action plan: R,U \ No newline at end of file diff --git a/maze/task5/example/level5/answer/3.txt b/maze/task5/example/level5/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1513994b6a35d68dd13739ea285528e99e2c61e --- /dev/null +++ b/maze/task5/example/level5/answer/3.txt @@ -0,0 +1,15 @@ + +The player is at row 2, column 4, and the goal is at row 1, column 1. +There are 8 holes. They are at: row 1, column 4; row 2, column 1; row 2, column 2; row 2, column 5; row 3, column 1; row 3, column 2; row 3, column 3; row 3, column 4. + +- Moving Left (L). The player is now at row 2, column 3. This grid is safe. +- Moving Up (U). The player is now at row 1, column 3. This grid is safe. +- Moving Left (L). The player is now at row 1, column 2. This grid is safe. +- Moving Left (L). The player is now at row 1, column 1. This grid is the goal, so we stop here. + +1. Left to row 2, column 3 (safe) +2. Up to row 1, column 3 (safe) +3. Left to row 1, column 2 (safe) +4. Left to row 1, column 1 (goal) + +Action plan: L,U,L,L \ No newline at end of file diff --git a/maze/task5/example/level5/answer/4.txt b/maze/task5/example/level5/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..99f746b4c81aa582f09b86fd0ed9b28783f680e1 --- /dev/null +++ b/maze/task5/example/level5/answer/4.txt @@ -0,0 +1,14 @@ + +The player is at row 4, column 3, and the goal is at row 2, column 2. +There are 6 holes. They are at: row 1, column 2; row 3, column 4; row 3, column 5; row 4, column 1; row 4, column 2; row 5, column 1. + +- Moving Left (L). The player is now at row 4, column 2. This grid contains a hole! Revert this step - the player is still at row 4, column 3. +- Replan: Moving Up (U). The player is now at row 3, column 3. This grid is safe. +- Moving Left (L). The player is now at row 3, column 2. This grid is safe. +- Moving Up (U). The player is now at row 2, column 2. This grid is the goal, so we stop here. + +1. Up to row 3, column 3 (safe) +2. Left to row 3, column 2 (safe) +3. Up to row 2, column 2 (goal) + +Action plan: U,L,U \ No newline at end of file diff --git a/maze/task5/example/level5/answer/5.txt b/maze/task5/example/level5/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..07e7be98d2d376d5f10386d083e5838382696bd1 --- /dev/null +++ b/maze/task5/example/level5/answer/5.txt @@ -0,0 +1,20 @@ + +The player is at row 2, column 1, and the goal is at row 2, column 5. +There are 7 holes. They are at: row 1, column 2; row 2, column 4; row 3, column 5; row 4, column 1; row 4, column 3; row 5, column 1; row 5, column 2. + +- Moving Right (R). The player is now at row 2, column 2. This grid is safe. +- Moving Right (R). The player is now at row 2, column 3. This grid is safe. +- Moving Right (R). The player is now at row 2, column 4. This grid contains a hole! Revert this step - the player is still at row 2, column 3. +- Replan: Moving Up (U). The player is now at row 1, column 3. This grid is safe. +- Moving Right (R). The player is now at row 1, column 4. This grid is safe. +- Moving Right (R). The player is now at row 1, column 5. This grid is safe. +- Moving Down (D). The player is now at row 2, column 5. This grid is the goal, so we stop here. + +1. Right to row 2, column 2 (safe) +2. Right to row 2, column 3 (safe) +3. Up to row 1, column 3 (safe) +4. Right to row 1, column 4 (safe) +5. Right to row 1, column 5 (safe) +6. Down to row 2, column 5 (goal) + +Action plan: R,R,U,R,R,D \ No newline at end of file diff --git a/maze/task5/example/level5/answer/6.txt b/maze/task5/example/level5/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c13b8dbb6ddf4b880307245573e32a37a0e3f22 --- /dev/null +++ b/maze/task5/example/level5/answer/6.txt @@ -0,0 +1,15 @@ + +The player is at row 2, column 2, and the goal is at row 3, column 5. +There are 6 holes. They are at: row 1, column 2; row 2, column 3; row 2, column 4; row 4, column 1; row 4, column 3; row 5, column 2. + +- Moving Down (D). The player is now at row 3, column 2. This grid is safe. +- Moving Right (R). The player is now at row 3, column 3. This grid is safe. +- Moving Right (R). The player is now at row 4, column 3. This grid is safe. +- Moving Right (R). The player is now at row 5, column 3. This grid is the goal, so we stop here. + +1. Down to row 3, column 2 (safe) +2. Right to row 3, column 3 (safe) +3. Right to row 4, column 3 (safe) +4. Right to row 5, column 3 (goal) + +Action plan: D,R,R,R \ No newline at end of file diff --git a/maze/task5/example/level5/answer/7.txt b/maze/task5/example/level5/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5c0793e23ee04493c474bc571042f393b78fce9 --- /dev/null +++ b/maze/task5/example/level5/answer/7.txt @@ -0,0 +1,24 @@ + +The player is at row 1, column 5, and the goal is at row 1, column 1. +There are 3 holes. They are at: row 1, column 3; row 2, column 3; row 5, column 4. + +- Moving Left (L). The player is now at row 1, column 4. This grid is safe. +- Moving Left (L). The player is now at row 1, column 3. This grid contains a hole! Revert this step - the player is still at row 1, column 4. +- Replan: Moving Down (D). The player is now at row 2, column 4. This grid is safe. +- Moving Down (D). The player is now at row 3, column 4. This grid is safe. +- Moving Left (L). The player is now at row 3, column 3. This grid is safe. +- Moving Left (L). The player is now at row 3, column 2. This grid is safe. +- Moving Left (L). The player is now at row 3, column 1. This grid is safe. +- Moving Up (U). The player is now at row 2, column 1. This grid is safe. +- Moving Up (U). The player is now at row 1, column 1. This grid is the goal, so we stop here. + +1. Left to row 1, column 4 (safe) +2. Down to row 2, column 4 (safe) +3. Down to row 3, column 4 (safe) +4. Left to row 3, column 3 (safe) +5. Left to row 3, column 2 (safe) +6. Left to row 3, column 1 (safe) +7. Up to row 2, column 1 (safe) +8. Up to row 1, column 1 (safe) + +Action plan: L,D,D,L,L,L,U,U \ No newline at end of file diff --git a/maze/task5/example/level5/img/0.png b/maze/task5/example/level5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ed5e7badc06275eeaa5b41d085dc623c2af81a --- /dev/null +++ b/maze/task5/example/level5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fadd0fae179efcdce0a96bb58f646621aadeb39a3d18bea6d44630dba00955d3 +size 8682 diff --git a/maze/task5/example/level5/img/1.png b/maze/task5/example/level5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..82b3e6463a6aa8aab753e948240e30c19102cd2d --- /dev/null +++ b/maze/task5/example/level5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d22eab26f87cfb01be09c75c509164d96d7421278b0c50e38602c9fafb9687 +size 10290 diff --git a/maze/task5/example/level5/img/2.png b/maze/task5/example/level5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c3e9af1902cc943b4f94c2215bd33a94edafa0b8 --- /dev/null +++ b/maze/task5/example/level5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09753e5556f0aaf26f05dc726115603db47614a8f3989c87245b4c3a9cf8ccda +size 9649 diff --git a/maze/task5/example/level5/img/3.png b/maze/task5/example/level5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..08ebdff007b8a59d3eea8c457738d40f33d539d9 --- /dev/null +++ b/maze/task5/example/level5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a646049df05d461081e86964898ab02ba353f7f15016c84b1ecbe9eb463cf098 +size 9355 diff --git a/maze/task5/example/level5/img/4.png b/maze/task5/example/level5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1e12e5a7925369d062fc3673600d8ff8a57c468b --- /dev/null +++ b/maze/task5/example/level5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464864c5b635bf5fb3a5ff0415fd306b7e0b6a18fdcce1742c1f35d0dc074334 +size 10364 diff --git a/maze/task5/example/level5/img/5.png b/maze/task5/example/level5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9d16c27c4df5179272f61b3be543d93b14cbbe95 --- /dev/null +++ b/maze/task5/example/level5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fc7914a946fefa1f6e2fca2baa97a8512abb7d6b3a0d2af34b57cfcbab701d +size 11211 diff --git a/maze/task5/example/level5/img/6.png b/maze/task5/example/level5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d37d690b3f8d52f70d3eed5b4ce7fdbe20da97 --- /dev/null +++ b/maze/task5/example/level5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a8d438ccda3f10d587b1d1e1dfde868394fd5da1e752ee0a8c4445c6fcebe6 +size 10463 diff --git a/maze/task5/example/level5/img/7.png b/maze/task5/example/level5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f57983012206b090b958f693e4a337ad4ac9606f --- /dev/null +++ b/maze/task5/example/level5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac9741bb5db7166aac63fb953280b8c55a90d974989f0cd055e5fd708fc5908 +size 9504 diff --git a/maze/task5/example/level5/pure_text/0.txt b/maze/task5/example/level5/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb947fd1ac8dd5d6458ae540814c096d5bced44c --- /dev/null +++ b/maze/task5/example/level5/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/example/level5/pure_text/1.txt b/maze/task5/example/level5/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..de747d6f632d9d8cb77eed00e8b469ca6a86a6f2 --- /dev/null +++ b/maze/task5/example/level5/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 3; Row 3, Column 2; Row 3, Column 5; Row 4, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level5/pure_text/2.txt b/maze/task5/example/level5/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..05f14549840d31b2f526641a94905868159c13b8 --- /dev/null +++ b/maze/task5/example/level5/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 2, Column 2; Row 3, Column 2; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/example/level5/pure_text/3.txt b/maze/task5/example/level5/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2bac0cea78dc72d995c4f71c5a7cd2a581ff701 --- /dev/null +++ b/maze/task5/example/level5/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level5/pure_text/4.txt b/maze/task5/example/level5/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a0c342ab86cbe0dcef24f2f5a5428b288aa3693 --- /dev/null +++ b/maze/task5/example/level5/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level5/pure_text/5.txt b/maze/task5/example/level5/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..3dab24bd945d6633acc3fbe49590d13b45581c74 --- /dev/null +++ b/maze/task5/example/level5/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/example/level5/pure_text/6.txt b/maze/task5/example/level5/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..64965fda851d5ae0698b3fc7a2c4907a55671e49 --- /dev/null +++ b/maze/task5/example/level5/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 2, Column 4; Row 4, Column 1; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task5/example/level5/pure_text/7.txt b/maze/task5/example/level5/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a3aa36b6c11a6c8334cb9bb3ff8a2bc258ecb1c --- /dev/null +++ b/maze/task5/example/level5/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level5/table/0.txt b/maze/task5/example/level5/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..86b4bf90293fa3e2532d3d32fb2c3f82398e537f --- /dev/null +++ b/maze/task5/example/level5/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | * | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | diff --git a/maze/task5/example/level5/table/1.txt b/maze/task5/example/level5/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..e004a61bb10d458b78bc97754f0ae009a3d3de9b --- /dev/null +++ b/maze/task5/example/level5/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | * | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/example/level5/table/2.txt b/maze/task5/example/level5/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce4ab17941fc9eca1bd9e698d7a90d755858bc03 --- /dev/null +++ b/maze/task5/example/level5/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | # | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task5/example/level5/table/3.txt b/maze/task5/example/level5/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..eec9edc674494a92fa2cc0557e2fb6c7f158b4b8 --- /dev/null +++ b/maze/task5/example/level5/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | _ | +| Row 2 | # | # | _ | @ | # | +| Row 3 | # | # | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/example/level5/table/4.txt b/maze/task5/example/level5/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..c82a394a4916e54c4505524f81c190358d0c5881 --- /dev/null +++ b/maze/task5/example/level5/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | # | # | @ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task5/example/level5/table/5.txt b/maze/task5/example/level5/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4762bf846d10ce1f59add226bf1712cdc7cdd9f7 --- /dev/null +++ b/maze/task5/example/level5/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task5/example/level5/table/6.txt b/maze/task5/example/level5/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..26069240440523c99c2ea4e490dbece14ab1cf82 --- /dev/null +++ b/maze/task5/example/level5/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | * | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task5/example/level5/table/7.txt b/maze/task5/example/level5/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bef2e37a8e20a6091f70c1f196035f8099dc4a1 --- /dev/null +++ b/maze/task5/example/level5/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | @ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task5/example/level6/answer/0.txt b/maze/task5/example/level6/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f123fb902fe514c2860e65a59806b24a46b29a0 --- /dev/null +++ b/maze/task5/example/level6/answer/0.txt @@ -0,0 +1,20 @@ + +The player is at row 4, column 2, and the goal is at row 4, column 6. +There are 4 holes. They are at: row 3, column 1; row 3, column 2; row 1, column 6; row 4, column 5. + +- Moving Right (R). The player is now at row 4, column 3. This grid is safe. +- Moving Right (R). The player is now at row 4, column 4. This grid is safe. +- Moving Right (R). The player is now at row 4, column 5. This grid contains a hole! Revert this step - the player is still at row 4, column 4. +- Replan: Moving Down (D). The player is now at row 5, column 4. This grid is safe. +- Moving Right (R). The player is now at row 5, column 5. This grid is safe. +- Moving Right (R). The player is now at row 5, column 6. This grid is safe. +- Moving Up (U). The player is now at row 4, column 6. This grid is the goal, so we stop here. + +1. Right to row 4, column 3 (safe) +2. Right to row 4, column 4 (safe) +3. Down to row 5, column 4 (safe) +4. Right to row 5, column 5 (safe) +5. Right to row 5, column 6 (safe) +6. Up to row 4, column 6 (goal) + +Action plan: R,R,D,R,R,U \ No newline at end of file diff --git a/maze/task5/example/level6/answer/1.txt b/maze/task5/example/level6/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfb5ce7ac6122e039df158c10ef5a79fe68cc890 --- /dev/null +++ b/maze/task5/example/level6/answer/1.txt @@ -0,0 +1,19 @@ + +The player is at row 1, column 6, and the goal is at row 1, column 2. +There are 6 holes. They are at: row 1, column 3; row 3, column 3; row 4, column 3; row 4, column 4; row 5, column 2; row 6, column 3. + +- Moving Left (L). The player is now at row 1, column 5. This grid is safe. +- Moving Left (L). The player is now at row 1, column 4. This grid is safe. +- Moving Down (D). The player is now at row 2, column 4. This grid is safe. +- Moving Left (L). The player is now at row 2, column 3. This grid is safe. +- Moving Left (L). The player is now at row 2, column 2. This gird is safe. +- Moving Up (U). The player is now at row 1, column 2. This grid is the goal, so we stop here. + +1. Left to row 1, column 5 (safe) +2. Left to row 1, column 4 (safe) +3. Down to row 2, column 4 (safe) +4. Left to row 2, column 3 (safe) +5. Left to row 2, column 2 (safe) +6. Up to row 1, column 2 (goal) + +Action plan: L,L,D,L,L,U \ No newline at end of file diff --git a/maze/task5/example/level6/answer/2.txt b/maze/task5/example/level6/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..601040bc7cc1467f53240de4865f07b7f7a59bec --- /dev/null +++ b/maze/task5/example/level6/answer/2.txt @@ -0,0 +1,19 @@ + +The player is at row 3, column 3, and the goal is at row 6, column 6. +There are 4 holes. They are at: row 1, column 1; row 1, column 3; row 2, column 1; row 6, column 3. + +- Moving Right (R). The player is now at row 3, column 4. This grid is safe. +- Moving Right (R). The player is now at row 3, column 5. This grid is safe. +- Moving Right (R). The player is now at row 3, column 6. This grid is safe. +- Moving Down (D). The player is now at row 4, column 6. This grid is safe. +- Moving Down (D). The player is now at row 5, column 6. This grid is safe. +- Moving Down (D). The player is now at row 6, column 6. This grid is the goal, so we stop here. + +1. Right to row 3, column 4 (safe) +2. Right to row 3, column 5 (safe) +3. Right to row 3, column 6 (safe) +4. Down to row 4, column 6 (safe) +5. Down to row 5, column 6 (safe) +6. Down to row 6, column 6 (goal) + +Action plan: R,R,R,D,D,D \ No newline at end of file diff --git a/maze/task5/example/level6/answer/3.txt b/maze/task5/example/level6/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..27bc1401e4bde981357a683cd7b5a614d47ab95d --- /dev/null +++ b/maze/task5/example/level6/answer/3.txt @@ -0,0 +1,11 @@ + +The player is at row 5, column 6, and the goal is at row 5, column 4. +There are 6 holes. They are at: row 1, column 6; row 2, column 1; row 2, column 6; row 4, column 4; row 6, column 3; row 6, column 5. + +- Moving Left (L). The player is now at row 5, column 5. This grid is safe. +- Moving Left (L). The player is now at row 5, column 4. This grid is the goal, so we stop here. + +1. Left to row 5, column 5 (safe) +2. Left to row 5, column 4 (goal) + +Action plan: L,L \ No newline at end of file diff --git a/maze/task5/example/level6/answer/4.txt b/maze/task5/example/level6/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..982b843c26d2d3d1c6f9b1fb1e48e7670aa9010d --- /dev/null +++ b/maze/task5/example/level6/answer/4.txt @@ -0,0 +1,27 @@ + +The player is at row 6, column 1, and the goal is at row 1, column 1. +There are 9 holes. They are at: row 1, column 5; row 2, column 3; row 3, column 1; row 3, column 4; row 4, column 4; row 5, column 1; row 5, column 2; row 5, column 6; row 6, column 5. + +- Moving Right (R). The player is now at row 6, column 2. This grid is safe. +- Moving Up (U). The player is now at row 5, column 2. This grid contains a hole! Revert this step - the player is still at row 6, column 2. +- Replan: Moving Right (R). The player is now at row 6, column 3. This grid is safe. +- Moving Up (U). The player is now at row 5, column 3. This grid is safe. +- Moving Up (U). The player is now at row 4, column 3. This grid is safe. +- Moving Up (U). The player is now at row 3, column 3. This grid is safe. +- Moving Up (U). The player is now at row 2, column 3. This grid contains a hole! Revert this step - the player is still at row 3, column 3. +- Replan: Moving Left (L). The player is now at row 3, column 2. This grid is safe. +- Moving Up (U). The player is now at row 2, column 2. This grid is safe. +- Moving Up (U). The player is now at row 1, column 2. This grid is safe. +- Moving Left (L). The player is now at row 1, column 1. This grid is the goal, so we stop here. + +1. Right to row 6, column 2 (safe) +2. Right to row 6, column 3 (safe) +3. Up to row 5, column 3 (safe) +4. Up to row 4, column 3 (safe) +5. Up to row 3, column 3 (safe) +6. Left to row 3, column 2 (safe) +7. Up to row 2, column 2 (safe) +8. Up to row 1, column 2 (safe) +9. Left to row 1, column 1 (goal) + +Action plan: R,R,U,U,U,L,U,U,L \ No newline at end of file diff --git a/maze/task5/example/level6/answer/5.txt b/maze/task5/example/level6/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fbf5d92a9c0f05bff22319dfa86549608c0d0ce --- /dev/null +++ b/maze/task5/example/level6/answer/5.txt @@ -0,0 +1,24 @@ + +The player is at row 6, column 5, and the goal is at row 1, column 4. +There are 9 holes. They are at: row 1, column 3; row 1, column 6; row 2, column 1; row 2, column 6; row 3, column 3; row 5, column 1; row 5, column 4; row 5, column 5; row 6, column 6. + +- Moving Left (L). The player is now at row 6, column 4. This grid is safe. +- Moving Up (U). The player is now at row 5, column 4. This grid contains a hole! Revert this step - the player is still at row 6, column 4. +- Replan: Moving Left (L). The player is now at row 6, column 3. This grid is safe. +- Moving Up (U). The player is now at row 5, column 3. This grid is safe. +- Moving Up (U). The player is now at row 4, column 3. This grid is safe. +- Moving Right (R). The player is now at row 4, column 4. This grid is safe. +- Moving Up (U). The player is now at row 3, column 4. This grid is safe. +- Moving Up (U). The player is now at row 2, column 4. This grid is safe. +- Moving Up (U). The player is now at row 1, column 4. This grid is the goal, so we stop here. + +1. Left to row 6, column 4 (safe) +2. Left to row 6, column 3 (safe) +3. Up to row 5, column 3 (safe) +4. Up to row 4, column 3 (safe) +5. Right to row 4, column 4 (safe) +6. Up to row 3, column 4 (safe) +7. Up to row 2, column 4 (safe) +8. Up to row 1, column 4 (goal) + +Action plan: L,L,U,U,R,U,U,U \ No newline at end of file diff --git a/maze/task5/example/level6/answer/6.txt b/maze/task5/example/level6/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..85e12e3143babbfa0ee8d418afd7ddb2c7b79ef6 --- /dev/null +++ b/maze/task5/example/level6/answer/6.txt @@ -0,0 +1,21 @@ + +The player is at row 6, column 6, and the goal is at row 4, column 1. +There are 7 holes. They are at: row 1, column 3; row 2, column 4; row 3, column 2; row 3, column 4; row 5, column 5; row 5, column 6; row 6, column 3. + +- Moving Left (L). The player is now at row 6, column 5. This grid is safe. +- Moving Left (L). The player is now at row 6, column 4. This grid is safe. +- Moving Up (U). The player is now at row 5, column 4. This grid is safe. +- Moving Up (U). The player is now at row 4, column 4. This grid is safe. +- Moving Left (L). The player is now at row 4, column 3. This grid is safe. +- Moving Left (L). The player is now at row 4, column 2. This grid is safe. +- Moving Left (L). The player is now at row 4, column 1. This grid is the goal, so we stop here. + +1. Left to row 6, column 5 (safe) +2. Left to row 6, column 4 (safe) +3. Up to row 5, column 4 (safe) +4. Up to row 4, column 4 (safe) +5. Left to row 4, column 3 (safe) +6. Left to row 4, column 2 (safe) +7. Left to row 4, column 1 (goal) + +Action plan: L,L,U,U,L,L,L \ No newline at end of file diff --git a/maze/task5/example/level6/answer/7.txt b/maze/task5/example/level6/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e1a5da5f2f68140b763a9a380642a8ca076728c --- /dev/null +++ b/maze/task5/example/level6/answer/7.txt @@ -0,0 +1,15 @@ + +The player is at row 6, column 5, and the goal is at row 4, column 3. +There are 4 holes. They are at: row 1, column 1; row 4, column 2; row 4, column 4; row 6, column 1. + +- Moving Left (L). The player is now at row 6, column 4. This grid is safe. +- Moving Left (L). The player is now at row 6, column 3. This grid is safe. +- Moving Up (U). The player is now at row 5, column 3. This grid is safe. +- Moving Up (U). The player is now at row 4, column 3. This grid is the goal, so we stop here. + +1. Left to row 6, column 4 (safe) +2. Left to row 6, column 3 (safe) +3. Up to row 5, column 3 (safe) +4. Up to row 4, column 3 (safe) + +Action plan: L,L,U,U \ No newline at end of file diff --git a/maze/task5/example/level6/img/0.png b/maze/task5/example/level6/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..232072305899cae72948427b7721c3e81282cfc1 --- /dev/null +++ b/maze/task5/example/level6/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4a1633af79971996f2de900aa888ab70b3f68917d0c68a1b0664bb71a5e2f6 +size 11248 diff --git a/maze/task5/example/level6/img/1.png b/maze/task5/example/level6/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..554f57e7af72b2d5c914d17f5987f5e820d88554 --- /dev/null +++ b/maze/task5/example/level6/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73acbaf052f72506244f75a232c9575cec593ecaa29c6803f80f699e87bfc73c +size 13137 diff --git a/maze/task5/example/level6/img/2.png b/maze/task5/example/level6/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a03450eac03433a22a55261ff1f70477daf999f7 --- /dev/null +++ b/maze/task5/example/level6/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1f87373934880cd4b047820200bf0484bdb55df3ccbd976638e68bb03cf9e2 +size 11281 diff --git a/maze/task5/example/level6/img/3.png b/maze/task5/example/level6/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..257bf7905575d38586568afce5bcc7712e1cf8e8 --- /dev/null +++ b/maze/task5/example/level6/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744006b6d8a85a99178974cad91f898c7e497cc5ce0f77c2faf49ed0ee3c8597 +size 12154 diff --git a/maze/task5/example/level6/img/4.png b/maze/task5/example/level6/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e66ed4f04c2f5d158a440ba376140b28a3955e3 --- /dev/null +++ b/maze/task5/example/level6/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305d0ceb3f99b0275209c4fc6ca0b6763ead0f9d6b24d1bfe2bcd68c6d2bcb1f +size 13989 diff --git a/maze/task5/example/level6/img/5.png b/maze/task5/example/level6/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..13d4dfdb513f5d10a82c5022907d1c2a8bade577 --- /dev/null +++ b/maze/task5/example/level6/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bab37e24e4b963309b273d5085cbdeafdbd008ce10b6c41f99d1a48edcded5b +size 13120 diff --git a/maze/task5/example/level6/img/6.png b/maze/task5/example/level6/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c9c14a2e46bb32a51da3b01db1a6f2d791489c --- /dev/null +++ b/maze/task5/example/level6/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2de05e5043907d5d7022c39541ac90d885d9149c64114d7d0622a57f48a695 +size 13023 diff --git a/maze/task5/example/level6/img/7.png b/maze/task5/example/level6/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..63802b59531589ab4d2b0a0c5c0b99d8cc2338b6 --- /dev/null +++ b/maze/task5/example/level6/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13028fc730b6933ab731745d9da5dc2233ffd63b68a6739764c8616d2c1b4ddc +size 11261 diff --git a/maze/task5/example/level6/pure_text/0.txt b/maze/task5/example/level6/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1c48925809c766c7145aa3ffec4fffd42779827 --- /dev/null +++ b/maze/task5/example/level6/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 6; Row 3, Column 1; Row 3, Column 2; Row 4, Column 5; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task5/example/level6/pure_text/1.txt b/maze/task5/example/level6/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..2282aa71e08203e0e33d5215eafb7c586d851096 --- /dev/null +++ b/maze/task5/example/level6/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 3; Row 3, Column 3; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 6, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level6/pure_text/2.txt b/maze/task5/example/level6/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..63a9e7fdbbc917aa2e14a7ba4b58b443df521130 --- /dev/null +++ b/maze/task5/example/level6/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 6, Column 3; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/example/level6/pure_text/3.txt b/maze/task5/example/level6/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5baca045acd032c1281f61da4a00df69f71fd2d --- /dev/null +++ b/maze/task5/example/level6/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 6; Row 2, Column 1; Row 2, Column 6; Row 4, Column 4; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/example/level6/pure_text/4.txt b/maze/task5/example/level6/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a5d28177c88950fcd86223019a19482da1eee44 --- /dev/null +++ b/maze/task5/example/level6/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 4, Column 4; Row 5, Column 1; Row 5, Column 2; Row 5, Column 6; Row 6, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level6/pure_text/5.txt b/maze/task5/example/level6/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..e325c07e3ea8b01690573366991ef2de4978f233 --- /dev/null +++ b/maze/task5/example/level6/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 2, Column 6; Row 3, Column 3; Row 5, Column 1; Row 5, Column 4; Row 5, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/example/level6/pure_text/6.txt b/maze/task5/example/level6/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..251545556f2caa509e330fca0041254bec693335 --- /dev/null +++ b/maze/task5/example/level6/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 3; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level6/pure_text/7.txt b/maze/task5/example/level6/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdacc7d34064f60bd4156707a81578ac19f9e0f0 --- /dev/null +++ b/maze/task5/example/level6/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 4, Column 2; Row 4, Column 4; Row 6, Column 1; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/example/level6/table/0.txt b/maze/task5/example/level6/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..6340868dbe4310e2ae51fcce01c23475dd6930ad --- /dev/null +++ b/maze/task5/example/level6/table/0.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/example/level6/table/1.txt b/maze/task5/example/level6/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b43969d54f5b920ac63e83d41e5c7ae8d59ef84d --- /dev/null +++ b/maze/task5/example/level6/table/1.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | # | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/example/level6/table/2.txt b/maze/task5/example/level6/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da74c6c2d5d8f20c7c046f94f866cecdf3386ca --- /dev/null +++ b/maze/task5/example/level6/table/2.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | diff --git a/maze/task5/example/level6/table/3.txt b/maze/task5/example/level6/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..6da5356dce77438746ad575a6275b14972b8c776 --- /dev/null +++ b/maze/task5/example/level6/table/3.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | * | _ | @ | +| Row 6 | _ | _ | # | _ | # | _ | diff --git a/maze/task5/example/level6/table/4.txt b/maze/task5/example/level6/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1d013eb166cbdce7e10a3c8a7abd84dcb439046 --- /dev/null +++ b/maze/task5/example/level6/table/4.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | +| Row 6 | @ | _ | _ | _ | # | _ | diff --git a/maze/task5/example/level6/table/5.txt b/maze/task5/example/level6/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2febc73f5797cd442af96e15957ae8ba51163b33 --- /dev/null +++ b/maze/task5/example/level6/table/5.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | * | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | @ | # | diff --git a/maze/task5/example/level6/table/6.txt b/maze/task5/example/level6/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbb899e0c6d69867f6d301ed44c95e6d3588803e --- /dev/null +++ b/maze/task5/example/level6/table/6.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | # | _ | _ | @ | diff --git a/maze/task5/example/level6/table/7.txt b/maze/task5/example/level6/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..28f47dba9968b21a748f614b85429189321dfff1 --- /dev/null +++ b/maze/task5/example/level6/table/7.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | * | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | @ | _ | diff --git a/maze/task5/example/level7/answer/0.txt b/maze/task5/example/level7/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..f62658055f4f694d9de9db15f40febf9c468e283 --- /dev/null +++ b/maze/task5/example/level7/answer/0.txt @@ -0,0 +1,17 @@ + +The player is at row 2, column 1, and the goal is at row 4, column 4. +There are 8 holes. They are at: row 2, column 4; row 3, column 3; row 4, column 5; row 4, column 7; row 6, column 1; row 6, column 2; row 6, column 4; row 6, column 7. + +- Moving Down (D). The player is now at row 3, column 1. This grid is safe. +- Moving Down (D). The player is now at row 4, column 1. This grid is safe. +- Moving Right (R). The player is now at row 4, column 2. This grid is safe. +- Moving Right (R). The player is now at row 4, column 3. This grid is safe. +- Moving Right (R). The player is now at row 4, column 4. This grid is the goal, so we stop here. + +1. Down to row 3, column 1 (safe) +2. Down to row 4, column 1 (safe) +3. Right to row 4, column 2 (safe) +4. Right to row 4, column 3 (safe) +5. Right to row 4, column 4 (goal) + +Action plan: D,D,R,R,R \ No newline at end of file diff --git a/maze/task5/example/level7/answer/1.txt b/maze/task5/example/level7/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..28c1b131a19b4da6003c347d2311728d1d8b31e7 --- /dev/null +++ b/maze/task5/example/level7/answer/1.txt @@ -0,0 +1,21 @@ + +The player is at row 1, column 1, and the goal is at row 5, column 4. +There are 10 holes. They are at: row 1, column 6; row 2, column 1; row 2, column 5; row 2, column 7; row 3, column 4; row 3, column 5; row 3, column 7; row 4, column 1; row 5, column 1; row 6, column 6. + +- Moving Right (R). The player is now at row 1, column 2. This grid is safe. +- Moving Right (R). The player is now at row 1, column 3. This grid is safe. +- Moving Down (D). The player is now at row 2, column 3. This grid is safe. +- Moving Down (D). The player is now at row 3, column 3. This grid is safe. +- Moving Down (D). The player is now at row 4, column 3. This grid is safe. +- Moving Down (D). The player is now at row 5, column 3. This grid is safe. +- Moving Right (R). The player is now at row 5, column 4. This grid is the goal, so we stop here. + +1. Right to row 1, column 2 (safe) +2. Right to row 1, column 3 (safe) +3. Down to row 2, column 3 (safe) +3. Down to row 3, column 3 (safe) +3. Down to row 4, column 3 (safe) +3. Down to row 5, column 3 (safe) +6. Right to row 5, column 4 (goal) + +Action plan: R,R,D,D,D,D,R \ No newline at end of file diff --git a/maze/task5/example/level7/answer/2.txt b/maze/task5/example/level7/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fe4e48e4970568803ae127a81648c124cb768d --- /dev/null +++ b/maze/task5/example/level7/answer/2.txt @@ -0,0 +1,19 @@ + +The player is at row 3, column 6, and the goal is at row 3, column 2. +There are 8 holes. They are at: row 1, column 5; row 2, column 1; row 2, column 3; row 3, column 3; row 3, column 7; row 4, column 5; row 6, column 5; row 7, column 6. + +- Moving Left (L). The player is now at row 3, column 5. This grid is safe. +- Moving Left (L). The player is now at row 3, column 4. This grid is safe. +- Moving Down (D). The player is now at row 4, column 4. This grid is safe. +- Moving Left (L). The player is now at row 4, column 3. This grid is safe. +- Moving Left (L). The player is now at row 4, column 2. This grid is safe. +- Moving Up (U). The player is now at row 3, column 2. This grid is the goal, so we stop here. + +1. Left to row 3, column 5 (safe) +2. Left to row 3, column 4 (safe) +3. Down to row 4, column 4 (safe) +4. Left to row 4, column 3 (safe) +5. Left to row 4, column 2 (safe) +6. Up to row 3, column 2 (goal) + +Action plan: L,L,D,L,L,U \ No newline at end of file diff --git a/maze/task5/example/level7/answer/3.txt b/maze/task5/example/level7/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..069696533e0615cdcc944964de9db0a24805c559 --- /dev/null +++ b/maze/task5/example/level7/answer/3.txt @@ -0,0 +1,22 @@ + +The player is at row 2, column 2, and the goal is at row 4, column 7. +There are 6 holes. They are at: row 1, column 4; row 2, column 1; row 2, column 4; row 3, column 5; row 6, column 1; row 7, column 4. + +- Moving Right (R). The player is now at row 2, column 3. This grid is safe. +- Moving Right (R). The player is now at row 2, column 4. This grid contains a hole! Revert this step - the player is still at row 2, column 3. +- Replan: Moving Down (D). The player is now at row 3, column 3. This grid is safe. +- Moving Down (D). The player is now at row 4, column 3. This grid is safe. +- Moving Right (R). The player is now at row 4, column 4. This grid is safe. +- Moving Right (R). The player is now at row 4, column 5. This grid is safe. +- Moving Right (R). The player is now at row 4, column 6. This grid is safe. +- Moving Right (R). The player is now at row 4, column 7. This grid is the goal, so we stop here. + +1. Right to row 2, column 3 (safe) +2. Down to row 3, column 3 (safe) +3. Down to row 4, column 3 (safe) +4. Right to row 4, column 4 (safe) +5. Right to row 4, column 5 (safe) +6. Right to row 4, column 6 (safe) +7. Right to row 4, column 7 (goal) + +Action plan: R,D,D,R,R,R,R \ No newline at end of file diff --git a/maze/task5/example/level7/answer/4.txt b/maze/task5/example/level7/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbbbcef87db497f60c5e7bf9a2090d517d44f4d0 --- /dev/null +++ b/maze/task5/example/level7/answer/4.txt @@ -0,0 +1,19 @@ + +The player is at row 6, column 6, and the goal is at row 2, column 4. +There are 6 holes. They are at: row 1, column 4; row 2, column 1; row 2, column 7; row 3, column 1; row 6, column 4; row 7, column 3. + +- Moving Up (U). The player is now at row 5, column 6. This grid is safe. +- Moving Up (U). The player is now at row 4, column 6. This grid is safe. +- Moving Up (U). The player is now at row 3, column 6. This grid is safe. +- Moving Up (U). The player is now at row 2, column 6. This grid is safe. +- Moving Left (L). The player is now at row 2, column 5. This grid is safe. +- Moving Left (L). The player is now at row 2, column 4. This grid is the goal, so we stop here. + +1. Up to row 5, column 6 (safe) +2. Up to row 4, column 6 (safe) +3. Up to row 3, column 6 (safe) +4. Up to row 2, column 6 (safe) +5. Left to row 2, column 5 (safe) +6. Left to row 2, column 4 (goal) + +Action plan: U,U,U,U,L,L \ No newline at end of file diff --git a/maze/task5/example/level7/answer/5.txt b/maze/task5/example/level7/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bd5151fa8f647e7b18e7449c3a4d432d18801f3 --- /dev/null +++ b/maze/task5/example/level7/answer/5.txt @@ -0,0 +1,15 @@ + +The player is at row 1, column 4, and the goal is at row 4, column 5. +There are 6 holes. They are at: row 3, column 1; row 3, column 3; row 3, column 4; row 5, column 6; row 6, column 4; row 7, column 2. + +- Moving Right (R). The player is now at row 1, column 5. This grid is safe. +- Moving Down (D). The player is now at row 2, column 5. This grid is safe. +- Moving Down (D). The player is now at row 3, column 5. This grid is safe. +- Moving Down (D). The player is now at row 4, column 5. This grid is the goal, so we stop here. + +1. Right to row 1, column 5 (safe) +2. Down to row 2, column 5 (safe) +3. Down to row 3, column 5 (safe) +4. Down to row 4, column 5 (goal) + +Action plan: R,D,D,D \ No newline at end of file diff --git a/maze/task5/example/level7/answer/6.txt b/maze/task5/example/level7/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a34ce0b473bd0bfb3f6a675b7574dc27324b8404 --- /dev/null +++ b/maze/task5/example/level7/answer/6.txt @@ -0,0 +1,17 @@ + +The player is at row 7, column 4, and the goal is at row 5, column 1. +There are 6 holes. They are at: row 1, column 5; row 2, column 3; row 3, column 5; row 3, column 7; row 4, column 7; row 7, column 6. + +- Moving Up (U). The player is now at row 6, column 4. This grid is safe. +- Moving Up (U). The player is now at row 5, column 4. This grid is safe. +- Moving Left (L). The player is now at row 5, column 3. This grid is safe. +- Moving Left (L). The player is now at row 5, column 2. This grid is safe. +- Moving Left (L). The player is now at row 5, column 1. This grid is the goal, so we stop here. + +1. Up to row 6, column 4 (safe) +2. Up to row 5, column 4 (safe) +3. Left to row 5, column 3 (safe) +4. Left to row 5, column 2 (safe) +5. Left to row 5, column 1 (goal) + +Action plan: U,U,L,L,L \ No newline at end of file diff --git a/maze/task5/example/level7/answer/7.txt b/maze/task5/example/level7/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..08d5452fa161fa7e4c050a53d6552989118ca836 --- /dev/null +++ b/maze/task5/example/level7/answer/7.txt @@ -0,0 +1,19 @@ + +The player is at row 3, column 7, and the goal is at row 5, column 3. +There are 10 holes. They are at: row 2, column 1; row 3, column 1; row 3, column 5; row 4, column 1; row 4, column 6; row 6, column 2; row 6, column 4; row 6, column 5; row 7, column 2; row 7, column 7. + +- Moving Down (D). The player is now at row 4, column 7. This grid is safe. +- Moving Down (D). The player is now at row 5, column 7. This grid is safe. +- Moving Left (L). The player is now at row 5, column 6. This grid is safe. +- Moving Left (L). The player is now at row 5, column 5. This grid is safe. +- Moving Left (L). The player is now at row 5, column 4. This grid is safe. +- Moving Left (L). The player is now at row 5, column 3. This grid is the goal, so we stop here. + +1. Down to row 4, column 7 (safe) +2. Down to row 5, column 7 (safe) +3. Left to row 5, column 6 (safe) +4. Left to row 5, column 5 (safe) +5. Left to row 5, column 4 (safe) +6. Left to row 5, column 3 (safe) + +Action plan: D,D,L,L,L,L \ No newline at end of file diff --git a/maze/task5/example/level7/img/0.png b/maze/task5/example/level7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ec1551bc3196875951ce735b1708a68b4510d1 --- /dev/null +++ b/maze/task5/example/level7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5014f95197d3d3ddf3afe8fc24c09535887996d3d7fd3f79e82f37463142386c +size 14112 diff --git a/maze/task5/example/level7/img/1.png b/maze/task5/example/level7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..acfdae826a45c55093b9926d81c97ccfd880ba03 --- /dev/null +++ b/maze/task5/example/level7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58fca51ffce43ad44ed50a44ebf2734c7833181a5f0024b64f246c49ed1dec0 +size 15711 diff --git a/maze/task5/example/level7/img/2.png b/maze/task5/example/level7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ac3120a0a61d7484cde99938f75e83082a227856 --- /dev/null +++ b/maze/task5/example/level7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f467c453083203e3ee6d34ee52a453b8113684c87288806198671fd66be28aab +size 15809 diff --git a/maze/task5/example/level7/img/3.png b/maze/task5/example/level7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a5f97c578c9765d72cf5f8f0dd25d0faebf43d2 --- /dev/null +++ b/maze/task5/example/level7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df03093c5def2a84fe1c2a460af82d6cbd3cd6b86110148806155f6731c00560 +size 15029 diff --git a/maze/task5/example/level7/img/4.png b/maze/task5/example/level7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bb620b2bc07802f2d6e34fdc5d8467cedc7f6b57 --- /dev/null +++ b/maze/task5/example/level7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:302afbde7ca6415b9524ccabdc42f208acce43a38c01db96b3576afd13be269a +size 14954 diff --git a/maze/task5/example/level7/img/5.png b/maze/task5/example/level7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ac69a1dddc59806acd1115f04ff7eb5684b2cde1 --- /dev/null +++ b/maze/task5/example/level7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64408ebc8a3e79693a7f09ae27fbd4c9cdffb80b8d4a9761fd9449975ac17a29 +size 14163 diff --git a/maze/task5/example/level7/img/6.png b/maze/task5/example/level7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9c2ab52c9f5ad45925658de8a8427382525ee32a --- /dev/null +++ b/maze/task5/example/level7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b081e9cb6d5c7eb6969ddd660a32ba6b08d0bf1b9468bf1664fee7358c5a6f1 +size 14807 diff --git a/maze/task5/example/level7/img/7.png b/maze/task5/example/level7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0785bcbda7c123b12ed87650ee67149c2ee12dac --- /dev/null +++ b/maze/task5/example/level7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b393373dbb991c34f9f42fbac316ce0f565fc4a0af85fbda9ac6df46935d888 +size 14982 diff --git a/maze/task5/example/level7/pure_text/0.txt b/maze/task5/example/level7/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ca7d7053dadf46cfc9253d30a3b3739fb4062b4 --- /dev/null +++ b/maze/task5/example/level7/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 4; Row 3, Column 3; Row 4, Column 5; Row 4, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 7; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/example/level7/pure_text/1.txt b/maze/task5/example/level7/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..de4e1e47d36273ebe740243c4fc1d89382b21d4c --- /dev/null +++ b/maze/task5/example/level7/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 6; Row 2, Column 1; Row 2, Column 5; Row 2, Column 7; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 5, Column 1; Row 6, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/example/level7/pure_text/2.txt b/maze/task5/example/level7/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b113da2d75476020c37cc5cc14ef1f37a181f3c2 --- /dev/null +++ b/maze/task5/example/level7/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 3; Row 3, Column 3; Row 3, Column 7; Row 4, Column 5; Row 6, Column 5; Row 7, Column 6; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/example/level7/pure_text/3.txt b/maze/task5/example/level7/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f80d9ae968be1e0250a2b46c4e6381e7477f49a --- /dev/null +++ b/maze/task5/example/level7/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 4; Row 3, Column 5; Row 6, Column 1; Row 7, Column 4; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task5/example/level7/pure_text/4.txt b/maze/task5/example/level7/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e260314e3eaa5e096b15f83f979096fca2b8cbf --- /dev/null +++ b/maze/task5/example/level7/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 7; Row 3, Column 1; Row 6, Column 4; Row 7, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/example/level7/pure_text/5.txt b/maze/task5/example/level7/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..67bda68e058ca835ba5184e73eff88074627543b --- /dev/null +++ b/maze/task5/example/level7/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 5, Column 6; Row 6, Column 4; Row 7, Column 2; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task5/example/level7/pure_text/6.txt b/maze/task5/example/level7/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..89d188b250e08cadcde043af6533e7a0ccfbe3c5 --- /dev/null +++ b/maze/task5/example/level7/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 3; Row 3, Column 5; Row 3, Column 7; Row 4, Column 7; Row 7, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level7/pure_text/7.txt b/maze/task5/example/level7/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..94439346d7672f687be4d30843c1a576dac4b87d --- /dev/null +++ b/maze/task5/example/level7/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 7; +The hole(s) are at: Row 2, Column 1; Row 3, Column 1; Row 3, Column 5; Row 4, Column 1; Row 4, Column 6; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 7, Column 2; Row 7, Column 7; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/example/level7/table/0.txt b/maze/task5/example/level7/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..795d92c3e71c9d7a2748b6e21fdfb059bffd7c26 --- /dev/null +++ b/maze/task5/example/level7/table/0.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/example/level7/table/1.txt b/maze/task5/example/level7/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdfbadb593c8a8e562576bab173b79dfc170aa64 --- /dev/null +++ b/maze/task5/example/level7/table/1.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/example/level7/table/2.txt b/maze/task5/example/level7/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb663a61660980b9e452a9f0cd8f5e361e210f34 --- /dev/null +++ b/maze/task5/example/level7/table/2.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | @ | # | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/example/level7/table/3.txt b/maze/task5/example/level7/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb163b77a119159a99b8729aa3b8132de1fa6e77 --- /dev/null +++ b/maze/task5/example/level7/table/3.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | # | @ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/example/level7/table/4.txt b/maze/task5/example/level7/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9700b2a350f8bc2d2f6178ead66539e20ab97b2b --- /dev/null +++ b/maze/task5/example/level7/table/4.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | @ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task5/example/level7/table/5.txt b/maze/task5/example/level7/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..029112d4bbef5e2ffaffdbe8952deab1d2320df2 --- /dev/null +++ b/maze/task5/example/level7/table/5.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | @ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/example/level7/table/6.txt b/maze/task5/example/level7/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..209d74563460e9817e64f3e9667b6374e958a924 --- /dev/null +++ b/maze/task5/example/level7/table/6.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | @ | _ | # | _ | diff --git a/maze/task5/example/level7/table/7.txt b/maze/task5/example/level7/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d48b727c146d6851bf81f5ea043b6cb9478cdab --- /dev/null +++ b/maze/task5/example/level7/table/7.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | @ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | * | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task5/example/level8/answer/0.txt b/maze/task5/example/level8/answer/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..31cb78b3406b14f98e606949b163f04fabc6890d --- /dev/null +++ b/maze/task5/example/level8/answer/0.txt @@ -0,0 +1,9 @@ + +The player is at row 3, column 6, and the goal is at row 2, column 6. +There are 6 holes. They are at: row 2, column 2; row 6, column 2; row 7, column 1; row 8, column 3; row 8, column 4; row 8, column 6. + +- Moving Up (U). The player is now at row 2, column 6. This grid is the goal, so we stop here. + +1. Up to row 2, column 6 (goal) + +Action plan: U \ No newline at end of file diff --git a/maze/task5/example/level8/answer/1.txt b/maze/task5/example/level8/answer/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f59a0728089e400a4b1374f68dfb59b5c079204a --- /dev/null +++ b/maze/task5/example/level8/answer/1.txt @@ -0,0 +1,11 @@ + +The player is at row 8, column 2, and the goal is at row 7, column 1. +There are 16 holes. They are at: row 2, column 7; row 2, column 8; row 3, column 4; row 3, column 5; row 4, column 1; row 4, column 3; row 4, column 7; row 5, column 1; row 5, column 2; row 5, column 4; row 6, column 1; row 6, column 2; row 7, column 2; row 7, column 3; row 8, column 4; row 8, column 7. + +- Moving Left (L). The player is now at row 8, column 1. This grid is safe. +- Moving Up (U). The player is now at row 7, column 1. This grid is the goal, so we stop here. + +1. Left to row 8, column 1 (safe) +6. Up to row 7, column 1 (goal) + +Action plan: L,U \ No newline at end of file diff --git a/maze/task5/example/level8/answer/2.txt b/maze/task5/example/level8/answer/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8a5c5ee86c85f16ff970c9ef7243236eed7f0aa --- /dev/null +++ b/maze/task5/example/level8/answer/2.txt @@ -0,0 +1,21 @@ + +The player is at row 5, column 3, and the goal is at row 3, column 8. +There are 9 holes. They are at: row 1, column 1; row 1, column 6; row 1, column 8; row 3, column 5; row 3, column 7; row 4, column 3; row 6, column 2; row 7, column 1; row 8, column 1. + +- Moving Right (R). The player is now at row 5, column 4. This grid is safe. +- Moving Right (R). The player is now at row 5, column 5. This grid is safe. +- Moving Right (R). The player is now at row 5, column 6. This grid is safe. +- Moving Right (R). The player is now at row 5, column 7. This grid is safe. +- Moving Right (R). The player is now at row 5, column 8. This grid is safe. +- Moving Up (U). The player is now at row 4, column 8. This grid is safe. +- Moving Up (U). The player is now at row 3, column 8. This grid is the goal, so we stop here. + +1. Right to row 5, column 4 (safe) +2. Right to row 5, column 5 (safe) +3. Right to row 5, column 6 (safe) +4. Right to row 5, column 7 (safe) +5. Right to row 5, column 8 (safe) +6. Up to row 4, column 8 (safe) +7. Up to row 3, column 8 (goal) + +Action plan: R,R,R,R,R,U,U \ No newline at end of file diff --git a/maze/task5/example/level8/answer/3.txt b/maze/task5/example/level8/answer/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..cefbe749f83a396bbf31538f5b0350940c7f05f8 --- /dev/null +++ b/maze/task5/example/level8/answer/3.txt @@ -0,0 +1,24 @@ + +The player is at row 5, column 4, and the goal is at row 1, column 8. +There are 11 holes. They are at: row 1, column 1; row 1, column 4; row 1, column 6; row 3, column 2; row 3, column 7; row 5, column 3; row 5, column 8; row 7, column 3; row 7, column 7; row 8, column 4; row 8, column 5. + +- Moving Right (R). The player is now at row 5, column 5. This grid is safe. +- Moving Right (R). The player is now at row 5, column 6. This grid is safe. +- Moving Right (R). The player is now at row 5, column 7. This grid is safe. +- Moving Right (R). The player is now at row 5, column 8. This grid contains a hole! Revert this step - the player is still at row 5, column 7. +- Replan: Moving Up (U). The player is now at row 4, column 7. This grid is safe. +- Moving Right (R). The player is now at row 4, column 8. This grid is safe. +- Moving Up (U). The player is now at row 3, column 8. This grid is safe. +- Moving Up (U). The player is now at row 2, column 8. This grid is safe. +- Moving Up (U). The player is now at row 1, column 8. This grid is the goal, so we stop here. + +1. Right to row 5, column 5 (safe) +2. Right to row 5, column 6 (safe) +3. Right to row 5, column 7 (safe) +4. Up to row 4, column 7 (safe) +5. Right to row 4, column 8 (safe) +6. Up to row 3, column 8 (safe) +7. Up to row 2, column 8 (safe) +8. Up to row 1, column 8 (goal) + +Action plan: R,R,R,U,R,U,U,U \ No newline at end of file diff --git a/maze/task5/example/level8/answer/4.txt b/maze/task5/example/level8/answer/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2bc2bdfdfcf257f36b11e8b60b1b3ac84768200d --- /dev/null +++ b/maze/task5/example/level8/answer/4.txt @@ -0,0 +1,19 @@ + +The player is at row 8, column 3, and the goal is at row 4, column 1. +There are 13 holes. They are at: row 1, column 1; row 2, column 5; row 4, column 2; row 4, column 3; row 4, column 7; row 4, column 8; row 5, column 2; row 5, column 6; row 7, column 1; row 7, column 8; row 8, column 1, row 8, column 4, row 8, column 8. + +- Moving Up (U). The player is now at row 7, column 3. This grid is safe. +- Moving Up (U). The player is now at row 6, column 3. This grid is safe. +- Moving Left (L). The player is now at row 6, column 2. This grid is safe. +- Moving Left (L). The player is now at row 6, column 1. This grid is safe. +- Moving Up (U). The player is now at row 5, column 1. This grid is safe. +- Moving Up (U). The player is now at row 4, column 1. This grid is the goal, so we stop here. + +1. Up to row 7, column 3 (safe) +2. Up to row 6, column 3 (safe) +3. Left to row 6, column 2 (safe) +4. Left to row 6, column 1 (goal) +5. Up to row 5, column 1 (safe) +6. Up to row 4, column 1 (goal) + +Action plan: U,U,L,L,U,U \ No newline at end of file diff --git a/maze/task5/example/level8/answer/5.txt b/maze/task5/example/level8/answer/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2baab687cf98047ded82ca73c6ba2fc7904dd8e7 --- /dev/null +++ b/maze/task5/example/level8/answer/5.txt @@ -0,0 +1,9 @@ + +The player is at row 6, column 8, and the goal is at row 5, column 8. +There are 11 holes. They are at: row 1, column 5; row 2, column 4; row 2, column 8; row 3, column 1; row 4, column 2; row 5, column 1; row 5, column 2; row 6, column 6; row 7, column 2; row 7, column 8; row 8, column 2. + +- Moving Up (U). The player is now at row 5, column 8. This grid is the goal, so we stop here. + +1. Up to row 5, column 8 (goal) + +Action plan: U \ No newline at end of file diff --git a/maze/task5/example/level8/answer/6.txt b/maze/task5/example/level8/answer/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b7da09d62716dc59ff0a14fc4cbad25707937cb --- /dev/null +++ b/maze/task5/example/level8/answer/6.txt @@ -0,0 +1,11 @@ + +The player is at row 7, column 3, and the goal is at row 7, column 5. +There are 9 holes. They are at: row 3, column 8; row 4, column 2; row 5, column 4; row 6, column 4; row 6, column 5; row 6, column 6; row 8, column 2; row 8, column 5; row 8, column 6. + +- Moving Right (R). The player is now at row 7, column 4. This grid is safe. +- Moving Right (R). The player is now at row 7, column 5. This grid is the goal, so we stop here. + +1. Right to row 7, column 4 (safe) +2. Right to row 7, column 5 (goal) + +Action plan: R,R \ No newline at end of file diff --git a/maze/task5/example/level8/answer/7.txt b/maze/task5/example/level8/answer/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..21e169fb8c46a71aac318ec8735fbccfd7ea7c5a --- /dev/null +++ b/maze/task5/example/level8/answer/7.txt @@ -0,0 +1,29 @@ + +The player is at row 6, column 2, and the goal is at row 5, column 6. +There are 16 holes. They are at: row 1, column 7; row 2, column 4; row 2, column 6; row 4, column 2; row 4, column 4; row 5, column 3; row 5, column 4; row 5, column 7; row 6, column 3; row 6, column 4; row 7, column 5; row 7, column 6, row 7, column 7; row 7, column 8; row 8, column 3, row 8, column 6. + +- Moving Left (L). The player is now at row 6, column 1. This grid is safe. +- Moving Up (U). The player is now at row 5, column 1. This grid is safe. +- Moving Up (U). The player is now at row 4, column 1. This grid is safe. +- Moving Up (U). The player is now at row 3, column 1. This grid is safe. +- Moving Right (R). The player is now at row 3, column 2. This grid is safe. +- Moving Right (R). The player is now at row 3, column 3. This grid is safe. +- Moving Right (R). The player is now at row 3, column 4. This grid is safe. +- Moving Right (R). The player is now at row 3, column 5. This grid is safe. +- Moving Right (R). The player is now at row 3, column 6. This grid is safe. +- Moving Down (D). The player is now at row 4, column 6. This grid is safe. +- Moving Down (D). The player is now at row 5, column 6. This grid is the goal, so we stop here. + +1. Left to row 6, column 1 (safe) +2. Up to row 5, column 1 (safe) +3. Up to row 4, column 1 (safe) +4. Up to row 3, column 1 (safe) +5. Right to row 3, column 2 (safe) +6. Right to row 3, column 3 (safe) +7. Right to row 3, column 4 (safe) +8. Right to row 3, column 5 (safe) +9. Right to row 3, column 6 (safe) +10. Down to row 4, column 6 (safe) +11. Down to row 5, column 6 (goal) + +Action plan: L,U,U,U,R,R,R,R,R,D,D \ No newline at end of file diff --git a/maze/task5/example/level8/img/0.png b/maze/task5/example/level8/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..337ebfe0bf0385cb5552db4b44a7ff6875a2c1ed --- /dev/null +++ b/maze/task5/example/level8/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59fef933ba83a82905985d36241435f5acc0ca055bd5d9bcd55748c3c4ebf0e +size 15903 diff --git a/maze/task5/example/level8/img/1.png b/maze/task5/example/level8/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b821251a8a62b6456abd1dc562c7289f1cb80806 --- /dev/null +++ b/maze/task5/example/level8/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34e301b3323653d4418a6b501c9e2c7c0061ca4012e161a65fff949ac7d43777 +size 18828 diff --git a/maze/task5/example/level8/img/2.png b/maze/task5/example/level8/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4b6cfbe87a3363dd0ffc68859cce0999ceb73f15 --- /dev/null +++ b/maze/task5/example/level8/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f830e159b04105b6d4975a3618431a29cde2a7a61fcdb3871d7b47b5551bdd0b +size 17638 diff --git a/maze/task5/example/level8/img/3.png b/maze/task5/example/level8/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d19e1a9bc9810ccde9dbd5df358e2fe1eb91db8a --- /dev/null +++ b/maze/task5/example/level8/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4890877ad18be6539d4337e363caa5d557b6476520284f89ee6b4be7a2979dce +size 17009 diff --git a/maze/task5/example/level8/img/4.png b/maze/task5/example/level8/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8967ffd22cd05bcb20ced1a8a407a3ab80cf341b --- /dev/null +++ b/maze/task5/example/level8/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7bd4a0d2a019ead8cc553f161f145c3e65d080bedc0e4d5c9398ea1e85b3277 +size 17959 diff --git a/maze/task5/example/level8/img/5.png b/maze/task5/example/level8/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a8e00b9257dbac158a625faaa3adf15a3e3c1651 --- /dev/null +++ b/maze/task5/example/level8/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:413fb9be59b95adba36ef6a7e1bd2d1f791576c008fb4c280b3deaa8d49efe38 +size 19535 diff --git a/maze/task5/example/level8/img/6.png b/maze/task5/example/level8/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..183c914616316b65475bb60cc3bba6119b022100 --- /dev/null +++ b/maze/task5/example/level8/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563a23d525cb9ef5e1742a93572439398d755eb1e3d930a3ef211128de0c1a56 +size 17009 diff --git a/maze/task5/example/level8/img/7.png b/maze/task5/example/level8/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0b371075a311b61b6eef8ae530480d52a527e376 --- /dev/null +++ b/maze/task5/example/level8/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093ccfe263bd159c6d6b41adf2cfb95e3963e57cd5aa33be23067999e0860df1 +size 18721 diff --git a/maze/task5/example/level8/pure_text/0.txt b/maze/task5/example/level8/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3ad4fff864f3c39894ba788b69085d7d5d7e9aa --- /dev/null +++ b/maze/task5/example/level8/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 2, Column 2; Row 6, Column 2; Row 7, Column 1; Row 8, Column 3; Row 8, Column 4; Row 8, Column 6; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task5/example/level8/pure_text/1.txt b/maze/task5/example/level8/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0c10b032d52143bb208cd36c39a48985be180a7 --- /dev/null +++ b/maze/task5/example/level8/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 2; +The hole(s) are at: Row 2, Column 7; Row 2, Column 8; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 3; Row 4, Column 7; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; Row 7, Column 2; Row 7, Column 3; Row 8, Column 4; Row 8, Column 7; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level8/pure_text/2.txt b/maze/task5/example/level8/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..b25309dcc1446d18a472e2cc11d1ae546affb340 --- /dev/null +++ b/maze/task5/example/level8/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 1, Column 8; Row 3, Column 5; Row 3, Column 7; Row 4, Column 3; Row 6, Column 2; Row 7, Column 1; Row 8, Column 1; +The goal is at: Row 3, Column 8. \ No newline at end of file diff --git a/maze/task5/example/level8/pure_text/3.txt b/maze/task5/example/level8/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0367e6d509a9993f45fd8eb64fed4de0051b6b5 --- /dev/null +++ b/maze/task5/example/level8/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 6; Row 3, Column 2; Row 3, Column 7; Row 5, Column 3; Row 5, Column 8; Row 7, Column 3; Row 7, Column 7; Row 8, Column 4; Row 8, Column 5; +The goal is at: Row 1, Column 8. \ No newline at end of file diff --git a/maze/task5/example/level8/pure_text/4.txt b/maze/task5/example/level8/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b282880b5cbbed4574ebe5aaacb57bb270defc0 --- /dev/null +++ b/maze/task5/example/level8/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 7; Row 4, Column 8; Row 5, Column 2; Row 5, Column 6; Row 7, Column 1; Row 7, Column 8; Row 8, Column 1; Row 8, Column 4; Row 8, Column 8; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/example/level8/pure_text/5.txt b/maze/task5/example/level8/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..93cbbaf3016e4c40eaff2b2c9a14ca6d6d07d0be --- /dev/null +++ b/maze/task5/example/level8/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 8; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 2, Column 8; Row 3, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 6, Column 6; Row 7, Column 2; Row 7, Column 8; Row 8, Column 2; +The goal is at: Row 5, Column 8. \ No newline at end of file diff --git a/maze/task5/example/level8/pure_text/6.txt b/maze/task5/example/level8/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4178df1b24bf826787286722e6c19e8a737f5cd5 --- /dev/null +++ b/maze/task5/example/level8/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 3, Column 8; Row 4, Column 2; Row 5, Column 4; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; Row 8, Column 2; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task5/example/level8/pure_text/7.txt b/maze/task5/example/level8/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..24b50363b00e78a155e8bb3fd676713848abb70c --- /dev/null +++ b/maze/task5/example/level8/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 7; Row 2, Column 4; Row 2, Column 6; Row 4, Column 2; Row 4, Column 4; Row 5, Column 3; Row 5, Column 4; Row 5, Column 7; Row 6, Column 3; Row 6, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 7, Column 8; Row 8, Column 3; Row 8, Column 6; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task5/example/level8/table/0.txt b/maze/task5/example/level8/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..f095c0659fa16427718c745b4e3ced073e3a1909 --- /dev/null +++ b/maze/task5/example/level8/table/0.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | # | _ | # | _ | _ | diff --git a/maze/task5/example/level8/table/1.txt b/maze/task5/example/level8/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf0234bf9507ec4e1ac978899096688c575f60f6 --- /dev/null +++ b/maze/task5/example/level8/table/1.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | _ | # | _ | +| Row 5 | # | # | _ | # | _ | _ | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | * | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | @ | _ | # | _ | _ | # | _ | diff --git a/maze/task5/example/level8/table/2.txt b/maze/task5/example/level8/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba7b7b31aab638975205c51cedb3534c6025d497 --- /dev/null +++ b/maze/task5/example/level8/table/2.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | * | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/example/level8/table/3.txt b/maze/task5/example/level8/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcbbfda8ae74e19832709bdfe94baecdde385950 --- /dev/null +++ b/maze/task5/example/level8/table/3.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | # | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | @ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task5/example/level8/table/4.txt b/maze/task5/example/level8/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eb6e297fe246bab637d43e43af17b76a154bdb1 --- /dev/null +++ b/maze/task5/example/level8/table/4.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | * | # | # | _ | _ | _ | # | # | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | @ | # | _ | _ | _ | # | diff --git a/maze/task5/example/level8/table/5.txt b/maze/task5/example/level8/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a90f0746d20707e5c4f3b5fceeae0ced6ea5d9f --- /dev/null +++ b/maze/task5/example/level8/table/5.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | # | _ | @ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/example/level8/table/6.txt b/maze/task5/example/level8/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..df0ac14e51b65d057a3cc370f687087d8071cc0f --- /dev/null +++ b/maze/task5/example/level8/table/6.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | # | _ | _ | +| Row 7 | _ | _ | @ | _ | * | _ | _ | _ | +| Row 8 | _ | # | _ | _ | # | # | _ | _ | diff --git a/maze/task5/example/level8/table/7.txt b/maze/task5/example/level8/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7367f4253dd9b1672007a999866e56912cbca74 --- /dev/null +++ b/maze/task5/example/level8/table/7.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | * | # | _ | +| Row 6 | _ | @ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | # | # | # | +| Row 8 | _ | _ | # | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/.DS_Store b/maze/task5/maps/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..13c143d95daf6a99c008078e0f13cc783d66d8b1 Binary files /dev/null and b/maze/task5/maps/.DS_Store differ diff --git a/maze/task5/maps/level3/.DS_Store b/maze/task5/maps/level3/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..49b2c380081bf94da74068d14c2fac5517ab4938 Binary files /dev/null and b/maze/task5/maps/level3/.DS_Store differ diff --git a/maze/task5/maps/level3/img/0.png b/maze/task5/maps/level3/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..063c0e8e9967f70150ea87a51adab03fb50acb2d --- /dev/null +++ b/maze/task5/maps/level3/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0f1e890ed75bae24c07640e624c58f91cf992234035bfc01b465c438ae28ed +size 4124 diff --git a/maze/task5/maps/level3/img/1.png b/maze/task5/maps/level3/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fd126c841b65ab90071ea84c6d9a3592d2a45d0c --- /dev/null +++ b/maze/task5/maps/level3/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c91bc109bc40f61091e8f2e6146b8c066360b5078dd18abe3906b0a3c4fbfea +size 5693 diff --git a/maze/task5/maps/level3/img/10.png b/maze/task5/maps/level3/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c66721f00efd5c76729c309c8d796f631a57a559 --- /dev/null +++ b/maze/task5/maps/level3/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c3751bc59071e4c1bf7a53b632b6d69ea2f4bb3fddf6c47784d9e70aafb754 +size 4004 diff --git a/maze/task5/maps/level3/img/11.png b/maze/task5/maps/level3/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..635848320732b02561ee4daae8f81d5f27fcd627 --- /dev/null +++ b/maze/task5/maps/level3/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a325ae32abd3fa2fc040c6bf88ba2624a0e79eba731c562717045d50e48320 +size 4923 diff --git a/maze/task5/maps/level3/img/12.png b/maze/task5/maps/level3/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ce2fd3438c841b44d0be9b12ef36aaba3a24343b --- /dev/null +++ b/maze/task5/maps/level3/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6686033900aa8b3735fec232292115641fa102b1be8877f58d059870f2a2595 +size 4868 diff --git a/maze/task5/maps/level3/img/13.png b/maze/task5/maps/level3/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..7fbf2301d96c46d958ad4accb71e1161cfceea13 --- /dev/null +++ b/maze/task5/maps/level3/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33cfba107c51067193927c9c18270dc497af9ce8a38d31dec7ac5c95e3e50e76 +size 4040 diff --git a/maze/task5/maps/level3/img/14.png b/maze/task5/maps/level3/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e94e8b0d5da7563c37a3dce2076c88b569e3302e --- /dev/null +++ b/maze/task5/maps/level3/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3665ea90cf54422f3e01519c7ade688551aaa9a82498a9b488673fe5b0023f +size 5560 diff --git a/maze/task5/maps/level3/img/15.png b/maze/task5/maps/level3/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..7f21878c7b780333390c4dc80b1e13d1bff7becb --- /dev/null +++ b/maze/task5/maps/level3/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c38fd01e6f374c6747ae5be93d58d9462d31ce66b6f0d4f8a51ca8cb6ac67df +size 5692 diff --git a/maze/task5/maps/level3/img/16.png b/maze/task5/maps/level3/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..99c9c9b31794f1d27f9aefb52a1d82f0f0e57e53 --- /dev/null +++ b/maze/task5/maps/level3/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80ab087825fdc0a2f5729eb6644956049aefa8b7446b6a7585d48de1e9acd71 +size 4900 diff --git a/maze/task5/maps/level3/img/17.png b/maze/task5/maps/level3/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..918a069efcac167d35af9c385bd2ae2acea959ee --- /dev/null +++ b/maze/task5/maps/level3/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782bdb724f4910b45b0660e44dcc8e0129b34ebf223355b03810ee59d3565ec0 +size 4086 diff --git a/maze/task5/maps/level3/img/18.png b/maze/task5/maps/level3/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a2bc65da73c7f88973904c9607849e785ca1ea56 --- /dev/null +++ b/maze/task5/maps/level3/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf834a38900b3746c31a1c1e6f9c926e8a25d452303c50080d641cfdf35108d1 +size 4674 diff --git a/maze/task5/maps/level3/img/19.png b/maze/task5/maps/level3/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..688ba642774bd88371af3843902e9c1886841890 --- /dev/null +++ b/maze/task5/maps/level3/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64718d56c2c58b72a2dafce00767d2a9d2999035e344c94dad79e88050042b0f +size 5495 diff --git a/maze/task5/maps/level3/img/2.png b/maze/task5/maps/level3/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5fa5008498f4f6038088ee093802d827f3071427 --- /dev/null +++ b/maze/task5/maps/level3/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53380f4785c79549bc17f5553cd81680be3e293158e75785c7441b0f2d6be66d +size 5695 diff --git a/maze/task5/maps/level3/img/20.png b/maze/task5/maps/level3/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..bb3c19c522655f0c53c844524ea01a64a7b01cc7 --- /dev/null +++ b/maze/task5/maps/level3/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbb5c1a20970446544ea89aeb6c0fc5dbf378f69503748ac73bab0adf6abd21 +size 4920 diff --git a/maze/task5/maps/level3/img/21.png b/maze/task5/maps/level3/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..72662d16087b65d67264b568779ff459ccbb2e26 --- /dev/null +++ b/maze/task5/maps/level3/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:134e5088db8eea08165bb4f52dd7d6dd4d631bb53f48a5d8ab5b695432d3cdb3 +size 4059 diff --git a/maze/task5/maps/level3/img/22.png b/maze/task5/maps/level3/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..f58514fc3f291e9e028dcb345bf9ea2d67424b06 --- /dev/null +++ b/maze/task5/maps/level3/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e2321740b2ea4d18851a755e217f6f67932efaff2da788c0810e3378350a2a +size 4873 diff --git a/maze/task5/maps/level3/img/23.png b/maze/task5/maps/level3/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..fde8b294342c884757a01fb8b2cbf08ca90f9f5b --- /dev/null +++ b/maze/task5/maps/level3/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425ed14b808aa2a52951b65737d36fd4bc9f5466950513a11cf475b3304387aa +size 4003 diff --git a/maze/task5/maps/level3/img/24.png b/maze/task5/maps/level3/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..cef0cfe6105eeda57db801881872acd28f2a52b7 --- /dev/null +++ b/maze/task5/maps/level3/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33e00e86aa38b503e050f040c95b679a1182b87bfa04f05901c2916bd3b1fa4 +size 4130 diff --git a/maze/task5/maps/level3/img/25.png b/maze/task5/maps/level3/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..c82d25addbe5947c837d6411116188084dacc975 --- /dev/null +++ b/maze/task5/maps/level3/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41aab14513e714af3014032a2e503d351bc7453244a6d4da54ef417bbe4ec72 +size 5758 diff --git a/maze/task5/maps/level3/img/26.png b/maze/task5/maps/level3/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa3128d758d2bddd6f94504c5cca1864723566a --- /dev/null +++ b/maze/task5/maps/level3/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50525df05921182bb20b778f223228428e0e8f86a04d5c18319b4a2e3dab444d +size 5745 diff --git a/maze/task5/maps/level3/img/27.png b/maze/task5/maps/level3/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..08f8ff50052cfe5e0be453ea30ca8aa224f5b0d5 --- /dev/null +++ b/maze/task5/maps/level3/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4261299d3bae873044a3b1e98d8ff01f23bbc237ae86db1e668d74ecfa7b5261 +size 5566 diff --git a/maze/task5/maps/level3/img/28.png b/maze/task5/maps/level3/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d269e0112cc6748472aa833ed9afe76949ec59 --- /dev/null +++ b/maze/task5/maps/level3/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0dbcfcd8ae22e86581966e8a931259ce6cb982de45bab909f78dcba36b60c9 +size 4033 diff --git a/maze/task5/maps/level3/img/29.png b/maze/task5/maps/level3/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..0c7889dbecb5a723653d9bdd4bfe4d49c348b691 --- /dev/null +++ b/maze/task5/maps/level3/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a9026a303b58e478a3ee5984c64cf79136c2cf17968f08807bfcbeb867386a +size 4071 diff --git a/maze/task5/maps/level3/img/3.png b/maze/task5/maps/level3/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..cd209eab4b29f433ff04bdad7d8fbbed25ca64b1 --- /dev/null +++ b/maze/task5/maps/level3/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e209c42fd8abc4d6b37941cea573b0198f5ae129d4501ca1b361797fc4f1ba6 +size 4874 diff --git a/maze/task5/maps/level3/img/30.png b/maze/task5/maps/level3/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..2b54d2d8d3d9be1f68b6cd46267ccfc32816c579 --- /dev/null +++ b/maze/task5/maps/level3/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baad1139efc46d6b8a43848c0f4cc9a6f82cdf22e1f07c58c01fe652881a7d4f +size 4045 diff --git a/maze/task5/maps/level3/img/31.png b/maze/task5/maps/level3/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..e367571ade709b57954617b98d0cfab061e28bc8 --- /dev/null +++ b/maze/task5/maps/level3/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31a62e43411531f8ba03f4c4d1bd9534425cbc4e4bf03a8e8c03f9626f6d394 +size 4893 diff --git a/maze/task5/maps/level3/img/32.png b/maze/task5/maps/level3/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..6a7e613dc28e655a24cabc19153205547baa61cc --- /dev/null +++ b/maze/task5/maps/level3/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb062d2b2f252391b4bc6f426bd7f75a714ffd94313ec67b375051d7d25fe28 +size 4922 diff --git a/maze/task5/maps/level3/img/33.png b/maze/task5/maps/level3/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..2718765f94e3aa1772a833c6a287effab39a8a76 --- /dev/null +++ b/maze/task5/maps/level3/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e124edc9bca4e42c587d1052d714e287bbbe955066becaf9557237eac3a65b6 +size 4020 diff --git a/maze/task5/maps/level3/img/34.png b/maze/task5/maps/level3/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..c92343ef08eebfd7bee110c028e49b9d9b08a067 --- /dev/null +++ b/maze/task5/maps/level3/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4d3d2578d063accd2ea4268fb7758e1bb4ab996db814eb136d7bb7d531395b +size 5801 diff --git a/maze/task5/maps/level3/img/35.png b/maze/task5/maps/level3/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..c93b9b7cee94208e0bfbed7184096e3d26a7683a --- /dev/null +++ b/maze/task5/maps/level3/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea56255d80918431cd7333332500e9254bd45fd3fbb54244ac217fee064576a +size 4985 diff --git a/maze/task5/maps/level3/img/36.png b/maze/task5/maps/level3/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..d3127379ffe6093d6790b5786e5bcca7f789d279 --- /dev/null +++ b/maze/task5/maps/level3/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea607e87c32cccf8627b2ba4f6f79da710750431180371d699399abf168d05e +size 5731 diff --git a/maze/task5/maps/level3/img/37.png b/maze/task5/maps/level3/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..d431f7b2d30c6d0ce033af5c2661334f6d850d55 --- /dev/null +++ b/maze/task5/maps/level3/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e05138aa1f782b92d0bfbce2dcead18301cc7b6b7b3540cb60beab11d7b60d +size 5558 diff --git a/maze/task5/maps/level3/img/38.png b/maze/task5/maps/level3/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..ff01bfd86cde6740f9eba1cf8859f29d0427cfc7 --- /dev/null +++ b/maze/task5/maps/level3/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdbd33e5ef08b4d2db1b6cf81f8c5a7e2f2c0ccbf9a7c81d6f51150b8a5bc89 +size 4143 diff --git a/maze/task5/maps/level3/img/39.png b/maze/task5/maps/level3/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..2370856d267ef8e9b38d0c199c2cc6a0d6e7bcc3 --- /dev/null +++ b/maze/task5/maps/level3/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9447712751703ca87d50b1a4d426ef06e55701e190523c77d9ba5185d67d04c1 +size 4925 diff --git a/maze/task5/maps/level3/img/4.png b/maze/task5/maps/level3/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..413a48cc1486e45790b05b81ca423f7a4886d729 --- /dev/null +++ b/maze/task5/maps/level3/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9307c437ba8b444721ba9470304a6c4f8b93e8c8421fb6b74bcecc01cf450af3 +size 5628 diff --git a/maze/task5/maps/level3/img/40.png b/maze/task5/maps/level3/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..6a8af60df410256247b960f2e5c7e68e49a40ff9 --- /dev/null +++ b/maze/task5/maps/level3/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d926f55e3ce09de0d6efebd2d4ae1fc0bb26deb91f0cd6fc6c772bc33d0567fc +size 4892 diff --git a/maze/task5/maps/level3/img/41.png b/maze/task5/maps/level3/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..b5001c31af67effdc18df4584675787e0e935ee6 --- /dev/null +++ b/maze/task5/maps/level3/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c74ca8f6ef9cfa9dc8129a9b415b8ad0e47e265cea802a6b870b8095db94a17 +size 5730 diff --git a/maze/task5/maps/level3/img/42.png b/maze/task5/maps/level3/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6cb8b195306924178e7c0353951f6cfea87899 --- /dev/null +++ b/maze/task5/maps/level3/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49ac76e2548e9e53dd6f2c43e2db522b4e3768ddd1e9d9bbf0a7b28f6679d0c +size 4053 diff --git a/maze/task5/maps/level3/img/43.png b/maze/task5/maps/level3/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..f82d3b60aa3a3a95b11e2f1a0a18398239031105 --- /dev/null +++ b/maze/task5/maps/level3/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a9e485ba5e7709ddc0463ba24af143773a56f03a1f38ea0c93e532e67206af +size 4882 diff --git a/maze/task5/maps/level3/img/44.png b/maze/task5/maps/level3/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..8984438ddafc57134e041f288a148b6f5191851d --- /dev/null +++ b/maze/task5/maps/level3/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b1988a780f020ea25f791c3544162eb682029c86a4ed4381383d4a93683cbd +size 3983 diff --git a/maze/task5/maps/level3/img/45.png b/maze/task5/maps/level3/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..9ecab569c90121f056395aa80e5dfa7da3ac5ee0 --- /dev/null +++ b/maze/task5/maps/level3/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6338034a16c7855033607520245821a625eee7e44c3e82d5be45878da03b4e0b +size 4126 diff --git a/maze/task5/maps/level3/img/46.png b/maze/task5/maps/level3/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..a5c703861b17b80b3f6b5667244185af42a238b6 --- /dev/null +++ b/maze/task5/maps/level3/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811aaaf6bd7a113979db84f52612a8f4660981ffe642e4a246b5f9a860a6ecda +size 4094 diff --git a/maze/task5/maps/level3/img/47.png b/maze/task5/maps/level3/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..9eda3ebe1cca1bc593c96a1c487acd6c80a89962 --- /dev/null +++ b/maze/task5/maps/level3/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681401d6f1a5f821f8b695a2ef6b14d62554edf4c95c3d340c925f5d355c77e6 +size 5622 diff --git a/maze/task5/maps/level3/img/48.png b/maze/task5/maps/level3/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..50dd1b92279721972aa47d357dc24b28bdbd05b6 --- /dev/null +++ b/maze/task5/maps/level3/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d28d1c54dee219bc0a7b1a0d238f1cda29e3d4965833f85afe4b5b22eafaee +size 4123 diff --git a/maze/task5/maps/level3/img/49.png b/maze/task5/maps/level3/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9ac5e9c136a636540536c9415a737ce23a7a5a --- /dev/null +++ b/maze/task5/maps/level3/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f68b666bd2103cff42d806bca13c8592233de8a7bc1d3583ca938b24ad43668 +size 4951 diff --git a/maze/task5/maps/level3/img/5.png b/maze/task5/maps/level3/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6c2667f9c8c90b358c321d62b5028c3b21f6cde6 --- /dev/null +++ b/maze/task5/maps/level3/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8520a4952f8d326200b8ad8729418b205685f077b88da1d52922090b5ca67ec6 +size 5674 diff --git a/maze/task5/maps/level3/img/50.png b/maze/task5/maps/level3/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..f816901bf0ef7f02ec3a23b6ac1327f8441a2b44 --- /dev/null +++ b/maze/task5/maps/level3/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f2c39db0f639d5edc536a3f537dc4df78ab911a892374779cd13d4acfd369d +size 5774 diff --git a/maze/task5/maps/level3/img/51.png b/maze/task5/maps/level3/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..0adacd1b4c5ef637bc3f92de76e156c0a19caa95 --- /dev/null +++ b/maze/task5/maps/level3/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5977fa4fdbdaf85379fb68a3c5d27f789ab75c2295d6cc78bed3dfda654c9ce +size 5715 diff --git a/maze/task5/maps/level3/img/52.png b/maze/task5/maps/level3/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..d16ea83487d44186ba15dd72bb8ef3e2cd6abc9a --- /dev/null +++ b/maze/task5/maps/level3/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca368b2d822b76ab6f6f8899abf6716cb892387e22e598b95b2c99ee49948e9 +size 4896 diff --git a/maze/task5/maps/level3/img/53.png b/maze/task5/maps/level3/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..5dcfd7b042745dd12f27b2589d097d8912438f43 --- /dev/null +++ b/maze/task5/maps/level3/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb8439978f0e4da1228c52f6650a66ea2a9855be76aab94ab82b102b81171f9 +size 4970 diff --git a/maze/task5/maps/level3/img/54.png b/maze/task5/maps/level3/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..eb85d8c93612eaa33a374d4fe1925e31268c3551 --- /dev/null +++ b/maze/task5/maps/level3/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57051a95f032d62973b9c3d1ac10410114defaaae6e39e9351ea8c5ce6d8ddb1 +size 4853 diff --git a/maze/task5/maps/level3/img/55.png b/maze/task5/maps/level3/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..693676865072fd3209615c0a94c85aa0f8ab737e --- /dev/null +++ b/maze/task5/maps/level3/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded0944bb43644b7bd5b2b7831e498b78e770792092cac5fe443dac90a7dc22f +size 5653 diff --git a/maze/task5/maps/level3/img/56.png b/maze/task5/maps/level3/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..9d04fcac5cf7ced2f3edd66206cafbc4eac8382d --- /dev/null +++ b/maze/task5/maps/level3/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02be244d5771f261949e3f57ce1d6148ec2ca0132470e66dc1d0de78876e858d +size 4923 diff --git a/maze/task5/maps/level3/img/57.png b/maze/task5/maps/level3/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..8a2635ca4c479209f8c35f47403516d90ce4ca86 --- /dev/null +++ b/maze/task5/maps/level3/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead0f8c04df6c5756cb6853252cef20cc486e5a8b9d089616dc2d4d2c0d097e7 +size 4948 diff --git a/maze/task5/maps/level3/img/58.png b/maze/task5/maps/level3/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..cabfbaf061b078e8e1f909d5d0f4807936281435 --- /dev/null +++ b/maze/task5/maps/level3/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e653476468ad4fb2e5323d849e905ad84dd7744ff37b1a81e5de81b4d7cf58d +size 4912 diff --git a/maze/task5/maps/level3/img/59.png b/maze/task5/maps/level3/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..0a5eb1a68dda681e43d0f4bf347dec441e0802bc --- /dev/null +++ b/maze/task5/maps/level3/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7c4fcd713c6fbd1761788c2a2ad08cc59526b5b27e83edd74e889de23b4f31 +size 5691 diff --git a/maze/task5/maps/level3/img/6.png b/maze/task5/maps/level3/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..fcac28397404bf013dfc71909411a5959b0d57e9 --- /dev/null +++ b/maze/task5/maps/level3/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf6bdc4edf9ed19406481b84ea3f49ec59135e3e5e19b6a607361044dbf820d +size 3980 diff --git a/maze/task5/maps/level3/img/60.png b/maze/task5/maps/level3/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6cb8b195306924178e7c0353951f6cfea87899 --- /dev/null +++ b/maze/task5/maps/level3/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49ac76e2548e9e53dd6f2c43e2db522b4e3768ddd1e9d9bbf0a7b28f6679d0c +size 4053 diff --git a/maze/task5/maps/level3/img/61.png b/maze/task5/maps/level3/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..480cceb486d81b57179438c8dd158306c35240f9 --- /dev/null +++ b/maze/task5/maps/level3/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70bf0eb3a67a63cad2eaa88a7715f2ebf7c72c4ffc7dbc996fabd43fc6091724 +size 5800 diff --git a/maze/task5/maps/level3/img/62.png b/maze/task5/maps/level3/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..72dbebb7b15c275626d5df1f51b988e6eeb5eb9d --- /dev/null +++ b/maze/task5/maps/level3/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e6b08a27bb8ce039416d76212788abc59c559cc215a3c631797073914b4512 +size 4887 diff --git a/maze/task5/maps/level3/img/63.png b/maze/task5/maps/level3/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..278a10fb88834d87f32750dc10f92e524da9e20c --- /dev/null +++ b/maze/task5/maps/level3/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e0dc9088844c0e155bcf1b5d4e3d6bd7592296576f78044266723a66e171bbc +size 5674 diff --git a/maze/task5/maps/level3/img/64.png b/maze/task5/maps/level3/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..11e659b5c65daa459e143d12ccb809c0dc4722a0 --- /dev/null +++ b/maze/task5/maps/level3/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbf7ffc2028a2360a5ea2f451d359b44cc60dddd405efa50084d07f587e11a0 +size 5763 diff --git a/maze/task5/maps/level3/img/65.png b/maze/task5/maps/level3/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..2487ee34ef4b841d865717a7b9ae5b18b12efb50 --- /dev/null +++ b/maze/task5/maps/level3/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c23bb39414e8e895217096cf42dd114fafae8fd6c7929170b54b850300f1d1a +size 4130 diff --git a/maze/task5/maps/level3/img/66.png b/maze/task5/maps/level3/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..f9bba95c526d6cc74bf68199522b3bb6792acd80 --- /dev/null +++ b/maze/task5/maps/level3/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba9607786c57d1d8341fdcc2117f8d7f9d8e0fd22c6c166c51d3ed6a1602f37 +size 4126 diff --git a/maze/task5/maps/level3/img/67.png b/maze/task5/maps/level3/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..53d00c6b2517641dee7aa60d2b33641e4c0308ac --- /dev/null +++ b/maze/task5/maps/level3/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1afb3836c194463edb56fcfca78a084116c6a23c0288000222e0f7b0ac5c985c +size 4074 diff --git a/maze/task5/maps/level3/img/68.png b/maze/task5/maps/level3/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..fc45758830492d8846b4045a73eb51670995a042 --- /dev/null +++ b/maze/task5/maps/level3/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9819bc0e062a0130eb1f0818f6f574dd01d67e303dd9f039527164096dba718d +size 5726 diff --git a/maze/task5/maps/level3/img/69.png b/maze/task5/maps/level3/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..888e0df1c5462e5cedfb57c829504a7674f74acb --- /dev/null +++ b/maze/task5/maps/level3/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a74c276dbab2cd90711434f9bb2a28a6525c1851490f39fc7c2473b93bbfcd0 +size 4060 diff --git a/maze/task5/maps/level3/img/7.png b/maze/task5/maps/level3/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a9dd3542827c17195b56e4f9bf16a914b0f318ae --- /dev/null +++ b/maze/task5/maps/level3/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b55666bc3104b1486190d01cf611263df68e6dabdd4afbbba14aba765c84d219 +size 4902 diff --git a/maze/task5/maps/level3/img/70.png b/maze/task5/maps/level3/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..a4ad840eadacf19b977c85336830ebe841f8b42f --- /dev/null +++ b/maze/task5/maps/level3/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76c605aad16c1e0dd17655d077c1bc7fd0bbb0d19f7eae342febdf18dc638b7 +size 4833 diff --git a/maze/task5/maps/level3/img/71.png b/maze/task5/maps/level3/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..a12f92de409e46210db9a5fa7061dad7a977cfcd --- /dev/null +++ b/maze/task5/maps/level3/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abce35c57d385b6a459bf6619e231f26751af00e245c19c985caba7adf465d84 +size 4023 diff --git a/maze/task5/maps/level3/img/72.png b/maze/task5/maps/level3/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..3bfab69a2f680e3091493dd5edf7449bd2a5f925 --- /dev/null +++ b/maze/task5/maps/level3/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5628c109828fb1549505038942a89ee6c57117ca16b7d6f536eae0c3321d5947 +size 4995 diff --git a/maze/task5/maps/level3/img/73.png b/maze/task5/maps/level3/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..5a03df9a4d3a8c3ccca3ce727024b5262b80d818 --- /dev/null +++ b/maze/task5/maps/level3/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c57fe842c1852d65badc1f220344b02a9dc06fe7195cb3dcf8c7f6f59f45be7 +size 4924 diff --git a/maze/task5/maps/level3/img/74.png b/maze/task5/maps/level3/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..f14fd2044549c3296d2f1c2c8150a8fa58d2d19e --- /dev/null +++ b/maze/task5/maps/level3/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40148654e48f5aee8e143589ee55cbfcb487d83395cc79eda66669027407c602 +size 5810 diff --git a/maze/task5/maps/level3/img/75.png b/maze/task5/maps/level3/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..a8fc4fcffc10ed6f409172650d5c2d5d4fa47ca4 --- /dev/null +++ b/maze/task5/maps/level3/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def7d401c5f6ef761af40ab854bd709f8c2c7eb8936b0693e6b0c6d2f48829df +size 4107 diff --git a/maze/task5/maps/level3/img/76.png b/maze/task5/maps/level3/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..aaf60a674e856ddc3cfac613b92056d01ca81e31 --- /dev/null +++ b/maze/task5/maps/level3/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516fe830ff758a80b60e8b9a07bf53eb5c6cff855da4d361f64eea15a992e536 +size 5716 diff --git a/maze/task5/maps/level3/img/77.png b/maze/task5/maps/level3/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..b18c21487e2c30ac8741d1b57fd3d315a38dc77b --- /dev/null +++ b/maze/task5/maps/level3/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb5672b2ffe235fd65da24c3653ad08113ca10314ce2eeef472143e2381e660 +size 4888 diff --git a/maze/task5/maps/level3/img/78.png b/maze/task5/maps/level3/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..3599ad56b5ef04cdc867d59a793cc0675c6227a4 --- /dev/null +++ b/maze/task5/maps/level3/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03392fdb052cd30dce2742e983f22ad9657acec029ac681fbc20b0e498068d0 +size 4957 diff --git a/maze/task5/maps/level3/img/79.png b/maze/task5/maps/level3/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..5d0c9e5ede6b847efe09c34dbea7d0c9f5953860 --- /dev/null +++ b/maze/task5/maps/level3/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb086eff44fd88c18b011c6ca5c9d00ee7fed823c6dd46e25728ae7f7d940c89 +size 4078 diff --git a/maze/task5/maps/level3/img/8.png b/maze/task5/maps/level3/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..96026f4cfe69dbc922cf8ea8d5581845f15df16b --- /dev/null +++ b/maze/task5/maps/level3/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffafc16718a14d05170b65864032edb79ca775e56f71d0bf61a50fd3dffe5eb +size 5651 diff --git a/maze/task5/maps/level3/img/80.png b/maze/task5/maps/level3/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..9ecab569c90121f056395aa80e5dfa7da3ac5ee0 --- /dev/null +++ b/maze/task5/maps/level3/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6338034a16c7855033607520245821a625eee7e44c3e82d5be45878da03b4e0b +size 4126 diff --git a/maze/task5/maps/level3/img/81.png b/maze/task5/maps/level3/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..0b380887e4f8492a031399a306cdee28cdab719c --- /dev/null +++ b/maze/task5/maps/level3/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c41dfa983208c6aff7ba919414d61065e1bbeadd49cb25b1caab6d0556e308e +size 5742 diff --git a/maze/task5/maps/level3/img/82.png b/maze/task5/maps/level3/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..cce2e442aca632fc2d596b3b7fda141410a1f4fa --- /dev/null +++ b/maze/task5/maps/level3/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877e4826a60801adce55db70a51d120deb363d7b13a31cbe43c054ffbd9f9d48 +size 5633 diff --git a/maze/task5/maps/level3/img/83.png b/maze/task5/maps/level3/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..30129754af0df48b1c5e707ac22fee3b4ccd44ff --- /dev/null +++ b/maze/task5/maps/level3/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f547a89937b81a9b368536cf51aa09419b2b48a8faf0b6ead90c34c69974d16c +size 4920 diff --git a/maze/task5/maps/level3/img/84.png b/maze/task5/maps/level3/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..2a168b55c29652a7137afe78abce31f1fa8f46f2 --- /dev/null +++ b/maze/task5/maps/level3/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26fa4394bb11626268d9eb51843b62add307cc12d74ed204ec124d4d9436abe8 +size 5590 diff --git a/maze/task5/maps/level3/img/85.png b/maze/task5/maps/level3/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..a9d059143a1f9ca609bb104ee3d7fba80d3d99b2 --- /dev/null +++ b/maze/task5/maps/level3/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef275e1974b897dea65426dcc4f2f30b5bb0c71bee438891b90b583ad7a4e972 +size 6461 diff --git a/maze/task5/maps/level3/img/86.png b/maze/task5/maps/level3/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..4668ad19ff66c0e1e315fafa1b117ef9f6826b75 --- /dev/null +++ b/maze/task5/maps/level3/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf95d4e674ad62c2ba2dc3513a5fda78439032b38973073902fb9bfad8f9ea1 +size 5626 diff --git a/maze/task5/maps/level3/img/87.png b/maze/task5/maps/level3/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..cf1f233247ba6760885619e4243d94b1c1faba07 --- /dev/null +++ b/maze/task5/maps/level3/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937e5bd2ff336962288d80da2b2bc04e81178bb8ebf0fdc94b352a190420435e +size 5617 diff --git a/maze/task5/maps/level3/img/88.png b/maze/task5/maps/level3/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..ff01bfd86cde6740f9eba1cf8859f29d0427cfc7 --- /dev/null +++ b/maze/task5/maps/level3/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdbd33e5ef08b4d2db1b6cf81f8c5a7e2f2c0ccbf9a7c81d6f51150b8a5bc89 +size 4143 diff --git a/maze/task5/maps/level3/img/89.png b/maze/task5/maps/level3/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..f70bd314f218cf188729ab2bef773a94ed80dd39 --- /dev/null +++ b/maze/task5/maps/level3/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8afca69f411eda1081eaa7ef733395571b789e3ff81a31994fa4483fcb4d0f +size 4918 diff --git a/maze/task5/maps/level3/img/9.png b/maze/task5/maps/level3/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..3d86180a58f12f0838cadfcf1da425c1c8c2dc28 --- /dev/null +++ b/maze/task5/maps/level3/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba007e83865e7f36243cb638d04c9bf6c90b384670d243d2d81eac50aaaa14d2 +size 4850 diff --git a/maze/task5/maps/level3/img/90.png b/maze/task5/maps/level3/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..137e805d019c6f96653723994c61d4301e116809 --- /dev/null +++ b/maze/task5/maps/level3/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9304c73e9c591f8aa39c70e60847b9ad9879d00db1853f3b0e15a0c7807c0ce +size 5628 diff --git a/maze/task5/maps/level3/img/91.png b/maze/task5/maps/level3/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..d93b5bdf1a4b07d2cb5abb37c7420c36a8ee16b2 --- /dev/null +++ b/maze/task5/maps/level3/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1495d793a8eb7257778b7b38a5e0a6f7bd0a9582a55d87517c83e29f37ed0d74 +size 4901 diff --git a/maze/task5/maps/level3/img/92.png b/maze/task5/maps/level3/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..2023e77e63982bb9bf5a8a7a4619c593c3fdb0c1 --- /dev/null +++ b/maze/task5/maps/level3/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062bea294f84953ecfd1f17f8a53ad30aeffc114e5e46762ecc3fd719a9b48c6 +size 4995 diff --git a/maze/task5/maps/level3/img/93.png b/maze/task5/maps/level3/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..21fdb46091b8b9f0328deeaded6ad3c193051cfa --- /dev/null +++ b/maze/task5/maps/level3/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71577afd119a46b24316afbf570424e8b1009add0e91fa465f2c129a345a5fd7 +size 4129 diff --git a/maze/task5/maps/level3/img/94.png b/maze/task5/maps/level3/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..d751b59cf6f66f3764a726bd9e922ffd31696d0a --- /dev/null +++ b/maze/task5/maps/level3/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb9513041227122305af8149d4229fd2ad3559cc09d8f3d1ab37b506c013d0d +size 4527 diff --git a/maze/task5/maps/level3/img/95.png b/maze/task5/maps/level3/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..eb5bf1557b5dcaa46e907aea7f7f7884bb6967a0 --- /dev/null +++ b/maze/task5/maps/level3/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3060d21f269b69cbc83ceb97b545950ccaba75fd22f1c5ab2e558d7b422e402b +size 5615 diff --git a/maze/task5/maps/level3/img/96.png b/maze/task5/maps/level3/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..f2fd9966f4e0525e1cf0b9f26b4bb23520091d96 --- /dev/null +++ b/maze/task5/maps/level3/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2089fd078a858df8efcc3ad14d0a0032a7b0b7721b37820da58d56bbc9584e83 +size 4976 diff --git a/maze/task5/maps/level3/img/97.png b/maze/task5/maps/level3/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..95de31518ee2b5b89a43cb84aaf6d07ed7fd8c4e --- /dev/null +++ b/maze/task5/maps/level3/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e149e09bfc370ce911c940809dac0bea096923551bb5302c996dbbe425d4577 +size 5675 diff --git a/maze/task5/maps/level3/img/98.png b/maze/task5/maps/level3/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d269e0112cc6748472aa833ed9afe76949ec59 --- /dev/null +++ b/maze/task5/maps/level3/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db0dbcfcd8ae22e86581966e8a931259ce6cb982de45bab909f78dcba36b60c9 +size 4033 diff --git a/maze/task5/maps/level3/img/99.png b/maze/task5/maps/level3/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..7544ec6e81b509344b6ac3ffe9d8ba36b7965d67 --- /dev/null +++ b/maze/task5/maps/level3/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e611cd13bcb9e5c0c6a22535bc12d5dafe86195c1cb2d51f2d5dc157f5cba9aa +size 4820 diff --git a/maze/task5/maps/level3/pure_text/0.txt b/maze/task5/maps/level3/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a025ba3380240703b3732f07a1d46d1d0893116 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/1.txt b/maze/task5/maps/level3/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..183c6612fb4a925088d83b2bcae70a3cc1c22701 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/10.txt b/maze/task5/maps/level3/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4f9c7e2c0efd7511f4e9083699f34f9f5beff74 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/11.txt b/maze/task5/maps/level3/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..c46a9dc5c754c4ddfc37fb9a1ff3031f9984c67a --- /dev/null +++ b/maze/task5/maps/level3/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/12.txt b/maze/task5/maps/level3/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..77b76cfe95790660cd15ce0c95c0145d7da3370a --- /dev/null +++ b/maze/task5/maps/level3/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 3, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/13.txt b/maze/task5/maps/level3/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..b69c0fea6134b729d77c60a94cd7e26f8790f8e5 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/14.txt b/maze/task5/maps/level3/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..23d8a2bc05ad19397c2deecd266fdff883a67b29 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/15.txt b/maze/task5/maps/level3/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbd2f8a19aac88cec4c2363061f52c512f958acb --- /dev/null +++ b/maze/task5/maps/level3/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/16.txt b/maze/task5/maps/level3/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6c85cf9e693ffaa45d44bcfa45c1b8894a8e48b --- /dev/null +++ b/maze/task5/maps/level3/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/17.txt b/maze/task5/maps/level3/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..58c6bb9ba57e6f23d309a783b2c6e0344b27fbbb --- /dev/null +++ b/maze/task5/maps/level3/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/18.txt b/maze/task5/maps/level3/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d4874598904c58f48b7061d680e71d767bbc58c --- /dev/null +++ b/maze/task5/maps/level3/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/19.txt b/maze/task5/maps/level3/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc48cf1d1a0d7b17d579cd410c8039d3ca8469e6 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/2.txt b/maze/task5/maps/level3/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29e24a163beddc0ade57f319a8505b086fb393fe --- /dev/null +++ b/maze/task5/maps/level3/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/20.txt b/maze/task5/maps/level3/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac1a8c8cca413ba3facbe04fcb507bf42b00760d --- /dev/null +++ b/maze/task5/maps/level3/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/21.txt b/maze/task5/maps/level3/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..464c11ce1534e2bba49424d66515192830450e32 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/22.txt b/maze/task5/maps/level3/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..04d7c7deaf7acd1a9a0659833af1657f862dcf01 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/23.txt b/maze/task5/maps/level3/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..48c84c67ee586703658460f5260bb451b00627b3 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/24.txt b/maze/task5/maps/level3/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c424d325a7c181ab88f04d721a2fcd0f6c1e31f0 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/25.txt b/maze/task5/maps/level3/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..27040ee4a9a47131d3f3b120089d5f02a63c4b4a --- /dev/null +++ b/maze/task5/maps/level3/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/26.txt b/maze/task5/maps/level3/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebbf18df8a7a605158844a0a9d006ccff22c9d38 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/27.txt b/maze/task5/maps/level3/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4bb0b5ce3ed6f32821b975160ec2cbe03b29b54 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/28.txt b/maze/task5/maps/level3/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..8114af036a45f6594491a733ee1342e0f1f0cf9a --- /dev/null +++ b/maze/task5/maps/level3/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/29.txt b/maze/task5/maps/level3/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..260ffee3067f9cc5bf253fe595aa416a2dcb235d --- /dev/null +++ b/maze/task5/maps/level3/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/3.txt b/maze/task5/maps/level3/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d440d9e7409a16fd6eeebf49641b1728b27294d --- /dev/null +++ b/maze/task5/maps/level3/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/30.txt b/maze/task5/maps/level3/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca389034954f95d7c3b05faeba2fb1f36d2052e4 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/31.txt b/maze/task5/maps/level3/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..8501f7abca9840ebc657ed220cfb6734ce9b5d3c --- /dev/null +++ b/maze/task5/maps/level3/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/32.txt b/maze/task5/maps/level3/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9ca325d9b87fadb131ae791900c7ae24a91803 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/33.txt b/maze/task5/maps/level3/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c09f75d88d3dc293ea0a59aea9fffbc19eb2df4 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/34.txt b/maze/task5/maps/level3/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..297315a7c779a64b8ae4040d928628d4030d8bfe --- /dev/null +++ b/maze/task5/maps/level3/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/35.txt b/maze/task5/maps/level3/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6b2f7b6fd26b1c6162e9dc34a96afa210c3e333 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/36.txt b/maze/task5/maps/level3/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..64ccaecb7f8e66665ff37fb1f8459b53411835a0 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/37.txt b/maze/task5/maps/level3/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..52a98ee87bec7b07af598a37064d0f825bc2e6b9 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/38.txt b/maze/task5/maps/level3/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..93352c78de84ee82d46fefdfde19ba0324530d35 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/39.txt b/maze/task5/maps/level3/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..68524f06f2522136102bfbe1fc8464712af11f08 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/4.txt b/maze/task5/maps/level3/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ae2d0f87123c2177147ab56f98da5fc0ef7fe24 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 1; Row 3, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/40.txt b/maze/task5/maps/level3/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..32ddf8ba2a41c17cb6e1ac8adf7e8bec894de9d5 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/41.txt b/maze/task5/maps/level3/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..189f9a3940f3ab79eb41a340fd11fcb77c15a744 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/42.txt b/maze/task5/maps/level3/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..3be3a347f009b94a93c1d1bb2519e6426cf59ceb --- /dev/null +++ b/maze/task5/maps/level3/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/43.txt b/maze/task5/maps/level3/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..fca102e8bccbb38a05c397d178a28d9127c9ee02 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/44.txt b/maze/task5/maps/level3/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d74cb73c32ea66b19a3b164b1d581f2cb512569 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +There is no holes in this map; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/45.txt b/maze/task5/maps/level3/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..4951c76da0636d2872ffab2bf2002bf8bb9cc672 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/46.txt b/maze/task5/maps/level3/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..ece8de78f84903ae628085cae046dda73ccbcc9e --- /dev/null +++ b/maze/task5/maps/level3/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/47.txt b/maze/task5/maps/level3/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3e169b1c63b4fcd561a38d39dba4805cff0749b --- /dev/null +++ b/maze/task5/maps/level3/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/48.txt b/maze/task5/maps/level3/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc5f0b14daf6d7f901a8095c38621e18a7176ea6 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/49.txt b/maze/task5/maps/level3/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..056129595463418044bd1249da5ebe3412558045 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/5.txt b/maze/task5/maps/level3/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e6fe77d56f0b460d60b6b258bc903e635a2bf2 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/50.txt b/maze/task5/maps/level3/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..cac20a276d052783d25aa575b1516c56d63b296c --- /dev/null +++ b/maze/task5/maps/level3/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/51.txt b/maze/task5/maps/level3/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b81bc3a373489266c34043e648a2bbad297726e --- /dev/null +++ b/maze/task5/maps/level3/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/52.txt b/maze/task5/maps/level3/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..520d3c822c2959886d6550b6cfc577628378faee --- /dev/null +++ b/maze/task5/maps/level3/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/53.txt b/maze/task5/maps/level3/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..5437f43cf00a4010a1f8e1c1617ac90db67ae2c7 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/54.txt b/maze/task5/maps/level3/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e1abf6be5619be0ce9925cf5a63d66a2e6eb061 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/55.txt b/maze/task5/maps/level3/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..372ae6c3713c5a7062fa431c6021db128ae95bac --- /dev/null +++ b/maze/task5/maps/level3/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/56.txt b/maze/task5/maps/level3/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f1ab53110ab813d29c4c6caccfce9ee1fdc05d5 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/57.txt b/maze/task5/maps/level3/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..a199b8f2835e1ac932189ce13ccd771041ef5d9a --- /dev/null +++ b/maze/task5/maps/level3/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/58.txt b/maze/task5/maps/level3/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..80b384a4e4420e32cf9ab193736eac41c9575b76 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/59.txt b/maze/task5/maps/level3/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..db295481d06235b9bcfdd838182faaa2373d82a0 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/6.txt b/maze/task5/maps/level3/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..a677bda986de052023f603f58f38c6ed521ef258 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +There is no holes in this map; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/60.txt b/maze/task5/maps/level3/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..3be3a347f009b94a93c1d1bb2519e6426cf59ceb --- /dev/null +++ b/maze/task5/maps/level3/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/61.txt b/maze/task5/maps/level3/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e18ef78521c43755c906aaf6c5c4e38a602aefe --- /dev/null +++ b/maze/task5/maps/level3/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/62.txt b/maze/task5/maps/level3/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..98d80d1c3f8336ed0b046381aa97fb2e51b2811e --- /dev/null +++ b/maze/task5/maps/level3/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/63.txt b/maze/task5/maps/level3/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa51486cb7a3d5a7da8f9c97f0199e1211403658 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 3, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/64.txt b/maze/task5/maps/level3/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..632aca77ef96f8359e50b5aa21ec612e0ee3beec --- /dev/null +++ b/maze/task5/maps/level3/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/65.txt b/maze/task5/maps/level3/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f0b05629530a6db1934837cec1706a384127d34 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/66.txt b/maze/task5/maps/level3/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..468c05e0596695346ef3a8e4be4b48c0186778b3 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/67.txt b/maze/task5/maps/level3/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..16b2bfd3294bd44a388fd0f3e33c5126e47176da --- /dev/null +++ b/maze/task5/maps/level3/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/68.txt b/maze/task5/maps/level3/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d07652a9341b988e1ebb880ca42e4832110b50f --- /dev/null +++ b/maze/task5/maps/level3/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 1; Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/69.txt b/maze/task5/maps/level3/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..55b92a80b5ecc0c509ff31442c9fdf3d3cc90df6 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/7.txt b/maze/task5/maps/level3/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..e145ff9a4b9b44eb3a9756a925a3cc4fd2b5a8e3 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 3, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/70.txt b/maze/task5/maps/level3/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..436ff7ca68c1b495e58c16e537966d0b920e3470 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/71.txt b/maze/task5/maps/level3/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..c79bc662a4818d791137643c225d57ea794eb6c6 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/72.txt b/maze/task5/maps/level3/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b271dea506af5914b441d1eaf83ab5c17354d54 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/73.txt b/maze/task5/maps/level3/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..a97903a8594bdf679fea601a4254e65e84bf60f5 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 3, Column 1; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/74.txt b/maze/task5/maps/level3/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..79f32c80ed8dce2dab121e6688653ccd63fb4597 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/75.txt b/maze/task5/maps/level3/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..208b307a95ba45b1890aeb8793f2959754669a14 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/76.txt b/maze/task5/maps/level3/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ba651181f2ba8140620ac09e52b76f50010fa2 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/77.txt b/maze/task5/maps/level3/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ec6586b19bf44063a89c055d45bc692706eac7d --- /dev/null +++ b/maze/task5/maps/level3/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/78.txt b/maze/task5/maps/level3/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..c08543935f16108a78c5c74044d37e903fe2753b --- /dev/null +++ b/maze/task5/maps/level3/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/79.txt b/maze/task5/maps/level3/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..82510a70e542218e0798a6eeaf6ba4cfa9ff96a6 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/8.txt b/maze/task5/maps/level3/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cb48ade4028933538cc80dad772ff5969857c46 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 3; Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/80.txt b/maze/task5/maps/level3/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4951c76da0636d2872ffab2bf2002bf8bb9cc672 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/81.txt b/maze/task5/maps/level3/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..c96ebafc67aface289d6d3699b6f3174d38ed89c --- /dev/null +++ b/maze/task5/maps/level3/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/82.txt b/maze/task5/maps/level3/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..86e802baeaec4a2184227b2af82ee4ff624423a7 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/83.txt b/maze/task5/maps/level3/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..951ccc3ac983a359bd249a5fba0e010609add094 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/84.txt b/maze/task5/maps/level3/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..706ec8885cff1f5b89073712bc761199c98ffab9 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/85.txt b/maze/task5/maps/level3/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..0528ce26ff4a94d040111987868396e856de3549 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/86.txt b/maze/task5/maps/level3/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..31739ab8caa747c45ba0bc83297aeaa0ffe23615 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/87.txt b/maze/task5/maps/level3/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..384263d9cf48e3f3f0246ec282548db8d2c203de --- /dev/null +++ b/maze/task5/maps/level3/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 3, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/88.txt b/maze/task5/maps/level3/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..93352c78de84ee82d46fefdfde19ba0324530d35 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/89.txt b/maze/task5/maps/level3/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e04a556d546a73d2551ef73288ae0acee284d42 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/9.txt b/maze/task5/maps/level3/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..18c3b7e6ad6fbae9498a43c0dede1fbe24eff958 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/90.txt b/maze/task5/maps/level3/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..c12a4863752008a9c5d9fda70781df3f6db0cdb2 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/91.txt b/maze/task5/maps/level3/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..161130af5e7dde071125dd266e04ac3870103280 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/92.txt b/maze/task5/maps/level3/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad2bacfed1fe4c420485e86afd862f66e286f175 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/93.txt b/maze/task5/maps/level3/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad3dca19d97d526e6581404b16ef6a20e34fdfd8 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 2; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/94.txt b/maze/task5/maps/level3/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..c071477c3f2e84fe2029598c2ff3a741935d9f4d --- /dev/null +++ b/maze/task5/maps/level3/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/95.txt b/maze/task5/maps/level3/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7372a0ec45e0ac119aaafa069b7905798d766ad --- /dev/null +++ b/maze/task5/maps/level3/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 1; Row 3, Column 2; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/96.txt b/maze/task5/maps/level3/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..36b5b24b48ab68ee17745acc1c82babf14d9cd12 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/97.txt b/maze/task5/maps/level3/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..85edbfbb7daa18eae21c0cdbf5dc6c1071e48df7 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/98.txt b/maze/task5/maps/level3/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8114af036a45f6594491a733ee1342e0f1f0cf9a --- /dev/null +++ b/maze/task5/maps/level3/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 3, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/pure_text/99.txt b/maze/task5/maps/level3/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..5690ef23f1cc296a5a6938d62ef0a6638403a0a2 --- /dev/null +++ b/maze/task5/maps/level3/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 3x3 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 3, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level3/table/0.txt b/maze/task5/maps/level3/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb631ea570063754534ad4fd1c740c8a424bbd17 --- /dev/null +++ b/maze/task5/maps/level3/table/0.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task5/maps/level3/table/1.txt b/maze/task5/maps/level3/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bdd5680899b563ee45352f20779fcde6222a035 --- /dev/null +++ b/maze/task5/maps/level3/table/1.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | @ | _ | diff --git a/maze/task5/maps/level3/table/10.txt b/maze/task5/maps/level3/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fc6f540d1d6f60b4be61c35772d1fd7694e69f1 --- /dev/null +++ b/maze/task5/maps/level3/table/10.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/11.txt b/maze/task5/maps/level3/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3a809d4c3ee4b192ddc9c9a2384338745c8e95e --- /dev/null +++ b/maze/task5/maps/level3/table/11.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | _ | * | diff --git a/maze/task5/maps/level3/table/12.txt b/maze/task5/maps/level3/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e32ca9fc5ca64af1fe61d799807384d6749d0a4 --- /dev/null +++ b/maze/task5/maps/level3/table/12.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | # | diff --git a/maze/task5/maps/level3/table/13.txt b/maze/task5/maps/level3/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..97ffce93506c0a1431d6bba048005b8208fa90dd --- /dev/null +++ b/maze/task5/maps/level3/table/13.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task5/maps/level3/table/14.txt b/maze/task5/maps/level3/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a31e195344c47e06b24abaf70f3d9cecce6d48f --- /dev/null +++ b/maze/task5/maps/level3/table/14.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | @ | _ | +| Row 3 | # | * | # | diff --git a/maze/task5/maps/level3/table/15.txt b/maze/task5/maps/level3/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f253d8511566280fba79bb3b757db27e7ae5614 --- /dev/null +++ b/maze/task5/maps/level3/table/15.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | _ | +| Row 2 | @ | _ | _ | +| Row 3 | # | _ | * | diff --git a/maze/task5/maps/level3/table/16.txt b/maze/task5/maps/level3/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1d429a53d6c5a44392a4dbe1d936e60fa3eddee --- /dev/null +++ b/maze/task5/maps/level3/table/16.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | _ | +| Row 3 | # | _ | @ | diff --git a/maze/task5/maps/level3/table/17.txt b/maze/task5/maps/level3/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb5a6fb225ef1fb9e47504a576d2f912a66182ef --- /dev/null +++ b/maze/task5/maps/level3/table/17.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/18.txt b/maze/task5/maps/level3/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c6b7f631320d17e57e2368a2dcb8c8fb6972075 --- /dev/null +++ b/maze/task5/maps/level3/table/18.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | # | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/19.txt b/maze/task5/maps/level3/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..78f2017de3bfb8476394a86ea95ccf1b3890e931 --- /dev/null +++ b/maze/task5/maps/level3/table/19.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | * | # | +| Row 3 | # | _ | _ | diff --git a/maze/task5/maps/level3/table/2.txt b/maze/task5/maps/level3/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..90efb6d36172c3fee1e222b0a663536d22bc0d42 --- /dev/null +++ b/maze/task5/maps/level3/table/2.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | # | diff --git a/maze/task5/maps/level3/table/20.txt b/maze/task5/maps/level3/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ad397c8a21b96c3a1099291cfaf240b138c539b --- /dev/null +++ b/maze/task5/maps/level3/table/20.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | * | @ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/21.txt b/maze/task5/maps/level3/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5a04d3d2aa925a072cac9a40c43acab6acacf29 --- /dev/null +++ b/maze/task5/maps/level3/table/21.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task5/maps/level3/table/22.txt b/maze/task5/maps/level3/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..86ebfad16f11b64299bb0efc8d799e644bbf2e89 --- /dev/null +++ b/maze/task5/maps/level3/table/22.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task5/maps/level3/table/23.txt b/maze/task5/maps/level3/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..c304f41a47439e5fff0f20624d6bb026ace6e86d --- /dev/null +++ b/maze/task5/maps/level3/table/23.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task5/maps/level3/table/24.txt b/maze/task5/maps/level3/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..d01f76635add97f917757e68ee90a8f56af1afbc --- /dev/null +++ b/maze/task5/maps/level3/table/24.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/25.txt b/maze/task5/maps/level3/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..23c72bf08928458bbe33333c11d8d5d74e4311ea --- /dev/null +++ b/maze/task5/maps/level3/table/25.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | @ | _ | +| Row 3 | # | * | _ | diff --git a/maze/task5/maps/level3/table/26.txt b/maze/task5/maps/level3/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ca2ed6d4d96fb7cd9d7befd852c6087c7f988d1 --- /dev/null +++ b/maze/task5/maps/level3/table/26.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | # | _ | # | diff --git a/maze/task5/maps/level3/table/27.txt b/maze/task5/maps/level3/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f94196136477b7cfc4897d555128931db01560a --- /dev/null +++ b/maze/task5/maps/level3/table/27.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/28.txt b/maze/task5/maps/level3/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..deb8bb8d97434191fdad07e74b88ebc1b0eeeb49 --- /dev/null +++ b/maze/task5/maps/level3/table/28.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task5/maps/level3/table/29.txt b/maze/task5/maps/level3/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..d14f72c1cd6f30edd03846dad7b13ff0ec78de76 --- /dev/null +++ b/maze/task5/maps/level3/table/29.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task5/maps/level3/table/3.txt b/maze/task5/maps/level3/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..b006871127e28651be4e5c53435a6a5ff797d5c0 --- /dev/null +++ b/maze/task5/maps/level3/table/3.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | # | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/30.txt b/maze/task5/maps/level3/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..c052ce69120c854b328a757009d1386989795aa0 --- /dev/null +++ b/maze/task5/maps/level3/table/30.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task5/maps/level3/table/31.txt b/maze/task5/maps/level3/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb381c41b455080b39384f6fd9ddf53fdac38ecb --- /dev/null +++ b/maze/task5/maps/level3/table/31.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/32.txt b/maze/task5/maps/level3/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea4ba8a70450a27b2d2ded0fe60c286d88068f93 --- /dev/null +++ b/maze/task5/maps/level3/table/32.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/33.txt b/maze/task5/maps/level3/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..632a479c1d40cfa1d0bccb5aee33e756853c896f --- /dev/null +++ b/maze/task5/maps/level3/table/33.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task5/maps/level3/table/34.txt b/maze/task5/maps/level3/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..455579f148b606e0447083c8df6cc79d9794ca36 --- /dev/null +++ b/maze/task5/maps/level3/table/34.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task5/maps/level3/table/35.txt b/maze/task5/maps/level3/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ae0112b581f54655cf3ef8ef09a7471b2e0e28c --- /dev/null +++ b/maze/task5/maps/level3/table/35.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task5/maps/level3/table/36.txt b/maze/task5/maps/level3/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..682b83c1ad841e95e04707f1222c51039f745637 --- /dev/null +++ b/maze/task5/maps/level3/table/36.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | # | +| Row 2 | _ | _ | * | +| Row 3 | @ | # | _ | diff --git a/maze/task5/maps/level3/table/37.txt b/maze/task5/maps/level3/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..b35801319f40e161c15223c97b4b6862451c7ef5 --- /dev/null +++ b/maze/task5/maps/level3/table/37.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | # | +| Row 3 | _ | _ | # | diff --git a/maze/task5/maps/level3/table/38.txt b/maze/task5/maps/level3/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f45f0c2eafacf2574e5efd7c836bea052eebe39 --- /dev/null +++ b/maze/task5/maps/level3/table/38.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/39.txt b/maze/task5/maps/level3/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce7e2be67282bf74de6a95fce8febd7d93af85e1 --- /dev/null +++ b/maze/task5/maps/level3/table/39.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | # | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task5/maps/level3/table/4.txt b/maze/task5/maps/level3/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3935ea367a0811698f7ea0e09731b53f43c27bd --- /dev/null +++ b/maze/task5/maps/level3/table/4.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | # | diff --git a/maze/task5/maps/level3/table/40.txt b/maze/task5/maps/level3/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..57a4d26aaec493ff0c14e11442df365a77d1b3a2 --- /dev/null +++ b/maze/task5/maps/level3/table/40.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task5/maps/level3/table/41.txt b/maze/task5/maps/level3/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe26ab2f6c97f0a08485b1d147683035760cef34 --- /dev/null +++ b/maze/task5/maps/level3/table/41.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | @ | _ | +| Row 2 | _ | _ | * | +| Row 3 | _ | # | _ | diff --git a/maze/task5/maps/level3/table/42.txt b/maze/task5/maps/level3/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaf2f2ee7da434e2ed1b6c6a1f632108d763ee4f --- /dev/null +++ b/maze/task5/maps/level3/table/42.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/43.txt b/maze/task5/maps/level3/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1c7f93ed2ea1a0561843c3068787b0ebdbb6ff3 --- /dev/null +++ b/maze/task5/maps/level3/table/43.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | _ | +| Row 3 | _ | # | # | diff --git a/maze/task5/maps/level3/table/44.txt b/maze/task5/maps/level3/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..68bdd418edb00eda5e761e867526ded679f14845 --- /dev/null +++ b/maze/task5/maps/level3/table/44.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | * | diff --git a/maze/task5/maps/level3/table/45.txt b/maze/task5/maps/level3/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f001e8fe5a6c30fb8a393bd054ff3cf59a605117 --- /dev/null +++ b/maze/task5/maps/level3/table/45.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/46.txt b/maze/task5/maps/level3/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..702ae14945e5d66febeaf6982e76bc824f60b212 --- /dev/null +++ b/maze/task5/maps/level3/table/46.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/47.txt b/maze/task5/maps/level3/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..b012d1565f46ac42e28fa1eb5c5e7f377611b336 --- /dev/null +++ b/maze/task5/maps/level3/table/47.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | # | _ | * | +| Row 3 | _ | _ | @ | diff --git a/maze/task5/maps/level3/table/48.txt b/maze/task5/maps/level3/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..205399c238e05ea0eeaadeb3650c34611847e418 --- /dev/null +++ b/maze/task5/maps/level3/table/48.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task5/maps/level3/table/49.txt b/maze/task5/maps/level3/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b2337fbaf01e9cc547ad122673beb35c442d82c --- /dev/null +++ b/maze/task5/maps/level3/table/49.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | @ | +| Row 2 | * | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/5.txt b/maze/task5/maps/level3/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..897ff5aa868cd7fee4c400efd6f7f0843f986e4f --- /dev/null +++ b/maze/task5/maps/level3/table/5.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | @ | diff --git a/maze/task5/maps/level3/table/50.txt b/maze/task5/maps/level3/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..235bb790978f543f27d7b881ee5e983c733da144 --- /dev/null +++ b/maze/task5/maps/level3/table/50.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | # | _ | +| Row 2 | _ | * | @ | +| Row 3 | # | _ | _ | diff --git a/maze/task5/maps/level3/table/51.txt b/maze/task5/maps/level3/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..93d46095e04317e9fcaf827b0e320667d41a92d1 --- /dev/null +++ b/maze/task5/maps/level3/table/51.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | # | +| Row 2 | _ | * | _ | +| Row 3 | # | # | @ | diff --git a/maze/task5/maps/level3/table/52.txt b/maze/task5/maps/level3/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fd7af93141b3b1e057fb7af0aceef6061cee385 --- /dev/null +++ b/maze/task5/maps/level3/table/52.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | # | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/53.txt b/maze/task5/maps/level3/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..10b169e2c48db9e54e9ed479d7562e3d0441afd7 --- /dev/null +++ b/maze/task5/maps/level3/table/53.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | * | _ | diff --git a/maze/task5/maps/level3/table/54.txt b/maze/task5/maps/level3/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..6cb0f888ca5f40c3b119bcaa6e2f2e858755e15f --- /dev/null +++ b/maze/task5/maps/level3/table/54.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/55.txt b/maze/task5/maps/level3/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..30217ea299a0057979b8623c96688efabc234a5f --- /dev/null +++ b/maze/task5/maps/level3/table/55.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | @ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/56.txt b/maze/task5/maps/level3/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..da143b5d709ff31b434e5297887c08f8fd18eb04 --- /dev/null +++ b/maze/task5/maps/level3/table/56.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | @ | _ | diff --git a/maze/task5/maps/level3/table/57.txt b/maze/task5/maps/level3/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f5faaed0dd6b71f45ae86a16db0c3423ed8f8da --- /dev/null +++ b/maze/task5/maps/level3/table/57.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | # | * | +| Row 3 | _ | @ | _ | diff --git a/maze/task5/maps/level3/table/58.txt b/maze/task5/maps/level3/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..13b223923c44f3e2447a989e2b37092f9f1f3116 --- /dev/null +++ b/maze/task5/maps/level3/table/58.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | _ | _ | diff --git a/maze/task5/maps/level3/table/59.txt b/maze/task5/maps/level3/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..14d73db67924426f09b5e39677e00c2c07706ca0 --- /dev/null +++ b/maze/task5/maps/level3/table/59.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | @ | _ | # | diff --git a/maze/task5/maps/level3/table/6.txt b/maze/task5/maps/level3/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..f22b5e42f497c6b06c717aaec53d2a7fe76ce69c --- /dev/null +++ b/maze/task5/maps/level3/table/6.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | @ | diff --git a/maze/task5/maps/level3/table/60.txt b/maze/task5/maps/level3/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaf2f2ee7da434e2ed1b6c6a1f632108d763ee4f --- /dev/null +++ b/maze/task5/maps/level3/table/60.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/61.txt b/maze/task5/maps/level3/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..46fb7e426b76a6c7d7cb8292aecd7c3d259df89b --- /dev/null +++ b/maze/task5/maps/level3/table/61.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | # | diff --git a/maze/task5/maps/level3/table/62.txt b/maze/task5/maps/level3/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..170a41ae66dfcaeb5a2c1a3d2587f7b05fa816dd --- /dev/null +++ b/maze/task5/maps/level3/table/62.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | * | +| Row 3 | # | _ | _ | diff --git a/maze/task5/maps/level3/table/63.txt b/maze/task5/maps/level3/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bdef372529c8fae8e96649c037102b376e5de38 --- /dev/null +++ b/maze/task5/maps/level3/table/63.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | diff --git a/maze/task5/maps/level3/table/64.txt b/maze/task5/maps/level3/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cd0cb9559dca47e9244ed4b2ec6c23e00fce206 --- /dev/null +++ b/maze/task5/maps/level3/table/64.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | * | # | _ | diff --git a/maze/task5/maps/level3/table/65.txt b/maze/task5/maps/level3/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..b00d3735a126c9b936d396c45171bb648f47a91f --- /dev/null +++ b/maze/task5/maps/level3/table/65.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task5/maps/level3/table/66.txt b/maze/task5/maps/level3/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..03e2277548eab10871d56d621ebe3b2a602e6502 --- /dev/null +++ b/maze/task5/maps/level3/table/66.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | diff --git a/maze/task5/maps/level3/table/67.txt b/maze/task5/maps/level3/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..cf60858eeffcb844e4420ff17ddd39ae4bea4db8 --- /dev/null +++ b/maze/task5/maps/level3/table/67.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | @ | diff --git a/maze/task5/maps/level3/table/68.txt b/maze/task5/maps/level3/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6c77efb8ff9ee2ea27c5306deeceadd40f75740 --- /dev/null +++ b/maze/task5/maps/level3/table/68.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | # | _ | @ | +| Row 3 | # | # | _ | diff --git a/maze/task5/maps/level3/table/69.txt b/maze/task5/maps/level3/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..c48351c985f7f9459925f2e340b4fa63f668f92e --- /dev/null +++ b/maze/task5/maps/level3/table/69.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | _ | @ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/7.txt b/maze/task5/maps/level3/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..74724e2d1cb640ab666d0727f049deb786022d82 --- /dev/null +++ b/maze/task5/maps/level3/table/7.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | _ | _ | +| Row 3 | * | # | _ | diff --git a/maze/task5/maps/level3/table/70.txt b/maze/task5/maps/level3/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..e73fddc757fe4c7dadac1e0d59a774c06935a65e --- /dev/null +++ b/maze/task5/maps/level3/table/70.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | _ | * | # | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/71.txt b/maze/task5/maps/level3/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..410e0f143ded3114d741fb4300f63d2d00f5bcb9 --- /dev/null +++ b/maze/task5/maps/level3/table/71.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | * | +| Row 2 | @ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/72.txt b/maze/task5/maps/level3/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8ad3922b3ba10a510dde8291aa94de4c9d3311f --- /dev/null +++ b/maze/task5/maps/level3/table/72.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | @ | * | _ | +| Row 3 | _ | # | _ | diff --git a/maze/task5/maps/level3/table/73.txt b/maze/task5/maps/level3/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8fca34fa6b8d3632661d94ff889d652d80a7d42 --- /dev/null +++ b/maze/task5/maps/level3/table/73.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | * | +| Row 2 | _ | _ | _ | +| Row 3 | # | # | _ | diff --git a/maze/task5/maps/level3/table/74.txt b/maze/task5/maps/level3/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6256479992c1b935b6682bc86bfc5bd6df11f4b --- /dev/null +++ b/maze/task5/maps/level3/table/74.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | # | _ | +| Row 2 | _ | _ | _ | +| Row 3 | # | @ | _ | diff --git a/maze/task5/maps/level3/table/75.txt b/maze/task5/maps/level3/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..59150279e09d111a8c3e0707da667ecf1101cbb8 --- /dev/null +++ b/maze/task5/maps/level3/table/75.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task5/maps/level3/table/76.txt b/maze/task5/maps/level3/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b868aa983f6d2b8e2b8a7df2b6759f9ca62857f --- /dev/null +++ b/maze/task5/maps/level3/table/76.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | _ | # | diff --git a/maze/task5/maps/level3/table/77.txt b/maze/task5/maps/level3/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..327efe83999b7e5f9c964e1c791e8887377dffc3 --- /dev/null +++ b/maze/task5/maps/level3/table/77.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | * | +| Row 2 | # | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/78.txt b/maze/task5/maps/level3/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..435dae73dd2ad1e8842f73f6b0762fe3f204a6a6 --- /dev/null +++ b/maze/task5/maps/level3/table/78.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | _ | # | +| Row 3 | @ | * | _ | diff --git a/maze/task5/maps/level3/table/79.txt b/maze/task5/maps/level3/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..60674e0df8b67d8916e74f54a23ba5e760b7f53a --- /dev/null +++ b/maze/task5/maps/level3/table/79.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task5/maps/level3/table/8.txt b/maze/task5/maps/level3/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cce5a6cd25bc41cd631be44601689aad134d5cb --- /dev/null +++ b/maze/task5/maps/level3/table/8.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | # | +| Row 3 | _ | * | # | diff --git a/maze/task5/maps/level3/table/80.txt b/maze/task5/maps/level3/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f001e8fe5a6c30fb8a393bd054ff3cf59a605117 --- /dev/null +++ b/maze/task5/maps/level3/table/80.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | _ | * | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/81.txt b/maze/task5/maps/level3/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..49a9b79ba3026a6bd9912247aa77eccb4e00ae8d --- /dev/null +++ b/maze/task5/maps/level3/table/81.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | _ | +| Row 2 | @ | _ | # | +| Row 3 | _ | # | _ | diff --git a/maze/task5/maps/level3/table/82.txt b/maze/task5/maps/level3/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cf5d26d3c2b3772b2110870c8f2331f8d178806 --- /dev/null +++ b/maze/task5/maps/level3/table/82.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | # | * | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task5/maps/level3/table/83.txt b/maze/task5/maps/level3/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba85b5494e7fa377b752b53c58a09f4555988759 --- /dev/null +++ b/maze/task5/maps/level3/table/83.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | # | _ | +| Row 3 | _ | @ | _ | diff --git a/maze/task5/maps/level3/table/84.txt b/maze/task5/maps/level3/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..968ea70b1e054c89cb82e448e290e53d55bf4445 --- /dev/null +++ b/maze/task5/maps/level3/table/84.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | * | _ | # | +| Row 3 | # | _ | _ | diff --git a/maze/task5/maps/level3/table/85.txt b/maze/task5/maps/level3/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c79b932f7d5276e3a33a66786e3a9c53b2f77a2 --- /dev/null +++ b/maze/task5/maps/level3/table/85.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | _ | * | +| Row 2 | _ | _ | # | +| Row 3 | @ | # | _ | diff --git a/maze/task5/maps/level3/table/86.txt b/maze/task5/maps/level3/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..98bf7b370b22c822951bbc3de3051c6cecdbfde8 --- /dev/null +++ b/maze/task5/maps/level3/table/86.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | @ | +| Row 2 | _ | _ | # | +| Row 3 | # | _ | _ | diff --git a/maze/task5/maps/level3/table/87.txt b/maze/task5/maps/level3/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f43647f0a0d643ae4bab71ecaff25c6f598be6ce --- /dev/null +++ b/maze/task5/maps/level3/table/87.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | * | +| Row 2 | _ | _ | _ | +| Row 3 | @ | # | _ | diff --git a/maze/task5/maps/level3/table/88.txt b/maze/task5/maps/level3/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f45f0c2eafacf2574e5efd7c836bea052eebe39 --- /dev/null +++ b/maze/task5/maps/level3/table/88.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | @ | * | _ | +| Row 2 | _ | _ | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/89.txt b/maze/task5/maps/level3/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..52911d7925fde1713c740e398fc02a08c760de58 --- /dev/null +++ b/maze/task5/maps/level3/table/89.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | _ | _ | +| Row 3 | @ | _ | * | diff --git a/maze/task5/maps/level3/table/9.txt b/maze/task5/maps/level3/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ca0eed8b048014baa37faf0463ab535f5749046 --- /dev/null +++ b/maze/task5/maps/level3/table/9.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | # | +| Row 2 | * | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task5/maps/level3/table/90.txt b/maze/task5/maps/level3/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..119f55688bd499e2329c7bc1d4e93399253c821a --- /dev/null +++ b/maze/task5/maps/level3/table/90.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | @ | +| Row 2 | # | _ | _ | +| Row 3 | _ | # | * | diff --git a/maze/task5/maps/level3/table/91.txt b/maze/task5/maps/level3/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..01294aa453e106c00673ea996538e8b861b30d1c --- /dev/null +++ b/maze/task5/maps/level3/table/91.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | @ | _ | +| Row 2 | # | _ | _ | +| Row 3 | * | _ | _ | diff --git a/maze/task5/maps/level3/table/92.txt b/maze/task5/maps/level3/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..38ac3278d4399ea5132b44178290c2af5774eb78 --- /dev/null +++ b/maze/task5/maps/level3/table/92.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | # | @ | +| Row 3 | _ | * | _ | diff --git a/maze/task5/maps/level3/table/93.txt b/maze/task5/maps/level3/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..fffcc1cb871584e36b1299b360b8a60e2eff07a3 --- /dev/null +++ b/maze/task5/maps/level3/table/93.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | _ | @ | _ | +| Row 3 | _ | * | _ | diff --git a/maze/task5/maps/level3/table/94.txt b/maze/task5/maps/level3/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..80a6cf186d65d75ba7be1e1dd6f121c16c04d7f2 --- /dev/null +++ b/maze/task5/maps/level3/table/94.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | # | # | # | +| Row 2 | _ | _ | _ | +| Row 3 | _ | * | @ | diff --git a/maze/task5/maps/level3/table/95.txt b/maze/task5/maps/level3/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b71524528f9a3f4ec29bb5b199e4ea4d5252d7d --- /dev/null +++ b/maze/task5/maps/level3/table/95.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | _ | _ | +| Row 2 | # | * | @ | +| Row 3 | _ | # | _ | diff --git a/maze/task5/maps/level3/table/96.txt b/maze/task5/maps/level3/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..90f0213c14e79e370422dd3eda645c64587336a2 --- /dev/null +++ b/maze/task5/maps/level3/table/96.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | @ | # | _ | +| Row 3 | _ | _ | _ | diff --git a/maze/task5/maps/level3/table/97.txt b/maze/task5/maps/level3/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..52c78993dcf78149df2fd26f79f68630e05dab39 --- /dev/null +++ b/maze/task5/maps/level3/table/97.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | _ | * | # | +| Row 2 | _ | _ | @ | +| Row 3 | _ | # | _ | diff --git a/maze/task5/maps/level3/table/98.txt b/maze/task5/maps/level3/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..deb8bb8d97434191fdad07e74b88ebc1b0eeeb49 --- /dev/null +++ b/maze/task5/maps/level3/table/98.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | _ | +| Row 3 | @ | _ | _ | diff --git a/maze/task5/maps/level3/table/99.txt b/maze/task5/maps/level3/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..362c4e633f38cc8812b5c1ad2bb881a780389ddf --- /dev/null +++ b/maze/task5/maps/level3/table/99.txt @@ -0,0 +1,4 @@ +| | Col 1 | Col 2 | Col 3 | +| Row 1 | * | _ | _ | +| Row 2 | _ | _ | @ | +| Row 3 | # | _ | _ | diff --git a/maze/task5/maps/level4/img/0.png b/maze/task5/maps/level4/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3db223649dc0c81cb1cae2f9e75f05d19afbe8e7 --- /dev/null +++ b/maze/task5/maps/level4/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51fc82ad2340501e17ba6b9f95968480b8834f0407ef76e87d37e47b0f5f0054 +size 7956 diff --git a/maze/task5/maps/level4/img/1.png b/maze/task5/maps/level4/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..51a8d9f11dec4fc38a317625f3d01888433a1a0c --- /dev/null +++ b/maze/task5/maps/level4/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae03338e81b2b35ffdcc4c05716dbbc0190a25c24cac5316f400f1a513ab845 +size 7818 diff --git a/maze/task5/maps/level4/img/10.png b/maze/task5/maps/level4/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..66b525dd81a04850f345272441dd8c68e6db0dd1 --- /dev/null +++ b/maze/task5/maps/level4/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8063d6c73a7d6d25de678fb0b54a843989ba3839923cb759ce136a66b2c0c1 +size 6990 diff --git a/maze/task5/maps/level4/img/11.png b/maze/task5/maps/level4/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6a7904e848d871aa38f06c379710d0b508117d6d --- /dev/null +++ b/maze/task5/maps/level4/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1c1b90e7d5588c401e39b617729c129ef65b10c7beba95b03871f341113acd +size 6969 diff --git a/maze/task5/maps/level4/img/12.png b/maze/task5/maps/level4/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..df386054eeebb588459e1045566377485efdd54a --- /dev/null +++ b/maze/task5/maps/level4/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2568a367eb1943beaccdfbb9e79a425d7d1e46d96f8c2f7e39704d5d31e5f814 +size 6153 diff --git a/maze/task5/maps/level4/img/13.png b/maze/task5/maps/level4/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..098e21d1aea20f23ab361c8abdbf95bfa464a9e6 --- /dev/null +++ b/maze/task5/maps/level4/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b4ab2233612625f3915bd9fb0ab79f8c75e0cb8a4c0210dd4ecd36a402827b +size 7966 diff --git a/maze/task5/maps/level4/img/14.png b/maze/task5/maps/level4/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..105e19f2b26eebc6579b96d099ffd2f2a90101e5 --- /dev/null +++ b/maze/task5/maps/level4/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f6e963ae8abb6058febefc149e6be82fe4be9121066e5d59fe2b6ea2671bf2 +size 6096 diff --git a/maze/task5/maps/level4/img/15.png b/maze/task5/maps/level4/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..a5b33bed091a9a50de883e698ca421e7933d8974 --- /dev/null +++ b/maze/task5/maps/level4/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30df5dddbc70095b4590efd47e23a21890cf9a79da700f5397288eb7d6de9ca6 +size 6232 diff --git a/maze/task5/maps/level4/img/16.png b/maze/task5/maps/level4/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..adb6d11b05b752c75c2fcf6b25734e9d37f5405c --- /dev/null +++ b/maze/task5/maps/level4/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c504d9213192a25f410aeec3940cf5eee4420437113428fd8153be5cfec489 +size 7089 diff --git a/maze/task5/maps/level4/img/17.png b/maze/task5/maps/level4/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..8e8987cbf819f87c84b2b16deae6e74a7ae0d107 --- /dev/null +++ b/maze/task5/maps/level4/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee6349b678df8c3c0e020d47e48556aeb4a56643596224f66a7414a06cfa9ff +size 5354 diff --git a/maze/task5/maps/level4/img/18.png b/maze/task5/maps/level4/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..5218b8ed891109595ef0eb05d2ac6bc16a30f468 --- /dev/null +++ b/maze/task5/maps/level4/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b3455e698c4ffd000e3d13eb34f0b00076ca6e014e8ace76fbf0e41470786b +size 7105 diff --git a/maze/task5/maps/level4/img/19.png b/maze/task5/maps/level4/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..95de8f0680331cf0e819161f4ff8bf97a12c729f --- /dev/null +++ b/maze/task5/maps/level4/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20cedd3cb21876ef022a559a9c3902713123abaf587b85973904a6c9fd5b779d +size 6119 diff --git a/maze/task5/maps/level4/img/2.png b/maze/task5/maps/level4/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5f9a5f83d9ec0e4f4f00602887604f032157e1d5 --- /dev/null +++ b/maze/task5/maps/level4/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f5113d13f73daa2711080b2d1077cf10cb5775dd9516a4d0c9be6c2b739c32 +size 5405 diff --git a/maze/task5/maps/level4/img/20.png b/maze/task5/maps/level4/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..69c8c5caa64b97a31fed79e29848a212a4c41273 --- /dev/null +++ b/maze/task5/maps/level4/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cdaa3afa67d30a4e39f9c18ae36de92dc4f32b40b8685771cb8dbb8361b34f0 +size 7033 diff --git a/maze/task5/maps/level4/img/21.png b/maze/task5/maps/level4/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..00a73ed1ee9a9d4ace7cbd5837045a994c27cd21 --- /dev/null +++ b/maze/task5/maps/level4/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a9a0dbbd6be6fe287bd47b9989572e64dc21aed318a2fd101654bd5fb528afc +size 7883 diff --git a/maze/task5/maps/level4/img/22.png b/maze/task5/maps/level4/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..c9879be05473f87c788feae46b2afbec69669e9e --- /dev/null +++ b/maze/task5/maps/level4/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794f33e454f924c8209fcb79b7b6af6721911b909df5780ecf0e8292c97397f8 +size 7855 diff --git a/maze/task5/maps/level4/img/23.png b/maze/task5/maps/level4/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..ca460cae973054bf627d01616a1ae78f470624ee --- /dev/null +++ b/maze/task5/maps/level4/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecbf2ce644d3259be94f44ae0e5bfbb11862273840382f37b434bf11cb32db04 +size 5307 diff --git a/maze/task5/maps/level4/img/24.png b/maze/task5/maps/level4/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..1c09dd33c92856ee14f80d05d251a482e9ef766a --- /dev/null +++ b/maze/task5/maps/level4/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924b2c4258ff2e01a4899c68a758b73e05091bf49b219e0fe3e8971d2cc741f7 +size 7158 diff --git a/maze/task5/maps/level4/img/25.png b/maze/task5/maps/level4/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..92938f3e349ad70e5cdd656f7dfb2b31ef4226af --- /dev/null +++ b/maze/task5/maps/level4/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2064dafd391f2a139fe8abadae370d20a72ffab3ad46a0613ecc65e0566e9d +size 6245 diff --git a/maze/task5/maps/level4/img/26.png b/maze/task5/maps/level4/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..2072c9f94d751974a7646ed1000b4fbd44431837 --- /dev/null +++ b/maze/task5/maps/level4/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9add3c30940f19023e6d975f7fd218ab1efab81dc6e32fb02fcd069b2057a42 +size 7878 diff --git a/maze/task5/maps/level4/img/27.png b/maze/task5/maps/level4/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..c2f0d51c27cf80be47beba4958f03eab58290f77 --- /dev/null +++ b/maze/task5/maps/level4/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeaab6ff3ff7750de94f8715873e971c36c7b62a51588087ec04b591076b4693 +size 7918 diff --git a/maze/task5/maps/level4/img/28.png b/maze/task5/maps/level4/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..9b48676618e2bca186b8e97a4713a62704efd5ec --- /dev/null +++ b/maze/task5/maps/level4/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a6b331a73a81641feaf27a3cb5723ccae997d15c76f07e4ce21289b21787af +size 7815 diff --git a/maze/task5/maps/level4/img/29.png b/maze/task5/maps/level4/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..ba470a09510a2ed64ffbb2d3b410b212f27a3886 --- /dev/null +++ b/maze/task5/maps/level4/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9d444a18c22195a73173822292450610ba73ff78c80b5700fb82ef574b9cc2 +size 7914 diff --git a/maze/task5/maps/level4/img/3.png b/maze/task5/maps/level4/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d956eff9d59cce4cc664d01598257592a11b1bf2 --- /dev/null +++ b/maze/task5/maps/level4/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7035f787974cb269f188cea4104b5fb0cd9fa01f912f4c6196aec827f3068243 +size 7063 diff --git a/maze/task5/maps/level4/img/30.png b/maze/task5/maps/level4/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..884116b04d2f05d8ef95cbb5b7f09b694142dd76 --- /dev/null +++ b/maze/task5/maps/level4/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74f70539ea8238c4e67de0f913b1c2cd0ace7a5d9032fcfe1e9d5a45580a311 +size 7171 diff --git a/maze/task5/maps/level4/img/31.png b/maze/task5/maps/level4/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..9f2c2a1ce1fc2bd2788f5a72d8c14151500b97da --- /dev/null +++ b/maze/task5/maps/level4/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67873129e29a5f1fa9bf3b8ded0421cadee980e4d52f97d6504c977c320d2567 +size 6120 diff --git a/maze/task5/maps/level4/img/32.png b/maze/task5/maps/level4/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..eaae6a6853b1d0d130ed8d7757db70230dacd6e1 --- /dev/null +++ b/maze/task5/maps/level4/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71507f98f85d96fd97c67461b05c6220a09b70ab58d94aef403b096885cfea3 +size 7086 diff --git a/maze/task5/maps/level4/img/33.png b/maze/task5/maps/level4/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..eeaf60d85d099bb649ecf65572f67bc27a84f970 --- /dev/null +++ b/maze/task5/maps/level4/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702932417c0ec6450c6318123fde685b831e37482356f61572c4849a69f4967c +size 8802 diff --git a/maze/task5/maps/level4/img/34.png b/maze/task5/maps/level4/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..1aec681188f2645adf341ab810823259e953ffb9 --- /dev/null +++ b/maze/task5/maps/level4/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ba527a41f4ccc8f84cae29753da402cf3ee3c894701c2eaa2f70832166a232 +size 6266 diff --git a/maze/task5/maps/level4/img/35.png b/maze/task5/maps/level4/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..85d9c6e7b62bc5fd56d9437fdf76a411662d6a30 --- /dev/null +++ b/maze/task5/maps/level4/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ec9d05369186a9983944a0296f8fe7338008b504b188fbe7eae56b0f57d8ff +size 6264 diff --git a/maze/task5/maps/level4/img/36.png b/maze/task5/maps/level4/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..699cb4fe69d364391b1cd113c9cb2f63abfb0899 --- /dev/null +++ b/maze/task5/maps/level4/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3cd9bc4b66055910e203a244a2717591076ae49957fadbd95970de5e766217 +size 7013 diff --git a/maze/task5/maps/level4/img/37.png b/maze/task5/maps/level4/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..7e19608cd72e42978fd17128a3aacd1b0b80119d --- /dev/null +++ b/maze/task5/maps/level4/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e936ebfa142c75c7e474dc4d28d49c644f0907d771b994e5f7c34dfb38e1948b +size 8032 diff --git a/maze/task5/maps/level4/img/38.png b/maze/task5/maps/level4/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..88c7c785b4037ee2bf30cb4dc47a56209b372aae --- /dev/null +++ b/maze/task5/maps/level4/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bcf0870e5fd83619b507bf2bcd5b4c180329462510e4b7f9f3317785a39c707 +size 7882 diff --git a/maze/task5/maps/level4/img/39.png b/maze/task5/maps/level4/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..eb61073aed16ad9189646585312185334d6cd15e --- /dev/null +++ b/maze/task5/maps/level4/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d568a4962786de0b931b6268c242ff7705820779ee97331bfb4968ee27c60b +size 6216 diff --git a/maze/task5/maps/level4/img/4.png b/maze/task5/maps/level4/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a80d74823e5ddc1490f695d371c360b56e1b2276 --- /dev/null +++ b/maze/task5/maps/level4/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:489a2674df1d28a5f60eead85a356cd37089719d9e4948e923c9c98c2f2caabb +size 7054 diff --git a/maze/task5/maps/level4/img/40.png b/maze/task5/maps/level4/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..5d4be8afcd8b7d440b8e41271ef7a6a6c3a9a5bd --- /dev/null +++ b/maze/task5/maps/level4/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79555f781703407c431f7fe0716d84fa3972f0e1c37b23ac39bf9e7df9049146 +size 8697 diff --git a/maze/task5/maps/level4/img/41.png b/maze/task5/maps/level4/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..aa3c41d43bef37eb166a61d83de32100a4f639b4 --- /dev/null +++ b/maze/task5/maps/level4/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f016ec8c91dcd516d2b3210e827731990ae0090e69f008df317d7b808411cb +size 7124 diff --git a/maze/task5/maps/level4/img/42.png b/maze/task5/maps/level4/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ce640fa2834cc616bdaf96148820a37b84080d --- /dev/null +++ b/maze/task5/maps/level4/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1694c5421cc87cf9116f6a679f50e4aa4c25283d39fd01f6bb3b005a620b8100 +size 7141 diff --git a/maze/task5/maps/level4/img/43.png b/maze/task5/maps/level4/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..ed2d30f18ca464acaf965bf68c3cefb1b5212427 --- /dev/null +++ b/maze/task5/maps/level4/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9fde7fcfa4ab1e86a9b0eeb53ffbce2aa3c271622725bb44e8409368a0ef6d +size 6224 diff --git a/maze/task5/maps/level4/img/44.png b/maze/task5/maps/level4/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..5e082eee341992605ca8e0459d8ebb0a00d93526 --- /dev/null +++ b/maze/task5/maps/level4/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0096faa2347833ecc7595a740f20a11927de827ffe68ff6988badcadea6fbaa6 +size 6200 diff --git a/maze/task5/maps/level4/img/45.png b/maze/task5/maps/level4/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..8b3dd47dabef331d37d0063cdaeb3168458cc807 --- /dev/null +++ b/maze/task5/maps/level4/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bde54fe5aafa194b3f13f27cf26d6c65747949d28aa5e11bda0ac814a6cc164 +size 7877 diff --git a/maze/task5/maps/level4/img/46.png b/maze/task5/maps/level4/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..63b6c81588d899f93cc13f409c2c752d67957882 --- /dev/null +++ b/maze/task5/maps/level4/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26772dbe6c39571f9ea8932c69412f0a3b553cea779a3aae2c216fb281d1979b +size 7830 diff --git a/maze/task5/maps/level4/img/47.png b/maze/task5/maps/level4/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..07ad072c0e2741595a3c5d7d74eb7fd1e211dbe0 --- /dev/null +++ b/maze/task5/maps/level4/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1752e345d14350d2649fb4dfd1b061199eb98687c3470c9c74f0f49f9488af +size 7137 diff --git a/maze/task5/maps/level4/img/48.png b/maze/task5/maps/level4/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..91af188559a398e36eaf65619060b9571d19a9f8 --- /dev/null +++ b/maze/task5/maps/level4/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c33595a7ee001899ea79eb5835b67d210f0583b6a8b7e6da681017f005767b +size 7074 diff --git a/maze/task5/maps/level4/img/49.png b/maze/task5/maps/level4/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..43070d52c51ae0e7f900e3dd6a19a84e77b05977 --- /dev/null +++ b/maze/task5/maps/level4/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6f53291beac0d1626a82052996fb499b047b685b16762143aca141c16249dc +size 6168 diff --git a/maze/task5/maps/level4/img/5.png b/maze/task5/maps/level4/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..52eecd6c60a563b0ed2b28b526c873c79d786066 --- /dev/null +++ b/maze/task5/maps/level4/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ceaaf02484650f2d93bcd00a4d9af2081222b3e116c58b64541402527ba72a3 +size 5256 diff --git a/maze/task5/maps/level4/img/50.png b/maze/task5/maps/level4/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..2961890c21c1556e16447b7e8df6c4a7a8b40a92 --- /dev/null +++ b/maze/task5/maps/level4/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5554bdbebc65354415b11e168e0cfc0d519e8d96e9aa85d737aba5b0b8e03e1e +size 7103 diff --git a/maze/task5/maps/level4/img/51.png b/maze/task5/maps/level4/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..0a394744fc09802f68ad9d32465dc810155aef0b --- /dev/null +++ b/maze/task5/maps/level4/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf44a2d566fa8c2a33dd8b6d98ccde9069522402294458c485a2fcf61485227 +size 7850 diff --git a/maze/task5/maps/level4/img/52.png b/maze/task5/maps/level4/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..e272abc3a761bb70ad29c30eea28c058066b11ea --- /dev/null +++ b/maze/task5/maps/level4/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e4775f3d3c0355376f73c1d27e4de703bfbe9ea08081286e95e8d569221574 +size 7072 diff --git a/maze/task5/maps/level4/img/53.png b/maze/task5/maps/level4/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..68b86cc32d18b5dae14c4a27759fd884d4601bfe --- /dev/null +++ b/maze/task5/maps/level4/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da21729150f507d185509d52de93d5df0f178878e84d88cd06bc7e7ddca2e387 +size 7925 diff --git a/maze/task5/maps/level4/img/54.png b/maze/task5/maps/level4/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..525612a3f79d5785e5455af603c6dad5a5459071 --- /dev/null +++ b/maze/task5/maps/level4/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf4b38dbc0993112b3fc93365088f0cba82c19bc9819372331461fff056fa83 +size 7908 diff --git a/maze/task5/maps/level4/img/55.png b/maze/task5/maps/level4/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..8b7a8b854711e5b8cda706f493d0f98f20366062 --- /dev/null +++ b/maze/task5/maps/level4/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d780bd82e0d6b63a87dbe0703d648301188d363397acf1a21ecc0f230a5666 +size 6234 diff --git a/maze/task5/maps/level4/img/56.png b/maze/task5/maps/level4/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..f3939ff053d1ebb577ca53a3d9e4a1ae42f5b885 --- /dev/null +++ b/maze/task5/maps/level4/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301f0b78f77891e0e7f5dc715b0bd2e6c455abd65d9b6826f74d6b75ec5b5156 +size 7904 diff --git a/maze/task5/maps/level4/img/57.png b/maze/task5/maps/level4/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..28bdd1b152dd8a64e93ecffa77b307475dab5b20 --- /dev/null +++ b/maze/task5/maps/level4/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31bb167697cbcdb26a628266f0a3af3d3d7305f5bd49ce0de5232ad921f70d8 +size 6185 diff --git a/maze/task5/maps/level4/img/58.png b/maze/task5/maps/level4/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..30078085aed24f8568e5ae642e5a7d69e804ef61 --- /dev/null +++ b/maze/task5/maps/level4/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db139df9b206278ea0ce62cd61118c6df31e39338c8fd1e7aaa2e79fcc732d54 +size 7051 diff --git a/maze/task5/maps/level4/img/59.png b/maze/task5/maps/level4/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..fafeb62eff0a57c9c448b104b1c67e16fabcb5f6 --- /dev/null +++ b/maze/task5/maps/level4/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b772e597250e3938857abda4a5a78d758164bf66bbe87e186818fcd89d44d1c +size 6996 diff --git a/maze/task5/maps/level4/img/6.png b/maze/task5/maps/level4/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..085d056ba0397f63fc07067afc6e8d6acc93292b --- /dev/null +++ b/maze/task5/maps/level4/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef394d7cecc4e10bdfa03be8b6bcea482087e1e5e43842fe5810423700b69243 +size 7177 diff --git a/maze/task5/maps/level4/img/60.png b/maze/task5/maps/level4/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..3289ea7f5f247d6aea0d1a26bfc998eab39e2bba --- /dev/null +++ b/maze/task5/maps/level4/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9711296ca42f494ccc829b97448d4fa21a20660a671f31856cdae4bda0adf21 +size 7890 diff --git a/maze/task5/maps/level4/img/61.png b/maze/task5/maps/level4/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..6249e6bc7c81dcc2ba9f0765255a30777bac3426 --- /dev/null +++ b/maze/task5/maps/level4/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e15237327e64f0626b186c37415de62a59576028e184b8574d30fda964daed4 +size 7084 diff --git a/maze/task5/maps/level4/img/62.png b/maze/task5/maps/level4/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..af2091a904f9fe975e1dc720dff7b0b5b45da7c6 --- /dev/null +++ b/maze/task5/maps/level4/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00669100468d5f6f21d0351838d7251f56a2a3267f465839137cc4ab4b08a68 +size 6154 diff --git a/maze/task5/maps/level4/img/63.png b/maze/task5/maps/level4/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..ad7e52c1bc7304dceab1bfdd9e1d4898aff3120c --- /dev/null +++ b/maze/task5/maps/level4/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f72fca561cdea1e4bdd5fa72f41360c4458cb3e438f09408cf05ff148296015 +size 7955 diff --git a/maze/task5/maps/level4/img/64.png b/maze/task5/maps/level4/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..5be65ef945ca5bc5ef84624b595f084609a1eaf9 --- /dev/null +++ b/maze/task5/maps/level4/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a68bc8af4fd23e161f8c6a3b54380e8bc25d582a72b04abebaa7c6e88b65187 +size 7046 diff --git a/maze/task5/maps/level4/img/65.png b/maze/task5/maps/level4/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..f46b5480dcb14481e97cb38a6200b0077fd7703a --- /dev/null +++ b/maze/task5/maps/level4/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0937c25c4e1e7a433e221967bb301d992ec235986f8d1741cf7674f75d55a9cb +size 6997 diff --git a/maze/task5/maps/level4/img/66.png b/maze/task5/maps/level4/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..33df968a638385cb39db14878c4732e524b8aa98 --- /dev/null +++ b/maze/task5/maps/level4/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36ee274f490b8de0dae8d8967626c8290c078700b458f499d03cc11c0e03b1a +size 6235 diff --git a/maze/task5/maps/level4/img/67.png b/maze/task5/maps/level4/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f7db68d54d86a8bf2781db0a3c5624c2a59a38 --- /dev/null +++ b/maze/task5/maps/level4/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ee6fa77d6d9e201c8d1fcc2525832d5c350eadca1903b4a8727bdc7d4ebb19 +size 7100 diff --git a/maze/task5/maps/level4/img/68.png b/maze/task5/maps/level4/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ebb6e68260da617403def1040264a268192263 --- /dev/null +++ b/maze/task5/maps/level4/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c80735f5ab9b2213b51c2f7473355752bd6513442493bcdbf54cbcfc15c62b +size 6245 diff --git a/maze/task5/maps/level4/img/69.png b/maze/task5/maps/level4/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..e8a33abdca815488ad52ca677e9855905b228d8a --- /dev/null +++ b/maze/task5/maps/level4/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ba0b524203af0cd9dde8a0b2cc870b4452da657d28a81274da1ab5ed7f3064 +size 6171 diff --git a/maze/task5/maps/level4/img/7.png b/maze/task5/maps/level4/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..03bc532ddaf9baf101dc835f4f154d42fb6f593a --- /dev/null +++ b/maze/task5/maps/level4/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ac67b8382e5a1107635c4a52d45905b0b641d9dd85c13805097dedf07764eb +size 7154 diff --git a/maze/task5/maps/level4/img/70.png b/maze/task5/maps/level4/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..fa697c4ae5207eb3a8ef4fd8989dd2f94ddc41a6 --- /dev/null +++ b/maze/task5/maps/level4/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee57460e876f32e958d3346dc2c9715c29f9cf1fb1a9283b72e03041bfb3bb0 +size 7901 diff --git a/maze/task5/maps/level4/img/71.png b/maze/task5/maps/level4/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..557274152eee39f7cb0d15490a9529ef0d107534 --- /dev/null +++ b/maze/task5/maps/level4/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd736c1f0c27a767b674958bb5fc566a78122f5e2a10ac8dfdca35a11a08888 +size 7061 diff --git a/maze/task5/maps/level4/img/72.png b/maze/task5/maps/level4/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..e867ec30fb85484cf3857309fcb849b3ed344b49 --- /dev/null +++ b/maze/task5/maps/level4/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3579657c419c14e51f762cda672610bf1367be453f5ba4aa8ab3290570c65d +size 7074 diff --git a/maze/task5/maps/level4/img/73.png b/maze/task5/maps/level4/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..858088bf9e6efbe21e146b40522f428e286f86c2 --- /dev/null +++ b/maze/task5/maps/level4/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a03b683ff3017e1d45a506117ce13ba244f19d045f285b619f5454a1fe57dbd +size 8046 diff --git a/maze/task5/maps/level4/img/74.png b/maze/task5/maps/level4/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..fc2c6039e6997af73226a61ace7bcc98c0d42ca4 --- /dev/null +++ b/maze/task5/maps/level4/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637197eb4c66def1d7e9acd1ee8473be1bf65b04d6c6a4d83ec77765d0f8ee1b +size 7085 diff --git a/maze/task5/maps/level4/img/75.png b/maze/task5/maps/level4/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..2eab3949905d9890a27b7339517158c225b58261 --- /dev/null +++ b/maze/task5/maps/level4/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c739d4f92cfe961b95790e0e8b2c257976357100570b45e9963efcc94fed48 +size 7826 diff --git a/maze/task5/maps/level4/img/76.png b/maze/task5/maps/level4/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..fe336271869777fcc1632f1ce6583d9ded1da968 --- /dev/null +++ b/maze/task5/maps/level4/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3480f4fa89ff3ffc6d6309b7c425e8ef9ba4c7dbd9888f74e39e4afc5dc86f2 +size 7109 diff --git a/maze/task5/maps/level4/img/77.png b/maze/task5/maps/level4/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..8345220a7297b9b10e4cd10015384e9e4e7824d6 --- /dev/null +++ b/maze/task5/maps/level4/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a90c7458cf5656b6389a9c341353edd91d24ff8e22fb94b2785927c1b33b592e +size 7943 diff --git a/maze/task5/maps/level4/img/78.png b/maze/task5/maps/level4/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..dcf2fb3aa37b739be7cc00baac563676d908679c --- /dev/null +++ b/maze/task5/maps/level4/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66f86f09e6d23bfc4b02acaaf560f1b9dc1528ea6f059595e617ca2f2d22151 +size 6995 diff --git a/maze/task5/maps/level4/img/79.png b/maze/task5/maps/level4/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..58271b78c4fe75dbf9b9ef97c442d0209b320351 --- /dev/null +++ b/maze/task5/maps/level4/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cbbf9c8d2b92aa6bb0f3edd0651016b6e44f1a0a35db12b0293b6da05444b01 +size 7908 diff --git a/maze/task5/maps/level4/img/8.png b/maze/task5/maps/level4/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..46303cf05cc403321c282e1fe6b2d641d2501f44 --- /dev/null +++ b/maze/task5/maps/level4/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e908fca3b9e9f7023fc518f80ab2930d72cecba3a046094a3c301a8e0c662b +size 6167 diff --git a/maze/task5/maps/level4/img/80.png b/maze/task5/maps/level4/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..35d80c753832c288f9ca67aa4724a3a5ed2ca00f --- /dev/null +++ b/maze/task5/maps/level4/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:776a87a5c43613659139e79a62c0b4897a9dd887469475f61a693c817f55a6a3 +size 7093 diff --git a/maze/task5/maps/level4/img/81.png b/maze/task5/maps/level4/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..c777982b23a3173d79a161799456b6efbb3cdc97 --- /dev/null +++ b/maze/task5/maps/level4/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a1fe73aed04c10616e9aa5127b691cc3e6b2abdd895d2586a0371645642c604 +size 7517 diff --git a/maze/task5/maps/level4/img/82.png b/maze/task5/maps/level4/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..cb2b64fe152f12b871bb01796a7df65a8264e1fb --- /dev/null +++ b/maze/task5/maps/level4/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f265123a7ae32ebfcc029ad219d8deb0cdf33580e81e57f67e67a77b0dd4e2 +size 6949 diff --git a/maze/task5/maps/level4/img/83.png b/maze/task5/maps/level4/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..cb8a623385f74180e1ee98ab1f39604053238f90 --- /dev/null +++ b/maze/task5/maps/level4/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83230533bba8610f7bee8ecfc9b842531617bd62bfaa77a54bbee0fcc01b5b3 +size 7905 diff --git a/maze/task5/maps/level4/img/84.png b/maze/task5/maps/level4/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..732d6016f48bc31b774f9c4396dc860e66eaac56 --- /dev/null +++ b/maze/task5/maps/level4/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e62cdccdead50989566bf6e4e9ad6ad0ac261310f4df2ab043c2ec47d902c36 +size 7007 diff --git a/maze/task5/maps/level4/img/85.png b/maze/task5/maps/level4/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..0d0e0c3caca1110565ecc21d414f3ea6f5e262fa --- /dev/null +++ b/maze/task5/maps/level4/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e49e1444fac0d8f248ef984bb37b30fed458edef58a27a035e792386588ea67 +size 6228 diff --git a/maze/task5/maps/level4/img/86.png b/maze/task5/maps/level4/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..2c249a93d04dfb1d58d83f216a4dd13292f281b7 --- /dev/null +++ b/maze/task5/maps/level4/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80875115e656cbf898a6b9583239ded4971e583836e7d7974aed8f4ea83b28c5 +size 7071 diff --git a/maze/task5/maps/level4/img/87.png b/maze/task5/maps/level4/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..c563796c86de1dfd7ba34ef233ef76932767f940 --- /dev/null +++ b/maze/task5/maps/level4/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2922008148c94eed51f35374dccd3c351c60cdd54d51acd318d28c4f050695 +size 6121 diff --git a/maze/task5/maps/level4/img/88.png b/maze/task5/maps/level4/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..801ec47d4e4382c936c72801f51c0b25e81b3123 --- /dev/null +++ b/maze/task5/maps/level4/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20bcc31fb4c7608c1359fdd84e6e0261134f5720fcc5bab0eecc447d348c80de +size 6120 diff --git a/maze/task5/maps/level4/img/89.png b/maze/task5/maps/level4/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..c1f9c8ea6b9c00974f316e4dbac35092fc4c176d --- /dev/null +++ b/maze/task5/maps/level4/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c62b3498569120ebf01ec2325e70efd2e9ab5b6cb57a587276cb08d78a63bc2b +size 8001 diff --git a/maze/task5/maps/level4/img/9.png b/maze/task5/maps/level4/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1732777d42c89716df4eec105381fec4836c0732 --- /dev/null +++ b/maze/task5/maps/level4/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b1ce79a655c5435983ef974dd67b534af3d92ad25f5aa845293de672fd4fbda +size 7153 diff --git a/maze/task5/maps/level4/img/90.png b/maze/task5/maps/level4/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a3789076fd2c84fc585833020ee4c50abfd02e --- /dev/null +++ b/maze/task5/maps/level4/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63e60a0454af90ae2b78b427950b825d9375b32e374e458e7212513e0d73024 +size 7854 diff --git a/maze/task5/maps/level4/img/91.png b/maze/task5/maps/level4/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..b41dbb9fa47708292566894518d5e12404addc7e --- /dev/null +++ b/maze/task5/maps/level4/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c321d09526d937604e39a37c64c8f65cbf81380bbc2e13d1c4dd0bf33c2e294 +size 6312 diff --git a/maze/task5/maps/level4/img/92.png b/maze/task5/maps/level4/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..766c2eac5efb37f047f64b5c0dd3cb2a3abca406 --- /dev/null +++ b/maze/task5/maps/level4/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855c9ad9d6211cf4463f44ba6308c3aca03ef8f95c39f02aeaa9507abeb6bc26 +size 6239 diff --git a/maze/task5/maps/level4/img/93.png b/maze/task5/maps/level4/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..6db394fd96fa34fc6db142fe710d5c093f882695 --- /dev/null +++ b/maze/task5/maps/level4/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ada7c727706782a8b0124795b11e87dd401ab78fa1ac24612e55d5b5d87afd1 +size 7022 diff --git a/maze/task5/maps/level4/img/94.png b/maze/task5/maps/level4/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..8e0ab2c5ad824ba3ea2be07555e89ff12770e02c --- /dev/null +++ b/maze/task5/maps/level4/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99013d978f3bdc9be792ecf0b23b9be8d5006ccf1eb3ee4382446e93c435176e +size 7061 diff --git a/maze/task5/maps/level4/img/95.png b/maze/task5/maps/level4/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..699cb4fe69d364391b1cd113c9cb2f63abfb0899 --- /dev/null +++ b/maze/task5/maps/level4/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3cd9bc4b66055910e203a244a2717591076ae49957fadbd95970de5e766217 +size 7013 diff --git a/maze/task5/maps/level4/img/96.png b/maze/task5/maps/level4/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..4b4e0c90621370d01cb26cd1fea59cfc9ebe1f43 --- /dev/null +++ b/maze/task5/maps/level4/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e9afce033cc38fa0cecc6ea1175ad761058cf03c4869132bab8e715cb422dc +size 7010 diff --git a/maze/task5/maps/level4/img/97.png b/maze/task5/maps/level4/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..8efa0ea2fa24198b952de764cb67c58e379ecf4c --- /dev/null +++ b/maze/task5/maps/level4/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01d30f0e1e107e7920ebfa69c1aed0091078de8c49b788edf0d91d88cd072f5 +size 6260 diff --git a/maze/task5/maps/level4/img/98.png b/maze/task5/maps/level4/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..2148357cb07371cf383d73d69df0452cd072fe85 --- /dev/null +++ b/maze/task5/maps/level4/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7db58e5e68ec2648d59c06b68f7775e3968741a3004c3097167778e519daae +size 7835 diff --git a/maze/task5/maps/level4/img/99.png b/maze/task5/maps/level4/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..78d37a053c0819394c610d3865c96641574f2d64 --- /dev/null +++ b/maze/task5/maps/level4/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49208e49b91b2f588b84de0d976984aebf86b1e912fa2965d8d7fefbe9baf744 +size 7015 diff --git a/maze/task5/maps/level4/pure_text/0.txt b/maze/task5/maps/level4/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..13f2c354461307767cb544e7b7930420db9ddd89 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; Row 3, Column 3; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/1.txt b/maze/task5/maps/level4/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6d6c65a0d47a9da8cc4f6a508ca08684587372a --- /dev/null +++ b/maze/task5/maps/level4/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/10.txt b/maze/task5/maps/level4/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d28902b576d61eb09650a5bc4e7279c8d8cd31a --- /dev/null +++ b/maze/task5/maps/level4/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/11.txt b/maze/task5/maps/level4/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba726695775b3c4be3904e6c953b30ede57c3b86 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/12.txt b/maze/task5/maps/level4/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b3961e6b85dd11f33a7f7f4fe44493a40efc0f3 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/13.txt b/maze/task5/maps/level4/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..745480dc5440f3f584864a1c92ff88517648ed17 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 4, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/14.txt b/maze/task5/maps/level4/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..86f34d273657760c2c79bd5a99861da0f68ba050 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 3, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/15.txt b/maze/task5/maps/level4/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..44802451cb8f5c1751788c5a24a39a7c580d586b --- /dev/null +++ b/maze/task5/maps/level4/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/16.txt b/maze/task5/maps/level4/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..86419ffd29ff7bc8d77cc3126b37f5fe582e094c --- /dev/null +++ b/maze/task5/maps/level4/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/17.txt b/maze/task5/maps/level4/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d975a2b555444544ffa3f37e6582536b91b64b5 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +There is no holes in this map; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/18.txt b/maze/task5/maps/level4/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..7668bf7404a1ba5fcd52c63cbdf5cf3d8930a0c4 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/19.txt b/maze/task5/maps/level4/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6a296c4eebc35502bd13e2997d08b1cd0291a87 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/2.txt b/maze/task5/maps/level4/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..70cb392c0ee05ee44ca3f813d57852efcb5951dd --- /dev/null +++ b/maze/task5/maps/level4/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +There is no holes in this map; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/20.txt b/maze/task5/maps/level4/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..e96deff2afdcc33d002ebe9d9e743934b0ee0bc4 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 1; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/21.txt b/maze/task5/maps/level4/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..6370ae943572fc59a39b73c28488cad7cf3f2dae --- /dev/null +++ b/maze/task5/maps/level4/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/22.txt b/maze/task5/maps/level4/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6b560fb8304416386ffa4ff179b920433ea7f83 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/23.txt b/maze/task5/maps/level4/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..4804ac3056ade9a6d0cc47c61bba5aa4edcd34a1 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +There is no holes in this map; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/24.txt b/maze/task5/maps/level4/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c538e7a2a617b942523a928caf380eb0580b513e --- /dev/null +++ b/maze/task5/maps/level4/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 1; Row 4, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/25.txt b/maze/task5/maps/level4/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9857348225d3fc9f5eaa59d5c3f3ce8a737cf6e --- /dev/null +++ b/maze/task5/maps/level4/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/26.txt b/maze/task5/maps/level4/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..6877071ac5403cf4f8e80bd43be9a33e6f88c6e3 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/27.txt b/maze/task5/maps/level4/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..06ae5045e0f5e197f547345ccf6d949faf4f9154 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 3, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/28.txt b/maze/task5/maps/level4/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad890f7019ec611a746dd9634c2897b7cb9a5ff4 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/29.txt b/maze/task5/maps/level4/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..37ba91e295e342037f212a5b08b2f5944e1b6890 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; Row 4, Column 3; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/3.txt b/maze/task5/maps/level4/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fe97e68c13a0fcc8b1f409927a0c75670bbf04f --- /dev/null +++ b/maze/task5/maps/level4/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/30.txt b/maze/task5/maps/level4/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5221e3ec0637807b3cca51acf54cc52a5615a16 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 2; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/31.txt b/maze/task5/maps/level4/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..34b553b87ad17f12718d142a1edd010f7611a431 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/32.txt b/maze/task5/maps/level4/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..1aaf76ba58fca47014a4e00a49faa93c19ba1f4d --- /dev/null +++ b/maze/task5/maps/level4/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/33.txt b/maze/task5/maps/level4/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bac0c6c422ea10c8bd3cc2400d36ef905af120a --- /dev/null +++ b/maze/task5/maps/level4/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/34.txt b/maze/task5/maps/level4/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..4cfe50d4b8ecb29fe4d89dc40b97af5f49f67a2e --- /dev/null +++ b/maze/task5/maps/level4/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/35.txt b/maze/task5/maps/level4/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..342ec87b2945c731b9862c1597dd920a295eac7b --- /dev/null +++ b/maze/task5/maps/level4/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/36.txt b/maze/task5/maps/level4/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..91e40031729bf2da1b15140b4d8061e6e40bb205 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/37.txt b/maze/task5/maps/level4/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f73c25c19d718aa33fa5eef5ccf4627211b2b800 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/38.txt b/maze/task5/maps/level4/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..10823e4a83044f6e6dd9a1abbd6917a865fe162e --- /dev/null +++ b/maze/task5/maps/level4/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 4, Column 1; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/39.txt b/maze/task5/maps/level4/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6b8046b2be9a0acfe5fa8ac84150d220c5db71f --- /dev/null +++ b/maze/task5/maps/level4/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/4.txt b/maze/task5/maps/level4/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b8de229d5a84e81da043ac0e2a8d5e194842c54 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 2; Row 4, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/40.txt b/maze/task5/maps/level4/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..193cc6838c2926cb5c99bb0da927dc2ab1292567 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 3, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/41.txt b/maze/task5/maps/level4/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca32e9c80dfbd8d3bdbf35808bf7db9628d06d76 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/42.txt b/maze/task5/maps/level4/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d41f2e6a4c1d6f440fb9f7f15125bd84ef6bc5d --- /dev/null +++ b/maze/task5/maps/level4/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/43.txt b/maze/task5/maps/level4/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..2879a11b09ced41277f1bbae2aee177157d109cd --- /dev/null +++ b/maze/task5/maps/level4/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/44.txt b/maze/task5/maps/level4/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec9056f4ea92c8bb57b26e1a21f16a41e7b48a28 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 3, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/45.txt b/maze/task5/maps/level4/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..3354dd35afc5a5257cf0bbe4756e68a7f3a53d54 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/46.txt b/maze/task5/maps/level4/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..97252a720fec62af834eb7d3d1204cfcc5204f86 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 4, Column 1; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/47.txt b/maze/task5/maps/level4/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..a30d5a201a88ee3c2c8d3a350265089ee9d60062 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 4, Column 1; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/48.txt b/maze/task5/maps/level4/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1955fcb5b5899c2226305b2976d80654c11eaa2 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/49.txt b/maze/task5/maps/level4/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..a90d43fcc232a9c93b517a0a45fd7e65b595e099 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/5.txt b/maze/task5/maps/level4/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..5698b084cf297c6f3c3978280c0becb05508c322 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +There is no holes in this map; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/50.txt b/maze/task5/maps/level4/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbce8bef6f17d78d3468a1feb8484e3fdf8cf5a4 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/51.txt b/maze/task5/maps/level4/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbf2a56de3e6e64e9394e3f8e98084557ccb00a2 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/52.txt b/maze/task5/maps/level4/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..501600025abadd78514820dff964b24ccc7b1421 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/53.txt b/maze/task5/maps/level4/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..22cbea4228691aebd523124c121506f12418f9cd --- /dev/null +++ b/maze/task5/maps/level4/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 4, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/54.txt b/maze/task5/maps/level4/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..c52ab2f295719e93b40b9bddf5c6ec4abb27db9f --- /dev/null +++ b/maze/task5/maps/level4/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 2; Row 2, Column 4; Row 4, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/55.txt b/maze/task5/maps/level4/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..dbd671dcc0ff0515cf94ac2edc5bdb41f919652d --- /dev/null +++ b/maze/task5/maps/level4/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/56.txt b/maze/task5/maps/level4/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..45d75801368b07b5f9d280d2b648a3cedab11e26 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/57.txt b/maze/task5/maps/level4/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..2046c0aee0e6de01805dfdc52f7407ed55a23702 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/58.txt b/maze/task5/maps/level4/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a367a83bf9ca71fe8462fd7d86fd6c96351cae6 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/59.txt b/maze/task5/maps/level4/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ef1228fb33f3bb4406a3d25c4265e55f98c2c8d --- /dev/null +++ b/maze/task5/maps/level4/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 4; Row 4, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/6.txt b/maze/task5/maps/level4/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cdd9f74837229ad5a8a54b20569a9dcbe3486b8 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 4, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/60.txt b/maze/task5/maps/level4/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2524bb5e3de2c89a4a71c3adc28d4b1f55facc21 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/61.txt b/maze/task5/maps/level4/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..04181f11c86c3b325145a5602de3ef4c69166d92 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/62.txt b/maze/task5/maps/level4/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..688b204c6034315442cb3c89439d522314e400bc --- /dev/null +++ b/maze/task5/maps/level4/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/63.txt b/maze/task5/maps/level4/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a8b8ded6388f590809cbf5277f1a24e2cbef3e1 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 3; Row 3, Column 2; Row 4, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/64.txt b/maze/task5/maps/level4/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8ead1258cda1f2e403b9a13046c5e1fa43fa8cb --- /dev/null +++ b/maze/task5/maps/level4/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/65.txt b/maze/task5/maps/level4/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e2d4f2020332135f74d40407636d3aeb65932a5 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/66.txt b/maze/task5/maps/level4/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b2e2de56e74d91e1fb42f96e2b46be30bb07150 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/67.txt b/maze/task5/maps/level4/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8cd6dbbdb09da63e25f7c9ab4d2d1db5739d522 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 3; Row 4, Column 2; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/68.txt b/maze/task5/maps/level4/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..12c36d0cc25a152c6da079c3fe89ebefb56a9a39 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/69.txt b/maze/task5/maps/level4/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..449ee946c16c4c98a33ca50e340e979ea49a704a --- /dev/null +++ b/maze/task5/maps/level4/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/7.txt b/maze/task5/maps/level4/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..88bd2c9bd6522ed6cecf1b400b615293638b237d --- /dev/null +++ b/maze/task5/maps/level4/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/70.txt b/maze/task5/maps/level4/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..20a1b0786aad5a84b77fbb9338a79054b7650b78 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 4, Column 3; Row 4, Column 4; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/71.txt b/maze/task5/maps/level4/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..01d3d90e9356bbb505c338e6b98c588ff436c2d3 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/72.txt b/maze/task5/maps/level4/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7513b4bc17762aa7b4ca617782514640f1afb2d --- /dev/null +++ b/maze/task5/maps/level4/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/73.txt b/maze/task5/maps/level4/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..136d4b6b1a03049b0d12e1924914f2a8560ce8e9 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 4, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/74.txt b/maze/task5/maps/level4/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ced5c60173d912a592192b51a1521a8d3ff69fe --- /dev/null +++ b/maze/task5/maps/level4/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 3, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/75.txt b/maze/task5/maps/level4/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..b240ed49ce4c91509376a3161eae58619f660e0c --- /dev/null +++ b/maze/task5/maps/level4/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/76.txt b/maze/task5/maps/level4/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..12b314e44d6ddfabeef390508678165ca99ce437 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/77.txt b/maze/task5/maps/level4/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..da693bdf1cb826a76301f09660313344bdfff4a1 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 4, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/78.txt b/maze/task5/maps/level4/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..a101c001c594178e4857535e3ef7a571929346f6 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/79.txt b/maze/task5/maps/level4/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca4b7d6c66098a0f8c8e0b6f5979579a619cbc65 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 4; Row 3, Column 2; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/8.txt b/maze/task5/maps/level4/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3ef6f0ef8dd17338e89b17817284515bb15094d --- /dev/null +++ b/maze/task5/maps/level4/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/80.txt b/maze/task5/maps/level4/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..73367f48be8565454c30349be3cda8af40efa2f3 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/81.txt b/maze/task5/maps/level4/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3ec7afac888596124f9a944149b799de76314f8 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 3, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/82.txt b/maze/task5/maps/level4/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b304211ef22bb8d861ae792e0252f8770bece3b --- /dev/null +++ b/maze/task5/maps/level4/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 4; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/83.txt b/maze/task5/maps/level4/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..d509b6fe98967e9924d0213c2219d2a4b6903b49 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 4, Column 1; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/84.txt b/maze/task5/maps/level4/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..0beb7c2877f5d4b5a2af7391f5b0f31bea77e885 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/85.txt b/maze/task5/maps/level4/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebafcd4c0e0c6f4898e22b51eb426970d445ab4e --- /dev/null +++ b/maze/task5/maps/level4/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 4; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/86.txt b/maze/task5/maps/level4/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3db5a41231450a71055ead8773ce4f06dc48089 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 3, Column 1; Row 4, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/87.txt b/maze/task5/maps/level4/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..532b03beeaa72d110a732fe34d4b038f4a52316b --- /dev/null +++ b/maze/task5/maps/level4/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 4, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/88.txt b/maze/task5/maps/level4/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..92b1f97d03ed2a855e75b4610b200661ce134099 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/89.txt b/maze/task5/maps/level4/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..2986497a62246fd2241142ca47efeb53cd3c175d --- /dev/null +++ b/maze/task5/maps/level4/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/9.txt b/maze/task5/maps/level4/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a5e480e7063e78a6d1e39bef45a4a418717e71b --- /dev/null +++ b/maze/task5/maps/level4/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 2; Row 3, Column 3; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/90.txt b/maze/task5/maps/level4/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..a46831f34c9341a07d09b9afb2b7615c04d001df --- /dev/null +++ b/maze/task5/maps/level4/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/91.txt b/maze/task5/maps/level4/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..040c9a1294d5ef9345c78774bc98a4e25bb2dc0e --- /dev/null +++ b/maze/task5/maps/level4/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 3, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/92.txt b/maze/task5/maps/level4/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..df6f0d4236537adac11507af93f56f0753e505bc --- /dev/null +++ b/maze/task5/maps/level4/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/93.txt b/maze/task5/maps/level4/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa5571579aef555a5b1a862ff4a66f9ade8434ba --- /dev/null +++ b/maze/task5/maps/level4/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/94.txt b/maze/task5/maps/level4/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4d9e8ff0b9f0e48d05bac155560064bdffa28e4 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 4, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/95.txt b/maze/task5/maps/level4/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..91e40031729bf2da1b15140b4d8061e6e40bb205 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/96.txt b/maze/task5/maps/level4/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ca98e48fe489800eeef87038503eeae6ad9c2b7 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 4, Column 2; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/97.txt b/maze/task5/maps/level4/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..798b04eb921727496070322efcfd51cce50a767a --- /dev/null +++ b/maze/task5/maps/level4/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/98.txt b/maze/task5/maps/level4/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8298aac979b788dce4e73b9af610fcfa87e9ed0 --- /dev/null +++ b/maze/task5/maps/level4/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level4/pure_text/99.txt b/maze/task5/maps/level4/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..3845a7c33d57ff468e367644b4970b8a5fb5a58d --- /dev/null +++ b/maze/task5/maps/level4/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 4x4 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level4/table/0.txt b/maze/task5/maps/level4/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..90a5cadce19dcc7f7b05bb6f584961dbe5242fd0 --- /dev/null +++ b/maze/task5/maps/level4/table/0.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | _ | * | # | _ | +| Row 4 | # | _ | _ | # | diff --git a/maze/task5/maps/level4/table/1.txt b/maze/task5/maps/level4/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..68f6c5d6da8bdc8fa8d597d5284f09e7111464b4 --- /dev/null +++ b/maze/task5/maps/level4/table/1.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | _ | @ | diff --git a/maze/task5/maps/level4/table/10.txt b/maze/task5/maps/level4/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..14cf9bddff5134fb07e7a33f83155f86d10d3bff --- /dev/null +++ b/maze/task5/maps/level4/table/10.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | # | * | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/11.txt b/maze/task5/maps/level4/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..df93810b679ed94b28926cbcf50da24ada42990a --- /dev/null +++ b/maze/task5/maps/level4/table/11.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | # | # | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/12.txt b/maze/task5/maps/level4/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..92c58549e0101f11fa02e4a1248ea4dcee7e537a --- /dev/null +++ b/maze/task5/maps/level4/table/12.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task5/maps/level4/table/13.txt b/maze/task5/maps/level4/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..57ce4feab065989c70d5eaa8634698fd130301b9 --- /dev/null +++ b/maze/task5/maps/level4/table/13.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | # | @ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/maps/level4/table/14.txt b/maze/task5/maps/level4/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ec5b4dd3ac70713220ef868f29ad4c52c7b0fc0 --- /dev/null +++ b/maze/task5/maps/level4/table/14.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | _ | @ | * | diff --git a/maze/task5/maps/level4/table/15.txt b/maze/task5/maps/level4/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..298f63c9b61c609451626c0fb5868da68c03d496 --- /dev/null +++ b/maze/task5/maps/level4/table/15.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/16.txt b/maze/task5/maps/level4/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecb3fda7d8a52b92fcc226edc8431f3f472d139b --- /dev/null +++ b/maze/task5/maps/level4/table/16.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | @ | _ | diff --git a/maze/task5/maps/level4/table/17.txt b/maze/task5/maps/level4/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fb597d6f17f6ae81ab55255f0a37556667b025b --- /dev/null +++ b/maze/task5/maps/level4/table/17.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/18.txt b/maze/task5/maps/level4/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..be2e89f5353d309e3cb0cb060e903484f72735f0 --- /dev/null +++ b/maze/task5/maps/level4/table/18.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task5/maps/level4/table/19.txt b/maze/task5/maps/level4/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd545b11e5104db1757785b60cc1ba7335d3c18e --- /dev/null +++ b/maze/task5/maps/level4/table/19.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | _ | @ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/2.txt b/maze/task5/maps/level4/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..34df1713f9e5b32757eb1e84fd27f5752e8f6bd6 --- /dev/null +++ b/maze/task5/maps/level4/table/2.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task5/maps/level4/table/20.txt b/maze/task5/maps/level4/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d3da660c388792987132c009956deaa6f25d56f --- /dev/null +++ b/maze/task5/maps/level4/table/20.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | # | +| Row 2 | # | @ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/21.txt b/maze/task5/maps/level4/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f7d05c3f85acd944d1b4696edb1737678bb7337 --- /dev/null +++ b/maze/task5/maps/level4/table/21.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | @ | # | diff --git a/maze/task5/maps/level4/table/22.txt b/maze/task5/maps/level4/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7b7a5e901f656d4e0c7bc6522c2f5601065b4fc --- /dev/null +++ b/maze/task5/maps/level4/table/22.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | _ | * | # | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task5/maps/level4/table/23.txt b/maze/task5/maps/level4/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..648fd65920d3b9595dd52e8a46ee9b3c0d5f9241 --- /dev/null +++ b/maze/task5/maps/level4/table/23.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | * | _ | @ | _ | diff --git a/maze/task5/maps/level4/table/24.txt b/maze/task5/maps/level4/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..f215394ea205e2687a4f65fde79d6f65271059da --- /dev/null +++ b/maze/task5/maps/level4/table/24.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/maps/level4/table/25.txt b/maze/task5/maps/level4/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a72b20c192319883655489e8de4a8f15ec12f2c --- /dev/null +++ b/maze/task5/maps/level4/table/25.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/26.txt b/maze/task5/maps/level4/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..73888ca1cbd11718bb005690e0da715de2c173bb --- /dev/null +++ b/maze/task5/maps/level4/table/26.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | * | _ | _ | @ | diff --git a/maze/task5/maps/level4/table/27.txt b/maze/task5/maps/level4/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdcd0e2873fe6bc7c7d5fdfe78143c4f180133a6 --- /dev/null +++ b/maze/task5/maps/level4/table/27.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | # | _ | @ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task5/maps/level4/table/28.txt b/maze/task5/maps/level4/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0a3445907f6af916669c462c438877061b7c25a --- /dev/null +++ b/maze/task5/maps/level4/table/28.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | * | _ | _ | @ | diff --git a/maze/task5/maps/level4/table/29.txt b/maze/task5/maps/level4/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..8070e9deaac4605c5a2bb5310ea970b8e8f31cbf --- /dev/null +++ b/maze/task5/maps/level4/table/29.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | _ | # | @ | diff --git a/maze/task5/maps/level4/table/3.txt b/maze/task5/maps/level4/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..678a5318966a455aadf086ddaad66a225cc5acb3 --- /dev/null +++ b/maze/task5/maps/level4/table/3.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | # | _ | * | diff --git a/maze/task5/maps/level4/table/30.txt b/maze/task5/maps/level4/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..96150e4a94bb33a2c73af1cabdf66e714ce74bc0 --- /dev/null +++ b/maze/task5/maps/level4/table/30.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | * | # | _ | _ | diff --git a/maze/task5/maps/level4/table/31.txt b/maze/task5/maps/level4/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..c20def316315058939fc1053d820356422d91d20 --- /dev/null +++ b/maze/task5/maps/level4/table/31.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/32.txt b/maze/task5/maps/level4/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..83a33b6ccc776ca42d30bd09a218e2ef2c5b1fda --- /dev/null +++ b/maze/task5/maps/level4/table/32.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | # | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task5/maps/level4/table/33.txt b/maze/task5/maps/level4/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b4e73b0c7e52d7ce5dcd927f2a5331f81f6e638 --- /dev/null +++ b/maze/task5/maps/level4/table/33.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | # | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | +| Row 4 | # | # | * | _ | diff --git a/maze/task5/maps/level4/table/34.txt b/maze/task5/maps/level4/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..8781791360e8655a63fd4e6e216ceb552a29fcd4 --- /dev/null +++ b/maze/task5/maps/level4/table/34.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | * | @ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/35.txt b/maze/task5/maps/level4/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed8e8ebf6cbcf63cbe453b091a2aa77446d8ed5 --- /dev/null +++ b/maze/task5/maps/level4/table/35.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | * | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/36.txt b/maze/task5/maps/level4/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..90e9261d723977daf1c0cd6e621fe0bc8d1dd498 --- /dev/null +++ b/maze/task5/maps/level4/table/36.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task5/maps/level4/table/37.txt b/maze/task5/maps/level4/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..1820824298bf8b82bd99527e1bf6694e07f8d84c --- /dev/null +++ b/maze/task5/maps/level4/table/37.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | @ | # | _ | _ | diff --git a/maze/task5/maps/level4/table/38.txt b/maze/task5/maps/level4/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c15be9e57c4ace65b6333b0c6d94ab2e4b56ae1 --- /dev/null +++ b/maze/task5/maps/level4/table/38.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | @ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/39.txt b/maze/task5/maps/level4/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba9f6a3ce1a642f7658b128dbea6c341aa643b86 --- /dev/null +++ b/maze/task5/maps/level4/table/39.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/4.txt b/maze/task5/maps/level4/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd4b5faee88642121cebeb282a3b13731545bf67 --- /dev/null +++ b/maze/task5/maps/level4/table/4.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task5/maps/level4/table/40.txt b/maze/task5/maps/level4/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..075c207ad31c15296897ac9c63f13b65120e25de --- /dev/null +++ b/maze/task5/maps/level4/table/40.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | # | diff --git a/maze/task5/maps/level4/table/41.txt b/maze/task5/maps/level4/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..db4f5fe090c53f3eb865bd9ead5aeeebf54b9193 --- /dev/null +++ b/maze/task5/maps/level4/table/41.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | @ | _ | _ | +| Row 2 | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/maps/level4/table/42.txt b/maze/task5/maps/level4/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e8021ac15f47719d99e0bceb3664fb0cfb2d3a8 --- /dev/null +++ b/maze/task5/maps/level4/table/42.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | # | _ | * | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task5/maps/level4/table/43.txt b/maze/task5/maps/level4/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f4b94e1fd1d77d7d5463589be696bf09e86d6fc --- /dev/null +++ b/maze/task5/maps/level4/table/43.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/44.txt b/maze/task5/maps/level4/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..62a768d9a1493e8be17477d4a999d1e19448d5cf --- /dev/null +++ b/maze/task5/maps/level4/table/44.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/45.txt b/maze/task5/maps/level4/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..24e727cea0b4b86a3902eef932936f553512b727 --- /dev/null +++ b/maze/task5/maps/level4/table/45.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | * | _ | # | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/maps/level4/table/46.txt b/maze/task5/maps/level4/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..44327f4417a30e50af6529623c5086c2dfed6602 --- /dev/null +++ b/maze/task5/maps/level4/table/46.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | # | * | _ | _ | diff --git a/maze/task5/maps/level4/table/47.txt b/maze/task5/maps/level4/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f9314b2b48efcef4eeba59d92ccfde96918a137 --- /dev/null +++ b/maze/task5/maps/level4/table/47.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/48.txt b/maze/task5/maps/level4/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..8307ab0ac83712a5be278c85348b7173d0068daa --- /dev/null +++ b/maze/task5/maps/level4/table/48.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | * | +| Row 2 | _ | # | _ | @ | +| Row 3 | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/49.txt b/maze/task5/maps/level4/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b4f66bb91c4594e317e5b3900441ea0f819c4bb --- /dev/null +++ b/maze/task5/maps/level4/table/49.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | @ | diff --git a/maze/task5/maps/level4/table/5.txt b/maze/task5/maps/level4/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a08589aaebc8551acfcaf64a397b61a903c32d --- /dev/null +++ b/maze/task5/maps/level4/table/5.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/50.txt b/maze/task5/maps/level4/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..325225cdd0a2b290a83ff663d49b085d90a8c3b5 --- /dev/null +++ b/maze/task5/maps/level4/table/50.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/51.txt b/maze/task5/maps/level4/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..684a73d225ee999d68e4b150e809fef355a46283 --- /dev/null +++ b/maze/task5/maps/level4/table/51.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | +| Row 4 | # | _ | _ | * | diff --git a/maze/task5/maps/level4/table/52.txt b/maze/task5/maps/level4/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..71bcedd749cc86874ad8996339d07bc137de37b7 --- /dev/null +++ b/maze/task5/maps/level4/table/52.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | # | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/53.txt b/maze/task5/maps/level4/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9196b652dab2eb9db1b811de7f607309e773555 --- /dev/null +++ b/maze/task5/maps/level4/table/53.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/54.txt b/maze/task5/maps/level4/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6ae76ffd1a4948d14061389ffc8e318b683e2cc --- /dev/null +++ b/maze/task5/maps/level4/table/54.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | # | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | @ | _ | # | diff --git a/maze/task5/maps/level4/table/55.txt b/maze/task5/maps/level4/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..2fb5390e60a47d0812f31663e3766872fe030975 --- /dev/null +++ b/maze/task5/maps/level4/table/55.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task5/maps/level4/table/56.txt b/maze/task5/maps/level4/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6f9c9602dab2acd2417152a11f1513cc115452a --- /dev/null +++ b/maze/task5/maps/level4/table/56.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | # | _ | @ | +| Row 3 | # | _ | _ | # | +| Row 4 | _ | * | _ | # | diff --git a/maze/task5/maps/level4/table/57.txt b/maze/task5/maps/level4/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..493b5123f23718ce5be76a025e1748b08cb0a812 --- /dev/null +++ b/maze/task5/maps/level4/table/57.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/58.txt b/maze/task5/maps/level4/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..0266f04babe0d9e39983e35b978209e5186e74a4 --- /dev/null +++ b/maze/task5/maps/level4/table/58.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | * | _ | +| Row 4 | _ | _ | @ | _ | diff --git a/maze/task5/maps/level4/table/59.txt b/maze/task5/maps/level4/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..11359b016b0947d8272ca01245383b9170bac9d8 --- /dev/null +++ b/maze/task5/maps/level4/table/59.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task5/maps/level4/table/6.txt b/maze/task5/maps/level4/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..20152ce49174e6c35e32b2be4fe84d1523c149b8 --- /dev/null +++ b/maze/task5/maps/level4/table/6.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | @ | # | _ | _ | diff --git a/maze/task5/maps/level4/table/60.txt b/maze/task5/maps/level4/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0d3be8ec5f859b7a2213272bedfbda927377f2d --- /dev/null +++ b/maze/task5/maps/level4/table/60.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | @ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | # | * | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/61.txt b/maze/task5/maps/level4/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a23400d4c58320ffb0d95968d3b8d88318ae79f --- /dev/null +++ b/maze/task5/maps/level4/table/61.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task5/maps/level4/table/62.txt b/maze/task5/maps/level4/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e4512fca62d8b560e4c99434c00fe587676a7ea --- /dev/null +++ b/maze/task5/maps/level4/table/62.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | # | _ | @ | diff --git a/maze/task5/maps/level4/table/63.txt b/maze/task5/maps/level4/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ec664769a5b8dc2f44f9defbbf921e9bd7e41c7 --- /dev/null +++ b/maze/task5/maps/level4/table/63.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | # | * | diff --git a/maze/task5/maps/level4/table/64.txt b/maze/task5/maps/level4/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..24ca22bd270042bc1e8047e8115d497038d889df --- /dev/null +++ b/maze/task5/maps/level4/table/64.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | diff --git a/maze/task5/maps/level4/table/65.txt b/maze/task5/maps/level4/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..84134a2c251bb1e582e6fe5664480080d8051490 --- /dev/null +++ b/maze/task5/maps/level4/table/65.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task5/maps/level4/table/66.txt b/maze/task5/maps/level4/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..7630be03945c1f85d0b146176b5ba1b7738ffa2f --- /dev/null +++ b/maze/task5/maps/level4/table/66.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/maps/level4/table/67.txt b/maze/task5/maps/level4/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..f950f9aa76dc8d27bd9604e73ed4d8c4eca1fcc0 --- /dev/null +++ b/maze/task5/maps/level4/table/67.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task5/maps/level4/table/68.txt b/maze/task5/maps/level4/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..54141fc9a94d4c397df49526cc3d8518613201cf --- /dev/null +++ b/maze/task5/maps/level4/table/68.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | +| Row 3 | _ | _ | @ | _ | +| Row 4 | _ | * | _ | _ | diff --git a/maze/task5/maps/level4/table/69.txt b/maze/task5/maps/level4/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..b631842c1321f3485f93ab3de8f608d1ff9fbd77 --- /dev/null +++ b/maze/task5/maps/level4/table/69.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | @ | _ | * | _ | diff --git a/maze/task5/maps/level4/table/7.txt b/maze/task5/maps/level4/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8aeb380157c8337f12f409c49516d4f96e7ff9b --- /dev/null +++ b/maze/task5/maps/level4/table/7.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | _ | _ | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | @ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/70.txt b/maze/task5/maps/level4/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c1cb34fdf92526f0bd93ec59f548f8945cce759 --- /dev/null +++ b/maze/task5/maps/level4/table/70.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | # | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | @ | * | _ | +| Row 4 | _ | _ | # | # | diff --git a/maze/task5/maps/level4/table/71.txt b/maze/task5/maps/level4/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..e45cbc464cb1d9b992fcfbc99315931e96d79dc2 --- /dev/null +++ b/maze/task5/maps/level4/table/71.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/maps/level4/table/72.txt b/maze/task5/maps/level4/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..668cba8666168ba4e7f4e227d2dcd24e0fab5f1d --- /dev/null +++ b/maze/task5/maps/level4/table/72.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | diff --git a/maze/task5/maps/level4/table/73.txt b/maze/task5/maps/level4/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..210f7f7d9966d7d5838821a728c7b7db7d419485 --- /dev/null +++ b/maze/task5/maps/level4/table/73.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | # | _ | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task5/maps/level4/table/74.txt b/maze/task5/maps/level4/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..857d77bcdbfad35ce1b3b08691cd24999d5bf3b5 --- /dev/null +++ b/maze/task5/maps/level4/table/74.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/75.txt b/maze/task5/maps/level4/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..35d67279bf20c3bf0b8e79a4379b6c158f04edde --- /dev/null +++ b/maze/task5/maps/level4/table/75.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | * | @ | _ | # | +| Row 3 | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/76.txt b/maze/task5/maps/level4/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d8b94cd45698695ca35094f39d1c81b6416826f --- /dev/null +++ b/maze/task5/maps/level4/table/76.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | # | @ | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/77.txt b/maze/task5/maps/level4/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c504a0d7aaf6f90580778433409ef7c3d3f006d --- /dev/null +++ b/maze/task5/maps/level4/table/77.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | _ | _ | +| Row 2 | # | _ | @ | _ | +| Row 3 | _ | _ | * | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/78.txt b/maze/task5/maps/level4/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6d7dd8252ae1a7828dc5607c8f471111ef7a1da --- /dev/null +++ b/maze/task5/maps/level4/table/78.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | +| Row 4 | _ | _ | _ | * | diff --git a/maze/task5/maps/level4/table/79.txt b/maze/task5/maps/level4/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1ef2f54de57b9cd967a708027761b03b0711915 --- /dev/null +++ b/maze/task5/maps/level4/table/79.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | # | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/8.txt b/maze/task5/maps/level4/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..45ab2c1396383bb85da63bbb84e9722aa8e7a56e --- /dev/null +++ b/maze/task5/maps/level4/table/8.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task5/maps/level4/table/80.txt b/maze/task5/maps/level4/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4b073f8823c196921ae6575b7be833e8bab68de --- /dev/null +++ b/maze/task5/maps/level4/table/80.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | @ | # | +| Row 2 | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/maps/level4/table/81.txt b/maze/task5/maps/level4/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e9d6cb4e92c9d08b8add15a566572483dffd557 --- /dev/null +++ b/maze/task5/maps/level4/table/81.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | # | # | +| Row 2 | _ | # | _ | _ | +| Row 3 | # | _ | * | _ | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task5/maps/level4/table/82.txt b/maze/task5/maps/level4/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..37a9ac8d02691ddecb02d7c1da752aba599ab497 --- /dev/null +++ b/maze/task5/maps/level4/table/82.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | # | +| Row 2 | _ | _ | @ | # | +| Row 3 | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/83.txt b/maze/task5/maps/level4/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..74b014e5327565b6deb5e5b3e66d1c725a2432c3 --- /dev/null +++ b/maze/task5/maps/level4/table/83.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | # | _ | +| Row 2 | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | +| Row 4 | # | * | _ | _ | diff --git a/maze/task5/maps/level4/table/84.txt b/maze/task5/maps/level4/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbb422f8bdcd21a6886093b49c5a3c5d1dfb1d4d --- /dev/null +++ b/maze/task5/maps/level4/table/84.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | diff --git a/maze/task5/maps/level4/table/85.txt b/maze/task5/maps/level4/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..99c8034e4fc19fbd1faefebe61874d9d3b061e0b --- /dev/null +++ b/maze/task5/maps/level4/table/85.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | diff --git a/maze/task5/maps/level4/table/86.txt b/maze/task5/maps/level4/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1756f807e239063a408514cb21d810fb6f7437f --- /dev/null +++ b/maze/task5/maps/level4/table/86.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | * | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task5/maps/level4/table/87.txt b/maze/task5/maps/level4/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc81412bd24a7842be47952d8ffc03f6147ece01 --- /dev/null +++ b/maze/task5/maps/level4/table/87.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task5/maps/level4/table/88.txt b/maze/task5/maps/level4/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..49196758cd3ebf0dfe5e79d1a1d1216abfff9cdb --- /dev/null +++ b/maze/task5/maps/level4/table/88.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task5/maps/level4/table/89.txt b/maze/task5/maps/level4/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..b05cfc05e0aa71e52ee806e6aa3369c3e349ff80 --- /dev/null +++ b/maze/task5/maps/level4/table/89.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | +| Row 3 | _ | * | @ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/maps/level4/table/9.txt b/maze/task5/maps/level4/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..977efa296c0756b494b4a8c123d7263ad7c13bf5 --- /dev/null +++ b/maze/task5/maps/level4/table/9.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | # | # | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | # | # | _ | +| Row 4 | _ | * | _ | _ | diff --git a/maze/task5/maps/level4/table/90.txt b/maze/task5/maps/level4/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..3eeaf77f13e2a454b4b611ecca6df5311c68122b --- /dev/null +++ b/maze/task5/maps/level4/table/90.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | # | _ | +| Row 3 | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/91.txt b/maze/task5/maps/level4/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f485b63b526ff64f344d6ef1d8bf1882e3a67cd --- /dev/null +++ b/maze/task5/maps/level4/table/91.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | * | _ | _ | +| Row 2 | _ | @ | _ | _ | +| Row 3 | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level4/table/92.txt b/maze/task5/maps/level4/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..a476e444ebe170866509c07e8883af3c7ccc9395 --- /dev/null +++ b/maze/task5/maps/level4/table/92.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | diff --git a/maze/task5/maps/level4/table/93.txt b/maze/task5/maps/level4/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a667336638de6c5717ee65bc10ad6fe6095d835 --- /dev/null +++ b/maze/task5/maps/level4/table/93.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | @ | * | +| Row 2 | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | diff --git a/maze/task5/maps/level4/table/94.txt b/maze/task5/maps/level4/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..4603bc79b87432d07449d3d1a3bdf7a9ab27b04b --- /dev/null +++ b/maze/task5/maps/level4/table/94.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | # | _ | _ | +| Row 2 | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | * | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task5/maps/level4/table/95.txt b/maze/task5/maps/level4/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..90e9261d723977daf1c0cd6e621fe0bc8d1dd498 --- /dev/null +++ b/maze/task5/maps/level4/table/95.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | # | @ | _ | _ | +| Row 4 | _ | _ | * | _ | diff --git a/maze/task5/maps/level4/table/96.txt b/maze/task5/maps/level4/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cd26c274a70edacf49609ce4f17fdf885f5ad0f --- /dev/null +++ b/maze/task5/maps/level4/table/96.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | _ | _ | _ | _ | +| Row 2 | _ | # | # | # | +| Row 3 | @ | _ | _ | * | +| Row 4 | _ | # | _ | _ | diff --git a/maze/task5/maps/level4/table/97.txt b/maze/task5/maps/level4/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..4780f09ce98294209a853a5b2ba6339014a9515e --- /dev/null +++ b/maze/task5/maps/level4/table/97.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | diff --git a/maze/task5/maps/level4/table/98.txt b/maze/task5/maps/level4/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..856fcd304f582f70c650c2df9f90ecf7a6674ab0 --- /dev/null +++ b/maze/task5/maps/level4/table/98.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | # | _ | _ | * | +| Row 2 | _ | # | _ | # | +| Row 3 | _ | _ | _ | @ | +| Row 4 | _ | # | # | _ | diff --git a/maze/task5/maps/level4/table/99.txt b/maze/task5/maps/level4/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e13ef011f00b304ac4f18b558e01b921889ce2e1 --- /dev/null +++ b/maze/task5/maps/level4/table/99.txt @@ -0,0 +1,5 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | +| Row 1 | @ | _ | _ | _ | +| Row 2 | _ | # | _ | # | +| Row 3 | * | _ | _ | # | +| Row 4 | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/.DS_Store b/maze/task5/maps/level5/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..2a6a040aeaded7568c209a18ebcf6ef300195b9b Binary files /dev/null and b/maze/task5/maps/level5/.DS_Store differ diff --git a/maze/task5/maps/level5/img/0.png b/maze/task5/maps/level5/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..53c675225cb4557b1697e4fa4871f0aa14c579b0 --- /dev/null +++ b/maze/task5/maps/level5/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9cd3f0abed81e2b2317756e97906f959f6838129cb8e4d8cdbade95400af2d +size 8586 diff --git a/maze/task5/maps/level5/img/1.png b/maze/task5/maps/level5/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f343446822ebf94b71b14c3eeb39c63926ce1b75 --- /dev/null +++ b/maze/task5/maps/level5/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662a2be0231567d54a9bb941372aa13dba653e840e108fc5bd67999b9808970b +size 8576 diff --git a/maze/task5/maps/level5/img/10.png b/maze/task5/maps/level5/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..36afe96af778ab9f51ea10ad579e7cfc72bf656c --- /dev/null +++ b/maze/task5/maps/level5/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d8a4ef9af3d832ffef7907e5bd8f7ed70a602d733273507c5ff1d184503df1 +size 9540 diff --git a/maze/task5/maps/level5/img/11.png b/maze/task5/maps/level5/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a5ece63c58ccb637f8b8d6b3f8bc4c5e08a361a0 --- /dev/null +++ b/maze/task5/maps/level5/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded2d691e97803356fe059017e3a79a80dcfec9ab37b4101b44421c8e4745743 +size 9505 diff --git a/maze/task5/maps/level5/img/12.png b/maze/task5/maps/level5/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..961a186623ee0011ec0d5087f124ba6956dd303c --- /dev/null +++ b/maze/task5/maps/level5/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2c3ba8f3794820f29c4621ad30015477f75a684effd0f43c13791ef2b6e84e +size 8732 diff --git a/maze/task5/maps/level5/img/13.png b/maze/task5/maps/level5/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2e9bcd697c9f9df311a7bcc585551adc45b633 --- /dev/null +++ b/maze/task5/maps/level5/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63c693a4e866265c3ab6d440f9edda4aec2f9c6195167ab113d6907cc63582e +size 9460 diff --git a/maze/task5/maps/level5/img/14.png b/maze/task5/maps/level5/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a959b16b2d47a4ee7034609446712c1c93efda --- /dev/null +++ b/maze/task5/maps/level5/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4278d644fee0fcc945ffb661826fba43399479f20849324f828d860ce42896b7 +size 9498 diff --git a/maze/task5/maps/level5/img/15.png b/maze/task5/maps/level5/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..cfb4459dadcd568c2617420f493cb6c647050001 --- /dev/null +++ b/maze/task5/maps/level5/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0f34aa1726792f861b04dc97b31cc2a646d248e5d44b4b360106c0bebf6fa0 +size 8569 diff --git a/maze/task5/maps/level5/img/16.png b/maze/task5/maps/level5/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7973c8fd0e44309ec3e86a3225421c70098fe0 --- /dev/null +++ b/maze/task5/maps/level5/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5583b83655c1009808d434d23387310c409754a8d3de67d91a947d9bcaa3c671 +size 10319 diff --git a/maze/task5/maps/level5/img/17.png b/maze/task5/maps/level5/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..89b88669e049ee2b40eb2964f6e3be9983d5841d --- /dev/null +++ b/maze/task5/maps/level5/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433a8057d4c23e0dd2814e9f57b18737e38ac85dad3d9122b606ff160b61592f +size 9481 diff --git a/maze/task5/maps/level5/img/18.png b/maze/task5/maps/level5/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0e4578441dc93dbe35e39e7258d5bb9f397e26b5 --- /dev/null +++ b/maze/task5/maps/level5/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b871b7baa3624a6d3c3f6723fcde0fbabe98e44ec14b697930c24110530d7e +size 9504 diff --git a/maze/task5/maps/level5/img/19.png b/maze/task5/maps/level5/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..1342eed8c66f157f6a0ee50a553bce9900d7b153 --- /dev/null +++ b/maze/task5/maps/level5/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f12b2c82dce79ca3024ad9ceeab1d87e148064972cf0f0d35cedef9f199494 +size 9487 diff --git a/maze/task5/maps/level5/img/2.png b/maze/task5/maps/level5/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed2f720ea249a7a3336d7e6acdc6be1e4da2a89 --- /dev/null +++ b/maze/task5/maps/level5/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b599f03fc06ff2c4d12260a1d48d14cf17a39c8f81508e869bd29ebbfd2ac5a +size 9606 diff --git a/maze/task5/maps/level5/img/20.png b/maze/task5/maps/level5/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..008eb9d774f873f49d9f2aba16a957268416f06c --- /dev/null +++ b/maze/task5/maps/level5/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb6e15f6f74538fb484c9175e9f2ed53f31bb2657acdcfcd043ca68a8a31eb6 +size 10260 diff --git a/maze/task5/maps/level5/img/21.png b/maze/task5/maps/level5/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..3159880dfddac7dde77c48c798370b3351485091 --- /dev/null +++ b/maze/task5/maps/level5/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa1e9d8f938e37e6023c89eda68bf03b514f4c762b9012c78be14445f3c4b52 +size 8496 diff --git a/maze/task5/maps/level5/img/22.png b/maze/task5/maps/level5/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..b43ce1e2773dcc8f88926dbfcc55bd4e30c3300f --- /dev/null +++ b/maze/task5/maps/level5/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568fd2b874b4f84a2d182fba9255d2bd0ba319bf21ea04daf9dcc93bd6384ece +size 9431 diff --git a/maze/task5/maps/level5/img/23.png b/maze/task5/maps/level5/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..81c6a7ca79d5a70cbdc9167d691223476bc9976d --- /dev/null +++ b/maze/task5/maps/level5/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbde32d51a95bc040d27867403cf81a6029014ea37322974115bf4de681ba63 +size 9587 diff --git a/maze/task5/maps/level5/img/24.png b/maze/task5/maps/level5/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..9a6d1f5f4396d39be6b747b2245ca74e57dad2d8 --- /dev/null +++ b/maze/task5/maps/level5/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce73082473f6a8019fcddc4e20d0befd63af5607686e7d96fc44f9e76224fcf9 +size 10360 diff --git a/maze/task5/maps/level5/img/25.png b/maze/task5/maps/level5/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..dcaca11c66cd3002cc42b1541e908fc7c7d55487 --- /dev/null +++ b/maze/task5/maps/level5/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf361f95f35ac9a0112f7063281e8af77dcc95553bae500b712a502b170f5b4 +size 9481 diff --git a/maze/task5/maps/level5/img/26.png b/maze/task5/maps/level5/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..483b63e17cc629a34387f5c0d0ee653cac261b3c --- /dev/null +++ b/maze/task5/maps/level5/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b19855bb1cf3021cecae9924a96c9c3ae2d04c1122234b8f34d010d10ca9fd0 +size 10486 diff --git a/maze/task5/maps/level5/img/27.png b/maze/task5/maps/level5/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..f591e4148b776e15eb1b392b9eb5a3899d71f16e --- /dev/null +++ b/maze/task5/maps/level5/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a339a2e62e1162a190da229fa66e13f616e849539aeb08b845c35c77ce2d7a3 +size 10413 diff --git a/maze/task5/maps/level5/img/28.png b/maze/task5/maps/level5/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..ef7b5e0d421fd9845fedd4e9bf62cf5a40560815 --- /dev/null +++ b/maze/task5/maps/level5/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6e842275c7a23fce24f6f4ebc6852f5922d6f914ed4c7c4f2c900d974ed33d +size 7724 diff --git a/maze/task5/maps/level5/img/29.png b/maze/task5/maps/level5/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0e29574aaa55dcc0d40cf007942f77d30535f6 --- /dev/null +++ b/maze/task5/maps/level5/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00443dd8966b4642e5e430ad4ab1b860149b51c0c4931b60ef48c6d24abf87bb +size 8645 diff --git a/maze/task5/maps/level5/img/3.png b/maze/task5/maps/level5/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a789f3291dd42748ad6894e1da12cc9e622215f5 --- /dev/null +++ b/maze/task5/maps/level5/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad9ab07ff84f248800b0eb08f8241e777e93329c63cdb1da9fdd4581426dc5 +size 10329 diff --git a/maze/task5/maps/level5/img/30.png b/maze/task5/maps/level5/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..d63738871f379090425d544bc204e402814b6b55 --- /dev/null +++ b/maze/task5/maps/level5/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34ae1efa396c60bd93b40f3a17ed10a570bf75920a432154f7c19649e8e0994 +size 10233 diff --git a/maze/task5/maps/level5/img/31.png b/maze/task5/maps/level5/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8414031f76b7066865976aa74936cac7b92311da --- /dev/null +++ b/maze/task5/maps/level5/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b760ca6eab9da1ac2bb044b831c20182c4ba148464e6dd749fb724c2317504 +size 10338 diff --git a/maze/task5/maps/level5/img/32.png b/maze/task5/maps/level5/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..8aa3a9101f18f5cef81a2a0ac8ea133631da8272 --- /dev/null +++ b/maze/task5/maps/level5/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6046bda5a18babfb779cd67eafbadc41ef75d339c1e22df72fee2aa6c93c3943 +size 8504 diff --git a/maze/task5/maps/level5/img/33.png b/maze/task5/maps/level5/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..0bebca99345c5d1894a4ae329be28466c2a50b28 --- /dev/null +++ b/maze/task5/maps/level5/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7b2f94ba36b04dd2dbb42233e555715f919536cc144672d8e308197195e785 +size 8604 diff --git a/maze/task5/maps/level5/img/34.png b/maze/task5/maps/level5/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..f7fc0d5b588e614bfcc670be9f68e8238d42f199 --- /dev/null +++ b/maze/task5/maps/level5/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01e7a56b654bd725b1a8d247af2b00194b0a4a8024d63d2b763b0b776533f5b +size 8457 diff --git a/maze/task5/maps/level5/img/35.png b/maze/task5/maps/level5/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..0dcccbdde8c06d23b2a3fd409778c087119d7b1a --- /dev/null +++ b/maze/task5/maps/level5/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c5cdbace6e9b727622cf498cd44c572f8538faf2fecb209501e3f1743ee079 +size 9374 diff --git a/maze/task5/maps/level5/img/36.png b/maze/task5/maps/level5/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..b9852152d7696761ee038bbc6195fe898f567da6 --- /dev/null +++ b/maze/task5/maps/level5/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369baca6210fe2e760c2799e065731a650553eb711755715981d52d264679359 +size 9546 diff --git a/maze/task5/maps/level5/img/37.png b/maze/task5/maps/level5/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..27f9ce99490c05a04894f62fda9c8566bff0f3e0 --- /dev/null +++ b/maze/task5/maps/level5/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92f6006c6fcb34ca5bab418ddb7f976cba1c9aded278d5312b49e0b981ae387 +size 11159 diff --git a/maze/task5/maps/level5/img/38.png b/maze/task5/maps/level5/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9a73f72074ae48f5589417c00b18f273052946 --- /dev/null +++ b/maze/task5/maps/level5/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9987cc6de5975fc76063e350faeeed07486c46bd4604be48931e5c2292d96aa5 +size 10355 diff --git a/maze/task5/maps/level5/img/39.png b/maze/task5/maps/level5/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..46cfb1f679d417e62c266708fb126a02cda0bf83 --- /dev/null +++ b/maze/task5/maps/level5/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7928e1bfe7fbd5034618bf5cc151ad3e5e01209de1122397a1aa9d40c2abb0ed +size 8570 diff --git a/maze/task5/maps/level5/img/4.png b/maze/task5/maps/level5/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3dcf17753a14d717d70601f1726efa48591720d2 --- /dev/null +++ b/maze/task5/maps/level5/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1527826071149f7d3fe78db8c909ec14d40d7ac2ff90cad4f018091251dbf8c2 +size 7791 diff --git a/maze/task5/maps/level5/img/40.png b/maze/task5/maps/level5/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..e53b06c208b53a7acfe48362b862e38efee5d416 --- /dev/null +++ b/maze/task5/maps/level5/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df628466c1be0248b28fa7a82355ba6f37c52eec7c290efebd33bac8780335b8 +size 7678 diff --git a/maze/task5/maps/level5/img/41.png b/maze/task5/maps/level5/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..a336550fb6b5ee724510355eddbf38e949e814f9 --- /dev/null +++ b/maze/task5/maps/level5/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0a2aa504f7ec3efbdc87c449cc23a3a36ae9d9c1553b35432c5e89bcf3dff0 +size 8743 diff --git a/maze/task5/maps/level5/img/42.png b/maze/task5/maps/level5/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..e856d73908a9cc7d534b877162988525569b9668 --- /dev/null +++ b/maze/task5/maps/level5/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f6d38b24d3f09c69970c5332c8892755512adb46838d5499665865c897f55e +size 9376 diff --git a/maze/task5/maps/level5/img/43.png b/maze/task5/maps/level5/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8240fd301b101fc3d6928b8b7837ee8f046508 --- /dev/null +++ b/maze/task5/maps/level5/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e450c5211b9cc344c3fdea9a4ac7b6f86afc861e99ce5e8e1bd73c05370aeb +size 8530 diff --git a/maze/task5/maps/level5/img/44.png b/maze/task5/maps/level5/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..fbc926d0e2b3d98e1dab0a8d75b1d5abba9eee37 --- /dev/null +++ b/maze/task5/maps/level5/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ffae263c999fdb644ac5676dff754b4eb3bba3437795940e40daa1af5bf67a +size 10484 diff --git a/maze/task5/maps/level5/img/45.png b/maze/task5/maps/level5/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..fa357d51bbdeb0678d4148305f56dab8c1d94eec --- /dev/null +++ b/maze/task5/maps/level5/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8848ac9b4fb5bb3bec41b2221a5a2a47ce69bca895b40fdde606a4b36f33fc93 +size 9491 diff --git a/maze/task5/maps/level5/img/46.png b/maze/task5/maps/level5/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d0bce4c0119ffeac19097f9f41a4c38d2a442d --- /dev/null +++ b/maze/task5/maps/level5/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4c2f0d9865a8360f4d1c974eca5d0c578296f5b4e8315cffa073c54468cde7 +size 10550 diff --git a/maze/task5/maps/level5/img/47.png b/maze/task5/maps/level5/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..61f9ef0def0f721f159208bb3aa769cefa7f4431 --- /dev/null +++ b/maze/task5/maps/level5/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bbd0e6a07a60df2a50c7f077a2675e34106d15e375efe469a077b768d6b48b +size 8667 diff --git a/maze/task5/maps/level5/img/48.png b/maze/task5/maps/level5/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..80605fc9f1d52293736c551d0c54f2054b6ae790 --- /dev/null +++ b/maze/task5/maps/level5/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af97fa09ff7c59716bd262d7ad3e0f24caf61d08f5f71494276bc04fee4141f +size 9549 diff --git a/maze/task5/maps/level5/img/49.png b/maze/task5/maps/level5/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..42ed24d9c562504ba63fa58f2a8307b0d7cc9847 --- /dev/null +++ b/maze/task5/maps/level5/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed72c064c5229fa5ce1bf62b52ec7b2aa3f7fb9ba203d81c7c33bafb9c74194 +size 10373 diff --git a/maze/task5/maps/level5/img/5.png b/maze/task5/maps/level5/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5b780cde00563e7df575a4fe83746cffb51f180b --- /dev/null +++ b/maze/task5/maps/level5/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd733cbeb314b038ce0edea9b76a037bb594724716d5b5a529cb5c3b13afca5 +size 9566 diff --git a/maze/task5/maps/level5/img/50.png b/maze/task5/maps/level5/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..a10f7605b5adcd31425b5fc82f6391618c60dcce --- /dev/null +++ b/maze/task5/maps/level5/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1fa51fc530f52434841bf5f5804b0f0ffbb044d7e829d335d4060e8ffbcc8f +size 10311 diff --git a/maze/task5/maps/level5/img/51.png b/maze/task5/maps/level5/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5eb285b8ff06ddcfe7301346541ce202b37419 --- /dev/null +++ b/maze/task5/maps/level5/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92c2243e404e0ab629e4529ab56766a05dd34c0213c3e20c4910fb4fb86e831 +size 9542 diff --git a/maze/task5/maps/level5/img/52.png b/maze/task5/maps/level5/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..2f1ff31b784efbaada761fee34beb3a5518b636e --- /dev/null +++ b/maze/task5/maps/level5/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8924f69877bff72e4cdd85f86ee6f88a13184d0de32b91945669f90769b4cef +size 8583 diff --git a/maze/task5/maps/level5/img/53.png b/maze/task5/maps/level5/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..b56567b741d2a6849fdbd9a06f10a221f611854a --- /dev/null +++ b/maze/task5/maps/level5/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbbb363cbd4871bd667563335310c2a7b1e044d786a33fc9ac426ab13f9fa92 +size 10460 diff --git a/maze/task5/maps/level5/img/54.png b/maze/task5/maps/level5/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..f920ca86b117abb67013bb57a9499b0393639cea --- /dev/null +++ b/maze/task5/maps/level5/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c43e944b0140c1497f1775468827f0e4d1c41f027cd40778dc0c9189590062 +size 8588 diff --git a/maze/task5/maps/level5/img/55.png b/maze/task5/maps/level5/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..b7cd9585ed58ff2537515598c55964ef7bab9820 --- /dev/null +++ b/maze/task5/maps/level5/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53106fd75e879e3655e754942e5d3947460c00e26f52b713400f3daae45eee00 +size 9525 diff --git a/maze/task5/maps/level5/img/56.png b/maze/task5/maps/level5/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..b8c2ce52f791138a9286cf7a9cefa274ce2d0562 --- /dev/null +++ b/maze/task5/maps/level5/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b77ba0df8baf14b3ea95e0514b661b98f3af2d1f228834f4a15e148ba0a1485 +size 8755 diff --git a/maze/task5/maps/level5/img/57.png b/maze/task5/maps/level5/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..46b8af8ae47e2318fc24cf7e63adf89c23ad0768 --- /dev/null +++ b/maze/task5/maps/level5/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfb2f92be0c9aedd215a40e1879bb6cdeec5abfae96393b8899c2c7c126797f +size 11278 diff --git a/maze/task5/maps/level5/img/58.png b/maze/task5/maps/level5/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..007695ff6c8929f3c578f1e20f352034afc69d5b --- /dev/null +++ b/maze/task5/maps/level5/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4011594954c1117ae9981fa7ce16c41cb3266498795e8f487654a7f4ea47e61e +size 8568 diff --git a/maze/task5/maps/level5/img/59.png b/maze/task5/maps/level5/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..783bdee385c0a0eef8797024804679a2cb97629b --- /dev/null +++ b/maze/task5/maps/level5/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f597e4c46866313b7947e9cb1761cd53881ecbbe15d4fdf7fe3291755b0bcd +size 8756 diff --git a/maze/task5/maps/level5/img/6.png b/maze/task5/maps/level5/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d544a4d44a135539fa2ae8730264e9b41924942 --- /dev/null +++ b/maze/task5/maps/level5/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918cfed876c7a5667ffe429ef34253f68e93236ae83ae518ef67bedffb33e42a +size 10152 diff --git a/maze/task5/maps/level5/img/60.png b/maze/task5/maps/level5/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..af8ab86cf41c45007b7cfce49c76e3ff294aa2f6 --- /dev/null +++ b/maze/task5/maps/level5/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f19ceb0d0c316a16d11ddeb3238c5ef09285ab68f7796236aa0035a5676c68f +size 10322 diff --git a/maze/task5/maps/level5/img/61.png b/maze/task5/maps/level5/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..d5a479c65cb42324a8806e73a2651e20cf70f08e --- /dev/null +++ b/maze/task5/maps/level5/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b58ec3a71ab3abb8df325845f732ab77ce474560e2736f7d4f79e521d20fc72 +size 8627 diff --git a/maze/task5/maps/level5/img/62.png b/maze/task5/maps/level5/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..33cfe602364bc6dd682c246276cfb8f1404ef595 --- /dev/null +++ b/maze/task5/maps/level5/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0e338d527661874a9c46027013ed1381ad655fa2165f92ba6c74bdccc1b4c4 +size 10351 diff --git a/maze/task5/maps/level5/img/63.png b/maze/task5/maps/level5/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..111ca1697d10c3298b6ba2685b1ad306e11eae50 --- /dev/null +++ b/maze/task5/maps/level5/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5763ada5d264d472e810663294e2e7bf1566abf485f5c554cc8b0a771de43c14 +size 9561 diff --git a/maze/task5/maps/level5/img/64.png b/maze/task5/maps/level5/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..af27e78c65469a37d18cca56246e46dc40071558 --- /dev/null +++ b/maze/task5/maps/level5/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705afe8f6778c5550d77725cec8a0a4e3d06a7f07978c19ac149248442bc560f +size 7735 diff --git a/maze/task5/maps/level5/img/65.png b/maze/task5/maps/level5/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..83e96c3b8c34fbc0d1964c3a34509a80c34425bc --- /dev/null +++ b/maze/task5/maps/level5/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab691589396b93fea1f8c2e627d260083dc06c3e8200c008564e85bbe4b351d +size 8715 diff --git a/maze/task5/maps/level5/img/66.png b/maze/task5/maps/level5/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..d1198a3df020aaf0931a32171bb2eacf6c6c9e62 --- /dev/null +++ b/maze/task5/maps/level5/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b090c16cc1315c868aca80a3ea0a9d4a002bae7af3cc50909feeea2d43a8dcd2 +size 10450 diff --git a/maze/task5/maps/level5/img/67.png b/maze/task5/maps/level5/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..6d016ebafe107cbacb68734220b06aed64f37d4c --- /dev/null +++ b/maze/task5/maps/level5/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cc901ec785673687b26427ce086ebbd27f8cd2502dbb104379e8867c631760 +size 9459 diff --git a/maze/task5/maps/level5/img/68.png b/maze/task5/maps/level5/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..bcaaf350210436f4383e0333ed73e65bd52a678a --- /dev/null +++ b/maze/task5/maps/level5/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5846abc853064d63e0fb377fa2b23730d1015f367d01599936d4a3e1fba4f0c +size 8697 diff --git a/maze/task5/maps/level5/img/69.png b/maze/task5/maps/level5/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..111346baa5e8e81dce82def8b6539b70892a57e0 --- /dev/null +++ b/maze/task5/maps/level5/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bc1d785dce00bf0efdfb9cd6888c7b988193a61ffa0216b31059772952a15c +size 11228 diff --git a/maze/task5/maps/level5/img/7.png b/maze/task5/maps/level5/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f814f3af4a4514eea937c4425d373246a0eddf97 --- /dev/null +++ b/maze/task5/maps/level5/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7524981f599a7d73e4d8fbec30dfe5b20a4391ecea7e63082541a4fb06ee3bfb +size 9570 diff --git a/maze/task5/maps/level5/img/70.png b/maze/task5/maps/level5/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..d7d9522fdef478962bbf1ae56c58e2e914c5855f --- /dev/null +++ b/maze/task5/maps/level5/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f964ac4bbf903fffa406c1474e19146d3f9c106e21c071d0322559e28ff4fe +size 8780 diff --git a/maze/task5/maps/level5/img/71.png b/maze/task5/maps/level5/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..beb976f0cbfd54916fe8e0be18df2bc9108275af --- /dev/null +++ b/maze/task5/maps/level5/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ee8ab29dc3a229e6242ae737444cd175d7d8e3f5215e4d6bac98b7317a6fd4 +size 10314 diff --git a/maze/task5/maps/level5/img/72.png b/maze/task5/maps/level5/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..954b50dcb1eca96f53d4dd29a53a3b69f12b3e7b --- /dev/null +++ b/maze/task5/maps/level5/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc0ebd9f7920071a4425c9a4d6e5d5bfde4c946fb8104c11d176f85f3b84dbd +size 10323 diff --git a/maze/task5/maps/level5/img/73.png b/maze/task5/maps/level5/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..f88dfab626fa7c5fb363d58de200004b96209b1b --- /dev/null +++ b/maze/task5/maps/level5/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433e3ecd94a75856ad7720bf7b7a14c206ca551dfd7cdb6458168750957e6144 +size 9621 diff --git a/maze/task5/maps/level5/img/74.png b/maze/task5/maps/level5/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..070f3739720280a97743d79dad3e56dab5f41b86 --- /dev/null +++ b/maze/task5/maps/level5/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48bd3b546d81a289f3cfee56906d822df25e6ada5bf19ea59601ca8565d6d0db +size 9529 diff --git a/maze/task5/maps/level5/img/75.png b/maze/task5/maps/level5/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..93eed9dc47ad2ae321d732ef990201e356a084d8 --- /dev/null +++ b/maze/task5/maps/level5/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3d3acdebfc0ac58bd29a87edf66e3e274fd14dd7aa4e6feda5037bea7070d7 +size 9559 diff --git a/maze/task5/maps/level5/img/76.png b/maze/task5/maps/level5/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..1767ad68765f0ce53e8b51d4cc8579144cf41428 --- /dev/null +++ b/maze/task5/maps/level5/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b2a5d8df0428a24da48fa93626113f4278237054514f7bf057bdf9ef265e4e +size 9446 diff --git a/maze/task5/maps/level5/img/77.png b/maze/task5/maps/level5/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..17023bbbd055427830fcfd176021fb2fc5d6910d --- /dev/null +++ b/maze/task5/maps/level5/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c1604221f2c1545f8c8d8a1a0557dd0c7d8300bc470a02052c41ccda1c3887 +size 8661 diff --git a/maze/task5/maps/level5/img/78.png b/maze/task5/maps/level5/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..77943c92fcc18208b2c04866482640cf8d60878a --- /dev/null +++ b/maze/task5/maps/level5/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6dab09d288576c613b7637832a8ef62905a8fbcdebfc4643bb8769312aea235 +size 9527 diff --git a/maze/task5/maps/level5/img/79.png b/maze/task5/maps/level5/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..10f84b792cf0272b8e2935bdf5b34df73c511225 --- /dev/null +++ b/maze/task5/maps/level5/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1c923ccfc9c84e6a32ca615eb232d4ba7bac6ea9b58c24a03a3c659accd86e +size 9435 diff --git a/maze/task5/maps/level5/img/8.png b/maze/task5/maps/level5/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b783d4f36e2171422604495ee36e749644ce4e2b --- /dev/null +++ b/maze/task5/maps/level5/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dbba447ec1e1cdb77f547897ea2c4a87baf7985ca4f97405a7f153585f7d9e +size 9520 diff --git a/maze/task5/maps/level5/img/80.png b/maze/task5/maps/level5/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..1586f4aff7fb2594a03a008e4b4f574655a3cef1 --- /dev/null +++ b/maze/task5/maps/level5/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b80a95c16d5d71c6aff2ecb3fca0271b74df7b899d58f236c72bbc598797404 +size 9386 diff --git a/maze/task5/maps/level5/img/81.png b/maze/task5/maps/level5/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..f1d4252a1d6d7384fa2b4a0e506afe7b37ab6672 --- /dev/null +++ b/maze/task5/maps/level5/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f1e8872ed343b6369bcaf12caad0b7bbf6914638c1ac4a5bc323f87cb04b44 +size 8666 diff --git a/maze/task5/maps/level5/img/82.png b/maze/task5/maps/level5/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e4afd98ab856f1b49e892d1c8959d0c45076f933 --- /dev/null +++ b/maze/task5/maps/level5/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b516f64ea6950be4ac225452351a46ea1244d2dee61ccfe891940be0be952e8 +size 9621 diff --git a/maze/task5/maps/level5/img/83.png b/maze/task5/maps/level5/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..9d5bc5c4e701c95cdc7dbcbd5f3a9d36631c2276 --- /dev/null +++ b/maze/task5/maps/level5/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e265e8586c0760f4b178188d2644e25cef16b45d64c35e9c4a1143e085f38e62 +size 9464 diff --git a/maze/task5/maps/level5/img/84.png b/maze/task5/maps/level5/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..f196be40a6adeaa2df84f74f46b155e1e3c8f6e4 --- /dev/null +++ b/maze/task5/maps/level5/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bc1191781890d53c8eee48f62121340484b45002b11c8eb0ec0206e306442c +size 10376 diff --git a/maze/task5/maps/level5/img/85.png b/maze/task5/maps/level5/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..2b04b8b4e6430b30c5505609dc642700d988be70 --- /dev/null +++ b/maze/task5/maps/level5/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc9d00dc9b80f1693dc7134f8ed438926305e024a5dc26e8e03ad82b4608f0b +size 9491 diff --git a/maze/task5/maps/level5/img/86.png b/maze/task5/maps/level5/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..41261413e7dd3228eeff5e7010d87cd323d1dfc3 --- /dev/null +++ b/maze/task5/maps/level5/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47102eacb760f4fbee2412de1a93f98ad00be71ad00f000fc2988421bdb3436c +size 10333 diff --git a/maze/task5/maps/level5/img/87.png b/maze/task5/maps/level5/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..85bb6ac7f98a3ebfa60287c5d24b22b4e0ef6a9e --- /dev/null +++ b/maze/task5/maps/level5/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10d1716db1f68b07b9f88683877ce6310e9522d698240818680714d9943d79c +size 11010 diff --git a/maze/task5/maps/level5/img/88.png b/maze/task5/maps/level5/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..de081357b6c4a2b26b5851c19eb10854a145dd4f --- /dev/null +++ b/maze/task5/maps/level5/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90cf310b1bf6cfd8effd458bca4e303b2ed000d38681671e452629b3b2619af +size 11179 diff --git a/maze/task5/maps/level5/img/89.png b/maze/task5/maps/level5/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c25e41839c4eed11a446578ad5562be1ffc0a0 --- /dev/null +++ b/maze/task5/maps/level5/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cf54b54206896d7d5fe558e2eb4ffb8997eb1bfbf89093d978b6ec2fc56f97 +size 9489 diff --git a/maze/task5/maps/level5/img/9.png b/maze/task5/maps/level5/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..58fed855e22af0897daeb41c04cd87048322e11b --- /dev/null +++ b/maze/task5/maps/level5/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba907e17952d0a68214808d067646f0d97ef64b27d9e453a9c505779f03553eb +size 11128 diff --git a/maze/task5/maps/level5/img/90.png b/maze/task5/maps/level5/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..d868ba390ef63a27c67b8ed8fa1df03e4b3c9aa6 --- /dev/null +++ b/maze/task5/maps/level5/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4924a8d8f382432a85b02c5cd97c3a867f0cf59915631b2b46d1ecf305774ab2 +size 9461 diff --git a/maze/task5/maps/level5/img/91.png b/maze/task5/maps/level5/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..72df204957c2f6e150306936eec2127d8f38ee2c --- /dev/null +++ b/maze/task5/maps/level5/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745eb23af8b3d9225ac39f3ae773055f5213aa78e483e1d286c52b9d3adc86d8 +size 9526 diff --git a/maze/task5/maps/level5/img/92.png b/maze/task5/maps/level5/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..211572a9103c01b8b3ab01c0083299ed0390d504 --- /dev/null +++ b/maze/task5/maps/level5/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3577483fd88f2b6c9bbbcac8e051da3bdf139d40a2cb3d1df1dcbfa171e7f6f9 +size 10280 diff --git a/maze/task5/maps/level5/img/93.png b/maze/task5/maps/level5/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5c6e234b9f935f08a4fd68f91bbcf291b90426 --- /dev/null +++ b/maze/task5/maps/level5/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce939a10cc069cf6712137df96d9eeecde0871626566111d58e23e4eaf2cdf35 +size 10407 diff --git a/maze/task5/maps/level5/img/94.png b/maze/task5/maps/level5/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..e376cb24370d7c7e2d69c113477336d19e863962 --- /dev/null +++ b/maze/task5/maps/level5/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b9510d39d3c594aafd9059788bb0cd5ff3d4095f045475c747b326e2fa8f1c +size 10227 diff --git a/maze/task5/maps/level5/img/95.png b/maze/task5/maps/level5/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..0d320adfcb78f2f7a70c293086a3c9e4657e8b1e --- /dev/null +++ b/maze/task5/maps/level5/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9652b51223f250b2f0ea990f04184cecd53a9510a88e23e5d8ab92a02d6d4e +size 10401 diff --git a/maze/task5/maps/level5/img/96.png b/maze/task5/maps/level5/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb818078dd96672793c3fb3f1db50b70b9f5699 --- /dev/null +++ b/maze/task5/maps/level5/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcdeccb4c9d837d4d60f212aa9ee78eee0f1133c5bfa8b4a3706e257989a7be +size 10447 diff --git a/maze/task5/maps/level5/img/97.png b/maze/task5/maps/level5/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..748a948c5cd41ad576941a954a691c45002651bc --- /dev/null +++ b/maze/task5/maps/level5/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77adb79d8bbc1588ad59543ed98151771cd492efc2dc07e86af7ebb5873a4a67 +size 9374 diff --git a/maze/task5/maps/level5/img/98.png b/maze/task5/maps/level5/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..feee65d74a4a5cf343e4c5c33bcedfdfc5e67658 --- /dev/null +++ b/maze/task5/maps/level5/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:504b1e9147d5348e52f7be1ad068e22b6e405149356a86e1f82270d0bee89fad +size 9500 diff --git a/maze/task5/maps/level5/img/99.png b/maze/task5/maps/level5/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..d6bd9ecf67aa1f7de93eebdc0e48abc85bb467bf --- /dev/null +++ b/maze/task5/maps/level5/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570147872954af71e957d7629438d5014810bb6ec0cb216e45e41a69154b7259 +size 8604 diff --git a/maze/task5/maps/level5/pure_text/0.txt b/maze/task5/maps/level5/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d7462603221ecb6cb543a980d631f78a9a66620 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/1.txt b/maze/task5/maps/level5/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..09d0c98b9c25646ad5073a63739579f3fdeea190 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 4; Row 4, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/10.txt b/maze/task5/maps/level5/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..c57e03a22c3727d041e5d13c3a7afa763801af6e --- /dev/null +++ b/maze/task5/maps/level5/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 4; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/11.txt b/maze/task5/maps/level5/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d38f712e462147cb1149f8dc999e1b956ee71d9 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 4, Column 2; Row 5, Column 4; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/12.txt b/maze/task5/maps/level5/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..165f44b11e38b580c20c46d28807b3caac0a2614 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 3, Column 2; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/13.txt b/maze/task5/maps/level5/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e6490a182330fd53f62392c91932efb8819c603 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/14.txt b/maze/task5/maps/level5/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdb8c4e2d57e515054c0dc54a61f4da7632ec321 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; Row 4, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/15.txt b/maze/task5/maps/level5/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..64391656b5d60ff9aacf2687c8668f0263563427 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 1; Row 4, Column 3; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/16.txt b/maze/task5/maps/level5/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f58b60f80c34719dd14d0ad5666e0adf08a940c --- /dev/null +++ b/maze/task5/maps/level5/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/17.txt b/maze/task5/maps/level5/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..320b7d538d04af75ace729ab9d8049172bdb542d --- /dev/null +++ b/maze/task5/maps/level5/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/18.txt b/maze/task5/maps/level5/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4044583674f69b2b3ed307200090daaf0456687 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 3, Column 3; Row 4, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/19.txt b/maze/task5/maps/level5/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdcdf82f73b3e07de44c8668dad4def529e2afc1 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/2.txt b/maze/task5/maps/level5/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b29e1c916edc0f9d82005c12c62e58ba1f154b --- /dev/null +++ b/maze/task5/maps/level5/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/20.txt b/maze/task5/maps/level5/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..67b933bd40c003ad8d713ed3a6fde5badcd130d9 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 2, Column 5; Row 3, Column 4; Row 4, Column 2; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/21.txt b/maze/task5/maps/level5/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..a23c755b2724e4e5a25a0c791532b4c4cc6dbaa0 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 3, Column 5; Row 4, Column 1; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/22.txt b/maze/task5/maps/level5/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9a7ef211e4b4447e7d912456a49b35a9b0e3e25 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/23.txt b/maze/task5/maps/level5/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..c844e64d7762dd91510ab6d183d8fd81d2ac0ca3 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 5; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/24.txt b/maze/task5/maps/level5/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9898a8063d3b37859ea38c0e0799213ef632e58 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 3; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/25.txt b/maze/task5/maps/level5/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..c422fe457c20c1d9786346577788d5ff2ce46c86 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/26.txt b/maze/task5/maps/level5/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ad0b8b4a2ac1a5b336d4194a697b79c7b57cab0 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/27.txt b/maze/task5/maps/level5/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2f4a77c87ae7d4b2308b6c58f8c2a49b2a0d260 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 5, Column 2; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/28.txt b/maze/task5/maps/level5/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d94e848dad0619efab11ead4fb9890a95b4b77b --- /dev/null +++ b/maze/task5/maps/level5/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/29.txt b/maze/task5/maps/level5/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7f39ce847670a9e2ad0f6e3ccc6d47497707d06 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/3.txt b/maze/task5/maps/level5/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..69e73a8c23f7d57f3e51e58b7901e281cad0f7a0 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 3; Row 4, Column 5; Row 5, Column 1; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/30.txt b/maze/task5/maps/level5/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..f10c6cda751fe7118f206e8ef17468879d4fd780 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/31.txt b/maze/task5/maps/level5/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..804679724f787c34257c826415e2bb5bb09564a8 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/32.txt b/maze/task5/maps/level5/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4745609ba1e3dfff5dcc066231c7bb36111ae09 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/33.txt b/maze/task5/maps/level5/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..317866fa271b7cb8f592a79d593290ee707c29a3 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/34.txt b/maze/task5/maps/level5/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2f3b44cf7cdef6d23f1360559ce7b23db7d25db --- /dev/null +++ b/maze/task5/maps/level5/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 3, Column 4; Row 3, Column 5; Row 4, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/35.txt b/maze/task5/maps/level5/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..78e6eced5f42ddf7dfa970c3b2128ad1d2616aae --- /dev/null +++ b/maze/task5/maps/level5/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/36.txt b/maze/task5/maps/level5/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bee6b6b1bda9de2f32004899c06a6c0d20fea26 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; Row 3, Column 5; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/37.txt b/maze/task5/maps/level5/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..14dc6ad1878c1cc148d50bcd8a95104df0c82b3f --- /dev/null +++ b/maze/task5/maps/level5/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 5, Column 1; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/38.txt b/maze/task5/maps/level5/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f6fcf47b297b9d5b81443069c545e261d47b37b --- /dev/null +++ b/maze/task5/maps/level5/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 4, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/39.txt b/maze/task5/maps/level5/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..4838ec81c241d9d2115c7a0f9a838c1ffff5d2c4 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 5; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/4.txt b/maze/task5/maps/level5/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59ffc168cdb8212ad7ec3dbc639e372f3d7db13 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 4, Column 3; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/40.txt b/maze/task5/maps/level5/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..9eb3e1a7f5c58d3b44b2dc075448192c95a41241 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/41.txt b/maze/task5/maps/level5/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9d190660b178c6419b5664db263949f2701555d --- /dev/null +++ b/maze/task5/maps/level5/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 4, Column 2; Row 4, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/42.txt b/maze/task5/maps/level5/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..acc253d02810ca4cd1a5959f93f519d878d2c962 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/43.txt b/maze/task5/maps/level5/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3232cf536abf875c58ecd4fa47049dffac73b440 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 5, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/44.txt b/maze/task5/maps/level5/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a8eab148a61fbbfd049d44c82f15df72199ccf0 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/45.txt b/maze/task5/maps/level5/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5c31d25061fd8a02a164070c2357d0e2ffe2566 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 4, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/46.txt b/maze/task5/maps/level5/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..60fc422e917a57def3a084a0be255bca7bb31f1c --- /dev/null +++ b/maze/task5/maps/level5/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 4, Column 1; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/47.txt b/maze/task5/maps/level5/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ab5f0d78652c951e50db6ff3f8feda882bfd9b1 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 3, Column 3; Row 4, Column 1; Row 4, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/48.txt b/maze/task5/maps/level5/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..98cdad21349b02ae62bac9c4b22adf90b0d5fe7c --- /dev/null +++ b/maze/task5/maps/level5/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/49.txt b/maze/task5/maps/level5/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..f165941f4c6c7fdf6ff230b23228102eed6ef450 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/5.txt b/maze/task5/maps/level5/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5a7c360f4d2a91544cb3423491ca285c9a175d1 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 3, Column 4; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/50.txt b/maze/task5/maps/level5/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..da945a81c0cd21dc3e2ea76f58177594e3ded594 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/51.txt b/maze/task5/maps/level5/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b7bd5193551578f98b26bb714f9e3fda3e664e5 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 2; Row 3, Column 4; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/52.txt b/maze/task5/maps/level5/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b5c152c8ad130f3ccb9f423a4372ea6e1379b92 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 4; Row 4, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/53.txt b/maze/task5/maps/level5/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..2106621473d9a89917c751ac90e082b2a91e6846 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 3; Row 3, Column 4; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/54.txt b/maze/task5/maps/level5/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..e529cb4a7371b0d490d5ee9b3cfba74b0fc6b6f4 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 4, Column 4; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/55.txt b/maze/task5/maps/level5/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..b88bdbb92a49502e281210e0ed15d870c91a593c --- /dev/null +++ b/maze/task5/maps/level5/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 1; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 5, Column 4; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/56.txt b/maze/task5/maps/level5/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..005a320e369800742c636e0f83c13c2f7776aad7 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 3, Column 2; Row 5, Column 1; Row 5, Column 4; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/57.txt b/maze/task5/maps/level5/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..80c622ea71676723763fead953c21d3b9309419c --- /dev/null +++ b/maze/task5/maps/level5/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 3, Column 3; Row 4, Column 1; Row 5, Column 2; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/58.txt b/maze/task5/maps/level5/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..278735b446a9a0b55d5fede1aa3a48534aa209b7 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/59.txt b/maze/task5/maps/level5/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..7801b488546a8358bf28d18020c6f1b861a9a295 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/6.txt b/maze/task5/maps/level5/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..090e9c1d826401003433a544b5a036f1e691e749 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 4; Row 4, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/60.txt b/maze/task5/maps/level5/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e2e9cc573a97f137abd386cc43b4e735bc3d1c1 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/61.txt b/maze/task5/maps/level5/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..b98dce1a9af589870e64ae9e1f3c5cd5c17956a7 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/62.txt b/maze/task5/maps/level5/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e9c53d4fba2738db99715000abfde4fcc4e9676 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 5; Row 3, Column 3; Row 4, Column 2; Row 4, Column 3; Row 4, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/63.txt b/maze/task5/maps/level5/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..22b0f90b754b1ae7a27984ef6a430922302fe814 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/64.txt b/maze/task5/maps/level5/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8a49cd41197a2b270bf7d2a0f316f7c857a6524 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/65.txt b/maze/task5/maps/level5/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc235faae4ff5518dacdbf2e6e53a651f2aab293 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 5; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/66.txt b/maze/task5/maps/level5/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..e95bd73d1e25a720fae1d120db11ee2b23c528ad --- /dev/null +++ b/maze/task5/maps/level5/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/67.txt b/maze/task5/maps/level5/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..e827b288f0aaf5b38e997f08c12df9b60d3755f7 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/68.txt b/maze/task5/maps/level5/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f736b45d2605c716f2c985d1a323cfcd5238b578 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 3, Column 1; Row 5, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/69.txt b/maze/task5/maps/level5/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..225be629504b93f3710f79845bb8c392b1091099 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 5; Row 3, Column 5; Row 4, Column 2; Row 4, Column 5; Row 5, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/7.txt b/maze/task5/maps/level5/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..cad32fd2f3808ab35f15942baa29e28b809de924 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/70.txt b/maze/task5/maps/level5/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..41a8a92c1901bd5de504b373d1e1f071c97cf29e --- /dev/null +++ b/maze/task5/maps/level5/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/71.txt b/maze/task5/maps/level5/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d33fb283d0f725b06dd43fc912f439278b32eec --- /dev/null +++ b/maze/task5/maps/level5/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/72.txt b/maze/task5/maps/level5/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab34a307bf8236e1a41343be0a6e0150f7fefe06 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 2; Row 2, Column 5; Row 3, Column 2; Row 3, Column 3; Row 4, Column 1; Row 5, Column 3; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/73.txt b/maze/task5/maps/level5/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..8419ea69e12459f716ea561fe38ed7a356f59b00 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 4; Row 5, Column 2; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/74.txt b/maze/task5/maps/level5/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdd0e3f63783c8e17e4af42ee4e0f42e0618ba04 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 3; Row 5, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/75.txt b/maze/task5/maps/level5/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..915d740f384ea81f4cf4c86382217b7a0290c305 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 5, Column 2; Row 5, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/76.txt b/maze/task5/maps/level5/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..1376792490f0233abff71e1e1c0a10b657829cfc --- /dev/null +++ b/maze/task5/maps/level5/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 3, Column 5; Row 4, Column 2; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/77.txt b/maze/task5/maps/level5/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0dc66fa1b6370c5725cb89c2135994a92f220f26 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 3, Column 4; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/78.txt b/maze/task5/maps/level5/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..46283791e54968360d69a2a369960cc47ff820f7 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/79.txt b/maze/task5/maps/level5/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a3915e8eea24dc20f7b204d597fd142ca57e4b9 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 2, Column 4; Row 3, Column 4; Row 3, Column 5; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/8.txt b/maze/task5/maps/level5/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..08edb362cb22dbded0ea93839caca4600a4eeb16 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/80.txt b/maze/task5/maps/level5/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c2601566807138655578c6d3f9da699a2da739e --- /dev/null +++ b/maze/task5/maps/level5/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/81.txt b/maze/task5/maps/level5/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..18460f3c07b772398052d732aec7a18306a362fc --- /dev/null +++ b/maze/task5/maps/level5/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/82.txt b/maze/task5/maps/level5/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c2e984f1c166764303dc2f5a2ee3055093ded15 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 4, Column 4; Row 5, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/83.txt b/maze/task5/maps/level5/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..9dcee8bea439882bbd328f814da887b2bb0d47c0 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 5, Column 5; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/84.txt b/maze/task5/maps/level5/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f6c3cc66727f13d4b4524c30cff09d5ec25ae60 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 4; Row 3, Column 3; Row 3, Column 4; Row 4, Column 4; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/85.txt b/maze/task5/maps/level5/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee2506d3c62f246176ebeaa3418f1cda7988af0b --- /dev/null +++ b/maze/task5/maps/level5/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 2, Column 2; Row 2, Column 4; Row 4, Column 4; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/86.txt b/maze/task5/maps/level5/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..1314a63ac079354e310dd359ecc90968cd8e493e --- /dev/null +++ b/maze/task5/maps/level5/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/87.txt b/maze/task5/maps/level5/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..13a128ba76c3d80887181bada72a4c529a13bcd8 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 3, Column 1; Row 4, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/88.txt b/maze/task5/maps/level5/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..a970f264f48d75000b066267644c8f5770aeb88c --- /dev/null +++ b/maze/task5/maps/level5/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 4, Column 1; Row 4, Column 2; Row 5, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/89.txt b/maze/task5/maps/level5/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..94a0d4b048c75ea846ff6f887120a36cdeecdfe0 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 3, Column 1; Row 5, Column 1; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/9.txt b/maze/task5/maps/level5/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..e331e360b9da15923123b2957ca0cea7c92c20cc --- /dev/null +++ b/maze/task5/maps/level5/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 5; Row 3, Column 1; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/90.txt b/maze/task5/maps/level5/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..1eb6bfa6cca9aac78987377258148ad12e1690cc --- /dev/null +++ b/maze/task5/maps/level5/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/91.txt b/maze/task5/maps/level5/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c7e29965b5d3594eccb510a034911fed84da20e --- /dev/null +++ b/maze/task5/maps/level5/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 4, Column 3; Row 5, Column 4; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/92.txt b/maze/task5/maps/level5/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e7f518e3f935adfbec1a2fe82d9353b221c89e6 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/93.txt b/maze/task5/maps/level5/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..99e8587ad626e4e76a45776ec0df7dfc107a9994 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 4; Row 3, Column 3; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/94.txt b/maze/task5/maps/level5/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f9219bae6ebde73625e6c9c8fb730c237ef09e --- /dev/null +++ b/maze/task5/maps/level5/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 4, Column 5; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/95.txt b/maze/task5/maps/level5/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..92aa4557aa2d22124ee2b3641570ea46108af8bc --- /dev/null +++ b/maze/task5/maps/level5/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 5; Row 4, Column 2; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/96.txt b/maze/task5/maps/level5/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..7baa1028626f4a71c738ab423ba2ef35afd5ced8 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 4, Column 2; Row 4, Column 3; Row 5, Column 2; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/97.txt b/maze/task5/maps/level5/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..076c01ee6bacfe079d95faf6bc75c95481857fd9 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 5, Column 5; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/98.txt b/maze/task5/maps/level5/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d00ab2fa70a2f05e4fe70829bb3f0bf3bf5ed94 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 3; Row 4, Column 1; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level5/pure_text/99.txt b/maze/task5/maps/level5/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..e83fcadcc53346222267fe68467d7f53b2e90601 --- /dev/null +++ b/maze/task5/maps/level5/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 5x5 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 2; Row 3, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level5/table/0.txt b/maze/task5/maps/level5/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..71a2cd22e79422b7d477a4141c2e19b05c3bd1f5 --- /dev/null +++ b/maze/task5/maps/level5/table/0.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/1.txt b/maze/task5/maps/level5/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..9644ba4395c19da791aa1dca093cacf7aa2e64e1 --- /dev/null +++ b/maze/task5/maps/level5/table/1.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task5/maps/level5/table/10.txt b/maze/task5/maps/level5/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0211bef6e0797f5185afb256ab03b4c8aaff905 --- /dev/null +++ b/maze/task5/maps/level5/table/10.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | * | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task5/maps/level5/table/11.txt b/maze/task5/maps/level5/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e9dea2fee4a93278764065cf1da3935f20307bb --- /dev/null +++ b/maze/task5/maps/level5/table/11.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | * | @ | _ | # | _ | diff --git a/maze/task5/maps/level5/table/12.txt b/maze/task5/maps/level5/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..946812b87c7105aa6fbfdf6be1118cf04d91e848 --- /dev/null +++ b/maze/task5/maps/level5/table/12.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/13.txt b/maze/task5/maps/level5/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea2d1614a3e9f80e878f1bd25d564f7871c1b2bb --- /dev/null +++ b/maze/task5/maps/level5/table/13.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/14.txt b/maze/task5/maps/level5/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..74c766497f20046fdef1a548c283f61b3c2045b6 --- /dev/null +++ b/maze/task5/maps/level5/table/14.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | @ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/15.txt b/maze/task5/maps/level5/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2ecfcc4b5fe86a6ed7a4113791bbbd3ab0ed872 --- /dev/null +++ b/maze/task5/maps/level5/table/15.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | _ | diff --git a/maze/task5/maps/level5/table/16.txt b/maze/task5/maps/level5/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdaadcc660885d8cc036c56eb3d8c6166734d251 --- /dev/null +++ b/maze/task5/maps/level5/table/16.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | # | +| Row 4 | * | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level5/table/17.txt b/maze/task5/maps/level5/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..51cfae6b5cab1c10e4372fc6b0381b6e816248d3 --- /dev/null +++ b/maze/task5/maps/level5/table/17.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | * | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level5/table/18.txt b/maze/task5/maps/level5/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..a988766c4a28498fcf3f8af21390c2e490902b19 --- /dev/null +++ b/maze/task5/maps/level5/table/18.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | _ | * | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/19.txt b/maze/task5/maps/level5/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..dddc27c4db2023865999858bf4fdbe566b5266f7 --- /dev/null +++ b/maze/task5/maps/level5/table/19.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task5/maps/level5/table/2.txt b/maze/task5/maps/level5/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..29bb7a4e80621f3b2ea4a6010d53fc4c62aa9f8b --- /dev/null +++ b/maze/task5/maps/level5/table/2.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | _ | * | _ | +| Row 5 | # | # | _ | _ | # | diff --git a/maze/task5/maps/level5/table/20.txt b/maze/task5/maps/level5/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..60f96585de5bee9fac2aca2fcaa5747c6122c86d --- /dev/null +++ b/maze/task5/maps/level5/table/20.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | @ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | diff --git a/maze/task5/maps/level5/table/21.txt b/maze/task5/maps/level5/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1bdb7f9d38c363607edebca795b8efda2fd58943 --- /dev/null +++ b/maze/task5/maps/level5/table/21.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task5/maps/level5/table/22.txt b/maze/task5/maps/level5/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5b15e5f4ef092a1f78e2eb5159296b39c695bfa --- /dev/null +++ b/maze/task5/maps/level5/table/22.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | # | # | # | diff --git a/maze/task5/maps/level5/table/23.txt b/maze/task5/maps/level5/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..3291cd013d78e809d904f9dfab9660d6d51eb932 --- /dev/null +++ b/maze/task5/maps/level5/table/23.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | # | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task5/maps/level5/table/24.txt b/maze/task5/maps/level5/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..0bbb681c3461cff5d1235131dc0199e120a5cbb7 --- /dev/null +++ b/maze/task5/maps/level5/table/24.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level5/table/25.txt b/maze/task5/maps/level5/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2ecfa107864966d52a237d3a7578f7c4255db56 --- /dev/null +++ b/maze/task5/maps/level5/table/25.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | @ | _ | _ | # | +| Row 3 | # | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level5/table/26.txt b/maze/task5/maps/level5/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..7acf6c97551025a47e8207046e1bfd34ba5eaae9 --- /dev/null +++ b/maze/task5/maps/level5/table/26.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/27.txt b/maze/task5/maps/level5/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..78bbcfe6501df2fa4d5998e438299642be5337aa --- /dev/null +++ b/maze/task5/maps/level5/table/27.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | +| Row 3 | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | * | _ | diff --git a/maze/task5/maps/level5/table/28.txt b/maze/task5/maps/level5/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..60ac347fd4a84043ca0e33430e4979c51a670c85 --- /dev/null +++ b/maze/task5/maps/level5/table/28.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/29.txt b/maze/task5/maps/level5/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..7012bced8ae0b0e4469a432bc7ecd768576f1205 --- /dev/null +++ b/maze/task5/maps/level5/table/29.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | * | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/3.txt b/maze/task5/maps/level5/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..af9afb12ea5b879f7d3d1aee81db7632744fe5e1 --- /dev/null +++ b/maze/task5/maps/level5/table/3.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | * | _ | @ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/30.txt b/maze/task5/maps/level5/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..9cb1ae58ba0ccd2d81caa01dd388fbacd7ef701b --- /dev/null +++ b/maze/task5/maps/level5/table/30.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | * | +| Row 5 | _ | _ | # | @ | # | diff --git a/maze/task5/maps/level5/table/31.txt b/maze/task5/maps/level5/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..79fab8a93e45cc567a9c8e57d28bfdde645c5f7b --- /dev/null +++ b/maze/task5/maps/level5/table/31.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | # | # | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | * | diff --git a/maze/task5/maps/level5/table/32.txt b/maze/task5/maps/level5/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e596765f71f84682ad2c57d6303627b783f01b2 --- /dev/null +++ b/maze/task5/maps/level5/table/32.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/33.txt b/maze/task5/maps/level5/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..419c8042381b1781ac2fad374e1c39d0b7a7ad54 --- /dev/null +++ b/maze/task5/maps/level5/table/33.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task5/maps/level5/table/34.txt b/maze/task5/maps/level5/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb7b078d5ac223526d7cfcd8cf89070390f649ea --- /dev/null +++ b/maze/task5/maps/level5/table/34.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | # | +| Row 4 | @ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/35.txt b/maze/task5/maps/level5/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f18b432ca7b113f763e08ee6dc6532333bf5715 --- /dev/null +++ b/maze/task5/maps/level5/table/35.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | # | +| Row 2 | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/36.txt b/maze/task5/maps/level5/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..07f99a8a1d5fc503d84c1acd816d73e8d8b8169b --- /dev/null +++ b/maze/task5/maps/level5/table/36.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | +| Row 3 | # | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level5/table/37.txt b/maze/task5/maps/level5/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..adabe4db6cc43662fb78296b6404b89fd88c9140 --- /dev/null +++ b/maze/task5/maps/level5/table/37.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | * | _ | diff --git a/maze/task5/maps/level5/table/38.txt b/maze/task5/maps/level5/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..3846e4c3e55d0e44804705a43989b2e23cf8b0e0 --- /dev/null +++ b/maze/task5/maps/level5/table/38.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | # | * | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task5/maps/level5/table/39.txt b/maze/task5/maps/level5/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..b56378bb0df60965b7dfd00ff119179cb6064d8e --- /dev/null +++ b/maze/task5/maps/level5/table/39.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task5/maps/level5/table/4.txt b/maze/task5/maps/level5/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a319701482090faefd8ce684edd4b3d512e35984 --- /dev/null +++ b/maze/task5/maps/level5/table/4.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/40.txt b/maze/task5/maps/level5/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce8ccc4ddf33dbe61523be3e2bf67ee0cac8e4bc --- /dev/null +++ b/maze/task5/maps/level5/table/40.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/41.txt b/maze/task5/maps/level5/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..a69ba0fd6e108e65971aeec453ee42c21f1cc200 --- /dev/null +++ b/maze/task5/maps/level5/table/41.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/42.txt b/maze/task5/maps/level5/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fca2c0c17f61f58dcf6b6299e1ce5c42eb799ce --- /dev/null +++ b/maze/task5/maps/level5/table/42.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | # | # | * | _ | _ | diff --git a/maze/task5/maps/level5/table/43.txt b/maze/task5/maps/level5/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..bba5c75ca3accaaa374a79977ffb21046bb28e7b --- /dev/null +++ b/maze/task5/maps/level5/table/43.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/44.txt b/maze/task5/maps/level5/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..80de0959c036469c32805ef6549d2b1ed4c6bedb --- /dev/null +++ b/maze/task5/maps/level5/table/44.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | # | +| Row 4 | _ | @ | _ | # | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/45.txt b/maze/task5/maps/level5/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c18b3e25aecbca606d0717b194804c0ab956f3e --- /dev/null +++ b/maze/task5/maps/level5/table/45.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level5/table/46.txt b/maze/task5/maps/level5/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..52e9ac1f1c0a84951c51f3ae469355badac706b3 --- /dev/null +++ b/maze/task5/maps/level5/table/46.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | @ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | +| Row 5 | _ | * | # | _ | _ | diff --git a/maze/task5/maps/level5/table/47.txt b/maze/task5/maps/level5/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..5af81234f05f77e8f6ca8fc2676ed5398e0570b4 --- /dev/null +++ b/maze/task5/maps/level5/table/47.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/48.txt b/maze/task5/maps/level5/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..e898994592d1711c0d96faca5000b9c57955a9b6 --- /dev/null +++ b/maze/task5/maps/level5/table/48.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | @ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | +| Row 5 | _ | # | # | _ | _ | diff --git a/maze/task5/maps/level5/table/49.txt b/maze/task5/maps/level5/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..aba73571fcfc3bae5e9941c21772f6fa26131013 --- /dev/null +++ b/maze/task5/maps/level5/table/49.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | @ | * | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level5/table/5.txt b/maze/task5/maps/level5/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..68da45b1e61a5685cb46325f1a7c0f88321df2ae --- /dev/null +++ b/maze/task5/maps/level5/table/5.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | diff --git a/maze/task5/maps/level5/table/50.txt b/maze/task5/maps/level5/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cd186e80b157cee5759440638299a74c844fc7a --- /dev/null +++ b/maze/task5/maps/level5/table/50.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | @ | * | diff --git a/maze/task5/maps/level5/table/51.txt b/maze/task5/maps/level5/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a0815eef8fa94d279ec60f49d1f91ec6a6b1448 --- /dev/null +++ b/maze/task5/maps/level5/table/51.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/52.txt b/maze/task5/maps/level5/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3b0d4c5cf6ab4d90aac7f9d9c458533c32b4393 --- /dev/null +++ b/maze/task5/maps/level5/table/52.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | @ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/53.txt b/maze/task5/maps/level5/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d5ee7e95f64becee9861bbaa79d15ef29571b16 --- /dev/null +++ b/maze/task5/maps/level5/table/53.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | # | _ | _ | +| Row 2 | # | @ | # | _ | _ | +| Row 3 | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task5/maps/level5/table/54.txt b/maze/task5/maps/level5/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e81c6d453858ec23b49ec7bf6b3f642608e809c --- /dev/null +++ b/maze/task5/maps/level5/table/54.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | +| Row 5 | _ | @ | _ | _ | # | diff --git a/maze/task5/maps/level5/table/55.txt b/maze/task5/maps/level5/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2e6d7933b828afbb9bca303bc84e643f00ef395 --- /dev/null +++ b/maze/task5/maps/level5/table/55.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | # | _ | # | @ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level5/table/56.txt b/maze/task5/maps/level5/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba5afdba587409ce6e45db7f6dda1d0b659c8ec1 --- /dev/null +++ b/maze/task5/maps/level5/table/56.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | diff --git a/maze/task5/maps/level5/table/57.txt b/maze/task5/maps/level5/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..6647db1330aed2c4002abe3f7ae3882ef94c8e96 --- /dev/null +++ b/maze/task5/maps/level5/table/57.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | # | diff --git a/maze/task5/maps/level5/table/58.txt b/maze/task5/maps/level5/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4facf5f7b9bd004d8c1c5545d862b78a8ed747eb --- /dev/null +++ b/maze/task5/maps/level5/table/58.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | * | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/59.txt b/maze/task5/maps/level5/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..a944527c0bbc1386a4896c78deb1038293630f88 --- /dev/null +++ b/maze/task5/maps/level5/table/59.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task5/maps/level5/table/6.txt b/maze/task5/maps/level5/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..2521dc5a2e4b78cd93244c384377b6d6b0823192 --- /dev/null +++ b/maze/task5/maps/level5/table/6.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | # | +| Row 2 | # | * | _ | _ | _ | +| Row 3 | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/60.txt b/maze/task5/maps/level5/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..00def527d41c997c53038f0a9dd2efdbfda5a2cf --- /dev/null +++ b/maze/task5/maps/level5/table/60.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | @ | _ | _ | +| Row 2 | # | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/61.txt b/maze/task5/maps/level5/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..25a949c147d27e07c25bfdb4a30d6ab10cb65b36 --- /dev/null +++ b/maze/task5/maps/level5/table/61.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | @ | _ | # | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/62.txt b/maze/task5/maps/level5/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..66052c016a4f346ecda19ab98dc7c648f20de650 --- /dev/null +++ b/maze/task5/maps/level5/table/62.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | @ | diff --git a/maze/task5/maps/level5/table/63.txt b/maze/task5/maps/level5/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb2b3236ef80dd12bc6c5e05acb7fd8f742813b3 --- /dev/null +++ b/maze/task5/maps/level5/table/63.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | @ | _ | diff --git a/maze/task5/maps/level5/table/64.txt b/maze/task5/maps/level5/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f61479e7d8140061c4b760334409912a1e6f628 --- /dev/null +++ b/maze/task5/maps/level5/table/64.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/65.txt b/maze/task5/maps/level5/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1278d25010ff27a783403263a4a2c870393ae901 --- /dev/null +++ b/maze/task5/maps/level5/table/65.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | diff --git a/maze/task5/maps/level5/table/66.txt b/maze/task5/maps/level5/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5da0ff14dc3fb5998a4a229eedca0c5f6ed590e --- /dev/null +++ b/maze/task5/maps/level5/table/66.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | # | @ | * | # | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/67.txt b/maze/task5/maps/level5/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..34ce4a21faf5689ff7ea97ad691d943c83be3c2f --- /dev/null +++ b/maze/task5/maps/level5/table/67.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | @ | * | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/68.txt b/maze/task5/maps/level5/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9a40ccda9898fe8360fc6c0b63390b6fc383a81 --- /dev/null +++ b/maze/task5/maps/level5/table/68.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level5/table/69.txt b/maze/task5/maps/level5/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..82d0f84ca02b6dbadfadf946749eec578f795f01 --- /dev/null +++ b/maze/task5/maps/level5/table/69.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | @ | # | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | * | # | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level5/table/7.txt b/maze/task5/maps/level5/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc02ca1df883fa37a50dfdd0cd46b7626d287d31 --- /dev/null +++ b/maze/task5/maps/level5/table/7.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | _ | _ | @ | _ | _ | +| Row 3 | _ | # | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | # | _ | _ | _ | # | diff --git a/maze/task5/maps/level5/table/70.txt b/maze/task5/maps/level5/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4404e2781df99c6580eeb74e3cfdecd6a84dbe2 --- /dev/null +++ b/maze/task5/maps/level5/table/70.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | +| Row 3 | # | _ | @ | # | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/71.txt b/maze/task5/maps/level5/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..f629a7fc01107700c1b7bece7858243a5a0e356b --- /dev/null +++ b/maze/task5/maps/level5/table/71.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | * | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level5/table/72.txt b/maze/task5/maps/level5/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..68456a7ca7d73e7ea391a830b43239e28fc85082 --- /dev/null +++ b/maze/task5/maps/level5/table/72.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | @ | _ | +| Row 2 | # | # | _ | _ | # | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | diff --git a/maze/task5/maps/level5/table/73.txt b/maze/task5/maps/level5/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..db68a4d37d6554ce78cbe7ef6c34f4a5afa11b33 --- /dev/null +++ b/maze/task5/maps/level5/table/73.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | +| Row 3 | _ | _ | @ | _ | _ | +| Row 4 | _ | * | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/74.txt b/maze/task5/maps/level5/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..3faabd2620240c61d2bc74842cf5af9fa9be7eb6 --- /dev/null +++ b/maze/task5/maps/level5/table/74.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | @ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/75.txt b/maze/task5/maps/level5/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c5cd02d4849b9732bff70934bf3ea07e35f6b06 --- /dev/null +++ b/maze/task5/maps/level5/table/75.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | # | * | _ | _ | +| Row 3 | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | _ | diff --git a/maze/task5/maps/level5/table/76.txt b/maze/task5/maps/level5/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..47a6b9654e17b3b50352be483d07a713827f110b --- /dev/null +++ b/maze/task5/maps/level5/table/76.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task5/maps/level5/table/77.txt b/maze/task5/maps/level5/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fb899cc097e94935ef92f986f60d0143565e241 --- /dev/null +++ b/maze/task5/maps/level5/table/77.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/78.txt b/maze/task5/maps/level5/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4a3d4a32feec93bd6ac7418221c3f0999354fbb --- /dev/null +++ b/maze/task5/maps/level5/table/78.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | +| Row 3 | _ | # | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | _ | * | _ | _ | diff --git a/maze/task5/maps/level5/table/79.txt b/maze/task5/maps/level5/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2a64e850682e33895bc152ffe44465805ed1634 --- /dev/null +++ b/maze/task5/maps/level5/table/79.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | * | +| Row 2 | _ | _ | @ | # | _ | +| Row 3 | _ | _ | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level5/table/8.txt b/maze/task5/maps/level5/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..497f826729be29a0fd82e501b50af79afaa11b73 --- /dev/null +++ b/maze/task5/maps/level5/table/8.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | * | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | # | # | _ | # | _ | +| Row 5 | _ | @ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/80.txt b/maze/task5/maps/level5/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c249a404d1d948c41a2c5939d3e26a428b1a75f --- /dev/null +++ b/maze/task5/maps/level5/table/80.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | * | @ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/81.txt b/maze/task5/maps/level5/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..47da920aba24b5ce2751d433d9e64b8e8b4c4306 --- /dev/null +++ b/maze/task5/maps/level5/table/81.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | _ | _ | +| Row 2 | _ | _ | * | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/82.txt b/maze/task5/maps/level5/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..88bda35ba160112dff20969fe1697ae01ee5ede6 --- /dev/null +++ b/maze/task5/maps/level5/table/82.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | @ | # | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/83.txt b/maze/task5/maps/level5/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..1410fb2f335cbebbab12502b46ca21277dcbb2e0 --- /dev/null +++ b/maze/task5/maps/level5/table/83.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | # | diff --git a/maze/task5/maps/level5/table/84.txt b/maze/task5/maps/level5/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..45d952294d09a3f547fa4b6fc6187d865fc7f09a --- /dev/null +++ b/maze/task5/maps/level5/table/84.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | * | # | # | _ | +| Row 4 | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | # | diff --git a/maze/task5/maps/level5/table/85.txt b/maze/task5/maps/level5/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..752644e6113eda553503ebaff8d3027fecbf8798 --- /dev/null +++ b/maze/task5/maps/level5/table/85.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | # | _ | +| Row 2 | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | # | * | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/86.txt b/maze/task5/maps/level5/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..549158c64ed96431696106b86baad27932dbe374 --- /dev/null +++ b/maze/task5/maps/level5/table/86.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | * | # | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/87.txt b/maze/task5/maps/level5/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..17e8384b0a94fdc511f2fa0f1e25d28edf0c44f5 --- /dev/null +++ b/maze/task5/maps/level5/table/87.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | +| Row 3 | # | * | @ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level5/table/88.txt b/maze/task5/maps/level5/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d9706ff6bbf8e975d8e0896c4cde96fccd9d1ab --- /dev/null +++ b/maze/task5/maps/level5/table/88.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | * | # | _ | +| Row 2 | # | # | _ | _ | _ | +| Row 3 | # | # | _ | @ | _ | +| Row 4 | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/89.txt b/maze/task5/maps/level5/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f9d067993b4e167b920e279ddd055052e84c911 --- /dev/null +++ b/maze/task5/maps/level5/table/89.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | # | _ | _ | +| Row 2 | @ | _ | _ | * | _ | +| Row 3 | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | diff --git a/maze/task5/maps/level5/table/9.txt b/maze/task5/maps/level5/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5ac58126560887cf9902b5a659a786e16e5de26 --- /dev/null +++ b/maze/task5/maps/level5/table/9.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | # | _ | _ | # | +| Row 2 | # | _ | _ | * | # | +| Row 3 | # | @ | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | # | # | # | # | _ | diff --git a/maze/task5/maps/level5/table/90.txt b/maze/task5/maps/level5/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..663ea411111cc2efcd9fa95e302388de6bb2d85e --- /dev/null +++ b/maze/task5/maps/level5/table/90.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | @ | +| Row 3 | _ | _ | _ | _ | # | +| Row 4 | * | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/91.txt b/maze/task5/maps/level5/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1b2831af4f52d4ba82532f39a69fd443df65b12 --- /dev/null +++ b/maze/task5/maps/level5/table/91.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | # | _ | # | _ | +| Row 2 | _ | @ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | diff --git a/maze/task5/maps/level5/table/92.txt b/maze/task5/maps/level5/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..f127bc7294e35835c52ce2713dfbd07d288abe4a --- /dev/null +++ b/maze/task5/maps/level5/table/92.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | @ | _ | # | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level5/table/93.txt b/maze/task5/maps/level5/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3a551f73f6ed945abc68ec321d51c622f8214d3 --- /dev/null +++ b/maze/task5/maps/level5/table/93.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | # | _ | +| Row 3 | _ | * | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | diff --git a/maze/task5/maps/level5/table/94.txt b/maze/task5/maps/level5/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd36699cc97c9e1261cc3c2beb6509ebfd0fc54f --- /dev/null +++ b/maze/task5/maps/level5/table/94.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | diff --git a/maze/task5/maps/level5/table/95.txt b/maze/task5/maps/level5/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cfddeed458210d22a1fdd41d27cfde9b2e2c62f --- /dev/null +++ b/maze/task5/maps/level5/table/95.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | # | +| Row 4 | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | diff --git a/maze/task5/maps/level5/table/96.txt b/maze/task5/maps/level5/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d3617d2351609c05cc950f557011977d2a0ea8 --- /dev/null +++ b/maze/task5/maps/level5/table/96.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | _ | +| Row 3 | _ | * | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | +| Row 5 | _ | # | _ | @ | _ | diff --git a/maze/task5/maps/level5/table/97.txt b/maze/task5/maps/level5/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..18326e3e099f68517b35e02e857b8a1073462cda --- /dev/null +++ b/maze/task5/maps/level5/table/97.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | * | @ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level5/table/98.txt b/maze/task5/maps/level5/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..31107581bdcc9fdb56ca838c91627ed423008483 --- /dev/null +++ b/maze/task5/maps/level5/table/98.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | # | @ | # | * | _ | +| Row 2 | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level5/table/99.txt b/maze/task5/maps/level5/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..33d7938b7066fd84a556f9f4f58d83b891a7e093 --- /dev/null +++ b/maze/task5/maps/level5/table/99.txt @@ -0,0 +1,6 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | +| Row 1 | _ | _ | _ | _ | _ | +| Row 2 | * | # | _ | _ | @ | +| Row 3 | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/img/0.png b/maze/task5/maps/level6/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6ce6b0616b8a8822fd29a0b16ef557647dd1a278 --- /dev/null +++ b/maze/task5/maps/level6/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7cf5f68f30117e9be92cfd1cfd618e573b337d330ff07293e9214cf2163a39 +size 13142 diff --git a/maze/task5/maps/level6/img/1.png b/maze/task5/maps/level6/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cccb347239f041d67a44ea4212cb86f63c92505d --- /dev/null +++ b/maze/task5/maps/level6/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8af474044334f018253e83212b7f1722f431363771a93011f57ef59ab4433a0f +size 12833 diff --git a/maze/task5/maps/level6/img/10.png b/maze/task5/maps/level6/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ad317fc42fcfdc0b38aa39983dd132f2f2a8b0e9 --- /dev/null +++ b/maze/task5/maps/level6/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6c90f70489fb8d6691a2f1e0c076320e5bf58dbdaadd4513850309c3ed74e3 +size 11362 diff --git a/maze/task5/maps/level6/img/11.png b/maze/task5/maps/level6/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..787bb1470069d5fec582dca64f33e94261bd15cc --- /dev/null +++ b/maze/task5/maps/level6/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb20950e3eade98502495e3864e6e544e4f3dcd64ec012e7a87b85f18dffac9 +size 12084 diff --git a/maze/task5/maps/level6/img/12.png b/maze/task5/maps/level6/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..662f1b9750d8b1181c573c29d6fff8583bae577d --- /dev/null +++ b/maze/task5/maps/level6/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e24158bd3e44791c9dc08db302871293dd8017ff9ad60a170255301b7ac082f +size 13001 diff --git a/maze/task5/maps/level6/img/13.png b/maze/task5/maps/level6/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e8478d158cb0937c291a8bb1fc7bfda471deed --- /dev/null +++ b/maze/task5/maps/level6/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf75dd4c390ac34674c1d6853775fa03d7d79c9204fc15934bafa0db11eb8e45 +size 12069 diff --git a/maze/task5/maps/level6/img/14.png b/maze/task5/maps/level6/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4c611b3a4faa66ee1be03f5e222c44f8b214b7b0 --- /dev/null +++ b/maze/task5/maps/level6/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09764a311ab1a7d583c14683bef2d76dd04ead47d8061e7514484ce996732ab +size 13176 diff --git a/maze/task5/maps/level6/img/15.png b/maze/task5/maps/level6/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca2773dde9225b8b274878a4f2ef90e099b5946 --- /dev/null +++ b/maze/task5/maps/level6/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5386ac909638fcf3dabea3ef63c6f5a007553a99c49a78f4a0e009d7ad36c399 +size 11348 diff --git a/maze/task5/maps/level6/img/16.png b/maze/task5/maps/level6/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..51e4a102340046c70fdf5cdc8ecc771016ba2631 --- /dev/null +++ b/maze/task5/maps/level6/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:280f85497359355dd4421b18fc1bfd1b0b84e466c262fa01c3ef16f87b749b39 +size 13050 diff --git a/maze/task5/maps/level6/img/17.png b/maze/task5/maps/level6/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..54cd853d45678313764898260e6ab149a477713b --- /dev/null +++ b/maze/task5/maps/level6/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ebcdac8617a09127a1b3205d63b534ed9c3c20563b871387bfe117a6838294 +size 13023 diff --git a/maze/task5/maps/level6/img/18.png b/maze/task5/maps/level6/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..919d42f870c1cacb83662458d3a610d09afebda8 --- /dev/null +++ b/maze/task5/maps/level6/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20f7a9dc58fb94b2dc59c754a42101a3d73abedaa67c332320fba93abcfe78a +size 12380 diff --git a/maze/task5/maps/level6/img/19.png b/maze/task5/maps/level6/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..c010437230ac06eb797d3d1fd0b5700d98aa946c --- /dev/null +++ b/maze/task5/maps/level6/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f732126ef840e7d4ab4abf053af9340767f6b1e20187e116a1291bba4b2e2b3 +size 12290 diff --git a/maze/task5/maps/level6/img/2.png b/maze/task5/maps/level6/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..22c94c7e222fb0e8345902ac4c0d0a1adb278193 --- /dev/null +++ b/maze/task5/maps/level6/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3741ed4312e5c3563f26d483cd4d2effaba0bf0c924e4ad324a32882c7ac48 +size 12373 diff --git a/maze/task5/maps/level6/img/20.png b/maze/task5/maps/level6/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..e4526b9c90ad9c8e8e0ffe585bef84f13afc9073 --- /dev/null +++ b/maze/task5/maps/level6/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5e67bc3aee15111e4d358a59e76d94358c9092837cfc982f7d14a647d758e6 +size 13093 diff --git a/maze/task5/maps/level6/img/21.png b/maze/task5/maps/level6/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..9fe590ca3a0832eae7a5b3146e098b373ea36d24 --- /dev/null +++ b/maze/task5/maps/level6/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64090f5ba7eddbac010117de5dda1336f2a248b76820160020c45977e375d4bd +size 11247 diff --git a/maze/task5/maps/level6/img/22.png b/maze/task5/maps/level6/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..c24e11b6539bbb7384451582399d746cd1d2f914 --- /dev/null +++ b/maze/task5/maps/level6/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0cdc3e03c557b4fe82936dc9fee3af8b49269652013031060412c01e25ea5f +size 12858 diff --git a/maze/task5/maps/level6/img/23.png b/maze/task5/maps/level6/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..15679316a40a4d400ae233f61db4b18b5aea85c6 --- /dev/null +++ b/maze/task5/maps/level6/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46f3728bd3f61289a5dcec3c08dc80762fc8b77332741fcdb9d0d0021ab6ed9 +size 12237 diff --git a/maze/task5/maps/level6/img/24.png b/maze/task5/maps/level6/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..d513e02acadc743ba3dbfa085edcb0a737076a73 --- /dev/null +++ b/maze/task5/maps/level6/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686390842f6d81617e7058b401ed2f03b08459f1f5fd2ce33bca966c00ca9666 +size 12917 diff --git a/maze/task5/maps/level6/img/25.png b/maze/task5/maps/level6/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..c9ac4dfb7deb00b1a947f5ff83892ba54233bea2 --- /dev/null +++ b/maze/task5/maps/level6/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e3905f875a22250bb8ae5d794f54ae010773eb0569d1229e4e04b4bfc47e56 +size 13035 diff --git a/maze/task5/maps/level6/img/26.png b/maze/task5/maps/level6/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..2788ad465e8c206b92326d59f08ee66be3b1abc3 --- /dev/null +++ b/maze/task5/maps/level6/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a252201fc4ec045b14d21a7ee8248288a86537341af4ebfd2d3ceeaab4be8f64 +size 13146 diff --git a/maze/task5/maps/level6/img/27.png b/maze/task5/maps/level6/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..430c756a9840d04b2ab6be555b6d51105f78856d --- /dev/null +++ b/maze/task5/maps/level6/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2decf00a05901a9bb258b59f3ad709402e4efc861da52b8fe6aa0115e8a928 +size 11314 diff --git a/maze/task5/maps/level6/img/28.png b/maze/task5/maps/level6/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..8c0419257ca3ba81baa4a372472189e1f724bedc --- /dev/null +++ b/maze/task5/maps/level6/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45f53aa09bd68a307b970ceda1b409e9f841607f6102783aa19d92909fc1a51 +size 10504 diff --git a/maze/task5/maps/level6/img/29.png b/maze/task5/maps/level6/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..aecd246f3f44d010dc52edad877cb1794cc8381b --- /dev/null +++ b/maze/task5/maps/level6/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ef5c388df3de63f9af71ba14e1932519aa0dd8f03ad21114de58828139251c +size 11269 diff --git a/maze/task5/maps/level6/img/3.png b/maze/task5/maps/level6/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..655d9482b22ba184453ebfc4388606bde0ba2ada --- /dev/null +++ b/maze/task5/maps/level6/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e26501e633b3ac07abd93890cddc88173afbf30d7b94725610115ac198e8d7f +size 12417 diff --git a/maze/task5/maps/level6/img/30.png b/maze/task5/maps/level6/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..c6585f035bccdd8daf6418a13bb5582b117fdbf3 --- /dev/null +++ b/maze/task5/maps/level6/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0b908c0815fb8d44c0e14070dd6b35ee515f7153d382b4b8ac83787ee62010 +size 13976 diff --git a/maze/task5/maps/level6/img/31.png b/maze/task5/maps/level6/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..8772c26d68c142572a3840486fdb366cdba9a00b --- /dev/null +++ b/maze/task5/maps/level6/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f24dfcb35c43781fa249ebe66b1254ddc5e4e2cafc0bebd02b03f371361bd7f1 +size 13106 diff --git a/maze/task5/maps/level6/img/32.png b/maze/task5/maps/level6/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ae7737f299906d74e9ecf1b50374b5f4b769db --- /dev/null +++ b/maze/task5/maps/level6/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14bbc674cb87f3ab7cc83227ea1e332d109f42b2f303e331362b8bfd3b7229d +size 13070 diff --git a/maze/task5/maps/level6/img/33.png b/maze/task5/maps/level6/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..d3e19eb7f921d20aacb796cd806bc93e60ad5718 --- /dev/null +++ b/maze/task5/maps/level6/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a9f056d0609827c07e4c22c220e233e8a1dfa174bfa7178344d811f0fd6e26 +size 13150 diff --git a/maze/task5/maps/level6/img/34.png b/maze/task5/maps/level6/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..21c282d2f3aa3113a08f2e8ca70559836889fb78 --- /dev/null +++ b/maze/task5/maps/level6/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cebe3a8a52a1a1ed89675545abd8eb2c8ab4ee35133ded2dd2c89ccaad8e11 +size 13065 diff --git a/maze/task5/maps/level6/img/35.png b/maze/task5/maps/level6/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..f1ccbbc4a1207dd013506b561696f0b9bc0b6842 --- /dev/null +++ b/maze/task5/maps/level6/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4eb63f3c3649624f170da52a1abd7b9b254d74077b8ebbbda022c059bd3a29f +size 12193 diff --git a/maze/task5/maps/level6/img/36.png b/maze/task5/maps/level6/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..a25240fdfa0b6c213e473b85e64935059da37d76 --- /dev/null +++ b/maze/task5/maps/level6/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953a15f194008b4b96cb0387c58d8d9a022388ea76d8a170d9664212675c541c +size 11440 diff --git a/maze/task5/maps/level6/img/37.png b/maze/task5/maps/level6/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..a03e968a14a970357eb8a7d77ebc10e2a3104b11 --- /dev/null +++ b/maze/task5/maps/level6/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ed6c6975e3367eb17d83cef67734d14dca6c100afe64005f6889a8c193a84c +size 13913 diff --git a/maze/task5/maps/level6/img/38.png b/maze/task5/maps/level6/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..1cf9db57394ff2fc1ba76f3996f98aeac3c83df1 --- /dev/null +++ b/maze/task5/maps/level6/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84060f1d8526be933005b8a016598526a0a2928b215dc9f2fe8bdd7d6deceb5 +size 12987 diff --git a/maze/task5/maps/level6/img/39.png b/maze/task5/maps/level6/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..9dec12f5390cad105ca6430fae7dc1d25595220f --- /dev/null +++ b/maze/task5/maps/level6/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ca1235566c28f8b70ff0d01de93e01f1cf1db8ca65ff2825c1da1b99cf09e4 +size 12185 diff --git a/maze/task5/maps/level6/img/4.png b/maze/task5/maps/level6/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..be5176ee40b195a18aea9d1cb302fefe535e9fa3 --- /dev/null +++ b/maze/task5/maps/level6/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ea46b5bfbe13ecd93a53def1fc3f28a1cd76cbbaa1a9e7e415e35e03504f27 +size 12205 diff --git a/maze/task5/maps/level6/img/40.png b/maze/task5/maps/level6/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..14fe6719a01c217dd9992d5268ac18af9bb3d7e0 --- /dev/null +++ b/maze/task5/maps/level6/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5dc61c6a99d89a2085be687609dc968f92cbac4935d5cb2e99a60e04233bfe3 +size 12976 diff --git a/maze/task5/maps/level6/img/41.png b/maze/task5/maps/level6/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..76098cc733d601d1f5346674aad4b698ba150037 --- /dev/null +++ b/maze/task5/maps/level6/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5095109a55300ca1e009cecc4b3115f1fc8f3320a758de8688a94e30fc5012d3 +size 12774 diff --git a/maze/task5/maps/level6/img/42.png b/maze/task5/maps/level6/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..980323f734dae8d2aa2216286a2b13b9eb888514 --- /dev/null +++ b/maze/task5/maps/level6/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fe71241facbb224d23448c0b7c0a58a55b731f498d385b0fc8cc99509f90307 +size 13054 diff --git a/maze/task5/maps/level6/img/43.png b/maze/task5/maps/level6/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..61efcae60cd06d393679b3891cea5a42286ca400 --- /dev/null +++ b/maze/task5/maps/level6/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6c16cf0749c5994549b95064f7e97d3ecc5645838441468b44a4fdd7574c92 +size 12270 diff --git a/maze/task5/maps/level6/img/44.png b/maze/task5/maps/level6/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..72449924e5fdd4bed20220cd3d9a09161546be1f --- /dev/null +++ b/maze/task5/maps/level6/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213a2ef2d5eb04fab02403d1b359c9fcda5a6a4a5c339127cb31093d3ce9df4b +size 13885 diff --git a/maze/task5/maps/level6/img/45.png b/maze/task5/maps/level6/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..c287be7f39d76b030f514e968dd417391aff5a1d --- /dev/null +++ b/maze/task5/maps/level6/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9890730ee54865c50f157b45ccf589671d5f569c876ada77544d17e47d82198f +size 12406 diff --git a/maze/task5/maps/level6/img/46.png b/maze/task5/maps/level6/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..10b1b9b438784b4f2bb968626cd23e01189a8fe4 --- /dev/null +++ b/maze/task5/maps/level6/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbfd54d3a852270c7556aeed32a88ac911b9c2724292e95a2d1eafe633a8cd5 +size 12247 diff --git a/maze/task5/maps/level6/img/47.png b/maze/task5/maps/level6/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..39615090f31df6781b3d64eef36937e8ce3d9851 --- /dev/null +++ b/maze/task5/maps/level6/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2352a619a6e49a908e70feffaee37dbd700f6d5c55aad49b30eb5812e9307b +size 12916 diff --git a/maze/task5/maps/level6/img/48.png b/maze/task5/maps/level6/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..e8369e701cafcd2291abc6fcb1ff00a40ad663a4 --- /dev/null +++ b/maze/task5/maps/level6/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:117a20eaa9f6156b127385e3a858846b8c7c522dc64b169ef6b46a2a3f572c2a +size 11382 diff --git a/maze/task5/maps/level6/img/49.png b/maze/task5/maps/level6/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..b00741a6d71537ef50bfdf8d80ac02d6c4671229 --- /dev/null +++ b/maze/task5/maps/level6/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a8c34b88947218c12e76f8aed6d1fae7a485cbef76d5decc024acc2847e022 +size 10399 diff --git a/maze/task5/maps/level6/img/5.png b/maze/task5/maps/level6/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6cd31184401c8617eb9d30560adc402be0a5f7e2 --- /dev/null +++ b/maze/task5/maps/level6/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937700fbbacd6f1d41ab7b37439b776947c420c7767c3f825ce373549a84d16 +size 11311 diff --git a/maze/task5/maps/level6/img/50.png b/maze/task5/maps/level6/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..123fea792fde193abcfff5ee0d6d13230aef3dbc --- /dev/null +++ b/maze/task5/maps/level6/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974b7f5f15d665520352c384205c402e1d2f461d64739bd5d84411e50de1f6e0 +size 12198 diff --git a/maze/task5/maps/level6/img/51.png b/maze/task5/maps/level6/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..b4664700b36d0607890dcdbbaf24fdf050d4a932 --- /dev/null +++ b/maze/task5/maps/level6/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f074889e290c045792cfe25c99c3a052f3a853e609d742c17339ce033f29a52c +size 12827 diff --git a/maze/task5/maps/level6/img/52.png b/maze/task5/maps/level6/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..e5aeeefc2ab32ccfc5881a9193e0f36352d5cc25 --- /dev/null +++ b/maze/task5/maps/level6/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec6978f69d4329a99bf7042a5fcd870051b966ebf6d3c6b7ef4efcb3c2c287c +size 12283 diff --git a/maze/task5/maps/level6/img/53.png b/maze/task5/maps/level6/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..81929f9d924e4018788e84181e1e7a9ed1660f06 --- /dev/null +++ b/maze/task5/maps/level6/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c331d8749a853f94e30dd0062dc83a928dff1c83856ebdf7c2e72fa8abb8ccf8 +size 11361 diff --git a/maze/task5/maps/level6/img/54.png b/maze/task5/maps/level6/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..e877eba2d7c961f3fd4e4f57577d87e10cbba6f7 --- /dev/null +++ b/maze/task5/maps/level6/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de5d50dfcab66ecc3f9915b1cf8dbe09edd78d16fca8936b978c8fa9619543c +size 11376 diff --git a/maze/task5/maps/level6/img/55.png b/maze/task5/maps/level6/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..5a72ea42c60184c964f17a14609c1a90f9e4889f --- /dev/null +++ b/maze/task5/maps/level6/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e6cdfeedcef155e024771057027532052c3e7a414c71c14ed1dccac601b8a3 +size 13909 diff --git a/maze/task5/maps/level6/img/56.png b/maze/task5/maps/level6/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c389257aee1d00429763988374ef19fc73bbdc --- /dev/null +++ b/maze/task5/maps/level6/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3956557d740cc23a5f7b5d36878f542f24c91b1d66dde1934a320fbfcff484 +size 12994 diff --git a/maze/task5/maps/level6/img/57.png b/maze/task5/maps/level6/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..4db43b4192e0365216782dd75be627d54f1f7d10 --- /dev/null +++ b/maze/task5/maps/level6/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b9317e7ee29540e917e6939ff810a66488741f4a3989b83653a7347a18bfb26 +size 14051 diff --git a/maze/task5/maps/level6/img/58.png b/maze/task5/maps/level6/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..05086ad78b90557c989a9eb6ff7c162111b782e5 --- /dev/null +++ b/maze/task5/maps/level6/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22570d82bb019075215faf051442187c2564af5ef8b03cbc24e4815b8e9ecb18 +size 13183 diff --git a/maze/task5/maps/level6/img/59.png b/maze/task5/maps/level6/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..e3cfd6488489707eaa73cf85f7f1be22523acc60 --- /dev/null +++ b/maze/task5/maps/level6/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261b0ead6661aedd4dd8e9b26d3fb89b4bc06ca67d2b2928db970de9472770f6 +size 13158 diff --git a/maze/task5/maps/level6/img/6.png b/maze/task5/maps/level6/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..afded9d325779428d17341f09c15426f1cf2fb5c --- /dev/null +++ b/maze/task5/maps/level6/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc059cbd716c76abd945250926a5f026a611216bb33d54a4851336b400f963aa +size 13081 diff --git a/maze/task5/maps/level6/img/60.png b/maze/task5/maps/level6/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..35397cd1c4f90825a421de8e71fb8e9ff5b6480b --- /dev/null +++ b/maze/task5/maps/level6/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862474b989637fd0ab6630b0d6143aca7bbc4b0505aa7d6d17ad2dd73cb68c89 +size 12014 diff --git a/maze/task5/maps/level6/img/61.png b/maze/task5/maps/level6/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..d175e3c5646e8339d03e46e70c9f6e20b2917053 --- /dev/null +++ b/maze/task5/maps/level6/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672a6bd59622e7b0b3a85c63eb00c0e4a2ef39be6b713fae301f837a1af90da1 +size 12279 diff --git a/maze/task5/maps/level6/img/62.png b/maze/task5/maps/level6/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc972e540a9fd469925c2dd5c317decf49f201e --- /dev/null +++ b/maze/task5/maps/level6/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04819a2fc2cd71e18acafc216666e69d93e33ef1b4620ad9ce41c1c5c387f147 +size 11384 diff --git a/maze/task5/maps/level6/img/63.png b/maze/task5/maps/level6/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..ea10d477561bca71e0c426cafeb3dab2c7d894a3 --- /dev/null +++ b/maze/task5/maps/level6/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d246f0cf79995e63f846dbe23a9dce738207b89c0ccdf0be6e9d783123e88b +size 10322 diff --git a/maze/task5/maps/level6/img/64.png b/maze/task5/maps/level6/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..b0213d8533dc960079494a65739f0816ccbd4992 --- /dev/null +++ b/maze/task5/maps/level6/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a0ddf6d9100018d95a6eed35376303e99a45214ea02a6b2dfc078b8990ce9b +size 12177 diff --git a/maze/task5/maps/level6/img/65.png b/maze/task5/maps/level6/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..eb26d6f3dd79ae3fe123f862cd45aa515c52e40c --- /dev/null +++ b/maze/task5/maps/level6/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694caad80889c0c79b942ebe5da49edd156b7862bd515820df89240287340f09 +size 12214 diff --git a/maze/task5/maps/level6/img/66.png b/maze/task5/maps/level6/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..67c8ec24e358c001eab843025c34597d54ec5c97 --- /dev/null +++ b/maze/task5/maps/level6/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92107639167e93ca7e755f460644b060bee0ba16c77e622f46edd0497d266412 +size 13109 diff --git a/maze/task5/maps/level6/img/67.png b/maze/task5/maps/level6/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..537eaec52ffb35a1ac5ee41a34489a11e23ade0b --- /dev/null +++ b/maze/task5/maps/level6/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1d0ecf74803e9569a63c3eca79e2e0e5c07a7b9ddb6e8bbf9565d5363f0dae +size 10392 diff --git a/maze/task5/maps/level6/img/68.png b/maze/task5/maps/level6/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..af5190560802e8e0ee1de9d4946315e5a0b046a6 --- /dev/null +++ b/maze/task5/maps/level6/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63af23106c483415c0c6a0b4e127203b1fcbfd37a6aadec75d18787becc8b26e +size 12132 diff --git a/maze/task5/maps/level6/img/69.png b/maze/task5/maps/level6/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..11c7470ef37301fa4eea158bbbe3d7475bd35e39 --- /dev/null +++ b/maze/task5/maps/level6/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a55c55bb2ab6a35257fc2de219fdd0be0160726f41dc26e9ad6f81a09f3d197 +size 13980 diff --git a/maze/task5/maps/level6/img/7.png b/maze/task5/maps/level6/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0b26670e339545fce94a2af911eba819d87fb251 --- /dev/null +++ b/maze/task5/maps/level6/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e60267d289132707be7230e080456e666f1d9c2f1d44e63226ced010fedc44 +size 13100 diff --git a/maze/task5/maps/level6/img/70.png b/maze/task5/maps/level6/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..271cf5e58659a5cf226845359d294c0880e92f1b --- /dev/null +++ b/maze/task5/maps/level6/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3739e6b1900887efe09d0b23c532eb8055e3604bb6e4c15324a2d15bf6f14c98 +size 13885 diff --git a/maze/task5/maps/level6/img/71.png b/maze/task5/maps/level6/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..298e7732e2eeb3a20a9af2dcd8f4f255a80feeb7 --- /dev/null +++ b/maze/task5/maps/level6/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7a8ac90867b7d5a1a62fe6d6966d4bfe2b82a72b237f95ac63eea3c6e48508 +size 12148 diff --git a/maze/task5/maps/level6/img/72.png b/maze/task5/maps/level6/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..26111e6fa3559822748144aa849cea2b9dd38118 --- /dev/null +++ b/maze/task5/maps/level6/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8822ac3b141e7598bc53f9c5edd6e59b0727165bc865fc5d446037e172adf7 +size 12119 diff --git a/maze/task5/maps/level6/img/73.png b/maze/task5/maps/level6/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..28cb70b71eb02d4bde7a607c5f238d25a93c9444 --- /dev/null +++ b/maze/task5/maps/level6/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89427ec919d3e1b2de42b4aed648421753c6f793a4f6c03103fce67c500d06a +size 13120 diff --git a/maze/task5/maps/level6/img/74.png b/maze/task5/maps/level6/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2300a6531c5349ae0517a0d96a13e9e07b7703 --- /dev/null +++ b/maze/task5/maps/level6/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6250e03c7ae4fc7b20c56e7ce8f0eebfa031d2ed5b210b552808453316507dff +size 12248 diff --git a/maze/task5/maps/level6/img/75.png b/maze/task5/maps/level6/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..2846ef786ca790cbe163647bc5bd77b3079e7b66 --- /dev/null +++ b/maze/task5/maps/level6/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea066004a27706e8bada0555624f371aed3061ae52eb7fe642b9fd8c86a3841 +size 12139 diff --git a/maze/task5/maps/level6/img/76.png b/maze/task5/maps/level6/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..40d3726d4d7a7ae3cd5d27d4985a75891bb9a300 --- /dev/null +++ b/maze/task5/maps/level6/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984debb25c6da9b5c892afc4264f58238370df8ecea8138c3f5b21a975b61f16 +size 12171 diff --git a/maze/task5/maps/level6/img/77.png b/maze/task5/maps/level6/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..2d311472d6b9ed03b14ea133eb7cd7c3918df152 --- /dev/null +++ b/maze/task5/maps/level6/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e85c78619b3787ad0efd744c8b274e6328cd3e63f966d8283f788071915d5fe +size 14060 diff --git a/maze/task5/maps/level6/img/78.png b/maze/task5/maps/level6/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..99f0e104c248433040862ba173e066eee05d6467 --- /dev/null +++ b/maze/task5/maps/level6/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f62da16b91d3167e7f7b8c304fb5a10b4d553038280ffdb37f611157eb8cf6 +size 11392 diff --git a/maze/task5/maps/level6/img/79.png b/maze/task5/maps/level6/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..f6e73fa282c52b3184d0050274b58ff48c9474df --- /dev/null +++ b/maze/task5/maps/level6/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91778daccf1106d86246eeb52937444e9f09f28f44adffcd05f434d5687d5da6 +size 12981 diff --git a/maze/task5/maps/level6/img/8.png b/maze/task5/maps/level6/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..659918a14120f6ba882f0f96d696a6a85fee7c2c --- /dev/null +++ b/maze/task5/maps/level6/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52966406a78c8aae4b999eb8cd3b063804d2d45f94dcb6386e83005667c03b83 +size 12113 diff --git a/maze/task5/maps/level6/img/80.png b/maze/task5/maps/level6/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..e616221167ccbf855bd5b7d70c1d1d5ed767901c --- /dev/null +++ b/maze/task5/maps/level6/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc7e9dc4e68e12344c1bcd6435d9ab9a8c8a017ced43a666e5a80c98badebdb +size 10400 diff --git a/maze/task5/maps/level6/img/81.png b/maze/task5/maps/level6/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..921857e773dfe2780ff34e681e89a3aa72c7b70d --- /dev/null +++ b/maze/task5/maps/level6/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725d7ff6ff02569f0d466ffc31f946731e9f21fd5eb2cd0dbff2670283301d5a +size 12965 diff --git a/maze/task5/maps/level6/img/82.png b/maze/task5/maps/level6/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..e147b0f7dbfc7c6e7b35774ad33301f150598ab4 --- /dev/null +++ b/maze/task5/maps/level6/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c8ca31b6660af9232cc15001a7a011b38ea15987ea17180724ae7b36caa4a4 +size 12977 diff --git a/maze/task5/maps/level6/img/83.png b/maze/task5/maps/level6/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..a69c76cdcf9c6b6b69f9447c657fe4b8bcc85ba2 --- /dev/null +++ b/maze/task5/maps/level6/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1a835286aa28e382972ceb96134ca488bc7eb1bf02f2c7b1f9be48e1f2a673 +size 10474 diff --git a/maze/task5/maps/level6/img/84.png b/maze/task5/maps/level6/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..b73a7b59508c51d0aa76e1f6adaa421bb16c4670 --- /dev/null +++ b/maze/task5/maps/level6/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31aa1166d1f30cc5a29e6667d3c13d10ad49f13d50959070a133fb0cc88d45f +size 11337 diff --git a/maze/task5/maps/level6/img/85.png b/maze/task5/maps/level6/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..72c996b248dc13bad78642de91fb81aa45d11b0e --- /dev/null +++ b/maze/task5/maps/level6/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498144531c8481ecfe300db91a9d5153869d5f0ee6d3dba96a76155ccd5e0463 +size 11283 diff --git a/maze/task5/maps/level6/img/86.png b/maze/task5/maps/level6/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..1fc334dca86f543b5f3abf29ebe7a1c0b6d42d01 --- /dev/null +++ b/maze/task5/maps/level6/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0280431ac6986b4cb5cca20422646cdde2992f47694a91e2515aa1a66d9940db +size 12163 diff --git a/maze/task5/maps/level6/img/87.png b/maze/task5/maps/level6/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..f21902434e86abff435732cfccd37c78cf2de4ec --- /dev/null +++ b/maze/task5/maps/level6/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce4d77108c52df183bc2c7ad723d83048465f91d15518527f3b0fd7ee27fc4a +size 12141 diff --git a/maze/task5/maps/level6/img/88.png b/maze/task5/maps/level6/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..f61ce46130882ed7f0e69802804df0358041f45b --- /dev/null +++ b/maze/task5/maps/level6/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef9c0f931634a2d7408f0ffcd4b4f0d62c563f8321609dbc5726f5e3ae7d4f8 +size 11268 diff --git a/maze/task5/maps/level6/img/89.png b/maze/task5/maps/level6/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..cf3c11b2256e41ba8283395a2f1d6c744d816e6f --- /dev/null +++ b/maze/task5/maps/level6/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ba948575eded0b80864733466863f62d748779b161967176da1edc8f7bd27b +size 13762 diff --git a/maze/task5/maps/level6/img/9.png b/maze/task5/maps/level6/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ac79a4f95aa84e60a0354200384d4ae2451be3e7 --- /dev/null +++ b/maze/task5/maps/level6/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbe91419d58d9af569c6dd6eedd709900e099c1b3ba21a7c4b8dc1549e30cc2 +size 11406 diff --git a/maze/task5/maps/level6/img/90.png b/maze/task5/maps/level6/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..66e80cce1c48cd7cb7ebe1435dfb6fb935b9f4ee --- /dev/null +++ b/maze/task5/maps/level6/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0409adde66a90fc0186857f4ce073c3b4c7ec48e2de5c7d1696f43ff46283785 +size 12004 diff --git a/maze/task5/maps/level6/img/91.png b/maze/task5/maps/level6/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..1458609391b78f226462ffa4634b8273bfad2b1d --- /dev/null +++ b/maze/task5/maps/level6/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658301b72b2e1ba14e9c05208214ba03e7517658369591307ed4755c18da9e9a +size 12229 diff --git a/maze/task5/maps/level6/img/92.png b/maze/task5/maps/level6/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..e4a1857459c1f6aa915d42a85040a21ced25b27b --- /dev/null +++ b/maze/task5/maps/level6/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92aa78868af3d620bb439519afce387ada3c705f51833d8e792b627f2f85f3c +size 12299 diff --git a/maze/task5/maps/level6/img/93.png b/maze/task5/maps/level6/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..013a5d40f4e496ab5dbc40a79facc8a4847ab2ec --- /dev/null +++ b/maze/task5/maps/level6/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a28315cbd0a823af26ae8d4587b853d8437a750a2702478c3b8e5afbae5dad +size 11369 diff --git a/maze/task5/maps/level6/img/94.png b/maze/task5/maps/level6/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..50316b6e0bb97fdf61d5931db6bed0a8d4ce7202 --- /dev/null +++ b/maze/task5/maps/level6/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cedcced00ce0458ccf06e426665d241cab17c072eeaf0c158c3595bc91b0d3e +size 11308 diff --git a/maze/task5/maps/level6/img/95.png b/maze/task5/maps/level6/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..b0bc4affef736422485cfb9cc196fdf6e01e1e62 --- /dev/null +++ b/maze/task5/maps/level6/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f633a7fc20594863dc8990baad5b9a697919a3df17f1133bb5aaab14b9e2ee89 +size 12090 diff --git a/maze/task5/maps/level6/img/96.png b/maze/task5/maps/level6/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..b42a2ff21f09ab7d1250e2058531ace802ed60ef --- /dev/null +++ b/maze/task5/maps/level6/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ded45183d7ff9280556eeefb0c760c25140bf3c026d84bfaa7a1770aa577ec0 +size 10429 diff --git a/maze/task5/maps/level6/img/97.png b/maze/task5/maps/level6/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..26094ad83fc593a3137c2743282c49c2c98d6140 --- /dev/null +++ b/maze/task5/maps/level6/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2962b4d0e16131adc7764c758456b440a6663d63476e8575e2a46f0f2205f5 +size 13125 diff --git a/maze/task5/maps/level6/img/98.png b/maze/task5/maps/level6/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..ebae2fb5e574fe2d9487564f31ef0056b088e72c --- /dev/null +++ b/maze/task5/maps/level6/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36f8d632c2d825f000cf2df9619b57357ce929457796128b4d14bd7c89bf323 +size 11348 diff --git a/maze/task5/maps/level6/img/99.png b/maze/task5/maps/level6/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..b963884b391ed08c69205dd889958401a1fb3bd1 --- /dev/null +++ b/maze/task5/maps/level6/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942a638cb9ac97faf4c11fa290b8560c42c1a18466bb3eac74e68caf4f8bfd71 +size 13277 diff --git a/maze/task5/maps/level6/pure_text/0.txt b/maze/task5/maps/level6/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d328f8762b6562fb5193d436ef15d8a0d029ca0 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 4; Row 6, Column 4; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/1.txt b/maze/task5/maps/level6/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..92caf5f1c0980e69e97046b12c133fb84c572bf1 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 5; Row 3, Column 1; Row 4, Column 1; Row 5, Column 5; Row 6, Column 1; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/10.txt b/maze/task5/maps/level6/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..9be1ad14306e433a57cf64a02ce4b47d9a65e9bc --- /dev/null +++ b/maze/task5/maps/level6/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 3, Column 6; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/11.txt b/maze/task5/maps/level6/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4c0f79e450d1a17e673d0cb7ebf1ec5673c27dd --- /dev/null +++ b/maze/task5/maps/level6/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 3, Column 1; Row 4, Column 5; Row 5, Column 4; Row 5, Column 6; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/12.txt b/maze/task5/maps/level6/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..e76c6b48d4366e0c814e723a188b05b535d2110a --- /dev/null +++ b/maze/task5/maps/level6/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 3, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 6, Column 1; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/13.txt b/maze/task5/maps/level6/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..520b3fd9204f4e25512ce5376fbc9a798adb4f15 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 6; Row 3, Column 1; Row 3, Column 5; Row 4, Column 6; Row 6, Column 5; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/14.txt b/maze/task5/maps/level6/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..e171bd4d2b9145a35639ccbe8493ca1ba024c746 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 4, Column 2; Row 4, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/15.txt b/maze/task5/maps/level6/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ca95f5280359eb7d79dc93522a468a12782b847 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 4; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; Row 3, Column 3; Row 4, Column 3; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/16.txt b/maze/task5/maps/level6/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..db4e8f97e71d88a7cdfbcd877c9e0a804e601407 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/17.txt b/maze/task5/maps/level6/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d36386a0109417a589afa4c22a321e763585156 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 3, Column 4; Row 4, Column 3; Row 6, Column 1; Row 6, Column 2; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/18.txt b/maze/task5/maps/level6/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..45699de8424b1e64290b476dc523df545dbacd1f --- /dev/null +++ b/maze/task5/maps/level6/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 5, Column 5; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/19.txt b/maze/task5/maps/level6/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a2baccf96674538961ad0ae5c06cac7ba013643 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/2.txt b/maze/task5/maps/level6/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..9981fb337a25cb182222cdfd8da7e9ee8d047220 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 2, Column 5; Row 4, Column 3; Row 6, Column 3; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/20.txt b/maze/task5/maps/level6/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..079f50992fbc794abb91690ab0dbdd0c66ed797b --- /dev/null +++ b/maze/task5/maps/level6/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 2; Row 2, Column 4; Row 3, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 5, Column 6; Row 6, Column 5; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/21.txt b/maze/task5/maps/level6/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..678d84d1461066b990eee59b80a002dcf7383034 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 1; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/22.txt b/maze/task5/maps/level6/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae2b86ba3ec6fcd184368947d684ae5ccfcf5041 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 6; Row 2, Column 5; Row 3, Column 1; Row 4, Column 4; Row 5, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/23.txt b/maze/task5/maps/level6/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b68a6f5ca4b5d56463c82390e2debd299921e6d --- /dev/null +++ b/maze/task5/maps/level6/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 4, Column 4; Row 6, Column 1; Row 6, Column 5; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/24.txt b/maze/task5/maps/level6/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..c144168010c4c3a0acf9289f4ce8a1b2034e231c --- /dev/null +++ b/maze/task5/maps/level6/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 5; Row 6, Column 1; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/25.txt b/maze/task5/maps/level6/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dd7253fb871c519b61dad5d3ff45165fe098b61 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 5, Column 3; Row 6, Column 6; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/26.txt b/maze/task5/maps/level6/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..229b88eca9b69fe4df1f7a54e2959c87b805fd8d --- /dev/null +++ b/maze/task5/maps/level6/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 6, Column 5; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/27.txt b/maze/task5/maps/level6/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..5402fd29554b2c61079fa27d2c1098e40d2a405e --- /dev/null +++ b/maze/task5/maps/level6/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 4; Row 6, Column 4; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/28.txt b/maze/task5/maps/level6/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..b119ba1a64b947a60d0b77472fcb96d4e30b3da9 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 2, Column 3; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/29.txt b/maze/task5/maps/level6/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..06cd19671e888523ff16eca44f1e3f3ea872d54b --- /dev/null +++ b/maze/task5/maps/level6/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 5; Row 3, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/3.txt b/maze/task5/maps/level6/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..08e25bef9c66070623d36d3de9e9789d6d097587 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 2, Column 2; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 6, Column 4; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/30.txt b/maze/task5/maps/level6/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d7f2ff8a16a126116ec3feb63001f2a5bd2a833 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/31.txt b/maze/task5/maps/level6/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..78924848ae854fe272285e7d58c03786304ca816 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 3, Column 5; Row 4, Column 5; Row 4, Column 6; Row 5, Column 2; Row 5, Column 6; Row 6, Column 3; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/32.txt b/maze/task5/maps/level6/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..76504dab5cb81b07436ffb2f3e12476099c00cd4 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 6; Row 3, Column 4; Row 4, Column 4; Row 6, Column 3; Row 6, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/33.txt b/maze/task5/maps/level6/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..25cc9582c92280749f062ddb66223154da64047b --- /dev/null +++ b/maze/task5/maps/level6/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/34.txt b/maze/task5/maps/level6/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..25e5a18e52a1815a3f17c0170cb7a917f7f9475d --- /dev/null +++ b/maze/task5/maps/level6/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 4, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 4; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/35.txt b/maze/task5/maps/level6/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a71b45ab5a72e5b4043227396d408e13600e71d --- /dev/null +++ b/maze/task5/maps/level6/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 2, Column 1; Row 4, Column 2; Row 4, Column 6; Row 5, Column 1; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/36.txt b/maze/task5/maps/level6/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..09e224cd5a53d7cb6c9fc01f41dc9f69b9209558 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 3, Column 2; Row 4, Column 1; Row 4, Column 3; Row 4, Column 6; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/37.txt b/maze/task5/maps/level6/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..94c928ed511973eeb6715b4b5a1c93e9e439e277 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 1; Row 4, Column 5; Row 5, Column 1; Row 6, Column 1; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/38.txt b/maze/task5/maps/level6/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7d0b8d78b27a88a48483639bf3569bd637edea4 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 2, Column 3; Row 3, Column 3; Row 4, Column 2; Row 5, Column 6; Row 6, Column 1; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/39.txt b/maze/task5/maps/level6/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca8b8a3bf39e4fcd7c8da3667dccc60b26305a4e --- /dev/null +++ b/maze/task5/maps/level6/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 3, Column 2; Row 4, Column 1; Row 4, Column 3; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/4.txt b/maze/task5/maps/level6/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d42d5d58687d12b6422fb525013761882d688f8 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/40.txt b/maze/task5/maps/level6/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..249cd3f4f33f9e6d6686231678c4fc038bd42030 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 5; Row 4, Column 6; Row 5, Column 3; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/41.txt b/maze/task5/maps/level6/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..efacc0a5d4a2b503cd99267f8f269b75a86337f4 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 4, Column 1; Row 5, Column 6; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/42.txt b/maze/task5/maps/level6/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d0032d877fa82fbac503f5f7fe1ab60c4d6baeb --- /dev/null +++ b/maze/task5/maps/level6/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 6; Row 2, Column 2; Row 2, Column 6; Row 3, Column 3; Row 3, Column 6; Row 5, Column 4; Row 6, Column 1; Row 6, Column 4; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/43.txt b/maze/task5/maps/level6/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..19dbc367bc0a00aa4ff5e88b9f47b9bbaa3e80fe --- /dev/null +++ b/maze/task5/maps/level6/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 2, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 5; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/44.txt b/maze/task5/maps/level6/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..4df13263a964fb14507e650142a742bb9b51c911 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 5, Column 5; Row 6, Column 3; Row 6, Column 5; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/45.txt b/maze/task5/maps/level6/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1e38a53b8063a175ccdd3affd9e6f2fd42e5859 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 4; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 5, Column 6; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/46.txt b/maze/task5/maps/level6/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0aa857d634ea638f5605e5d07ce346ca7cab8fe --- /dev/null +++ b/maze/task5/maps/level6/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 3, Column 4; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/47.txt b/maze/task5/maps/level6/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b8536f8bb5243953e0e1a1524c68408993ec76b --- /dev/null +++ b/maze/task5/maps/level6/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 5; Row 3, Column 6; Row 4, Column 4; Row 5, Column 5; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/48.txt b/maze/task5/maps/level6/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac88f6a4765b659e8073a7ee9498e9371df90cb6 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 2, Column 3; Row 3, Column 1; Row 3, Column 4; Row 5, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/49.txt b/maze/task5/maps/level6/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..1433d457671dca23dba02bbcd74ca91bf3ec34ca --- /dev/null +++ b/maze/task5/maps/level6/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 4; Row 6, Column 5; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/5.txt b/maze/task5/maps/level6/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c8d5c45400fdf5666b648fa8deaa48a4ae4e970 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 5; Row 3, Column 4; Row 6, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/50.txt b/maze/task5/maps/level6/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..46ca2a02f8768575ab98e3b8c80a03cc6647f19b --- /dev/null +++ b/maze/task5/maps/level6/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 3, Column 1; Row 5, Column 6; Row 6, Column 1; Row 6, Column 4; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/51.txt b/maze/task5/maps/level6/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..83ccebec3244da489e5d89a64bc95e87f42cd1ce --- /dev/null +++ b/maze/task5/maps/level6/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 1; Row 3, Column 5; Row 4, Column 3; Row 5, Column 1; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/52.txt b/maze/task5/maps/level6/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7aa63de8df3f6f035e24de2a196d703a2a4d408 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 3, Column 3; Row 3, Column 6; Row 4, Column 3; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; Row 6, Column 1; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/53.txt b/maze/task5/maps/level6/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..e48a190749efc58d3baac79cc74556fa51bbd014 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 3, Column 4; Row 4, Column 4; Row 4, Column 6; Row 6, Column 1; Row 6, Column 4; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/54.txt b/maze/task5/maps/level6/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b53ed4d281dc4aed59f0291ef05e774faa04b96 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 5; Row 4, Column 3; Row 5, Column 3; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/55.txt b/maze/task5/maps/level6/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cf33de10c0d33db462ad907d24368428ac360d9 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 5, Column 6; Row 6, Column 5; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/56.txt b/maze/task5/maps/level6/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..d72786fca32b0c743daef396961e27beb7596383 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 4, Column 2; Row 5, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/57.txt b/maze/task5/maps/level6/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..17fc928e4bf70634f2fcf18f30f1ce723c03fd8f --- /dev/null +++ b/maze/task5/maps/level6/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 3, Column 2; Row 4, Column 4; Row 5, Column 2; Row 5, Column 6; Row 6, Column 3; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/58.txt b/maze/task5/maps/level6/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..d01ec65423e4c9ec9277caa1f309ee25268aa8ce --- /dev/null +++ b/maze/task5/maps/level6/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 5; Row 3, Column 6; Row 4, Column 4; Row 5, Column 1; Row 5, Column 5; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/59.txt b/maze/task5/maps/level6/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd89e6b912a7da48e9e171fcac63f9c38e7fe35d --- /dev/null +++ b/maze/task5/maps/level6/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 4; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/6.txt b/maze/task5/maps/level6/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..20bfa1b02eef44fe91bbf239bcf6190980d2937c --- /dev/null +++ b/maze/task5/maps/level6/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 1; Row 3, Column 5; Row 4, Column 3; Row 6, Column 5; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/60.txt b/maze/task5/maps/level6/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..85abc8a293137f3299c3f7c5751afb73b0b0cc1f --- /dev/null +++ b/maze/task5/maps/level6/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 4, Column 3; Row 5, Column 5; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/61.txt b/maze/task5/maps/level6/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0c183c147cd19eff92fbbfb8f98ac83b1ff8fa8 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 4; Row 3, Column 6; Row 6, Column 3; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/62.txt b/maze/task5/maps/level6/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff6b5ede539113e186a4bd631d3ef018562d9aa0 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 2, Column 2; Row 3, Column 4; Row 3, Column 5; Row 5, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/63.txt b/maze/task5/maps/level6/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1cae75e7bffe3d4ff008a93d34a537ccd7054e8 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 5, Column 5; Row 6, Column 5; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/64.txt b/maze/task5/maps/level6/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8f439c8753660d8ceef56f25fdbb4a2f423f575 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 5; Row 3, Column 2; Row 3, Column 6; Row 5, Column 5; Row 5, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/65.txt b/maze/task5/maps/level6/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..ef582826234ab40b227f5d614560a4efee9e2b69 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 3; Row 3, Column 1; Row 4, Column 2; Row 4, Column 3; Row 5, Column 4; Row 5, Column 6; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/66.txt b/maze/task5/maps/level6/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d56b06165562efb47dba58396acf2608b11e614d --- /dev/null +++ b/maze/task5/maps/level6/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 2; Row 3, Column 2; Row 4, Column 2; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/67.txt b/maze/task5/maps/level6/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..aed7aeae76bf40c1f509abdd8dbc4e4e599f9606 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 2, Column 1; Row 3, Column 4; Row 3, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/68.txt b/maze/task5/maps/level6/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..70da938c9f7da2014496492f69826b4b66577da6 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 6, Column 1; Row 6, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/69.txt b/maze/task5/maps/level6/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e36696c22d12b66d2a814d3e4bbd568b06349f8 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 3; Row 3, Column 1; Row 3, Column 6; Row 4, Column 6; Row 5, Column 2; Row 6, Column 1; Row 6, Column 6; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/7.txt b/maze/task5/maps/level6/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cc7388729e0beba8ffefbfbbfac8ce1a172de2d --- /dev/null +++ b/maze/task5/maps/level6/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 4; Row 5, Column 4; Row 6, Column 3; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/70.txt b/maze/task5/maps/level6/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..f447775de64a76bc2b5beff46ffdb562bf641028 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 3; Row 3, Column 1; Row 4, Column 3; Row 4, Column 4; Row 5, Column 4; Row 6, Column 1; Row 6, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/71.txt b/maze/task5/maps/level6/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..09298b6dc943eecaae3f12dbea2ebfe5720de76e --- /dev/null +++ b/maze/task5/maps/level6/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 6; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 5; Row 6, Column 4; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/72.txt b/maze/task5/maps/level6/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..6536957f00582ce85babfd9d8c01b7dc0c717de8 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 2, Column 6; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/73.txt b/maze/task5/maps/level6/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..71889979c44142c8307ce646ee5e49f1f7c00e08 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 3, Column 1; Row 3, Column 6; Row 4, Column 2; Row 5, Column 1; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/74.txt b/maze/task5/maps/level6/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e155d8089edf7194a4c4f7c7baadbf3aac39d29 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 4, Column 3; Row 5, Column 5; Row 6, Column 2; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/75.txt b/maze/task5/maps/level6/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..6efdf85b0dc8610428fbfb8240c9a0591254a756 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 5; Row 4, Column 4; Row 5, Column 1; Row 5, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/76.txt b/maze/task5/maps/level6/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5873811c27d013ecad6ffcab63542f82f36676f --- /dev/null +++ b/maze/task5/maps/level6/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 4, Column 1; Row 4, Column 6; Row 5, Column 4; Row 6, Column 2; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/77.txt b/maze/task5/maps/level6/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..d218dc329049d3e9dcc4c7fe1686055707d7c5c1 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 6; Row 3, Column 2; Row 3, Column 5; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 6, Column 2; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/78.txt b/maze/task5/maps/level6/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..7281c5ff6ea1916e4595f107df4def89c2e56911 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 3; Row 3, Column 4; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/79.txt b/maze/task5/maps/level6/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bb394a42bb386c942c3876da93b03afecd2ffa6 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 4; Row 2, Column 6; Row 3, Column 5; Row 4, Column 2; Row 5, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/8.txt b/maze/task5/maps/level6/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c3c7b09242468ff54d7512b9f45e42a7e9078c9 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 6; Row 3, Column 1; Row 4, Column 2; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/80.txt b/maze/task5/maps/level6/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..0975c3d2ecc779e4ff34cb4e8b80b1fe3a8a56fe --- /dev/null +++ b/maze/task5/maps/level6/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 3, Column 3; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/81.txt b/maze/task5/maps/level6/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d3cdf03b071f770e3edaa78f19421ea795891b --- /dev/null +++ b/maze/task5/maps/level6/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 6; Row 4, Column 3; Row 5, Column 5; Row 5, Column 6; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/82.txt b/maze/task5/maps/level6/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..8aa16c3edac65c6439b141ca26cd2717ea8fd6dc --- /dev/null +++ b/maze/task5/maps/level6/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 3, Column 6; Row 4, Column 2; Row 4, Column 6; Row 5, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/83.txt b/maze/task5/maps/level6/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..bfd3ac56b6d34d2e02f90672e6b261c78c578f91 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 6, Column 6; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/84.txt b/maze/task5/maps/level6/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f663a85588f23d93b5e8c112fddf134eb43768c --- /dev/null +++ b/maze/task5/maps/level6/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 2, Column 5; Row 5, Column 4; Row 6, Column 5; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/85.txt b/maze/task5/maps/level6/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c35c53a9bc24b87312ec331e0480cc56d1e21ee --- /dev/null +++ b/maze/task5/maps/level6/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 2, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/86.txt b/maze/task5/maps/level6/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a1dc22f56b7f6814fdf6979d0206d19602f503a --- /dev/null +++ b/maze/task5/maps/level6/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 3, Column 5; Row 4, Column 6; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/87.txt b/maze/task5/maps/level6/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..26f8cc94e75f0b2160f8c5838f8b796e3cfc889e --- /dev/null +++ b/maze/task5/maps/level6/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 1; Row 4, Column 1; Row 6, Column 2; Row 6, Column 5; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/88.txt b/maze/task5/maps/level6/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..b14a5d9ba29f19c14deab51a670a2019f17fd49e --- /dev/null +++ b/maze/task5/maps/level6/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 6, Column 1; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/89.txt b/maze/task5/maps/level6/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1c73477a93d36aed034359cc0fb5f12825d083b --- /dev/null +++ b/maze/task5/maps/level6/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 6; Row 3, Column 3; Row 3, Column 6; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 6, Column 6; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/9.txt b/maze/task5/maps/level6/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5287f1b54d4b5f953bae1f65dedb2a5a4a36bd7 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 5; Row 4, Column 2; Row 4, Column 6; Row 6, Column 2; Row 6, Column 6; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/90.txt b/maze/task5/maps/level6/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bb2e1b1d4860a1bffd8ea895e288b169d36c461 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 6; Row 4, Column 2; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/91.txt b/maze/task5/maps/level6/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..1382f30ddc369b96b43741932af885953d4b13b8 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 4; Row 5, Column 1; Row 6, Column 3; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/92.txt b/maze/task5/maps/level6/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..bb84c35cd82c106f424ee840375c2f2099f81794 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 2, Column 2; Row 3, Column 1; Row 3, Column 3; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/93.txt b/maze/task5/maps/level6/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaa2f816517dc513ecfccb52e5053dce029ad49b --- /dev/null +++ b/maze/task5/maps/level6/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 6, Column 5; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/94.txt b/maze/task5/maps/level6/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..44d3edb6d60e1b88e20f31ef88f75d300fbbcff3 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 4, Column 2; Row 4, Column 3; Row 5, Column 3; Row 5, Column 5; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/95.txt b/maze/task5/maps/level6/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..42be22a0e796ce9990b1361e08be0b58bd8685ae --- /dev/null +++ b/maze/task5/maps/level6/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 2, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 1; Row 6, Column 1; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/96.txt b/maze/task5/maps/level6/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5328947118913334151acdd424c549c6b9f7339 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 3, Column 3; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/97.txt b/maze/task5/maps/level6/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9f13b26d11a3599bffee5d2cc8b8ed9d030dcf0 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 2, Column 2; Row 3, Column 2; Row 3, Column 4; Row 4, Column 4; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 6, Column 4; Row 6, Column 5; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/98.txt b/maze/task5/maps/level6/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..be72bd221f31059a526db8dede7ea8cd9396956d --- /dev/null +++ b/maze/task5/maps/level6/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 2, Column 2; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level6/pure_text/99.txt b/maze/task5/maps/level6/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2dae7244bbe6d5d3437c05bb0ca1ed194413132 --- /dev/null +++ b/maze/task5/maps/level6/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 6x6 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 5; Row 3, Column 2; Row 3, Column 4; Row 4, Column 2; Row 4, Column 5; Row 5, Column 3; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level6/table/0.txt b/maze/task5/maps/level6/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..960c482f2c9ad0f44cf2136103c939c27ddea88b --- /dev/null +++ b/maze/task5/maps/level6/table/0.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | * | # | _ | # | +| Row 5 | _ | _ | _ | # | _ | @ | +| Row 6 | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level6/table/1.txt b/maze/task5/maps/level6/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..25c246dfc73d96d258f856a3134ff95d21dd02ea --- /dev/null +++ b/maze/task5/maps/level6/table/1.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | # | @ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/10.txt b/maze/task5/maps/level6/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..a81df86bd094ccf49e64492e729705e9fa160fe3 --- /dev/null +++ b/maze/task5/maps/level6/table/10.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/11.txt b/maze/task5/maps/level6/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b18219410e727c0439a08106b4d636303ecf3f7 --- /dev/null +++ b/maze/task5/maps/level6/table/11.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | @ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/12.txt b/maze/task5/maps/level6/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6494e9c5f745e3e5fdf00d0332e1dadb5340085 --- /dev/null +++ b/maze/task5/maps/level6/table/12.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | @ | diff --git a/maze/task5/maps/level6/table/13.txt b/maze/task5/maps/level6/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e86d2ddad95a776547d2b517c69362a95fea835 --- /dev/null +++ b/maze/task5/maps/level6/table/13.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | * | # | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/14.txt b/maze/task5/maps/level6/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6e0b65114076591210e92a26d2e71b5d5ab54a1 --- /dev/null +++ b/maze/task5/maps/level6/table/14.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | # | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | * | +| Row 4 | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | @ | # | _ | diff --git a/maze/task5/maps/level6/table/15.txt b/maze/task5/maps/level6/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..a502da1c51872160ab411648b1597cbbe2596a7a --- /dev/null +++ b/maze/task5/maps/level6/table/15.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | # | +| Row 3 | # | _ | # | _ | _ | _ | +| Row 4 | * | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/16.txt b/maze/task5/maps/level6/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a7eddd3927e0f2fe251c03d1b32325e1929a62 --- /dev/null +++ b/maze/task5/maps/level6/table/16.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | diff --git a/maze/task5/maps/level6/table/17.txt b/maze/task5/maps/level6/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a3b96613c988fb871174dd5cb4fe3f0cd3eae4e --- /dev/null +++ b/maze/task5/maps/level6/table/17.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | * | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/18.txt b/maze/task5/maps/level6/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1138fa754696bab6a937b58e13f26fbd267d627 --- /dev/null +++ b/maze/task5/maps/level6/table/18.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | @ | _ | _ | # | _ | +| Row 6 | _ | * | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/19.txt b/maze/task5/maps/level6/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8607cf939e263bfb3a9d585bf78052e8749da45 --- /dev/null +++ b/maze/task5/maps/level6/table/19.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | _ | @ | # | _ | +| Row 6 | _ | _ | _ | * | _ | _ | diff --git a/maze/task5/maps/level6/table/2.txt b/maze/task5/maps/level6/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..ff32128ccf61b6d1bbba95caaea858ce4bcb2809 --- /dev/null +++ b/maze/task5/maps/level6/table/2.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | # | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/20.txt b/maze/task5/maps/level6/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..311027cbc4c48b45a04c2d0b38fdf7ab1cce196e --- /dev/null +++ b/maze/task5/maps/level6/table/20.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | * | +| Row 2 | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | @ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/21.txt b/maze/task5/maps/level6/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e835051f75b4bed8e61cc3c1893829a06bc6860 --- /dev/null +++ b/maze/task5/maps/level6/table/21.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | # | _ | # | # | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/22.txt b/maze/task5/maps/level6/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9a15ee7807ef0f73d69d145fb44672e0b3a0da2 --- /dev/null +++ b/maze/task5/maps/level6/table/22.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/23.txt b/maze/task5/maps/level6/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..294290baca515a33dd491a46011c2c2049755f1a --- /dev/null +++ b/maze/task5/maps/level6/table/23.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | * | diff --git a/maze/task5/maps/level6/table/24.txt b/maze/task5/maps/level6/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7cc7f23ae9c2ec7688bbd18af93ed84c0d8ef12 --- /dev/null +++ b/maze/task5/maps/level6/table/24.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | # | # | # | _ | # | @ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | * | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/25.txt b/maze/task5/maps/level6/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..db36d83340ad5771f0cd9c09a683080729b2a3a9 --- /dev/null +++ b/maze/task5/maps/level6/table/25.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | _ | @ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level6/table/26.txt b/maze/task5/maps/level6/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fee275cd0efa2e3f07172f2e542650beed9cfa0 --- /dev/null +++ b/maze/task5/maps/level6/table/26.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | # | * | +| Row 2 | @ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/27.txt b/maze/task5/maps/level6/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..35716f9d92cd3c9197cc0827e371a13fa69c586c --- /dev/null +++ b/maze/task5/maps/level6/table/27.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level6/table/28.txt b/maze/task5/maps/level6/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..e90a3b62659cd4fcc63a3a642485282ca0981e2d --- /dev/null +++ b/maze/task5/maps/level6/table/28.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | @ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/29.txt b/maze/task5/maps/level6/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..238dec86c740e8f693171b4b512a63277c0f319f --- /dev/null +++ b/maze/task5/maps/level6/table/29.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | * | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | @ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/3.txt b/maze/task5/maps/level6/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..26a9644b45a8ed6339406cc33c68a44cae4fd7f5 --- /dev/null +++ b/maze/task5/maps/level6/table/3.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | @ | _ | # | _ | +| Row 6 | # | * | _ | # | _ | _ | diff --git a/maze/task5/maps/level6/table/30.txt b/maze/task5/maps/level6/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ac89ba722f2a22f6fc68efd50a58e08ac6c88d3 --- /dev/null +++ b/maze/task5/maps/level6/table/30.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | * | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | # | _ | +| Row 5 | # | # | _ | _ | # | _ | +| Row 6 | # | # | # | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/31.txt b/maze/task5/maps/level6/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecf638e5303831b08b2bfe24efd60e231c5904c0 --- /dev/null +++ b/maze/task5/maps/level6/table/31.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | # | +| Row 5 | _ | # | _ | _ | * | # | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/32.txt b/maze/task5/maps/level6/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5101655bde95ac83688ab163248134b699ac779 --- /dev/null +++ b/maze/task5/maps/level6/table/32.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | diff --git a/maze/task5/maps/level6/table/33.txt b/maze/task5/maps/level6/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..71191a46b4f86c9df2a42ab23c14d2c598b46a0e --- /dev/null +++ b/maze/task5/maps/level6/table/33.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | * | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | @ | _ | +| Row 5 | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | # | _ | # | _ | diff --git a/maze/task5/maps/level6/table/34.txt b/maze/task5/maps/level6/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5df99188109ce620fc514dbf47e1bcf21b7ad0f --- /dev/null +++ b/maze/task5/maps/level6/table/34.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | # | # | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | # | _ | +| Row 5 | _ | _ | _ | # | @ | # | +| Row 6 | _ | _ | * | _ | _ | # | diff --git a/maze/task5/maps/level6/table/35.txt b/maze/task5/maps/level6/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab9946954b6d2a4e01dbc4338287825e8ce4b5a6 --- /dev/null +++ b/maze/task5/maps/level6/table/35.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | # | _ | @ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/36.txt b/maze/task5/maps/level6/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..10610129946d47b40220f6ef8a22700923fffec4 --- /dev/null +++ b/maze/task5/maps/level6/table/36.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | # | +| Row 5 | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/37.txt b/maze/task5/maps/level6/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..c49e562672625a72a29dd20439900bb074b90d08 --- /dev/null +++ b/maze/task5/maps/level6/table/37.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | @ | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | * | _ | diff --git a/maze/task5/maps/level6/table/38.txt b/maze/task5/maps/level6/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2bf37033a101beac7532b2ef7f71ed4eef64869 --- /dev/null +++ b/maze/task5/maps/level6/table/38.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | # | +| Row 6 | # | _ | _ | * | _ | _ | diff --git a/maze/task5/maps/level6/table/39.txt b/maze/task5/maps/level6/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..605b7b1decde1c1cc2bf63bddd6df2ab063b4578 --- /dev/null +++ b/maze/task5/maps/level6/table/39.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | * | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/4.txt b/maze/task5/maps/level6/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..13dc241eff205e44771a1e0d3a881fd46995e1b9 --- /dev/null +++ b/maze/task5/maps/level6/table/4.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/40.txt b/maze/task5/maps/level6/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..f78412ec1009b796056aa32fa27ed55e23255d13 --- /dev/null +++ b/maze/task5/maps/level6/table/40.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | @ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | * | _ | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/41.txt b/maze/task5/maps/level6/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..c816a3c61dfb898cbfa9e04190858be9bb085107 --- /dev/null +++ b/maze/task5/maps/level6/table/41.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | # | # | diff --git a/maze/task5/maps/level6/table/42.txt b/maze/task5/maps/level6/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..5899abdb6fd34cb81b40fba41789bebbb422c3b7 --- /dev/null +++ b/maze/task5/maps/level6/table/42.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | +| Row 6 | # | _ | _ | # | @ | _ | diff --git a/maze/task5/maps/level6/table/43.txt b/maze/task5/maps/level6/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..08716071a80d47f73e24be32e6f1a3a2cf9e777e --- /dev/null +++ b/maze/task5/maps/level6/table/43.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/44.txt b/maze/task5/maps/level6/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..35d3288bdb07ba03292c37bf0ef7bd1826aa4c0c --- /dev/null +++ b/maze/task5/maps/level6/table/44.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | # | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | * | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | # | _ | diff --git a/maze/task5/maps/level6/table/45.txt b/maze/task5/maps/level6/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..3274e057df07816982b4f422c65a48fcf7c5690b --- /dev/null +++ b/maze/task5/maps/level6/table/45.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | # | # | _ | _ | +| Row 5 | _ | # | @ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/46.txt b/maze/task5/maps/level6/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..36c09b16c90c28b8d56fe252dbfffddea3f13077 --- /dev/null +++ b/maze/task5/maps/level6/table/46.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | # | _ | _ | * | # | diff --git a/maze/task5/maps/level6/table/47.txt b/maze/task5/maps/level6/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..152a1bce5ef642b99b07cbbb5ba7a276d3109c97 --- /dev/null +++ b/maze/task5/maps/level6/table/47.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | diff --git a/maze/task5/maps/level6/table/48.txt b/maze/task5/maps/level6/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..af326df2842f9ab04a6b4d6c8e716bc8eba6b2dd --- /dev/null +++ b/maze/task5/maps/level6/table/48.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | * | _ | _ | +| Row 5 | _ | _ | _ | # | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/49.txt b/maze/task5/maps/level6/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..85d0cf01c5e1ceb08d1d8860d0abe2c7c79fd218 --- /dev/null +++ b/maze/task5/maps/level6/table/49.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/5.txt b/maze/task5/maps/level6/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f353d1e196611558b19ce127316b466113d4eb7 --- /dev/null +++ b/maze/task5/maps/level6/table/5.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | +| Row 3 | @ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/50.txt b/maze/task5/maps/level6/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..043831343d556c3ad4034a80724bcf5fdcccf975 --- /dev/null +++ b/maze/task5/maps/level6/table/50.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | @ | _ | # | +| Row 6 | # | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level6/table/51.txt b/maze/task5/maps/level6/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..b71bd362d0475d822c052fdefd14f1717e452235 --- /dev/null +++ b/maze/task5/maps/level6/table/51.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | @ | * | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/52.txt b/maze/task5/maps/level6/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..34032731383169cb4f1ce286f14fbfda9a5c1b56 --- /dev/null +++ b/maze/task5/maps/level6/table/52.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | * | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/53.txt b/maze/task5/maps/level6/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..65154d3f01ed2474d858c54ad55cbb26a4a45aa0 --- /dev/null +++ b/maze/task5/maps/level6/table/53.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | @ | _ | _ | +| Row 6 | # | _ | _ | # | * | _ | diff --git a/maze/task5/maps/level6/table/54.txt b/maze/task5/maps/level6/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c16e833ca29dd2ef28d540e47410f5c889df4c9 --- /dev/null +++ b/maze/task5/maps/level6/table/54.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | * | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/55.txt b/maze/task5/maps/level6/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9fb3fea777d1ecaed1d3041be8b3c5622b03dd4 --- /dev/null +++ b/maze/task5/maps/level6/table/55.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | * | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | @ | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/56.txt b/maze/task5/maps/level6/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..6015b0e81293b8243f455f6aa8facc39d338aca0 --- /dev/null +++ b/maze/task5/maps/level6/table/56.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | # | +| Row 3 | # | _ | _ | @ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | # | diff --git a/maze/task5/maps/level6/table/57.txt b/maze/task5/maps/level6/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6bb7e2b197fd9bcdc24abdf007d06a90d018e75 --- /dev/null +++ b/maze/task5/maps/level6/table/57.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | +| Row 6 | * | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/58.txt b/maze/task5/maps/level6/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f74dc2b187e3f854c7dda74926dccc9b62dd305 --- /dev/null +++ b/maze/task5/maps/level6/table/58.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | # | * | @ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/59.txt b/maze/task5/maps/level6/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..3558ddaf432a40401c18b738f63a95fc60bc9e45 --- /dev/null +++ b/maze/task5/maps/level6/table/59.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | +| Row 3 | _ | @ | # | * | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | +| Row 5 | _ | # | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/6.txt b/maze/task5/maps/level6/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa5a8c0ddc5b170801a1f8b290c6b13daee47f26 --- /dev/null +++ b/maze/task5/maps/level6/table/6.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | # | @ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | * | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/60.txt b/maze/task5/maps/level6/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..b09694f53727f71f506c2d399ff08ccd53469e4c --- /dev/null +++ b/maze/task5/maps/level6/table/60.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | # | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level6/table/61.txt b/maze/task5/maps/level6/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ffa7198c452ab865e4067ef0514883cf5d2e97c --- /dev/null +++ b/maze/task5/maps/level6/table/61.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/62.txt b/maze/task5/maps/level6/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..76b292670edd04a92628d71db845f496a0b67a80 --- /dev/null +++ b/maze/task5/maps/level6/table/62.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | _ | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/63.txt b/maze/task5/maps/level6/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..54d2bc231293c0f8f7641ec5953d4c404de422a7 --- /dev/null +++ b/maze/task5/maps/level6/table/63.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | * | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/64.txt b/maze/task5/maps/level6/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..06a1c06af1ceb30b880d2b81222d1a7ce2e8da34 --- /dev/null +++ b/maze/task5/maps/level6/table/64.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | @ | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/65.txt b/maze/task5/maps/level6/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..323debee2adc90bb8b8c4e81611e39a881233591 --- /dev/null +++ b/maze/task5/maps/level6/table/65.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | @ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/66.txt b/maze/task5/maps/level6/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..ed6da14d3ad89d94badd41c90255dd505c63d917 --- /dev/null +++ b/maze/task5/maps/level6/table/66.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | * | _ | _ | +| Row 6 | _ | _ | # | # | @ | # | diff --git a/maze/task5/maps/level6/table/67.txt b/maze/task5/maps/level6/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddc027add7d3e60d0646770343dc70d429193204 --- /dev/null +++ b/maze/task5/maps/level6/table/67.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/68.txt b/maze/task5/maps/level6/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e9b418c9e2418b8b145e3bee79acfa77bd468e9 --- /dev/null +++ b/maze/task5/maps/level6/table/68.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | # | _ | +| Row 3 | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/69.txt b/maze/task5/maps/level6/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae9ff2643262f030f115698f60b97dde148bf6a8 --- /dev/null +++ b/maze/task5/maps/level6/table/69.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | # | * | _ | _ | _ | # | diff --git a/maze/task5/maps/level6/table/7.txt b/maze/task5/maps/level6/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee92d3eaa120b36fa804a920e4302e3a514777cb --- /dev/null +++ b/maze/task5/maps/level6/table/7.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | @ | +| Row 2 | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | * | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/70.txt b/maze/task5/maps/level6/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddc0505ff485d6a1cdd9f5e7d86efd7380a88823 --- /dev/null +++ b/maze/task5/maps/level6/table/70.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | # | _ | _ | +| Row 2 | * | _ | # | _ | _ | @ | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | # | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/71.txt b/maze/task5/maps/level6/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..31af6fd6eae3e8dfabc840c5d010459f843846c5 --- /dev/null +++ b/maze/task5/maps/level6/table/71.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | # | +| Row 2 | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | +| Row 4 | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level6/table/72.txt b/maze/task5/maps/level6/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..012893c9479fdf20f7cebfae0fa71eb722d7d56a --- /dev/null +++ b/maze/task5/maps/level6/table/72.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | @ | +| Row 2 | * | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/73.txt b/maze/task5/maps/level6/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b8efb216d77463b61dde20f634cbd13cab5ee7c --- /dev/null +++ b/maze/task5/maps/level6/table/73.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | # | +| Row 2 | # | _ | * | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | @ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/74.txt b/maze/task5/maps/level6/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..c341a2b823fe3d8f408366c6334d8d23fba90b47 --- /dev/null +++ b/maze/task5/maps/level6/table/74.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | * | _ | _ | diff --git a/maze/task5/maps/level6/table/75.txt b/maze/task5/maps/level6/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..194d8d6801060b3ecfe610efdd3b936c8cc7b4cd --- /dev/null +++ b/maze/task5/maps/level6/table/75.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | +| Row 5 | # | _ | _ | # | _ | @ | +| Row 6 | _ | _ | * | _ | # | # | diff --git a/maze/task5/maps/level6/table/76.txt b/maze/task5/maps/level6/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2b80e6f762e706f3db51ecae1bda32f515112b0 --- /dev/null +++ b/maze/task5/maps/level6/table/76.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | @ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | * | _ | +| Row 6 | _ | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/77.txt b/maze/task5/maps/level6/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f983396a784d11b94325d5c1804f31b46747305 --- /dev/null +++ b/maze/task5/maps/level6/table/77.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | * | _ | # | +| Row 3 | _ | # | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | +| Row 5 | _ | # | _ | @ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/78.txt b/maze/task5/maps/level6/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..43342b9de0c0a6e3a31ce9cca9ee68fb2ffe0b74 --- /dev/null +++ b/maze/task5/maps/level6/table/78.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/79.txt b/maze/task5/maps/level6/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ad5d0e3dd02e48a49cadc89af24d01ffed76f68 --- /dev/null +++ b/maze/task5/maps/level6/table/79.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | _ | * | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | @ | diff --git a/maze/task5/maps/level6/table/8.txt b/maze/task5/maps/level6/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..835ce8230784a60f0ac208a2881407aff09d6902 --- /dev/null +++ b/maze/task5/maps/level6/table/8.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | # | @ | _ | * | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | diff --git a/maze/task5/maps/level6/table/80.txt b/maze/task5/maps/level6/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c527e603499c4e9cced2e0e147a687d6e0934f9 --- /dev/null +++ b/maze/task5/maps/level6/table/80.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | _ | _ | * | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/81.txt b/maze/task5/maps/level6/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e7516984c3fb251d8cc8372c95c4af53513a0ae --- /dev/null +++ b/maze/task5/maps/level6/table/81.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | * | _ | _ | diff --git a/maze/task5/maps/level6/table/82.txt b/maze/task5/maps/level6/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..83793a2974de9204443c8008a17af0bd75d75938 --- /dev/null +++ b/maze/task5/maps/level6/table/82.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | @ | _ | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level6/table/83.txt b/maze/task5/maps/level6/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b5e7208730f8dcea2bc34e8f6b3e4f4d238b2c6 --- /dev/null +++ b/maze/task5/maps/level6/table/83.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level6/table/84.txt b/maze/task5/maps/level6/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0355607203a8e4a5a26f2e5ddabf78e46daf7e6 --- /dev/null +++ b/maze/task5/maps/level6/table/84.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | # | * | +| Row 3 | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/85.txt b/maze/task5/maps/level6/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..115be45597820a47eb1701b9bcfc273828e2645b --- /dev/null +++ b/maze/task5/maps/level6/table/85.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | * | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | diff --git a/maze/task5/maps/level6/table/86.txt b/maze/task5/maps/level6/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..f34c55d242deb70adeacce2d5d72db681169d2f9 --- /dev/null +++ b/maze/task5/maps/level6/table/86.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | diff --git a/maze/task5/maps/level6/table/87.txt b/maze/task5/maps/level6/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..a595fdfe158a2c32569efbe371458f3e7cf5427c --- /dev/null +++ b/maze/task5/maps/level6/table/87.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | * | +| Row 3 | # | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | @ | # | _ | diff --git a/maze/task5/maps/level6/table/88.txt b/maze/task5/maps/level6/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fbf6c451b8207dd864b7af7c8fbc08dd45cb4c5 --- /dev/null +++ b/maze/task5/maps/level6/table/88.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | +| Row 3 | _ | @ | _ | _ | _ | _ | +| Row 4 | # | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | diff --git a/maze/task5/maps/level6/table/89.txt b/maze/task5/maps/level6/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4f4512d072260d170908b91d44159f2928ec82d --- /dev/null +++ b/maze/task5/maps/level6/table/89.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | * | # | +| Row 3 | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | @ | _ | # | _ | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level6/table/9.txt b/maze/task5/maps/level6/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee84591ddaad5cca640ec788d0f50ee645d9d2e2 --- /dev/null +++ b/maze/task5/maps/level6/table/9.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | # | diff --git a/maze/task5/maps/level6/table/90.txt b/maze/task5/maps/level6/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ea10d96e1652b91beff879364c380d2c2066675 --- /dev/null +++ b/maze/task5/maps/level6/table/90.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | * | _ | _ | +| Row 2 | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/91.txt b/maze/task5/maps/level6/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..21ac23e165252e80c23aa37d5b0ba44bf1f16027 --- /dev/null +++ b/maze/task5/maps/level6/table/91.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | # | _ | _ | +| Row 2 | * | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | # | _ | # | # | diff --git a/maze/task5/maps/level6/table/92.txt b/maze/task5/maps/level6/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8e3013e3b71b5aab9a9c978b85f2704c0def793 --- /dev/null +++ b/maze/task5/maps/level6/table/92.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | @ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | * | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | # | # | # | diff --git a/maze/task5/maps/level6/table/93.txt b/maze/task5/maps/level6/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..9602f42aa3d791f5b531cd9c7beafe0b69d71a6f --- /dev/null +++ b/maze/task5/maps/level6/table/93.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | * | # | @ | diff --git a/maze/task5/maps/level6/table/94.txt b/maze/task5/maps/level6/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..e00d89b76258b016416296b36a34ccef45fdb2ed --- /dev/null +++ b/maze/task5/maps/level6/table/94.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | _ | _ | _ | @ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | * | +| Row 4 | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/95.txt b/maze/task5/maps/level6/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccc89fee749e3122c815784a67f48b129dda818a --- /dev/null +++ b/maze/task5/maps/level6/table/95.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | # | _ | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/96.txt b/maze/task5/maps/level6/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5cb9ca4f493c057185c886b2b194802d2af09a7 --- /dev/null +++ b/maze/task5/maps/level6/table/96.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | * | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | @ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/97.txt b/maze/task5/maps/level6/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..94d4e5c72bfcaa43e0c034ae314503e5aae0b1d1 --- /dev/null +++ b/maze/task5/maps/level6/table/97.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | * | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | +| Row 5 | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | diff --git a/maze/task5/maps/level6/table/98.txt b/maze/task5/maps/level6/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..095a1505f25029f46b5ae4d548a43cedd5580083 --- /dev/null +++ b/maze/task5/maps/level6/table/98.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | * | # | # | _ | +| Row 5 | # | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level6/table/99.txt b/maze/task5/maps/level6/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..52b7bb179f2aa8d9ce8cffd79ff2afce81cecb87 --- /dev/null +++ b/maze/task5/maps/level6/table/99.txt @@ -0,0 +1,7 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | +| Row 1 | # | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | @ | +| Row 4 | _ | # | _ | _ | # | _ | +| Row 5 | _ | _ | # | _ | _ | # | +| Row 6 | _ | * | _ | _ | _ | # | diff --git a/maze/task5/maps/level7/img/0.png b/maze/task5/maps/level7/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7cdf5342c15b189c80ef2c63518cad4d410a0932 --- /dev/null +++ b/maze/task5/maps/level7/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a98ae61b479f23858c3793337e2c6e0d825a199f0461cdac32f3daedc147153 +size 15793 diff --git a/maze/task5/maps/level7/img/1.png b/maze/task5/maps/level7/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bd028b6761b6ca5a42d1c150a4e23d31369979b8 --- /dev/null +++ b/maze/task5/maps/level7/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3914995c27e4c03d136598689379cffc1abc4a189c231ded00955979207faf27 +size 14995 diff --git a/maze/task5/maps/level7/img/10.png b/maze/task5/maps/level7/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6d57315db888d53ce58d81d8b27f335178c0edb1 --- /dev/null +++ b/maze/task5/maps/level7/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf972cf71e39a1d99eb17745da9aa5db1187904ea4fd08eb4c98c32bee49593e +size 16764 diff --git a/maze/task5/maps/level7/img/11.png b/maze/task5/maps/level7/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..68ccbe646836988938cb756b958bf55c25f3a1a6 --- /dev/null +++ b/maze/task5/maps/level7/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0c1488e28d342d1f888c7343ddccdd7da1b64bd010d20895de91d03988dc09 +size 14882 diff --git a/maze/task5/maps/level7/img/12.png b/maze/task5/maps/level7/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..74c13c2cf55263c29daf1b92e341416b429d6940 --- /dev/null +++ b/maze/task5/maps/level7/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331eaa7cec6acd5f43a93a68da3fafc83023ce592ea209407f839deabe9d9f16 +size 14804 diff --git a/maze/task5/maps/level7/img/13.png b/maze/task5/maps/level7/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6f5cce943f26d567cd51a54591d3891ca745a011 --- /dev/null +++ b/maze/task5/maps/level7/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64921c615a99fe341fbb03762df5be9684d1632bc4bff78463e4126942e5c54c +size 15852 diff --git a/maze/task5/maps/level7/img/14.png b/maze/task5/maps/level7/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4ef033e0270d347745f7ee968ab0bceaa244826f --- /dev/null +++ b/maze/task5/maps/level7/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcba9849b0ede0164c06f01ceb1134eb64bcc11fa4c89dbc6c1c1bc210ff4091 +size 15962 diff --git a/maze/task5/maps/level7/img/15.png b/maze/task5/maps/level7/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..65533cfd78862f538d3ab80db7e5479bb6985ea1 --- /dev/null +++ b/maze/task5/maps/level7/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c34396f886480fafbb7f4c11375a57fa85fb659f89ebbe7d2185e7e289509d4 +size 14800 diff --git a/maze/task5/maps/level7/img/16.png b/maze/task5/maps/level7/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8264456ae565c30375756c3ff28cc54e052a9ff5 --- /dev/null +++ b/maze/task5/maps/level7/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5124fefde6b773fc04417540e89b20b9911d0ba4a3602976c60a2d6363d99a5 +size 16670 diff --git a/maze/task5/maps/level7/img/17.png b/maze/task5/maps/level7/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..cc6728273c350d8c49a5feab46137fcc5d545170 --- /dev/null +++ b/maze/task5/maps/level7/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eae43e86f2986de6b1d555d97cc02610e9543a8a87577999571ed2220c70770 +size 16692 diff --git a/maze/task5/maps/level7/img/18.png b/maze/task5/maps/level7/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..bfc3d7c2223ce85a574adfb98f4112d5e3972b62 --- /dev/null +++ b/maze/task5/maps/level7/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edcb72a67c5ac5a72efe7fffcb7d679ba612676b402ad4ef6a86bd9ca218e46f +size 15912 diff --git a/maze/task5/maps/level7/img/19.png b/maze/task5/maps/level7/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..743416a03f152eb9a385da8b48f3e186979bff30 --- /dev/null +++ b/maze/task5/maps/level7/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b62af239c380ece96461143b0ae2ffdcf3be6f68e552b62948c0dab56a2a738 +size 15824 diff --git a/maze/task5/maps/level7/img/2.png b/maze/task5/maps/level7/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..af01bd2f791ef0592cec539da878903a3cced753 --- /dev/null +++ b/maze/task5/maps/level7/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcaaacf017ca50eb72e7d578531c891472bbed301837c84e57a159e3ad490bcc +size 14862 diff --git a/maze/task5/maps/level7/img/20.png b/maze/task5/maps/level7/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..52aca6464d734a9c730fa756bd8144ec02b49190 --- /dev/null +++ b/maze/task5/maps/level7/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd37b36a1d555672bcce2a857ea09af9fa3aecf898faa0099e4bc669fd4db737 +size 15795 diff --git a/maze/task5/maps/level7/img/21.png b/maze/task5/maps/level7/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..c7ca689ed6729b3c3a5db6e42538132ddf222b9c --- /dev/null +++ b/maze/task5/maps/level7/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d59be7497bd16fa558b70d29f9feca86a86464f9ade67d340a75914b9f268c +size 14128 diff --git a/maze/task5/maps/level7/img/22.png b/maze/task5/maps/level7/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..561670b52965d45d9bfcce9e777e6a42b43ba89d --- /dev/null +++ b/maze/task5/maps/level7/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159e4f1a1052931e5c4e23085c6ea09cef4392b5ffa8bb7e7633aed5bacf858d +size 15878 diff --git a/maze/task5/maps/level7/img/23.png b/maze/task5/maps/level7/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..0aa1bcddf4506754c3bcf49fec81c39331cabfa6 --- /dev/null +++ b/maze/task5/maps/level7/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4462015daf34f13fd67688c97d1ab3903b61cfe1344fa1e9473d75b41f3298bf +size 16959 diff --git a/maze/task5/maps/level7/img/24.png b/maze/task5/maps/level7/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..3ed76607325da8c29ef4acb77fe9b6dd4e6262ab --- /dev/null +++ b/maze/task5/maps/level7/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad959945a6bb18216518cbdfe776cf952a62a586f0fdb2aae7effae4bbcef49 +size 16114 diff --git a/maze/task5/maps/level7/img/25.png b/maze/task5/maps/level7/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..6c77bf3a368ae39c03a7c03aa96fdfc2ea9dea28 --- /dev/null +++ b/maze/task5/maps/level7/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00e8ca7e5b2e83c9e3399e78678054fd01103f094139b21ce0adada72e9c5c2 +size 14954 diff --git a/maze/task5/maps/level7/img/26.png b/maze/task5/maps/level7/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..c2e65c38f4d03f3d7ffcfe4d678533b4fc8907c9 --- /dev/null +++ b/maze/task5/maps/level7/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1bb13ebc40413ddfb8f53a20a3379c61068039f96836534d163acd84f33ef3 +size 16668 diff --git a/maze/task5/maps/level7/img/27.png b/maze/task5/maps/level7/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..6478cb1c9f932283f11c83b3c6f20e6a766f60f0 --- /dev/null +++ b/maze/task5/maps/level7/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998f82bd5396ac2810a7c7873c1f1c554d4182aa39b9df554b503719557352f2 +size 13979 diff --git a/maze/task5/maps/level7/img/28.png b/maze/task5/maps/level7/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..997c7d2b1c48b16403a477404da07daf217a0f92 --- /dev/null +++ b/maze/task5/maps/level7/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b797d240f19afcf5ff72ac0ccda8c2f58754c3ac7d0f8c1818d1dbab735376 +size 15811 diff --git a/maze/task5/maps/level7/img/29.png b/maze/task5/maps/level7/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..2428299c6d8edd439eca2ab18a45160adb0f8527 --- /dev/null +++ b/maze/task5/maps/level7/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bebe2bd09d99f5a573145e6e7a8d7bd554a22ae448bf39b36d0cd5ba622d4ba +size 16646 diff --git a/maze/task5/maps/level7/img/3.png b/maze/task5/maps/level7/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b050868b341763d86cd18a546ed0fa8d55040442 --- /dev/null +++ b/maze/task5/maps/level7/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df04dee2563233e9d8ea0f3792511efd22e5d9fea5ea9c4b1feb7de86ae96f6 +size 13038 diff --git a/maze/task5/maps/level7/img/30.png b/maze/task5/maps/level7/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..f637198b4a43407345f80325022db5ccceb263a4 --- /dev/null +++ b/maze/task5/maps/level7/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f6abc08c1246442db82a4a35ef4bd296b3bd5091d6de6676b658229074387c +size 15860 diff --git a/maze/task5/maps/level7/img/31.png b/maze/task5/maps/level7/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..fce5e6e8aba58ab673a725d7168e9b6b3f42dbb7 --- /dev/null +++ b/maze/task5/maps/level7/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1906aeb9fe790f2b6fbfc26985f0ea0eb02360403e4604e7bab5eb31abff81c7 +size 15801 diff --git a/maze/task5/maps/level7/img/32.png b/maze/task5/maps/level7/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..33674651409565eccd2da547c81428dd5a1664f7 --- /dev/null +++ b/maze/task5/maps/level7/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6423daeb6dbad16aa4321898179158ec34ea05106f380682455a14dfcc8d1d +size 15767 diff --git a/maze/task5/maps/level7/img/33.png b/maze/task5/maps/level7/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..74ce891738f33dac9543afd9c292fd319f4beeb9 --- /dev/null +++ b/maze/task5/maps/level7/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73bb40e9d7fec87ff4a5e7a443ecb6c391ed3451427ff59d75bdf5cc333ecdfb +size 16041 diff --git a/maze/task5/maps/level7/img/34.png b/maze/task5/maps/level7/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..52aa7b27e803c9729118c1e10547316307f81f68 --- /dev/null +++ b/maze/task5/maps/level7/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09c96681a45579cb12b8895329518cb45a9854d675d583a0dc93722d9ae533ae +size 14994 diff --git a/maze/task5/maps/level7/img/35.png b/maze/task5/maps/level7/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..124190a7d1aca1230ef15d8b890a076c58e3fe4d --- /dev/null +++ b/maze/task5/maps/level7/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72b195d41a8c00f8e09f04672364201510257890f8562ddf4667600c16f469e +size 14799 diff --git a/maze/task5/maps/level7/img/36.png b/maze/task5/maps/level7/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..e7362cf6843b196b6a1c93c70d5d18b7c78cf936 --- /dev/null +++ b/maze/task5/maps/level7/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d9fa87cd6f1da2dda7b056eab559886da115595349e68f9747c9ff735ec34f +size 15888 diff --git a/maze/task5/maps/level7/img/37.png b/maze/task5/maps/level7/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..bae032cbc08c17b543a484e68592c69eace51a71 --- /dev/null +++ b/maze/task5/maps/level7/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcc8a5eac503d2473ba7f2a4d69a399bd029daacc37acd22273360a8b8a034d +size 14006 diff --git a/maze/task5/maps/level7/img/38.png b/maze/task5/maps/level7/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..147cc6c293244edf5b62e8dd5ff1d38589de142f --- /dev/null +++ b/maze/task5/maps/level7/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f89e131c82e27da5c1638c8970f3f25fd22a3e043ee979f9b25a4b5c69b669d0 +size 14075 diff --git a/maze/task5/maps/level7/img/39.png b/maze/task5/maps/level7/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..51f23233f3ff43e371cd0d5b1eb68ec1f2fbb254 --- /dev/null +++ b/maze/task5/maps/level7/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923c3545caf3696b459dc6dd1c43012b23c3e6b0cb8b275c033ab9273ea7c316 +size 15769 diff --git a/maze/task5/maps/level7/img/4.png b/maze/task5/maps/level7/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..71acd2b7540d1f2c6fee59eadd129b285c7479ce --- /dev/null +++ b/maze/task5/maps/level7/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab6813dccdff319a1cdf0594189825178fee74a594199bb2e8ec1e92664b69a +size 14795 diff --git a/maze/task5/maps/level7/img/40.png b/maze/task5/maps/level7/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..5e83bef146824cb7ce0283ef271b0779bfd43fa7 --- /dev/null +++ b/maze/task5/maps/level7/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:077f2853e316ba58383dfc3ed79233e84f6df5d31ca133ba36cedda6a3ae4c83 +size 15892 diff --git a/maze/task5/maps/level7/img/41.png b/maze/task5/maps/level7/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..95f17b8f36f4b036496ba150d02a25e869a969d9 --- /dev/null +++ b/maze/task5/maps/level7/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14af66922c5498e2d3dbf68b7ff019e7c315ac0b68f4bbd92a9ed27898318eae +size 15836 diff --git a/maze/task5/maps/level7/img/42.png b/maze/task5/maps/level7/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..4d297adbcfcdc8ee36662c8259d06f4b9a4e6eb5 --- /dev/null +++ b/maze/task5/maps/level7/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3153a009d9e391f951b1146a6465f9cb0c79cc322ec91bfd3fd4ce1bd3a2ef8 +size 15054 diff --git a/maze/task5/maps/level7/img/43.png b/maze/task5/maps/level7/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..db8bf51b9001c983a5f41bf41b63ecb8d4075b42 --- /dev/null +++ b/maze/task5/maps/level7/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13a90f232e601dcbde4c9e57f5fb283d900c8e32da93299b0d423bb6b4f9112 +size 14820 diff --git a/maze/task5/maps/level7/img/44.png b/maze/task5/maps/level7/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..f72e34f97f17bf9a026bfcb97be1cddda1eb60ff --- /dev/null +++ b/maze/task5/maps/level7/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93bc38a7f4330e790900bbc713ff022bf14ff7c1a29e2ab7c5486a5fdf6b0535 +size 15818 diff --git a/maze/task5/maps/level7/img/45.png b/maze/task5/maps/level7/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..ed0be9dfa21a48ec93852136c02a915621ce2ecb --- /dev/null +++ b/maze/task5/maps/level7/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f93e7095016bd15b14221f7227e26ed853e041b947fca11ee3b68531ea7d7b +size 14881 diff --git a/maze/task5/maps/level7/img/46.png b/maze/task5/maps/level7/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..8102fa1f2b0aa54c91c1eb18b881b064c7b1f652 --- /dev/null +++ b/maze/task5/maps/level7/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd93e095fae10e3ad415675d008b4055fab97c9bf8f29c8e9f87d48455a9a85d +size 14017 diff --git a/maze/task5/maps/level7/img/47.png b/maze/task5/maps/level7/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..5531ce9e1af6d5a1bb16df26f51d9e31c474d8bb --- /dev/null +++ b/maze/task5/maps/level7/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afdffef70b02a5495ab922ae8b9fad639897fcecf0320a85690b64ac87953ee9 +size 14879 diff --git a/maze/task5/maps/level7/img/48.png b/maze/task5/maps/level7/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..0e1da4730a1436c7415e86f61d447a3504fd8bdc --- /dev/null +++ b/maze/task5/maps/level7/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85da61d77646a02b5835e3bf32ccdf680b441b798c1701c9478769e0da45e941 +size 14007 diff --git a/maze/task5/maps/level7/img/49.png b/maze/task5/maps/level7/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..4bbc09f2b973e875430faa26b58cd0f03bc50c46 --- /dev/null +++ b/maze/task5/maps/level7/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37e8f12d419049879dd2382acc952e5b845027c115acf5ab901711b1c855d8c +size 16497 diff --git a/maze/task5/maps/level7/img/5.png b/maze/task5/maps/level7/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b331dd9df5de4d6ccce64d4f00762b59cd3ae2dc --- /dev/null +++ b/maze/task5/maps/level7/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b831f9b39190b681c966c3bc25343c5ba999f8f2b185050487f0be2f4095df +size 16642 diff --git a/maze/task5/maps/level7/img/50.png b/maze/task5/maps/level7/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..0847348c498629f70c05b5be3960ec5fbf483254 --- /dev/null +++ b/maze/task5/maps/level7/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446874c4227ea35c3644bc1b92006625ba37c2023491d344fccd3bcd9ffb07b1 +size 16567 diff --git a/maze/task5/maps/level7/img/51.png b/maze/task5/maps/level7/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..af90f267729e59db583275f0bdbd20e5c2c39e7c --- /dev/null +++ b/maze/task5/maps/level7/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc1180afa8380ec3d96aac33c5806136f06382da43022928cc84d82e9c1efe03 +size 15665 diff --git a/maze/task5/maps/level7/img/52.png b/maze/task5/maps/level7/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..5117d601b75cd4aec722f1330e0f4a2c74e587ee --- /dev/null +++ b/maze/task5/maps/level7/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d17ea7fb21c1adeb931181e7fef775de5a356fa6f997d75e8e8cdf574fb2035 +size 14835 diff --git a/maze/task5/maps/level7/img/53.png b/maze/task5/maps/level7/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..50a9aeff923e08f16722a11437d1345a24bf9923 --- /dev/null +++ b/maze/task5/maps/level7/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a553bc8f58e9d47e156c5af62de3c1157d139c9a129377649fdcc727e6f1ee42 +size 15607 diff --git a/maze/task5/maps/level7/img/54.png b/maze/task5/maps/level7/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..f89a4a2fa21269393a071d7992704f9963661207 --- /dev/null +++ b/maze/task5/maps/level7/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4e88137cdcf4ed252acdeb7f4716a3c5bed1d0bdcfbe2a7d39ae0a59634325 +size 14878 diff --git a/maze/task5/maps/level7/img/55.png b/maze/task5/maps/level7/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..658ee13fc295fbb12628a59b3f531e9eb9da0290 --- /dev/null +++ b/maze/task5/maps/level7/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af18ef58f60f597b0bfe74453933a6a1a2c6fed3b05f27f86f0e256f16bc7534 +size 16111 diff --git a/maze/task5/maps/level7/img/56.png b/maze/task5/maps/level7/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..119764aa9bd636d96cc2612171e6ce1be9e49c0b --- /dev/null +++ b/maze/task5/maps/level7/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8405b447d19a0047ade8f332ccc6934a5d84447f127d1e2f2959510bf768f87f +size 13330 diff --git a/maze/task5/maps/level7/img/57.png b/maze/task5/maps/level7/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..90921c75aad18bfab52e8eaccbef8d8083e4a301 --- /dev/null +++ b/maze/task5/maps/level7/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abea35c20b22f72f827bcf070ea3bfdd0fbb96fe7f20d4b03975afda0e4bb4c1 +size 14833 diff --git a/maze/task5/maps/level7/img/58.png b/maze/task5/maps/level7/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9458ac0dbc9d9288f19cb116b31bf81e7bbd1a --- /dev/null +++ b/maze/task5/maps/level7/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59fd9e758e450bc04c781911ef23df50cd7542f439eb6be9a1498974d00f601d +size 15078 diff --git a/maze/task5/maps/level7/img/59.png b/maze/task5/maps/level7/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..113da7c6c9e7c598e6500af5826d3a450dee7561 --- /dev/null +++ b/maze/task5/maps/level7/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73775a6d70306fb2eebd1bbd6b08619e410e1f66786a1f7c7536c793d3eb6211 +size 14064 diff --git a/maze/task5/maps/level7/img/6.png b/maze/task5/maps/level7/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1c5d934b637f81d62172c216edf8ece2ced92514 --- /dev/null +++ b/maze/task5/maps/level7/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581a48d5f089561cabd01d786fd5934a03f7bb7e98faa1aefacd7d0285a55016 +size 15913 diff --git a/maze/task5/maps/level7/img/60.png b/maze/task5/maps/level7/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..487176131466b03a73dcee77230e4e3db9d4a184 --- /dev/null +++ b/maze/task5/maps/level7/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f48d134435261a0e15f2298798a65c377829075af27852ac4e19772b803ed4 +size 15797 diff --git a/maze/task5/maps/level7/img/61.png b/maze/task5/maps/level7/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..485a7a2a8cd9106df8599b794d7ebbfe4cf29fcb --- /dev/null +++ b/maze/task5/maps/level7/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4933fced12c237fa1c288aeee782af69258623b8a41578f23484befb8aef0e1 +size 16161 diff --git a/maze/task5/maps/level7/img/62.png b/maze/task5/maps/level7/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..d56aa180aa3c52bec2b388c1887d9ade19ddaf88 --- /dev/null +++ b/maze/task5/maps/level7/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbae10840cf23b07f94d06e0d6a086668472d806eeb3971e32ca5107725f463a +size 15795 diff --git a/maze/task5/maps/level7/img/63.png b/maze/task5/maps/level7/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..9800a6c611bd072b10d9815d65adb89ff83279f1 --- /dev/null +++ b/maze/task5/maps/level7/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f63df2f488f9706c0dc24f7a51fec5eee30367001f5a3a30ffbd02bd9a52bdf +size 15802 diff --git a/maze/task5/maps/level7/img/64.png b/maze/task5/maps/level7/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..12bc19d9e8c0c094f07bd47476454f1d044236fa --- /dev/null +++ b/maze/task5/maps/level7/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2567510c3d4c108781b349ae12afbfe03b1aac3edea199f53a22572de29f1f94 +size 14983 diff --git a/maze/task5/maps/level7/img/65.png b/maze/task5/maps/level7/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..adf3f97b0fbe862b9e8d698c9619f00f0405e78c --- /dev/null +++ b/maze/task5/maps/level7/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf54c812c8544c73f8a2df942d6cd9b4c6ec8a38ff1bb417741cf5a274fa788 +size 15792 diff --git a/maze/task5/maps/level7/img/66.png b/maze/task5/maps/level7/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..bf6f995fd13a46c272d40dec29c6446507a42cdc --- /dev/null +++ b/maze/task5/maps/level7/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64062d937b30142a39054b68f9d9926e816c86ff692c05fce7150136e9e18436 +size 14076 diff --git a/maze/task5/maps/level7/img/67.png b/maze/task5/maps/level7/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..2afb93335f7b7d14051d150f133d7c206c3d7a18 --- /dev/null +++ b/maze/task5/maps/level7/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b46b75b472d57405383637df7291287fee6afd78b9f679c5377e910cfc55409 +size 15675 diff --git a/maze/task5/maps/level7/img/68.png b/maze/task5/maps/level7/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..bbd61b6ca6487cfb3ff7ae535367967ad13cfe3d --- /dev/null +++ b/maze/task5/maps/level7/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc996a4e9b6b0e5ce5add3c83a3a275907de3130cda6d7f2e542887615201a71 +size 16551 diff --git a/maze/task5/maps/level7/img/69.png b/maze/task5/maps/level7/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..6360e189028b836aa6a754d4be2846cd7a1970da --- /dev/null +++ b/maze/task5/maps/level7/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf5ed0daa4bfe8dc3d5c5c919823d3d9f7ffcb33136ccdc21106f330c9671d54 +size 16814 diff --git a/maze/task5/maps/level7/img/7.png b/maze/task5/maps/level7/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..42ac4349eeb6b210452a75629775086d668e5361 --- /dev/null +++ b/maze/task5/maps/level7/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254054584ef2b28a85430ca80f0da169f10b7890ffa93205ec4321b338602af0 +size 13923 diff --git a/maze/task5/maps/level7/img/70.png b/maze/task5/maps/level7/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..c175c269fa0d8b476cf744c8166024fe66160efe --- /dev/null +++ b/maze/task5/maps/level7/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d942b99599f218ae7d9d3c8477fd25683d859cd8c0578ee7d2c6ac990570d630 +size 16646 diff --git a/maze/task5/maps/level7/img/71.png b/maze/task5/maps/level7/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..172977fbd548790ba8abe307f78d1ac36a874c31 --- /dev/null +++ b/maze/task5/maps/level7/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3a8a4c04ccff8d028370a2601f3e93c7966451596c9e320389aa83a3cd4692 +size 14049 diff --git a/maze/task5/maps/level7/img/72.png b/maze/task5/maps/level7/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..77193faf902a69c7537fdfe6882a62ffa75d2ed7 --- /dev/null +++ b/maze/task5/maps/level7/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2de716b19f84981f47d77dce1147fa268087b5f3415e5dcfcbc164569268ea +size 15827 diff --git a/maze/task5/maps/level7/img/73.png b/maze/task5/maps/level7/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..110301b6357ee63a07f8806ff2748287e437ab9f --- /dev/null +++ b/maze/task5/maps/level7/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2311954139350513ba8c5a1a45eba0dbc85a0dc740320e815dffc9bfd5470251 +size 13918 diff --git a/maze/task5/maps/level7/img/74.png b/maze/task5/maps/level7/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..4f436a4f03b8b77d28e145f1022cdec521634adb --- /dev/null +++ b/maze/task5/maps/level7/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ec4c72c4ff0451341b61809fda692869d318c2a081d1dfd03b2d825776941a +size 15768 diff --git a/maze/task5/maps/level7/img/75.png b/maze/task5/maps/level7/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..429f2c4632829c310dbddf40b6a4e43e3697bba0 --- /dev/null +++ b/maze/task5/maps/level7/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c2587d3e2cae9caad3fcc85ae3be400baee340d6915ff1725b69fa7329132e +size 15980 diff --git a/maze/task5/maps/level7/img/76.png b/maze/task5/maps/level7/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..9d118f8e97c0c294667ec510a866f06cc958a922 --- /dev/null +++ b/maze/task5/maps/level7/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bf019a877ec1d84b2bd2770720089ff983eef5d7ff1a35d6d36cd99ba016ab +size 15746 diff --git a/maze/task5/maps/level7/img/77.png b/maze/task5/maps/level7/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..2b38e3ff8160efe714d0da501ea6734a8112cb66 --- /dev/null +++ b/maze/task5/maps/level7/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21206556b34996392c28fe6c8ff95ccbbb28e2ed206c502cd3df5d8ebaf7e26b +size 14808 diff --git a/maze/task5/maps/level7/img/78.png b/maze/task5/maps/level7/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..fd84788ec293a6533826490679a5df2355aed247 --- /dev/null +++ b/maze/task5/maps/level7/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7d34306c5370407d87327e78587d927e1aaff13c3cd4aabaf9d0069ec5b4dc +size 15899 diff --git a/maze/task5/maps/level7/img/79.png b/maze/task5/maps/level7/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d395314e29a89b78930dcc14ed8013e115975e --- /dev/null +++ b/maze/task5/maps/level7/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb151784f499f44908a79ccb6b1cbcee2570fc1dcf9ec78ed85c4b4a417689c +size 16602 diff --git a/maze/task5/maps/level7/img/8.png b/maze/task5/maps/level7/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..808984f0e0ea66e8807354cc23ce4d2d8464e4d3 --- /dev/null +++ b/maze/task5/maps/level7/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:507c56c9b671f27e4e4345764f1816e71a802b2c46c1c1a578ae1702f0364768 +size 13078 diff --git a/maze/task5/maps/level7/img/80.png b/maze/task5/maps/level7/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..b0a0d51b0ef037cdc73ab067a5de98ce5c6a7e38 --- /dev/null +++ b/maze/task5/maps/level7/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e08e9c346c9e504e152f62e9879e90ca69238fae008d3b839cd92b5f8e3eb5 +size 15980 diff --git a/maze/task5/maps/level7/img/81.png b/maze/task5/maps/level7/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..73da5230a7f11a8b3f28341123d62507689881e7 --- /dev/null +++ b/maze/task5/maps/level7/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231e4a1cf15e1872890a23392001702e77ef8c030e62a90f438aa84ce9d6f404 +size 14827 diff --git a/maze/task5/maps/level7/img/82.png b/maze/task5/maps/level7/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..66343c575952eb61bdaa9d59c9c8f27f5b1178f4 --- /dev/null +++ b/maze/task5/maps/level7/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b701d593c649a9397e41c7e05472f1445711a3abd6c77cf2fd09329940fb120c +size 14918 diff --git a/maze/task5/maps/level7/img/83.png b/maze/task5/maps/level7/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..b17f24dd13421498c3f45d90f5fb987afb6c7c28 --- /dev/null +++ b/maze/task5/maps/level7/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6226129f1cd3313a55b5da6d9e06d44e7f25f417a17e446048b08623998f72a6 +size 15048 diff --git a/maze/task5/maps/level7/img/84.png b/maze/task5/maps/level7/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..b984a001e9ae5bba483624e4d0df525093f88ac5 --- /dev/null +++ b/maze/task5/maps/level7/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b3176ea4cc7f4eb2d077b629e87dc0f055f7cde1ccae09eef8c68dc2619f41 +size 16705 diff --git a/maze/task5/maps/level7/img/85.png b/maze/task5/maps/level7/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..db392dcf49ce165b9bbbed8948b878287dde84bf --- /dev/null +++ b/maze/task5/maps/level7/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c1b6afd8ca996884e340e203a81036bae7712b4335361107a23c638b447d66 +size 14942 diff --git a/maze/task5/maps/level7/img/86.png b/maze/task5/maps/level7/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..dd0cd3e30ea27fb77a3fd1057fee5772122dc87f --- /dev/null +++ b/maze/task5/maps/level7/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555f86a212be77d2e24262cfaf87d24796188ba2c39a896278a9ec813e139b58 +size 14061 diff --git a/maze/task5/maps/level7/img/87.png b/maze/task5/maps/level7/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..3abf0ddf14fab3e72038a3f62d3e1508e54d679f --- /dev/null +++ b/maze/task5/maps/level7/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e16ec1d7bc8109489f9d10178469c1d871e0dd22aa5c3fa183d5a28c7af514 +size 14794 diff --git a/maze/task5/maps/level7/img/88.png b/maze/task5/maps/level7/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..0406319714e8128e4e1a9072fb6bdcae003f782a --- /dev/null +++ b/maze/task5/maps/level7/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8563d101ad7479a58484d118a27a3971e324c63775eb48425dcbbfe5e34a9df8 +size 15949 diff --git a/maze/task5/maps/level7/img/89.png b/maze/task5/maps/level7/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..fa615d763d9bac0f0f3038a0f11a7ab3a4b9db40 --- /dev/null +++ b/maze/task5/maps/level7/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d385dec059b7bf573e1ae8b61766422c0fa567535e0c52f48830559fd3b0ecf +size 16690 diff --git a/maze/task5/maps/level7/img/9.png b/maze/task5/maps/level7/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ae3bd5028862401b8c120de342c1906c7b9b77e7 --- /dev/null +++ b/maze/task5/maps/level7/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d2ef6fe8c4763f0d22ae59defdb3e11e83d7f7f1db520cd596a21082101445 +size 15609 diff --git a/maze/task5/maps/level7/img/90.png b/maze/task5/maps/level7/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..922abe61a9f48135adbe70497d3b3ceb648f1e41 --- /dev/null +++ b/maze/task5/maps/level7/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1380456c0121541d007ba16c9ec728ee25d9017fb16ae2d798d9788e34016977 +size 14241 diff --git a/maze/task5/maps/level7/img/91.png b/maze/task5/maps/level7/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..0d4eedeb68504d142cb10abf436351aeb370cb42 --- /dev/null +++ b/maze/task5/maps/level7/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94e8454330a83abb54d04d75229a22c2d508115c6f1717bff209ac80c008278f +size 13939 diff --git a/maze/task5/maps/level7/img/92.png b/maze/task5/maps/level7/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..74ae0031ce00d1af5be1207558c04458b8d55035 --- /dev/null +++ b/maze/task5/maps/level7/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e874d6c43e710ea427e6d830ce5d2f791cff6a40e2d27f00bb87c49efcd1d267 +size 14899 diff --git a/maze/task5/maps/level7/img/93.png b/maze/task5/maps/level7/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9c3692f7721791f7e6567df9cf529f08ba11e7 --- /dev/null +++ b/maze/task5/maps/level7/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3550b127318fab4c292621a43b11254673e62a64999ccc784ae2d99ae17236fe +size 15021 diff --git a/maze/task5/maps/level7/img/94.png b/maze/task5/maps/level7/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..55cbed290cee8b559f47e1306c20a986ac2ca13e --- /dev/null +++ b/maze/task5/maps/level7/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5434e8f0212cbd4b269795ebda07d079021babb51beb4a1d0c96582821b2fee1 +size 15951 diff --git a/maze/task5/maps/level7/img/95.png b/maze/task5/maps/level7/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..aed9c8d3ae83017ad054d67bbe397c71a614dda9 --- /dev/null +++ b/maze/task5/maps/level7/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1347eb2cae5d30b7f3c33bf9a1764727435541a62b54752b4d2f3a34eb32db50 +size 14115 diff --git a/maze/task5/maps/level7/img/96.png b/maze/task5/maps/level7/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..9138fe79460a986295a8c62abbdad1e108c54519 --- /dev/null +++ b/maze/task5/maps/level7/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b54713877784d5f1ceaf8a59ae0069a5f087ec12a9d2a4823d08f96792d57d +size 15823 diff --git a/maze/task5/maps/level7/img/97.png b/maze/task5/maps/level7/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..ba416518206e11aa57e90638f1802715fda69e0c --- /dev/null +++ b/maze/task5/maps/level7/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dade278ab3ed9c864059003cea55950cfd22ac2a5f7af7e15b98b8170c4fba2 +size 13020 diff --git a/maze/task5/maps/level7/img/98.png b/maze/task5/maps/level7/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..ebc2c3e810fff8aacf7c3461a2ed78582e3e15bc --- /dev/null +++ b/maze/task5/maps/level7/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3f3033bef618e0c00007972a39c8bad106543044abdd1bc6cdf810590b0589 +size 15827 diff --git a/maze/task5/maps/level7/img/99.png b/maze/task5/maps/level7/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..c0e452ffe758e4ae2e77965c4cded140b4a61a99 --- /dev/null +++ b/maze/task5/maps/level7/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e7889dd8297f3ecb31e1bb9a9cfba43771b2ffe6469896b5e6ffa2d0ff55ec +size 15933 diff --git a/maze/task5/maps/level7/pure_text/0.txt b/maze/task5/maps/level7/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..13c3b10eb79e184b8c5d126e911f4ec398203351 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 3, Column 5; Row 4, Column 5; Row 6, Column 1; Row 6, Column 6; Row 7, Column 2; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/1.txt b/maze/task5/maps/level7/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..31b5b35ebb713b8c42aa38262d1c608d0c704a39 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 7; +The hole(s) are at: Row 3, Column 2; Row 4, Column 5; Row 5, Column 3; Row 6, Column 2; Row 6, Column 4; Row 6, Column 5; Row 7, Column 4; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/10.txt b/maze/task5/maps/level7/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..f529bc6f8936101ddaccec30d4502ca43f39cd56 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 5; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 3, Column 6; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 6, Column 6; Row 7, Column 1; Row 7, Column 6; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/11.txt b/maze/task5/maps/level7/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cf8a33752d7571bd96bc6f1d89d8666f3c24233 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 7; Row 2, Column 2; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 6, Column 3; Row 6, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/12.txt b/maze/task5/maps/level7/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..4947b42a4009b1e23a309b6c1993f9be5a083a53 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 4, Column 5; Row 4, Column 7; Row 5, Column 5; Row 5, Column 6; Row 7, Column 1; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/13.txt b/maze/task5/maps/level7/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..305e0272410469a436daf371ef21399e48207fd7 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 4; Row 2, Column 3; Row 3, Column 2; Row 3, Column 6; Row 5, Column 5; Row 5, Column 7; Row 6, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/14.txt b/maze/task5/maps/level7/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..afd80ba0e979ff7aa1b2378619eaba184f5d0ae1 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 5; Row 2, Column 5; Row 3, Column 1; Row 3, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 6; Row 6, Column 4; Row 6, Column 5; Row 7, Column 6; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/15.txt b/maze/task5/maps/level7/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..edebb4158ebdd056f3382ff80ba14dbe392ac5c7 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 5; Row 3, Column 2; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 6, Column 6; Row 6, Column 7; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/16.txt b/maze/task5/maps/level7/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cf446391f87e48965729a6f6c96fe1c2d20999f --- /dev/null +++ b/maze/task5/maps/level7/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 3; Row 6, Column 2; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/17.txt b/maze/task5/maps/level7/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..6536d9ea4cc6c296b5715dcffe0c004a69027a58 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 5; Row 2, Column 2; Row 3, Column 6; Row 4, Column 2; Row 4, Column 7; Row 5, Column 1; Row 6, Column 3; Row 7, Column 5; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/18.txt b/maze/task5/maps/level7/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..492ba4f7ec915988a956645fedd1f471a4f605f3 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 5; Row 3, Column 5; Row 4, Column 2; Row 4, Column 6; Row 5, Column 2; Row 5, Column 5; Row 6, Column 6; Row 7, Column 5; +The goal is at: Row 7, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/19.txt b/maze/task5/maps/level7/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7c1f5c518da72901f81e93d6cc1cb393af0da42 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 4; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 4, Column 7; Row 5, Column 1; Row 5, Column 3; Row 6, Column 1; Row 6, Column 7; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/2.txt b/maze/task5/maps/level7/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..a46d4119e4460ef5a6ff90b13a544a0990ace2a3 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 6; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 6; Row 5, Column 7; Row 6, Column 7; Row 7, Column 5; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/20.txt b/maze/task5/maps/level7/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..b78bebd57d294a323e9c4402e1c7057a5f8cc1e4 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 2, Column 7; Row 3, Column 4; Row 4, Column 1; Row 4, Column 7; Row 5, Column 7; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/21.txt b/maze/task5/maps/level7/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fedb678f393390c3244db927ef65893bee3e316 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 3; Row 4, Column 6; Row 4, Column 7; Row 5, Column 4; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/22.txt b/maze/task5/maps/level7/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd5c757eca93b95649a05162f13196f9e5559d17 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 7; Row 2, Column 4; Row 3, Column 4; Row 5, Column 5; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 7, Column 3; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/23.txt b/maze/task5/maps/level7/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..50ae8e8ce018db3c044ff541a2cd5a3dbab8ccdc --- /dev/null +++ b/maze/task5/maps/level7/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 2; Row 2, Column 6; Row 3, Column 4; Row 3, Column 7; Row 4, Column 3; Row 5, Column 1; Row 5, Column 6; Row 6, Column 1; Row 6, Column 5; Row 7, Column 4; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/24.txt b/maze/task5/maps/level7/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..1caf39ccf8e32216eaf10bc6ce34cd296d70730a --- /dev/null +++ b/maze/task5/maps/level7/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 6; Row 2, Column 1; Row 2, Column 6; Row 3, Column 1; Row 3, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 5, Column 2; Row 7, Column 1; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/25.txt b/maze/task5/maps/level7/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..1b9b0eac87c784752de3808e09daefe2b52e5670 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 6; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 4; Row 4, Column 7; Row 7, Column 3; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/26.txt b/maze/task5/maps/level7/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a9fbe827781f4fb549d9bf9df916ba93b4a7198 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 5, Column 3; Row 6, Column 2; Row 7, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/27.txt b/maze/task5/maps/level7/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..330ba2f4e4cffb169150413a171b396b05534e78 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 6; Row 2, Column 3; Row 2, Column 4; Row 3, Column 5; Row 3, Column 6; Row 4, Column 2; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/28.txt b/maze/task5/maps/level7/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..360806760d6a357a8eda36d994a9b47605ddf583 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 3, Column 2; Row 3, Column 3; Row 3, Column 6; Row 4, Column 2; Row 4, Column 3; Row 5, Column 1; Row 5, Column 2; Row 5, Column 5; Row 6, Column 1; Row 7, Column 1; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/29.txt b/maze/task5/maps/level7/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..5932ae0f778f3611adbaf8a0e9624737f81b5053 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 2; Row 2, Column 7; Row 3, Column 6; Row 4, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 4; Row 7, Column 1; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/3.txt b/maze/task5/maps/level7/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..a27a96e93208aa60fe94f01a175d90b508acd634 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 2, Column 1; Row 2, Column 7; Row 3, Column 4; Row 3, Column 7; Row 5, Column 1; Row 5, Column 2; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/30.txt b/maze/task5/maps/level7/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..299f4130428cd43ff16dea4c5e8a3a870d1f6d42 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 7; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/31.txt b/maze/task5/maps/level7/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6bbeda094015754df9cdef344328f55215edc97 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 2, Column 5; Row 3, Column 3; Row 3, Column 5; Row 5, Column 6; Row 6, Column 3; Row 7, Column 3; Row 7, Column 4; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/32.txt b/maze/task5/maps/level7/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8bfd9ffce5140660437d0e3cd70bb14b1d46b8c --- /dev/null +++ b/maze/task5/maps/level7/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 3, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 6, Column 6; Row 7, Column 5; +The goal is at: Row 7, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/33.txt b/maze/task5/maps/level7/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a02d76530d2c5a0099460e0b140cc45b407a8da --- /dev/null +++ b/maze/task5/maps/level7/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 2, Column 6; Row 3, Column 2; Row 3, Column 6; Row 4, Column 4; Row 4, Column 5; Row 6, Column 2; Row 6, Column 5; Row 7, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/34.txt b/maze/task5/maps/level7/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb8666c0e816aaef468099781dd2213ad9c33ccf --- /dev/null +++ b/maze/task5/maps/level7/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 1, Column 4; Row 3, Column 7; Row 4, Column 5; Row 6, Column 1; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/35.txt b/maze/task5/maps/level7/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..4361f81e0690fb713bcbc0c6177a25d0c1c0fe00 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 6, Column 4; Row 6, Column 6; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/36.txt b/maze/task5/maps/level7/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5d90dadcebf64858abe3bf7a825155ce35d7269 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 7; Row 2, Column 3; Row 2, Column 5; Row 4, Column 1; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 5, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/37.txt b/maze/task5/maps/level7/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f04305acf718de029649d585a8784dc33706de6e --- /dev/null +++ b/maze/task5/maps/level7/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 4, Column 5; Row 6, Column 3; Row 6, Column 7; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/38.txt b/maze/task5/maps/level7/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bd099b5880498ae75f38145f8fc7432dd4e3a53 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 3, Column 2; Row 3, Column 4; Row 4, Column 6; Row 6, Column 3; Row 6, Column 6; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/39.txt b/maze/task5/maps/level7/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..428198be14cab091cdf263157ae831404e5bd1ea --- /dev/null +++ b/maze/task5/maps/level7/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 2, Column 7; Row 3, Column 2; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 6, Column 5; Row 7, Column 4; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/4.txt b/maze/task5/maps/level7/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..f60e1df809221db0f6c9a2155b3fd0457c20be9d --- /dev/null +++ b/maze/task5/maps/level7/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 4, Column 1; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/40.txt b/maze/task5/maps/level7/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3f6be419901334a20afe173192edae315f44b98 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 2, Column 3; Row 2, Column 6; Row 3, Column 4; Row 4, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 7, Column 6; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/41.txt b/maze/task5/maps/level7/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfcc9c64f446331d80affbd05631fd41599ea440 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 3, Column 4; Row 4, Column 2; Row 4, Column 4; Row 4, Column 7; Row 5, Column 5; Row 5, Column 7; Row 6, Column 5; Row 7, Column 1; Row 7, Column 4; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/42.txt b/maze/task5/maps/level7/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3b9d1d168c468f04d4e27424b60ab76f0523944 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 4; Row 4, Column 1; Row 4, Column 2; Row 5, Column 4; Row 6, Column 2; Row 6, Column 6; Row 6, Column 7; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/43.txt b/maze/task5/maps/level7/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a5e8939b110a1699fad8eb5684fc833a215618a --- /dev/null +++ b/maze/task5/maps/level7/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 1; Row 2, Column 5; Row 5, Column 5; Row 6, Column 5; Row 7, Column 7; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/44.txt b/maze/task5/maps/level7/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..bda4008597cfea0da73e0c5c68a107705165420c --- /dev/null +++ b/maze/task5/maps/level7/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 4, Column 7; Row 5, Column 2; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/45.txt b/maze/task5/maps/level7/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..8526604616f6795b501ac8efade24824a2c14ead --- /dev/null +++ b/maze/task5/maps/level7/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 3; Row 3, Column 1; Row 4, Column 4; Row 6, Column 2; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/46.txt b/maze/task5/maps/level7/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..75e6fe23d0cf7d78102ee697d39dcd4578b413d9 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 1, Column 2; Row 3, Column 7; Row 5, Column 1; Row 5, Column 5; Row 5, Column 6; Row 6, Column 6; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/47.txt b/maze/task5/maps/level7/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..e42b109cd65a8cbfa3d07321011ecdddcc84f18a --- /dev/null +++ b/maze/task5/maps/level7/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 7; Row 2, Column 1; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 4, Column 2; Row 5, Column 1; Row 6, Column 5; Row 6, Column 7; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/48.txt b/maze/task5/maps/level7/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc2d79cc2ba984a3dfec2b4c8ddb12beac61a492 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 4, Column 3; Row 6, Column 5; Row 7, Column 6; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/49.txt b/maze/task5/maps/level7/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..26c8da1591ea42ebe8e689e9f95174077546a704 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 1, Column 6; Row 1, Column 7; Row 2, Column 6; Row 3, Column 6; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 5, Column 5; Row 6, Column 7; Row 7, Column 1; Row 7, Column 2; Row 7, Column 5; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/5.txt b/maze/task5/maps/level7/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1792bf92b2289e096b47661dd8dfa497f5eacc0 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 7; Row 2, Column 3; Row 2, Column 6; Row 2, Column 7; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 4, Column 5; Row 4, Column 6; Row 5, Column 5; Row 6, Column 7; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 3, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/50.txt b/maze/task5/maps/level7/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..22c1f77bcbad8e08f0f28ce9addd4f86c389e726 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 6; Row 3, Column 1; Row 4, Column 7; Row 5, Column 5; Row 6, Column 2; Row 7, Column 5; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/51.txt b/maze/task5/maps/level7/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ec99c2e60a0f8e15cbc92e8861b62fd7bb7e15c --- /dev/null +++ b/maze/task5/maps/level7/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 3, Column 6; Row 4, Column 5; Row 6, Column 6; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/52.txt b/maze/task5/maps/level7/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..034e1e85f455bebeef1983edb242b497463d1656 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 6; Row 3, Column 6; Row 4, Column 4; Row 5, Column 1; Row 6, Column 7; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/53.txt b/maze/task5/maps/level7/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad09e5153cdf1310b1ad7bfbe00f6633c789d232 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 5; Row 2, Column 7; Row 3, Column 7; Row 4, Column 1; Row 5, Column 6; Row 5, Column 7; Row 7, Column 3; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/54.txt b/maze/task5/maps/level7/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..264fea4a3ab231915c7616a02d0de5fbf3bfb942 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 2, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 4, Column 1; Row 5, Column 6; Row 7, Column 7; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/55.txt b/maze/task5/maps/level7/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..12929fbd8d21bf6915cbd488b0c2b9bcc8929882 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 1, Column 7; Row 2, Column 5; Row 3, Column 3; Row 3, Column 6; Row 5, Column 4; Row 5, Column 7; Row 6, Column 6; Row 7, Column 4; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/56.txt b/maze/task5/maps/level7/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc1bb6d4ec2266795c004c542efde8bdd96be8b0 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 2, Column 3; Row 2, Column 4; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/57.txt b/maze/task5/maps/level7/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d1fb0bcf7c850c5c30b12e681af01c48d3f4924 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 3, Column 2; Row 4, Column 2; Row 4, Column 6; Row 4, Column 7; Row 6, Column 3; Row 7, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/58.txt b/maze/task5/maps/level7/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..d34c906ba93bf2d1b59958412b31c95c9b4b600b --- /dev/null +++ b/maze/task5/maps/level7/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 5; Row 3, Column 7; Row 4, Column 5; Row 4, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 7, Column 3; Row 7, Column 4; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/59.txt b/maze/task5/maps/level7/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..d23652079cda47ea51eb14f2643a58ce18214f72 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 4; Row 4, Column 4; Row 4, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/6.txt b/maze/task5/maps/level7/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..4af5cc0f61799c63596c351cfd8ef1af61ebb48f --- /dev/null +++ b/maze/task5/maps/level7/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 6; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 2, Column 7; Row 4, Column 2; Row 5, Column 1; Row 5, Column 3; Row 5, Column 7; Row 6, Column 1; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 7, Column 1; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/60.txt b/maze/task5/maps/level7/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e17cc08f6803a36c7446744ee02eec6875d6aee --- /dev/null +++ b/maze/task5/maps/level7/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 2, Column 1; Row 2, Column 4; Row 2, Column 7; Row 3, Column 4; Row 3, Column 7; Row 4, Column 3; Row 4, Column 5; Row 5, Column 5; Row 7, Column 3; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/61.txt b/maze/task5/maps/level7/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..55bb0f348f83693a44bc9a0a847d9abe9cc3307b --- /dev/null +++ b/maze/task5/maps/level7/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 2, Column 5; Row 2, Column 6; Row 4, Column 4; Row 5, Column 3; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 1; Row 6, Column 2; Row 6, Column 6; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 3, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/62.txt b/maze/task5/maps/level7/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..2f6b7d99eea0c3fa33e21b67eaa5f4f7867c7ad0 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 1; +The hole(s) are at: Row 1, Column 6; Row 2, Column 1; Row 2, Column 4; Row 2, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 6, Column 6; Row 7, Column 2; Row 7, Column 5; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/63.txt b/maze/task5/maps/level7/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5b0a3637aaba3a08dcca5f427b870bc023f56da --- /dev/null +++ b/maze/task5/maps/level7/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 2, Column 4; Row 4, Column 2; Row 5, Column 6; Row 6, Column 5; Row 6, Column 6; Row 7, Column 5; +The goal is at: Row 5, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/64.txt b/maze/task5/maps/level7/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..61b67ca3dfdbcb55c4366c974c73c3339332626f --- /dev/null +++ b/maze/task5/maps/level7/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 3, Column 2; Row 4, Column 5; Row 5, Column 1; Row 5, Column 2; Row 5, Column 7; Row 6, Column 3; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; Row 7, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/65.txt b/maze/task5/maps/level7/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..19d4c636a1983c32bcb89ee9670bd2b80d59ad59 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 1, Column 6; Row 2, Column 3; Row 3, Column 4; Row 5, Column 6; Row 6, Column 1; Row 6, Column 2; Row 6, Column 7; Row 7, Column 4; Row 7, Column 5; Row 7, Column 7; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/66.txt b/maze/task5/maps/level7/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..40800909f74bbcd76e33685e4d37999cf36804c8 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 5; Row 3, Column 2; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 4; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/67.txt b/maze/task5/maps/level7/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb5cddfd9008830b974b1b2a98ebc7ec88a487a5 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 3; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 2; Row 3, Column 3; Row 5, Column 1; Row 6, Column 5; Row 7, Column 1; Row 7, Column 2; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/68.txt b/maze/task5/maps/level7/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c0ac41e07f21a1f0a9e3624ff7303aeebe9e4ee --- /dev/null +++ b/maze/task5/maps/level7/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 7; Row 2, Column 3; Row 2, Column 5; Row 3, Column 4; Row 4, Column 7; Row 5, Column 6; Row 6, Column 5; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/69.txt b/maze/task5/maps/level7/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..18b7147e2200c04763a53766572f193e04533683 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 7; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 3, Column 3; Row 3, Column 6; Row 4, Column 1; Row 5, Column 4; Row 5, Column 7; Row 6, Column 2; Row 7, Column 1; Row 7, Column 7; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/7.txt b/maze/task5/maps/level7/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..91d6c3acb8cf907323d6dd0cec07e74ec3193a8c --- /dev/null +++ b/maze/task5/maps/level7/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 3, Column 1; Row 3, Column 6; Row 4, Column 3; Row 4, Column 5; Row 5, Column 2; Row 5, Column 3; Row 6, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/70.txt b/maze/task5/maps/level7/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..28c8542b01531755fa3ee7c7c2addd0418e4357d --- /dev/null +++ b/maze/task5/maps/level7/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 2, Column 7; Row 3, Column 4; Row 3, Column 5; Row 4, Column 4; Row 5, Column 5; Row 6, Column 1; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 6, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/71.txt b/maze/task5/maps/level7/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9d7beae3ebe6edeb3c80615a929289c69f7e907 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 2; Row 3, Column 4; Row 3, Column 6; Row 5, Column 3; Row 5, Column 4; Row 7, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/72.txt b/maze/task5/maps/level7/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..00bbe9e7c0be697f97ec5732a5d4418ad7a977b7 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 6; Row 2, Column 7; Row 3, Column 7; Row 5, Column 1; Row 5, Column 2; Row 6, Column 3; Row 6, Column 6; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/73.txt b/maze/task5/maps/level7/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..28026d31b41132fc17437c57e432e085abd78cf3 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 2, Column 3; Row 3, Column 7; Row 6, Column 1; Row 7, Column 2; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/74.txt b/maze/task5/maps/level7/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..2687546b40e3e48ce44d0e97f9a941dc5fae807b --- /dev/null +++ b/maze/task5/maps/level7/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 2; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 2; Row 4, Column 4; Row 4, Column 6; Row 5, Column 5; Row 5, Column 6; Row 7, Column 6; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/75.txt b/maze/task5/maps/level7/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca5616b0b9d181376dff0fc17109e7e28378f983 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 5; Row 1, Column 7; Row 2, Column 1; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 5, Column 4; Row 5, Column 5; Row 6, Column 1; Row 6, Column 2; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/76.txt b/maze/task5/maps/level7/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce890f500778522671d9398cb881851353e07f58 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 3; Row 3, Column 2; Row 4, Column 3; Row 5, Column 3; Row 5, Column 5; Row 7, Column 7; +The goal is at: Row 2, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/77.txt b/maze/task5/maps/level7/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e165aa7887f6651da998127ec629c632e1dbc12 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 3; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 4, Column 6; Row 5, Column 1; Row 5, Column 7; Row 6, Column 1; Row 7, Column 6; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/78.txt b/maze/task5/maps/level7/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..287132d06fb0525bcd6ee5ff08d957f17b8f6b94 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 7; Row 2, Column 2; Row 2, Column 4; Row 3, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 4; Row 6, Column 2; +The goal is at: Row 4, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/79.txt b/maze/task5/maps/level7/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..efad8ef0c29c714e6ca2ec867ac530fbb45e5a94 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 7; Row 2, Column 2; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 4, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 3; Row 6, Column 4; Row 6, Column 7; Row 7, Column 7; +The goal is at: Row 7, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/8.txt b/maze/task5/maps/level7/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd8c5287e745af3709d661ebddd7ca1947b7a566 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 2, Column 1; Row 3, Column 2; Row 5, Column 3; Row 5, Column 4; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/80.txt b/maze/task5/maps/level7/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..2630f73c67e2e0cc720821334e9e00724781cbfe --- /dev/null +++ b/maze/task5/maps/level7/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 1; Row 2, Column 2; Row 2, Column 7; Row 3, Column 1; Row 4, Column 4; Row 4, Column 7; Row 6, Column 4; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/81.txt b/maze/task5/maps/level7/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1e074aa3053fa111f1d6b26005b581f3b3a9554 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 3, Column 1; Row 3, Column 4; Row 4, Column 4; Row 6, Column 5; +The goal is at: Row 2, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/82.txt b/maze/task5/maps/level7/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9d0dc653cbd653e7b10de10d4f15e77eaecb640 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 2, Column 7; Row 5, Column 2; Row 5, Column 4; Row 6, Column 4; Row 7, Column 1; Row 7, Column 2; +The goal is at: Row 4, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/83.txt b/maze/task5/maps/level7/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..687e04cf7d899c04973f512a5e833d5a766a87b9 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 3; Row 1, Column 7; Row 3, Column 3; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 5, Column 3; Row 6, Column 6; Row 6, Column 7; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/84.txt b/maze/task5/maps/level7/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..e5ee05291067392289ae8e55c5c1f136da0d0505 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 2; Row 5, Column 2; Row 6, Column 7; Row 7, Column 3; Row 7, Column 6; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/85.txt b/maze/task5/maps/level7/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea3a2cfec0debcda945cc2085e775629c321fa69 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/86.txt b/maze/task5/maps/level7/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..317ed0759c1f9dc7d089f56e3ea2ebd7823aa837 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 6; Row 6, Column 3; +The goal is at: Row 1, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/87.txt b/maze/task5/maps/level7/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc6c44c876b9e9128c32c29af8f858163730a03c --- /dev/null +++ b/maze/task5/maps/level7/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 5; Row 2, Column 1; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 5, Column 5; Row 7, Column 7; +The goal is at: Row 7, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/88.txt b/maze/task5/maps/level7/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..d422340d9d15f9703a5999d902ab2fca0405e188 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 6; Row 3, Column 4; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 5, Column 3; Row 5, Column 6; Row 6, Column 4; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/89.txt b/maze/task5/maps/level7/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..ca6656fb6dbee19b7e3d2985cc4265c6dab222f7 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 1; +The hole(s) are at: Row 1, Column 2; Row 2, Column 3; Row 2, Column 6; Row 3, Column 6; Row 4, Column 5; Row 4, Column 7; Row 5, Column 6; Row 6, Column 2; Row 6, Column 7; Row 7, Column 6; +The goal is at: Row 7, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/9.txt b/maze/task5/maps/level7/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..a379617bf066e3ebdc22c4f6dfd0a288439ec1a7 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 3, column 7; +The hole(s) are at: Row 2, Column 7; Row 3, Column 2; Row 4, Column 5; Row 5, Column 7; Row 6, Column 2; Row 6, Column 3; Row 7, Column 5; +The goal is at: Row 5, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/90.txt b/maze/task5/maps/level7/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..113e53d214d45a8a86a6b1f5084f49489816562d --- /dev/null +++ b/maze/task5/maps/level7/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 5; Row 1, Column 7; Row 2, Column 2; Row 2, Column 5; Row 4, Column 3; Row 4, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/91.txt b/maze/task5/maps/level7/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8cc96c756cc2b8ce9b84c138c8b924b2ae5a839 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 2, Column 1; Row 4, Column 5; Row 4, Column 6; Row 5, Column 6; Row 6, Column 2; Row 6, Column 4; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/92.txt b/maze/task5/maps/level7/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..e77ff94fac55a8755ae947fc1cf8f080cfcdc229 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 7; Row 2, Column 4; Row 4, Column 6; Row 6, Column 1; Row 6, Column 4; Row 6, Column 6; Row 6, Column 7; Row 7, Column 1; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/93.txt b/maze/task5/maps/level7/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f210caca9510ae3eaf51c874561606fb32f6589 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 2, Column 4; Row 2, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 4; Row 6, Column 2; Row 6, Column 5; Row 6, Column 7; Row 7, Column 2; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/94.txt b/maze/task5/maps/level7/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..81d5cffb64d0bb995e3335049befbd37e708989b --- /dev/null +++ b/maze/task5/maps/level7/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 4; Row 1, Column 5; Row 2, Column 1; Row 2, Column 5; Row 2, Column 6; Row 3, Column 6; Row 4, Column 2; Row 4, Column 7; Row 5, Column 1; Row 6, Column 2; Row 6, Column 3; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/95.txt b/maze/task5/maps/level7/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..02e86bddaaf8bf1d8c36bb70d121cac4639d3380 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 2, Column 7; Row 3, Column 3; Row 3, Column 4; Row 6, Column 3; Row 6, Column 4; Row 7, Column 5; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/96.txt b/maze/task5/maps/level7/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..e89de3f1eb8fe9a36e56d401a5bef0cbbaf66400 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 5; +The hole(s) are at: Row 1, Column 7; Row 2, Column 3; Row 3, Column 3; Row 4, Column 5; Row 4, Column 6; Row 6, Column 1; Row 7, Column 2; Row 7, Column 5; Row 7, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/97.txt b/maze/task5/maps/level7/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..7403818d038a668bec8eee0e5207317f9a3e8c02 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 3, Column 3; Row 6, Column 7; Row 7, Column 2; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/98.txt b/maze/task5/maps/level7/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..0852b9f68953bd9400f6d0717d823cc320613876 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 2, Column 7; Row 3, Column 4; Row 4, Column 1; Row 4, Column 4; Row 4, Column 7; Row 5, Column 7; Row 7, Column 6; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level7/pure_text/99.txt b/maze/task5/maps/level7/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..b938d6a5d57b9cd570e1f1e662aead635322ead9 --- /dev/null +++ b/maze/task5/maps/level7/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 7x7 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 4; Row 4, Column 5; Row 4, Column 7; Row 5, Column 1; Row 5, Column 4; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 7, Column 4; Row 7, Column 5; +The goal is at: Row 4, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level7/table/0.txt b/maze/task5/maps/level7/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..22b217819d65008ba3cf06d9f5f9ee9718e1722e --- /dev/null +++ b/maze/task5/maps/level7/table/0.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | * | @ | # | _ | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/1.txt b/maze/task5/maps/level7/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc5b0dc6d679451568e60e741d7dd4db09feed02 --- /dev/null +++ b/maze/task5/maps/level7/table/1.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/10.txt b/maze/task5/maps/level7/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..05b533a40dbb738595a6800815df2772ed228eb7 --- /dev/null +++ b/maze/task5/maps/level7/table/10.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | * | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/11.txt b/maze/task5/maps/level7/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..06287f7bf103839bb26b4fb93fba317f6f63d680 --- /dev/null +++ b/maze/task5/maps/level7/table/11.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | # | _ | _ | _ | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | # | +| Row 7 | _ | @ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/12.txt b/maze/task5/maps/level7/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..188ab3ee804fae165cf2f9d974d78783c9cf0baf --- /dev/null +++ b/maze/task5/maps/level7/table/12.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | # | _ | _ | _ | _ | _ | +| Row 3 | * | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/13.txt b/maze/task5/maps/level7/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..a94da6daf9e41ff10506d92ec3ad5e0f1362aaa4 --- /dev/null +++ b/maze/task5/maps/level7/table/13.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | # | _ | +| Row 4 | @ | _ | * | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | # | +| Row 7 | # | _ | # | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/14.txt b/maze/task5/maps/level7/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..7819f254671c9bd293f5f5da8e0cabd7023ca9b7 --- /dev/null +++ b/maze/task5/maps/level7/table/14.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | * | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/15.txt b/maze/task5/maps/level7/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..9c9d89852fedf9f492d4526863d7d1db7918c947 --- /dev/null +++ b/maze/task5/maps/level7/table/15.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | * | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/16.txt b/maze/task5/maps/level7/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e8f121cf70769beea2550631edd930b44ce6b2e --- /dev/null +++ b/maze/task5/maps/level7/table/16.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | # | _ | # | diff --git a/maze/task5/maps/level7/table/17.txt b/maze/task5/maps/level7/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..d8a9c7849cfbe1662f7798e3f314ce9a630d80f4 --- /dev/null +++ b/maze/task5/maps/level7/table/17.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | * | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/18.txt b/maze/task5/maps/level7/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..91a8ec81935138b3ccb0b066bc54b502b826f084 --- /dev/null +++ b/maze/task5/maps/level7/table/18.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | @ | _ | _ | # | _ | +| Row 5 | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | # | * | _ | diff --git a/maze/task5/maps/level7/table/19.txt b/maze/task5/maps/level7/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d4d3610df51c3fc03e8ca3277e0379f4ea9386c --- /dev/null +++ b/maze/task5/maps/level7/table/19.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | * | _ | _ | @ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/2.txt b/maze/task5/maps/level7/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e37a55531f21a80ba34283e5559c0fdb0167b630 --- /dev/null +++ b/maze/task5/maps/level7/table/2.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | # | +| Row 6 | * | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/20.txt b/maze/task5/maps/level7/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..c108fcf2a7b300a91ad143b4bc9025c9a0095951 --- /dev/null +++ b/maze/task5/maps/level7/table/20.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | @ | # | # | _ | _ | # | +| Row 3 | * | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task5/maps/level7/table/21.txt b/maze/task5/maps/level7/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d5e2f0d21103dd937fc447ae7034895e521a3b6 --- /dev/null +++ b/maze/task5/maps/level7/table/21.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | _ | # | @ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/22.txt b/maze/task5/maps/level7/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..5246e9480508f95ee80abdb11d35dc36c9c0b2bd --- /dev/null +++ b/maze/task5/maps/level7/table/22.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | # | _ | _ | +| Row 6 | _ | # | _ | # | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | @ | _ | diff --git a/maze/task5/maps/level7/table/23.txt b/maze/task5/maps/level7/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..042fb0eebb408ef822daafd205eb5207f253bad5 --- /dev/null +++ b/maze/task5/maps/level7/table/23.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | +| Row 5 | # | @ | * | _ | _ | # | _ | +| Row 6 | # | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/24.txt b/maze/task5/maps/level7/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..a788da85e3dad326105332652bc3cb4ee30edc96 --- /dev/null +++ b/maze/task5/maps/level7/table/24.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | @ | _ | # | _ | _ | _ | +| Row 4 | # | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | * | diff --git a/maze/task5/maps/level7/table/25.txt b/maze/task5/maps/level7/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..cdc30f5f5ec98b9dc18e90a5feff474a9d962b54 --- /dev/null +++ b/maze/task5/maps/level7/table/25.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | # | _ | _ | _ | +| Row 4 | * | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | # | _ | diff --git a/maze/task5/maps/level7/table/26.txt b/maze/task5/maps/level7/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d97aff79c16b6a7f6b857e9e5748c04be7bb8de --- /dev/null +++ b/maze/task5/maps/level7/table/26.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | @ | _ | # | _ | +| Row 3 | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/27.txt b/maze/task5/maps/level7/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..4656e0e8b4cbd0b145fe65dc6561c88ba17b1a97 --- /dev/null +++ b/maze/task5/maps/level7/table/27.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/28.txt b/maze/task5/maps/level7/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6acce1a24a84bc9b1908b8465a3b35508789e1a --- /dev/null +++ b/maze/task5/maps/level7/table/28.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | # | _ | +| Row 4 | _ | # | # | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | # | _ | _ | +| Row 6 | # | _ | _ | @ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/29.txt b/maze/task5/maps/level7/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..b52ed9ef0818d3c6f20ccd2b997f7bad5f45bd2c --- /dev/null +++ b/maze/task5/maps/level7/table/29.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | @ | # | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | # | _ | _ | * | +| Row 7 | # | # | _ | # | _ | # | _ | diff --git a/maze/task5/maps/level7/table/3.txt b/maze/task5/maps/level7/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..950a0e3589046b7e1ada691f0111460c1c15a2dd --- /dev/null +++ b/maze/task5/maps/level7/table/3.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | diff --git a/maze/task5/maps/level7/table/30.txt b/maze/task5/maps/level7/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..8229069b2e0428df75789dc389bf4deb46fa75b5 --- /dev/null +++ b/maze/task5/maps/level7/table/30.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | # | _ | # | # | _ | @ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | # | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/31.txt b/maze/task5/maps/level7/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..75fdabb2127df2682f712fc4a5fa25ab9ff22464 --- /dev/null +++ b/maze/task5/maps/level7/table/31.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | @ | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/32.txt b/maze/task5/maps/level7/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..681afc22cdd0fb492d3ce093875af1066b7c2f07 --- /dev/null +++ b/maze/task5/maps/level7/table/32.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | * | _ | _ | # | @ | _ | diff --git a/maze/task5/maps/level7/table/33.txt b/maze/task5/maps/level7/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba6d214e6a55182fe45b87ad7ca16ace112e6682 --- /dev/null +++ b/maze/task5/maps/level7/table/33.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | * | # | _ | +| Row 3 | @ | # | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/34.txt b/maze/task5/maps/level7/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..77fc2191312e8360dddbbd615f5f6e2e02547fb0 --- /dev/null +++ b/maze/task5/maps/level7/table/34.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | * | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task5/maps/level7/table/35.txt b/maze/task5/maps/level7/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4ea7186cb45904c4d19bfcf27afda2f11d717eb --- /dev/null +++ b/maze/task5/maps/level7/table/35.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | * | diff --git a/maze/task5/maps/level7/table/36.txt b/maze/task5/maps/level7/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..42d2f26b2fdd2ab0695f8cac32e933b82686d19a --- /dev/null +++ b/maze/task5/maps/level7/table/36.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | _ | * | @ | # | _ | +| Row 6 | # | _ | # | _ | _ | _ | # | +| Row 7 | # | # | # | _ | # | # | _ | diff --git a/maze/task5/maps/level7/table/37.txt b/maze/task5/maps/level7/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..64f2d137f810d6ef424301eaaf3e54eab7652ba5 --- /dev/null +++ b/maze/task5/maps/level7/table/37.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | * | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/38.txt b/maze/task5/maps/level7/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..c554aff0186f344746ebcb741446237f9a8ee0eb --- /dev/null +++ b/maze/task5/maps/level7/table/38.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | _ | @ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/39.txt b/maze/task5/maps/level7/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..c137abfdd27c494f925d82ae6aee26ac4519429e --- /dev/null +++ b/maze/task5/maps/level7/table/39.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | * | _ | +| Row 4 | _ | @ | _ | _ | # | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/4.txt b/maze/task5/maps/level7/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..81d05543469f1530f43fc75ac808e717f7391516 --- /dev/null +++ b/maze/task5/maps/level7/table/4.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | @ | # | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | * | +| Row 4 | # | _ | _ | _ | _ | _ | # | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/40.txt b/maze/task5/maps/level7/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..a361e3bc92befc88b812804a5a47288c4ae175d9 --- /dev/null +++ b/maze/task5/maps/level7/table/40.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | @ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | # | _ | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/41.txt b/maze/task5/maps/level7/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..be3da79b861f8431a4eb25517e8e40523d152103 --- /dev/null +++ b/maze/task5/maps/level7/table/41.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | # | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | # | _ | @ | _ | diff --git a/maze/task5/maps/level7/table/42.txt b/maze/task5/maps/level7/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ab743f7f5482c9d484a18c1438563b3608c2328 --- /dev/null +++ b/maze/task5/maps/level7/table/42.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task5/maps/level7/table/43.txt b/maze/task5/maps/level7/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bfc994533b269ea088a634462e5d2ca4162b94f --- /dev/null +++ b/maze/task5/maps/level7/table/43.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | * | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | @ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level7/table/44.txt b/maze/task5/maps/level7/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..848bb7c7a6ddea2796a5c45fe0f615fc3aeb4d81 --- /dev/null +++ b/maze/task5/maps/level7/table/44.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | @ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | # | _ | _ | # | # | # | diff --git a/maze/task5/maps/level7/table/45.txt b/maze/task5/maps/level7/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ac647dc20f9f765bdd85580f8077973b6764019 --- /dev/null +++ b/maze/task5/maps/level7/table/45.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | @ | _ | _ | * | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/46.txt b/maze/task5/maps/level7/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..5109322b1c270ec47ef8fb1b1583b1ba57004f70 --- /dev/null +++ b/maze/task5/maps/level7/table/46.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | * | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/47.txt b/maze/task5/maps/level7/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cc80ec604f99dd491d90ca3cee863e451d9441b --- /dev/null +++ b/maze/task5/maps/level7/table/47.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | * | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/48.txt b/maze/task5/maps/level7/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..35323e7cddcf89fede98e764546e3971637814db --- /dev/null +++ b/maze/task5/maps/level7/table/48.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | * | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | @ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/49.txt b/maze/task5/maps/level7/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..201f302469459288c505dd81ae182dd6b1eb2379 --- /dev/null +++ b/maze/task5/maps/level7/table/49.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | +| Row 5 | _ | _ | @ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | # | # | _ | _ | # | _ | * | diff --git a/maze/task5/maps/level7/table/5.txt b/maze/task5/maps/level7/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0daa500ee25b435afbe33cc276c39cd6f165d8b --- /dev/null +++ b/maze/task5/maps/level7/table/5.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | _ | # | # | +| Row 3 | * | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | # | _ | # | _ | diff --git a/maze/task5/maps/level7/table/50.txt b/maze/task5/maps/level7/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..215efdb2bd04065d83e49403fcff2a30e5c05020 --- /dev/null +++ b/maze/task5/maps/level7/table/50.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | # | _ | * | +| Row 6 | _ | # | _ | _ | _ | _ | @ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/51.txt b/maze/task5/maps/level7/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0f4bc1af45eca5fb97e323f60743b43219bec4b --- /dev/null +++ b/maze/task5/maps/level7/table/51.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | # | _ | _ | * | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | diff --git a/maze/task5/maps/level7/table/52.txt b/maze/task5/maps/level7/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3f0aed06233ff091f5998f8d2a7b3ab66d28eea --- /dev/null +++ b/maze/task5/maps/level7/table/52.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | * | _ | # | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/53.txt b/maze/task5/maps/level7/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7f0c9b32e0cb11fe4f101cb11b787ce4577ac1c --- /dev/null +++ b/maze/task5/maps/level7/table/53.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | # | * | @ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/54.txt b/maze/task5/maps/level7/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..675d6c1680196fcc820a18d3413fa8ff5f5d0680 --- /dev/null +++ b/maze/task5/maps/level7/table/54.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | # | +| Row 3 | _ | # | * | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level7/table/55.txt b/maze/task5/maps/level7/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..04b2eb7671739fe5d10f29d4e0fc0a28d0f76f7f --- /dev/null +++ b/maze/task5/maps/level7/table/55.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | # | # | +| Row 2 | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | @ | # | _ | _ | # | _ | +| Row 4 | _ | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/56.txt b/maze/task5/maps/level7/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..304c39704490818bc71212ac23edfa1fc3c71ed5 --- /dev/null +++ b/maze/task5/maps/level7/table/56.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | # | +| Row 2 | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/57.txt b/maze/task5/maps/level7/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..cbbc6f474db104b78575238a017904c3ff7d7ea2 --- /dev/null +++ b/maze/task5/maps/level7/table/57.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | * | _ | @ | _ | # | diff --git a/maze/task5/maps/level7/table/58.txt b/maze/task5/maps/level7/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ea7548409d537c7be89b6606c6e882e984336d6 --- /dev/null +++ b/maze/task5/maps/level7/table/58.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | * | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/59.txt b/maze/task5/maps/level7/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c5f33691f2b09d30068649628bb34853ce9fc46 --- /dev/null +++ b/maze/task5/maps/level7/table/59.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | @ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level7/table/6.txt b/maze/task5/maps/level7/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc3365a106159c5ab337b0e08bb611ca8f11e7f1 --- /dev/null +++ b/maze/task5/maps/level7/table/6.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | * | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | @ | # | +| Row 6 | # | _ | # | # | # | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/60.txt b/maze/task5/maps/level7/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..04c532a56812a84fc903b259579005b27c96da04 --- /dev/null +++ b/maze/task5/maps/level7/table/60.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | @ | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | # | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | * | +| Row 7 | _ | _ | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/61.txt b/maze/task5/maps/level7/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..345472fb7d24b00864fc979953f1b6bf580fc497 --- /dev/null +++ b/maze/task5/maps/level7/table/61.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | * | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | # | # | _ | # | +| Row 6 | # | # | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | diff --git a/maze/task5/maps/level7/table/62.txt b/maze/task5/maps/level7/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..e50dd05d2b33c8a07386396ce489b5a7c5601480 --- /dev/null +++ b/maze/task5/maps/level7/table/62.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | @ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | # | # | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/63.txt b/maze/task5/maps/level7/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..57805c11756ed1afea03faa81c9cfc2ae499d7f4 --- /dev/null +++ b/maze/task5/maps/level7/table/63.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | * | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/64.txt b/maze/task5/maps/level7/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..d23dab5b7b782d7c79def885d897121266d2adc2 --- /dev/null +++ b/maze/task5/maps/level7/table/64.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | # | _ | _ | # | # | +| Row 7 | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/65.txt b/maze/task5/maps/level7/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..acd3ca976012209ed63a800a8e0873dafa08bd0d --- /dev/null +++ b/maze/task5/maps/level7/table/65.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | * | +| Row 6 | # | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | # | _ | # | diff --git a/maze/task5/maps/level7/table/66.txt b/maze/task5/maps/level7/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e888b52914e7357a185c39dcda47e44454cfbb6 --- /dev/null +++ b/maze/task5/maps/level7/table/66.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/67.txt b/maze/task5/maps/level7/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8d510ba8cae75502c4e2b0d288b8568db12e36a --- /dev/null +++ b/maze/task5/maps/level7/table/67.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | # | _ | # | # | # | +| Row 2 | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | @ | _ | * | _ | _ | diff --git a/maze/task5/maps/level7/table/68.txt b/maze/task5/maps/level7/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3179de5b6e5fc75bfccea1e89d92b37fa6778b3 --- /dev/null +++ b/maze/task5/maps/level7/table/68.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | diff --git a/maze/task5/maps/level7/table/69.txt b/maze/task5/maps/level7/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..a284c41472204c1104d233f2494be515f5a2d446 --- /dev/null +++ b/maze/task5/maps/level7/table/69.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | # | +| Row 2 | _ | _ | # | _ | # | _ | # | +| Row 3 | _ | _ | # | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | # | @ | _ | * | _ | _ | # | diff --git a/maze/task5/maps/level7/table/7.txt b/maze/task5/maps/level7/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..9acc8b218ca81bf7dc7c1ff352fd08f85415b51e --- /dev/null +++ b/maze/task5/maps/level7/table/7.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | @ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | * | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/70.txt b/maze/task5/maps/level7/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..31278101a0df6a6d112fa424adfb4b3d2f785ba6 --- /dev/null +++ b/maze/task5/maps/level7/table/70.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | @ | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | * | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | # | _ | diff --git a/maze/task5/maps/level7/table/71.txt b/maze/task5/maps/level7/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e96cdee70e4bfa866329f1abdc67c50d4998f95 --- /dev/null +++ b/maze/task5/maps/level7/table/71.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | # | # | # | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/72.txt b/maze/task5/maps/level7/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..0f7a2c245ab84ab4365ad10bd6f7b14093c4c5ad --- /dev/null +++ b/maze/task5/maps/level7/table/72.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | # | _ | # | +| Row 2 | _ | # | * | _ | _ | # | # | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/73.txt b/maze/task5/maps/level7/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..7fb1ba3bc1afedd108324a07d9e222edcba4bb0c --- /dev/null +++ b/maze/task5/maps/level7/table/73.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | @ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/74.txt b/maze/task5/maps/level7/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ca4ea02cea9b1b456e0b590944e677fff36cac4 --- /dev/null +++ b/maze/task5/maps/level7/table/74.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | * | _ | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | # | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/75.txt b/maze/task5/maps/level7/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..be65620632e0e123d44a853a2bc06f3986cc2fc1 --- /dev/null +++ b/maze/task5/maps/level7/table/75.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | @ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | _ | +| Row 6 | # | # | _ | * | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/76.txt b/maze/task5/maps/level7/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bc3eb953426c16cf2a158f9e1370a2755b4454c --- /dev/null +++ b/maze/task5/maps/level7/table/76.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | * | +| Row 3 | _ | # | _ | _ | _ | @ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level7/table/77.txt b/maze/task5/maps/level7/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a0af7ec1d326bc531b096f9ec67ba763d36004b --- /dev/null +++ b/maze/task5/maps/level7/table/77.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | +| Row 5 | # | _ | @ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/78.txt b/maze/task5/maps/level7/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..802c235482d11e3a294137b5572b7457afb37dc0 --- /dev/null +++ b/maze/task5/maps/level7/table/78.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | # | +| Row 2 | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | # | # | _ | _ | _ | # | +| Row 4 | * | _ | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | @ | diff --git a/maze/task5/maps/level7/table/79.txt b/maze/task5/maps/level7/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..0908235e744ae7b01d7af5a67bb5a990359fbaaa --- /dev/null +++ b/maze/task5/maps/level7/table/79.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | @ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | +| Row 4 | # | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | _ | # | # | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | * | # | diff --git a/maze/task5/maps/level7/table/8.txt b/maze/task5/maps/level7/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..418cca7b3cc9bc755efe2aa71de12c3b4c0ca419 --- /dev/null +++ b/maze/task5/maps/level7/table/8.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | * | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/80.txt b/maze/task5/maps/level7/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ad8d8edbc981bd5e4b8368e468678ce4b3701eb --- /dev/null +++ b/maze/task5/maps/level7/table/80.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | # | @ | _ | +| Row 2 | # | # | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | # | _ | # | _ | # | _ | diff --git a/maze/task5/maps/level7/table/81.txt b/maze/task5/maps/level7/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..041b65fcb94cfb3729465bdcd3696bb36837a191 --- /dev/null +++ b/maze/task5/maps/level7/table/81.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | @ | _ | +| Row 2 | # | * | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/82.txt b/maze/task5/maps/level7/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..999c74f84157b5dbdda514c568cadb7771876b03 --- /dev/null +++ b/maze/task5/maps/level7/table/82.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | @ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | * | _ | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/83.txt b/maze/task5/maps/level7/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d80664b3d25aed7a2460bd0fd0b3a00a128b08d --- /dev/null +++ b/maze/task5/maps/level7/table/83.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | _ | * | _ | _ | diff --git a/maze/task5/maps/level7/table/84.txt b/maze/task5/maps/level7/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..022c45c4a081f59a09b0fadbd4fe25528458814f --- /dev/null +++ b/maze/task5/maps/level7/table/84.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | # | _ | +| Row 2 | _ | # | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | _ | # | +| Row 7 | _ | _ | # | _ | * | # | _ | diff --git a/maze/task5/maps/level7/table/85.txt b/maze/task5/maps/level7/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..d02d2483e820514892583848712f461270c362c6 --- /dev/null +++ b/maze/task5/maps/level7/table/85.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | # | # | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | +| Row 4 | @ | _ | _ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/86.txt b/maze/task5/maps/level7/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1446ff55975c21c5a7976341d97dc291e870bd5 --- /dev/null +++ b/maze/task5/maps/level7/table/86.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | * | _ | _ | _ | +| Row 2 | # | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | # | @ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/87.txt b/maze/task5/maps/level7/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc55198d236d5e7906419c87fe185268754f1369 --- /dev/null +++ b/maze/task5/maps/level7/table/87.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | _ | @ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | * | # | diff --git a/maze/task5/maps/level7/table/88.txt b/maze/task5/maps/level7/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..246e0b2564775fcf5a22acd6d5ec2fda01e0e512 --- /dev/null +++ b/maze/task5/maps/level7/table/88.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | # | # | _ | +| Row 3 | _ | _ | _ | # | # | _ | # | +| Row 4 | # | * | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | @ | _ | # | _ | _ | _ | +| Row 7 | # | _ | # | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/89.txt b/maze/task5/maps/level7/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..29f722c5d0bdfec18c55086b3377a3270930b585 --- /dev/null +++ b/maze/task5/maps/level7/table/89.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | @ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | * | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/9.txt b/maze/task5/maps/level7/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf23184c1726beef9b0b30a5e533d7778d82997f --- /dev/null +++ b/maze/task5/maps/level7/table/9.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | @ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | * | _ | # | +| Row 6 | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/90.txt b/maze/task5/maps/level7/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..3325dad6341f9bfb76350982ae1901b3499f4eaf --- /dev/null +++ b/maze/task5/maps/level7/table/90.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | # | _ | # | +| Row 2 | * | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | @ | # | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | # | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/91.txt b/maze/task5/maps/level7/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..42d1959e88749ed3116192838fcd51a99721280c --- /dev/null +++ b/maze/task5/maps/level7/table/91.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | # | _ | # | _ | * | _ | +| Row 7 | @ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/92.txt b/maze/task5/maps/level7/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..91c48af64bbe856379a695c63317515ad42f8ad3 --- /dev/null +++ b/maze/task5/maps/level7/table/92.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | @ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | # | # | +| Row 7 | # | _ | _ | * | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/93.txt b/maze/task5/maps/level7/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..686bc753e62296f95954a1793d9da125787ceac1 --- /dev/null +++ b/maze/task5/maps/level7/table/93.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | @ | _ | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | # | +| Row 7 | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/94.txt b/maze/task5/maps/level7/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cc808de540d9cd5db7e5f3fda7f37a05b9c692c --- /dev/null +++ b/maze/task5/maps/level7/table/94.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | # | # | _ | # | # | _ | _ | +| Row 2 | # | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | _ | _ | _ | +| Row 6 | * | # | # | _ | @ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level7/table/95.txt b/maze/task5/maps/level7/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ceaa7f37fc4e17d2b9a1e68c6d19b2e639d9749 --- /dev/null +++ b/maze/task5/maps/level7/table/95.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | @ | _ | _ | _ | * | +| Row 2 | # | _ | _ | _ | # | _ | # | +| Row 3 | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level7/table/96.txt b/maze/task5/maps/level7/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..f56ba8f2a29a02b0d02c49b23b4a940315508e07 --- /dev/null +++ b/maze/task5/maps/level7/table/96.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | # | # | _ | +| Row 5 | * | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | @ | _ | _ | +| Row 7 | _ | # | _ | _ | # | # | _ | diff --git a/maze/task5/maps/level7/table/97.txt b/maze/task5/maps/level7/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..073d791d3e99609b898a8f07a1d83bc1dee6d46f --- /dev/null +++ b/maze/task5/maps/level7/table/97.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | * | # | +| Row 7 | _ | # | _ | _ | _ | # | # | diff --git a/maze/task5/maps/level7/table/98.txt b/maze/task5/maps/level7/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..68ffccbac4f5e250399e5c3ac8ef43c65ec744ab --- /dev/null +++ b/maze/task5/maps/level7/table/98.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | # | _ | _ | # | # | +| Row 2 | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | # | +| Row 5 | @ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | * | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level7/table/99.txt b/maze/task5/maps/level7/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9e78ea8e1db17486a619e41fb4f85436d6ce56e --- /dev/null +++ b/maze/task5/maps/level7/table/99.txt @@ -0,0 +1,8 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | * | # | _ | # | +| Row 5 | # | _ | _ | # | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | @ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task5/maps/level8/img/0.png b/maze/task5/maps/level8/img/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dc2d5e2065e439b3760908bfc2a852ee1601b2f7 --- /dev/null +++ b/maze/task5/maps/level8/img/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681ad7c23411bf1faf946ae85062aeeb559f5e44c2cba5651fa427f972f6b7e2 +size 17927 diff --git a/maze/task5/maps/level8/img/1.png b/maze/task5/maps/level8/img/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3698572e5d937e9db755cf6d13d6b8a8b957e752 --- /dev/null +++ b/maze/task5/maps/level8/img/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e73184153f9d023e2b27f7fba691e6a7ce71023e6bf3d4d06bcb4c1ae84a379 +size 18565 diff --git a/maze/task5/maps/level8/img/10.png b/maze/task5/maps/level8/img/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1f99a1b5a76d9cde5e6970cba6e033bc19897f18 --- /dev/null +++ b/maze/task5/maps/level8/img/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58e4918bfc6d0ef3003610ca0662944f3a4649670819022636b69d8ff1e2060 +size 17915 diff --git a/maze/task5/maps/level8/img/11.png b/maze/task5/maps/level8/img/11.png new file mode 100644 index 0000000000000000000000000000000000000000..40ab5afe04bb7e9cf54bc58575a36df3d9b5db83 --- /dev/null +++ b/maze/task5/maps/level8/img/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83e5a8aadbad90c777e3d2c28adb7946f29fa96c3b7b870d13e6336e8e5276a +size 19637 diff --git a/maze/task5/maps/level8/img/12.png b/maze/task5/maps/level8/img/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ca4eb3be0217febaf91bc083400385806782c651 --- /dev/null +++ b/maze/task5/maps/level8/img/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad1b9ba61e87839708343a95f60ff62ce676a610a5e81781a85821de3094394 +size 16778 diff --git a/maze/task5/maps/level8/img/13.png b/maze/task5/maps/level8/img/13.png new file mode 100644 index 0000000000000000000000000000000000000000..901f58d80e826858bbca79870f3775481b342af3 --- /dev/null +++ b/maze/task5/maps/level8/img/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c23c4fa8f44abc4556cf126bb76c74e63b03988abfee34eeb540d4a0393d2b +size 16810 diff --git a/maze/task5/maps/level8/img/14.png b/maze/task5/maps/level8/img/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3d21aab929a24742358501dd0cb99dd28db14188 --- /dev/null +++ b/maze/task5/maps/level8/img/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945db2b9eb5e9ec748b4f37b82f4c5f0ed64ac11e054ef15a5367846ec07eea5 +size 18691 diff --git a/maze/task5/maps/level8/img/15.png b/maze/task5/maps/level8/img/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f43aa69f08f078e32fccf9a94453b95aa2c27c04 --- /dev/null +++ b/maze/task5/maps/level8/img/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c411324e332dd42522e47fac499336ce24dddc16c6cf77c2fa72fcc41f5959e7 +size 18790 diff --git a/maze/task5/maps/level8/img/16.png b/maze/task5/maps/level8/img/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1c1214bda3bbb412552350122618839fadbd2435 --- /dev/null +++ b/maze/task5/maps/level8/img/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2f778f2bb7b4f4f7cc22db2478166ca291e4bc5e81e53a0db10b5566e0b770 +size 19627 diff --git a/maze/task5/maps/level8/img/17.png b/maze/task5/maps/level8/img/17.png new file mode 100644 index 0000000000000000000000000000000000000000..794dfe26d673d53df2fc2099a383eeb58737f144 --- /dev/null +++ b/maze/task5/maps/level8/img/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abcf5c12d0e22df1e147e5a056d41dec6eae00554363987eb9a8443648fe9ae +size 18648 diff --git a/maze/task5/maps/level8/img/18.png b/maze/task5/maps/level8/img/18.png new file mode 100644 index 0000000000000000000000000000000000000000..6448ad2cde372bc21f11a52319fc4065d00859a8 --- /dev/null +++ b/maze/task5/maps/level8/img/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13d037323b28288839585127c19da42b5afa95e7a802ec77ff322527c3c6bc9 +size 15891 diff --git a/maze/task5/maps/level8/img/19.png b/maze/task5/maps/level8/img/19.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac0b81d475b82cadd25ce6de90e5173ced03cd1 --- /dev/null +++ b/maze/task5/maps/level8/img/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701ada7573ca467b9f3f6e0f6f1a0dd4520e2200d891322a15a0ee652212a09c +size 19571 diff --git a/maze/task5/maps/level8/img/2.png b/maze/task5/maps/level8/img/2.png new file mode 100644 index 0000000000000000000000000000000000000000..20805a40616e5457f2329fcf6814f8397be8427f --- /dev/null +++ b/maze/task5/maps/level8/img/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d8fa1babc8c3be56bf04f9be34d436a52a3632525ec20d203b560ca9e04c79 +size 18803 diff --git a/maze/task5/maps/level8/img/20.png b/maze/task5/maps/level8/img/20.png new file mode 100644 index 0000000000000000000000000000000000000000..96f22bf9d89107f036ba7364c9266b8afc08d9bf --- /dev/null +++ b/maze/task5/maps/level8/img/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7bd8e24bd7adfdf1bef6fe6ebec840a3210d29edb5bbb1155d3600b9129968 +size 18865 diff --git a/maze/task5/maps/level8/img/21.png b/maze/task5/maps/level8/img/21.png new file mode 100644 index 0000000000000000000000000000000000000000..4ec6879f3569a880a795cb1a16f9b5b1384398e3 --- /dev/null +++ b/maze/task5/maps/level8/img/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c46235f04304dfd29b4c3b6b8067ca84b698b2214de0ec14db3802ae616ab2 +size 17785 diff --git a/maze/task5/maps/level8/img/22.png b/maze/task5/maps/level8/img/22.png new file mode 100644 index 0000000000000000000000000000000000000000..a00a86d056b3f97b608203bdccf5f613d1e89b27 --- /dev/null +++ b/maze/task5/maps/level8/img/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7c37eae6aa7f038bf33fec62b080d2d43745d94c213d7bb6c55db481ffcf25 +size 17780 diff --git a/maze/task5/maps/level8/img/23.png b/maze/task5/maps/level8/img/23.png new file mode 100644 index 0000000000000000000000000000000000000000..2da9db6cfac0886876ef8a2d61ce7975c6959a7b --- /dev/null +++ b/maze/task5/maps/level8/img/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8c88e2a0916ccee47af66c152e58abde796d0e59f4d922be099ad74dd01a78 +size 18629 diff --git a/maze/task5/maps/level8/img/24.png b/maze/task5/maps/level8/img/24.png new file mode 100644 index 0000000000000000000000000000000000000000..a1785c9d654de6f5f23152cd6d2e20e9bf79e469 --- /dev/null +++ b/maze/task5/maps/level8/img/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b2de19905cc0cd1cad05c7ab030708800c1b0aa499808cc8c4ec4dca8b52017 +size 18569 diff --git a/maze/task5/maps/level8/img/25.png b/maze/task5/maps/level8/img/25.png new file mode 100644 index 0000000000000000000000000000000000000000..68ae7a4c77dba24a63e1ebe73497ab01b52f6887 --- /dev/null +++ b/maze/task5/maps/level8/img/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385258333b63bb8e2340f04544c2f50414b4fd6e5a6d8225c25245cfc020cf64 +size 17941 diff --git a/maze/task5/maps/level8/img/26.png b/maze/task5/maps/level8/img/26.png new file mode 100644 index 0000000000000000000000000000000000000000..234c5e060b35cc0d7142dcbdb90e4412e3f31810 --- /dev/null +++ b/maze/task5/maps/level8/img/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80668308ff3957c26ee47a4c61026e264b727709a1eff5d286b41de00912b98a +size 17879 diff --git a/maze/task5/maps/level8/img/27.png b/maze/task5/maps/level8/img/27.png new file mode 100644 index 0000000000000000000000000000000000000000..3210a9a4ddfaf5b04a35c6724a3b206c85e30fd8 --- /dev/null +++ b/maze/task5/maps/level8/img/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8b76e7138f7799a32936e3ae45f7aca759a33406115f8cc1ccb777b8350346 +size 16779 diff --git a/maze/task5/maps/level8/img/28.png b/maze/task5/maps/level8/img/28.png new file mode 100644 index 0000000000000000000000000000000000000000..b4391e1cc90ec9cba1975273c5b10161c003212c --- /dev/null +++ b/maze/task5/maps/level8/img/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3419c21d5174da791eefa034788dae23fb2b9abe699f6cc92a7dc7a9af06fe9b +size 17845 diff --git a/maze/task5/maps/level8/img/29.png b/maze/task5/maps/level8/img/29.png new file mode 100644 index 0000000000000000000000000000000000000000..22614abf3fb78ef0ddb9c101edc2e4cfc5d7433f --- /dev/null +++ b/maze/task5/maps/level8/img/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81a67896e732e18ccbe69e95e99bb65f6bb59323fc9bb46c8e83eb510247ae3 +size 19550 diff --git a/maze/task5/maps/level8/img/3.png b/maze/task5/maps/level8/img/3.png new file mode 100644 index 0000000000000000000000000000000000000000..03902673ba5d2ed99f2adf299fa11c1443a38909 --- /dev/null +++ b/maze/task5/maps/level8/img/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a314eac76e015edf11575e143578dd5ed85a7c6bc8cd73d52f4336de9a0118a +size 18023 diff --git a/maze/task5/maps/level8/img/30.png b/maze/task5/maps/level8/img/30.png new file mode 100644 index 0000000000000000000000000000000000000000..efbf9942ad9e2b9d315bd8be6661ba94d6d07670 --- /dev/null +++ b/maze/task5/maps/level8/img/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3354c04191d98deba38d65efb0ecc5ead29f665d6fb4f8b202817d08d28a6bfa +size 19691 diff --git a/maze/task5/maps/level8/img/31.png b/maze/task5/maps/level8/img/31.png new file mode 100644 index 0000000000000000000000000000000000000000..68ef23656d48a941305a8e26e21d08df7ce57465 --- /dev/null +++ b/maze/task5/maps/level8/img/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b019eb7cfbcb62925a5dd98c2e41f7c11c09ec1761ce257f83813449e9a35a +size 19540 diff --git a/maze/task5/maps/level8/img/32.png b/maze/task5/maps/level8/img/32.png new file mode 100644 index 0000000000000000000000000000000000000000..dd115f00253a3d0bab6ee4460e14aefcfce133fa --- /dev/null +++ b/maze/task5/maps/level8/img/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b8b82978fdf515826fffd5f72c9565bebd2b8bce4e968cf80a6b4b6cf55950 +size 16792 diff --git a/maze/task5/maps/level8/img/33.png b/maze/task5/maps/level8/img/33.png new file mode 100644 index 0000000000000000000000000000000000000000..dea54f07654247e6835b05a3ebe49d3ee043992b --- /dev/null +++ b/maze/task5/maps/level8/img/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46bb34ec60a621a58e7d5417cea97f3940b34128a6ea49b43786ffe489439e8f +size 17899 diff --git a/maze/task5/maps/level8/img/34.png b/maze/task5/maps/level8/img/34.png new file mode 100644 index 0000000000000000000000000000000000000000..6e8f1dac026a45ab43063c8e879d7f508ffe99c0 --- /dev/null +++ b/maze/task5/maps/level8/img/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99061181f7eacff632aaa4b2a3faba566009f678b91c1b241a27ba6c3cf3c80f +size 16859 diff --git a/maze/task5/maps/level8/img/35.png b/maze/task5/maps/level8/img/35.png new file mode 100644 index 0000000000000000000000000000000000000000..00d0955fd8325877646a34ba6d7190c3a6721e50 --- /dev/null +++ b/maze/task5/maps/level8/img/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb68bc29bbf88bcf8eca7e8d80e8f7e81e2de792b5f1a5358ed3304eb12a2bce +size 19627 diff --git a/maze/task5/maps/level8/img/36.png b/maze/task5/maps/level8/img/36.png new file mode 100644 index 0000000000000000000000000000000000000000..8c020337b9d33ea012d11fd77d3a0ec7522a7918 --- /dev/null +++ b/maze/task5/maps/level8/img/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8332ce2e33363147510e600582b4adf5b16bf278a3d08ec64cda2553ccbde3de +size 17894 diff --git a/maze/task5/maps/level8/img/37.png b/maze/task5/maps/level8/img/37.png new file mode 100644 index 0000000000000000000000000000000000000000..65d2178b10a0d3eb5516bc657f8574bf488bc0bc --- /dev/null +++ b/maze/task5/maps/level8/img/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b054b6ccc6f726373ecb401312ace549d85ab275c949461f969800eae41803 +size 18664 diff --git a/maze/task5/maps/level8/img/38.png b/maze/task5/maps/level8/img/38.png new file mode 100644 index 0000000000000000000000000000000000000000..9d9dd74966c078a40aa321ba2aa769d03d5da6cb --- /dev/null +++ b/maze/task5/maps/level8/img/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c865c3a2e8afb455322e965c4879b1caf573deae644a1fe7481674a5e77def +size 17753 diff --git a/maze/task5/maps/level8/img/39.png b/maze/task5/maps/level8/img/39.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c3bc9349f2fbd5e89bec6969e1208b18f43e90 --- /dev/null +++ b/maze/task5/maps/level8/img/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6d6d7cadb8d4c36e63d22a9753de2f6778a4c54224d9c84ce8467d530890e7 +size 16905 diff --git a/maze/task5/maps/level8/img/4.png b/maze/task5/maps/level8/img/4.png new file mode 100644 index 0000000000000000000000000000000000000000..84dc57fa7131fefa912d865cc59c5dd8bc55c5a5 --- /dev/null +++ b/maze/task5/maps/level8/img/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e84a678942465fcb643477658c9ee06d624f00ae99830a7e70937d19944d03e +size 18791 diff --git a/maze/task5/maps/level8/img/40.png b/maze/task5/maps/level8/img/40.png new file mode 100644 index 0000000000000000000000000000000000000000..1550c2298eb3431b0e4e575e23152d764ee48b22 --- /dev/null +++ b/maze/task5/maps/level8/img/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ee042957a624567b9d70665e62536fb8155b51b76e769e66adc2ac43c8596e1 +size 18636 diff --git a/maze/task5/maps/level8/img/41.png b/maze/task5/maps/level8/img/41.png new file mode 100644 index 0000000000000000000000000000000000000000..c979d93f1ec3840e105d6f0edba50e33869551f6 --- /dev/null +++ b/maze/task5/maps/level8/img/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bf0277140f0125e4171af1d46b71ec2dd9dbc174b6e56986337e18446734ab +size 17737 diff --git a/maze/task5/maps/level8/img/42.png b/maze/task5/maps/level8/img/42.png new file mode 100644 index 0000000000000000000000000000000000000000..802af52eacf356257d7aad774fe22026f02ea322 --- /dev/null +++ b/maze/task5/maps/level8/img/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54105bd9af61a318ad2a3339a46687145c08a65dc54b237aa9a7ca73bcae726b +size 18858 diff --git a/maze/task5/maps/level8/img/43.png b/maze/task5/maps/level8/img/43.png new file mode 100644 index 0000000000000000000000000000000000000000..095f1868131833534289025d3bbb51b39e827b87 --- /dev/null +++ b/maze/task5/maps/level8/img/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7899bc5987c4fee5397059aa5249a7a6bbc185939d0574220d4ce59eddc79359 +size 17702 diff --git a/maze/task5/maps/level8/img/44.png b/maze/task5/maps/level8/img/44.png new file mode 100644 index 0000000000000000000000000000000000000000..1368a10cf3534bde6bcf101afb2ff996f028e90b --- /dev/null +++ b/maze/task5/maps/level8/img/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a27953b0a215c20c36ed9aee700535f4f716ec7250c39453286cc2f4753582ae +size 18634 diff --git a/maze/task5/maps/level8/img/45.png b/maze/task5/maps/level8/img/45.png new file mode 100644 index 0000000000000000000000000000000000000000..3884ef2628c729b6e4e151de6f4fc4c97ab62983 --- /dev/null +++ b/maze/task5/maps/level8/img/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48733a4b86a0e8642af2d1ecbaddd32ef1d7d5648b9ea0a1fefcf249c0e50a35 +size 17637 diff --git a/maze/task5/maps/level8/img/46.png b/maze/task5/maps/level8/img/46.png new file mode 100644 index 0000000000000000000000000000000000000000..208a99108bcd16d323d7da9bc4300c6c9af287fd --- /dev/null +++ b/maze/task5/maps/level8/img/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da207d136b088051f44a057563d4cd11b4e786eb4c1bba218403886dcb2f781 +size 17732 diff --git a/maze/task5/maps/level8/img/47.png b/maze/task5/maps/level8/img/47.png new file mode 100644 index 0000000000000000000000000000000000000000..285ae9513fd3130149c431e21d1aaa20176a528f --- /dev/null +++ b/maze/task5/maps/level8/img/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0609fcb166afbf7a5b95643f60c02190458403453e009b6e72df6f4e2436f77e +size 18708 diff --git a/maze/task5/maps/level8/img/48.png b/maze/task5/maps/level8/img/48.png new file mode 100644 index 0000000000000000000000000000000000000000..b18c5b1cc221cf305613a24c45967cec674cc733 --- /dev/null +++ b/maze/task5/maps/level8/img/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a04db77ebb28dc02d947c0f3a847cf7ec5f03b0cc4b5306a64b2edc00feef3dc +size 16842 diff --git a/maze/task5/maps/level8/img/49.png b/maze/task5/maps/level8/img/49.png new file mode 100644 index 0000000000000000000000000000000000000000..22028d664cc98b8f82c12d7e6f6d13fa8b226e5b --- /dev/null +++ b/maze/task5/maps/level8/img/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87297e71c2ae0002fe09b6977dd548ecbb910c547146f374e5817347620c46d7 +size 16993 diff --git a/maze/task5/maps/level8/img/5.png b/maze/task5/maps/level8/img/5.png new file mode 100644 index 0000000000000000000000000000000000000000..98dc449fceac63bec948eb26800d79a6934e2f37 --- /dev/null +++ b/maze/task5/maps/level8/img/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55119da1e56efb846194b295292772a2aef9ee8cf3e4d1302f1d3dc48adaf13d +size 18613 diff --git a/maze/task5/maps/level8/img/50.png b/maze/task5/maps/level8/img/50.png new file mode 100644 index 0000000000000000000000000000000000000000..1f432b116c97e3c4df75fb5a45f998b5a488fca8 --- /dev/null +++ b/maze/task5/maps/level8/img/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11037638ae2e192cd9405b8ff937edae0b40c47f3f8eb8300bbac5410dcfb640 +size 18716 diff --git a/maze/task5/maps/level8/img/51.png b/maze/task5/maps/level8/img/51.png new file mode 100644 index 0000000000000000000000000000000000000000..f97f4d4ab9758e8787479ee9e4d3e7c65b2d0b30 --- /dev/null +++ b/maze/task5/maps/level8/img/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20159c1f05f6d0823c6a99b4dcc7f18700ed5b5727a2ea6ac64f2c902b956385 +size 18831 diff --git a/maze/task5/maps/level8/img/52.png b/maze/task5/maps/level8/img/52.png new file mode 100644 index 0000000000000000000000000000000000000000..ab90e754c48d8fdc96597b75a26ade38cff8f062 --- /dev/null +++ b/maze/task5/maps/level8/img/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a1a0298aaa8e7d6d230d6156c0b5b6f9f2fae01c753f0cba4e15bb3143a792 +size 19582 diff --git a/maze/task5/maps/level8/img/53.png b/maze/task5/maps/level8/img/53.png new file mode 100644 index 0000000000000000000000000000000000000000..07459fe91084a54fbf633b6587fbc65bfc463932 --- /dev/null +++ b/maze/task5/maps/level8/img/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260fa96402d5b4bbeff16a5947f00d5e8359d2bde16c19cc433573d2d6e71322 +size 19689 diff --git a/maze/task5/maps/level8/img/54.png b/maze/task5/maps/level8/img/54.png new file mode 100644 index 0000000000000000000000000000000000000000..eaed6e9f3d5e10281116193b67db7e100c37e2e5 --- /dev/null +++ b/maze/task5/maps/level8/img/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847d616194063c9c3feb35f7f37cd6fce1cd057aabafcd03bd5097476f4494ea +size 19602 diff --git a/maze/task5/maps/level8/img/55.png b/maze/task5/maps/level8/img/55.png new file mode 100644 index 0000000000000000000000000000000000000000..94542f9a36d78c3f09e6a37d04e30559481c4e6f --- /dev/null +++ b/maze/task5/maps/level8/img/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd5413e189a3eca044786d733f3363ab52b4b3dd00f0143b916ba1613029f74 +size 18726 diff --git a/maze/task5/maps/level8/img/56.png b/maze/task5/maps/level8/img/56.png new file mode 100644 index 0000000000000000000000000000000000000000..21a32de04fc0aae5ccbfd793f71ff08369c18fa4 --- /dev/null +++ b/maze/task5/maps/level8/img/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff245f941c9444696462a595c268d67523046de02b73c6a4675d971f9012eb9 +size 19685 diff --git a/maze/task5/maps/level8/img/57.png b/maze/task5/maps/level8/img/57.png new file mode 100644 index 0000000000000000000000000000000000000000..2c1c1a2dbf3ce8db96c82b478843be150944ad8e --- /dev/null +++ b/maze/task5/maps/level8/img/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea9ebf242680be471785311043ba652655f96e0ca181ecba183ebc690a01801 +size 17768 diff --git a/maze/task5/maps/level8/img/58.png b/maze/task5/maps/level8/img/58.png new file mode 100644 index 0000000000000000000000000000000000000000..264aeb65bc1b9c7d2128215385f4cd92c97a770c --- /dev/null +++ b/maze/task5/maps/level8/img/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a8558c63524f1efd18a16bb595ce8e21a3f2473f890e1b48b5c4ca20c4f238 +size 18751 diff --git a/maze/task5/maps/level8/img/59.png b/maze/task5/maps/level8/img/59.png new file mode 100644 index 0000000000000000000000000000000000000000..6920305444ff56d7ac78ba5c469735866be7a009 --- /dev/null +++ b/maze/task5/maps/level8/img/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a11afde854931813174c07f848c32bac8faee03028886e0a4a2b274e0f03745 +size 17587 diff --git a/maze/task5/maps/level8/img/6.png b/maze/task5/maps/level8/img/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b476a87e8f861e1be069f0ab0e9be23cdc2e6d5b --- /dev/null +++ b/maze/task5/maps/level8/img/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd14257ada4b7b8d158b6055be7f6a20b4914d3e4721081e138b8f1ac52d8f08 +size 19836 diff --git a/maze/task5/maps/level8/img/60.png b/maze/task5/maps/level8/img/60.png new file mode 100644 index 0000000000000000000000000000000000000000..eba869229a7edccc691357f159d55b1beb018f9b --- /dev/null +++ b/maze/task5/maps/level8/img/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8feea8129af273c3243c30d340ad604f8d7b011bd7253d27bfcae9a04d87ffc +size 17745 diff --git a/maze/task5/maps/level8/img/61.png b/maze/task5/maps/level8/img/61.png new file mode 100644 index 0000000000000000000000000000000000000000..56d7b9a7db856a2d22225548c4f672c702321f01 --- /dev/null +++ b/maze/task5/maps/level8/img/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd0f8bf6475c3e9a92285f827a3582644e5fa378bf862105e2063b49b68bb79 +size 17788 diff --git a/maze/task5/maps/level8/img/62.png b/maze/task5/maps/level8/img/62.png new file mode 100644 index 0000000000000000000000000000000000000000..2f3b2de3fa41b5cb73f80b552dfee96df35a6fea --- /dev/null +++ b/maze/task5/maps/level8/img/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a0e157431a787003deb6501a03da44abfb46b2652f9711dc611b0cb95acecb +size 19706 diff --git a/maze/task5/maps/level8/img/63.png b/maze/task5/maps/level8/img/63.png new file mode 100644 index 0000000000000000000000000000000000000000..b32513bb15fa8f42c699aca0014b0e076eaf8472 --- /dev/null +++ b/maze/task5/maps/level8/img/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7840449e9040dfa3b5a3d8f1cb821c9c7adfe148f0cc33445a7372d18f1ecf +size 16793 diff --git a/maze/task5/maps/level8/img/64.png b/maze/task5/maps/level8/img/64.png new file mode 100644 index 0000000000000000000000000000000000000000..43cf534c79249808d634539211a9bc8d6319d2f0 --- /dev/null +++ b/maze/task5/maps/level8/img/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8b27aba132c7977b7c96d029502ed49342b45cc5017c1aecd2450c70cded66 +size 16788 diff --git a/maze/task5/maps/level8/img/65.png b/maze/task5/maps/level8/img/65.png new file mode 100644 index 0000000000000000000000000000000000000000..547bd7afc5df4fe7049a8d8a464ecf6de384f4c5 --- /dev/null +++ b/maze/task5/maps/level8/img/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570ba937607f86eccfe05d90d2e65f53ce44eb961f54164db7ed77256d27ec8e +size 17007 diff --git a/maze/task5/maps/level8/img/66.png b/maze/task5/maps/level8/img/66.png new file mode 100644 index 0000000000000000000000000000000000000000..3d37a26963f2ba8300d5855e555edd5f2d5d805b --- /dev/null +++ b/maze/task5/maps/level8/img/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8227afc97a1baca2569cff85b781d90c810c3271ebf08b719c1a26baf86acb97 +size 18922 diff --git a/maze/task5/maps/level8/img/67.png b/maze/task5/maps/level8/img/67.png new file mode 100644 index 0000000000000000000000000000000000000000..ea92f85c469eb04254866c8768e8985aa27aff97 --- /dev/null +++ b/maze/task5/maps/level8/img/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b6b77db6d1e89a6ee7f7cf67b2220cf3d2a19930c2f0d2dcd067217140c8a6 +size 19627 diff --git a/maze/task5/maps/level8/img/68.png b/maze/task5/maps/level8/img/68.png new file mode 100644 index 0000000000000000000000000000000000000000..5666d3cd9d5cc1d8ded6876e55cd4cabd71f8a10 --- /dev/null +++ b/maze/task5/maps/level8/img/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a6b4c47b3de2404e1cf8359133c31ca44e3dbc409ff03dce7c98442149302d +size 19423 diff --git a/maze/task5/maps/level8/img/69.png b/maze/task5/maps/level8/img/69.png new file mode 100644 index 0000000000000000000000000000000000000000..114f6958223ab4e28dfd8d59367e4504eebd4bbf --- /dev/null +++ b/maze/task5/maps/level8/img/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b0409b9e447202f3ff6da0d89c8afe94bc169d87f99c9cfd4236efd9b3f6cc +size 18037 diff --git a/maze/task5/maps/level8/img/7.png b/maze/task5/maps/level8/img/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f72ab06d175db6011aeef26e24f4ac8ed5063a12 --- /dev/null +++ b/maze/task5/maps/level8/img/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ddcf453b7cc8d0dd80d7deb275f081feb90aab8f441f078f7ddccf22a95af2 +size 17787 diff --git a/maze/task5/maps/level8/img/70.png b/maze/task5/maps/level8/img/70.png new file mode 100644 index 0000000000000000000000000000000000000000..0b3b1b50b2bec64b5814291bde8901a9b5ad82d8 --- /dev/null +++ b/maze/task5/maps/level8/img/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9b4a74dad5a294638b394c36f8ce18d0493011e3065bb3410f6359e243a386 +size 17881 diff --git a/maze/task5/maps/level8/img/71.png b/maze/task5/maps/level8/img/71.png new file mode 100644 index 0000000000000000000000000000000000000000..0c05efe3b7c008aeb82f997d0383559dab41211e --- /dev/null +++ b/maze/task5/maps/level8/img/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787a25ad0b24d39f6f48f1116242b34edb12441e00e90058dde0246dc4fe6692 +size 18873 diff --git a/maze/task5/maps/level8/img/72.png b/maze/task5/maps/level8/img/72.png new file mode 100644 index 0000000000000000000000000000000000000000..636fe12c8af7bafcf6de4f963423ba524c3944c8 --- /dev/null +++ b/maze/task5/maps/level8/img/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da93dbe0354ea0bd83ac8eed98ebd1a43bd569c9540d347c6ba61c0627f36eb +size 17783 diff --git a/maze/task5/maps/level8/img/73.png b/maze/task5/maps/level8/img/73.png new file mode 100644 index 0000000000000000000000000000000000000000..5a78a4b4afb52ed6a485487fadfcd9ca4a8a855a --- /dev/null +++ b/maze/task5/maps/level8/img/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1971b9440337eb1b7b6e96c7ebb7167ca54ca8714b8de458f5e3c8d83c2eacd8 +size 16840 diff --git a/maze/task5/maps/level8/img/74.png b/maze/task5/maps/level8/img/74.png new file mode 100644 index 0000000000000000000000000000000000000000..6f70c245b1e223b29a5ca1c9c43130bc08af3c20 --- /dev/null +++ b/maze/task5/maps/level8/img/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc32844e299f20b3f901002184f30b7e2e7bede9b6575d7b4f0558c834ecf19c +size 18845 diff --git a/maze/task5/maps/level8/img/75.png b/maze/task5/maps/level8/img/75.png new file mode 100644 index 0000000000000000000000000000000000000000..d907c9ae85afa045dceb08b0136077e373a3c305 --- /dev/null +++ b/maze/task5/maps/level8/img/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82aa588d3a29a84a4623635237f711d541f52255a2cc3b09138bf81bfa4b0377 +size 17852 diff --git a/maze/task5/maps/level8/img/76.png b/maze/task5/maps/level8/img/76.png new file mode 100644 index 0000000000000000000000000000000000000000..db860eabb44de2b209ea3a7e95d00d9da05d5b57 --- /dev/null +++ b/maze/task5/maps/level8/img/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d82a8cd4e3a9af30e16119c149a333033f7089348d0e6bd91a18056b2164dc2 +size 19164 diff --git a/maze/task5/maps/level8/img/77.png b/maze/task5/maps/level8/img/77.png new file mode 100644 index 0000000000000000000000000000000000000000..f86c4ea8675dd51a44627e3978ec6f14e82ca562 --- /dev/null +++ b/maze/task5/maps/level8/img/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08db4bf4325c26f228df3b344e4e0e28fe65a823dba07e3a03965c8619aa9637 +size 19576 diff --git a/maze/task5/maps/level8/img/78.png b/maze/task5/maps/level8/img/78.png new file mode 100644 index 0000000000000000000000000000000000000000..7c7b556bd5a323d4547b9e714a14ca2b42c45c1d --- /dev/null +++ b/maze/task5/maps/level8/img/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ba708ead386a77ba0826ef25c8d139f89fa5b3f12eb4f3fe8bd072c2ca077 +size 16797 diff --git a/maze/task5/maps/level8/img/79.png b/maze/task5/maps/level8/img/79.png new file mode 100644 index 0000000000000000000000000000000000000000..d55bdda293cfe83cb15d831479e4ebd78066a770 --- /dev/null +++ b/maze/task5/maps/level8/img/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308d15f69f93a8ff4c1e2cd5b4df675fa167f25af70f113f75f50a84653f059c +size 18638 diff --git a/maze/task5/maps/level8/img/8.png b/maze/task5/maps/level8/img/8.png new file mode 100644 index 0000000000000000000000000000000000000000..41f4ce61961caacc51f3359192abed60609d4c7d --- /dev/null +++ b/maze/task5/maps/level8/img/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dcb999d5852bf4771ef543f4263476f2cb3c06ec051928bc355bdbffd2745b3 +size 16757 diff --git a/maze/task5/maps/level8/img/80.png b/maze/task5/maps/level8/img/80.png new file mode 100644 index 0000000000000000000000000000000000000000..85fdd47dcff6ac2eab20e242a8c056d272f857b4 --- /dev/null +++ b/maze/task5/maps/level8/img/80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a99cf5dafe1e7b1834751ea28c8a48cfded232aa1205f520dbebfd3a6279cb3 +size 18685 diff --git a/maze/task5/maps/level8/img/81.png b/maze/task5/maps/level8/img/81.png new file mode 100644 index 0000000000000000000000000000000000000000..3f23aca01092c314b3205b1085b4c759060d7c96 --- /dev/null +++ b/maze/task5/maps/level8/img/81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2cdeecb514a2895878ab47291a7ee1bfbbed5687fad1bf360b7d162ce52d6c +size 17884 diff --git a/maze/task5/maps/level8/img/82.png b/maze/task5/maps/level8/img/82.png new file mode 100644 index 0000000000000000000000000000000000000000..729821acb44941102f7e586a25ded86c1776dba7 --- /dev/null +++ b/maze/task5/maps/level8/img/82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13e1c969db6f58a8293c964be47eb1a6eb26a1baa7cd8e28c9c743367de23a6 +size 18781 diff --git a/maze/task5/maps/level8/img/83.png b/maze/task5/maps/level8/img/83.png new file mode 100644 index 0000000000000000000000000000000000000000..dce69a7284da2abdeacd8f0cb65752368818b369 --- /dev/null +++ b/maze/task5/maps/level8/img/83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25ba75a1cb200a569f34215b08ca6191a8ab129e9e6be7da252e24c333d8bd4 +size 18612 diff --git a/maze/task5/maps/level8/img/84.png b/maze/task5/maps/level8/img/84.png new file mode 100644 index 0000000000000000000000000000000000000000..7058efa5c3c100a0f17b9c8ab0c8785369f4d5de --- /dev/null +++ b/maze/task5/maps/level8/img/84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e893344141c5ecb6b9e46644ca19d35ac441b3dbf0398fe1d8bb3d2c8d60f0d4 +size 18739 diff --git a/maze/task5/maps/level8/img/85.png b/maze/task5/maps/level8/img/85.png new file mode 100644 index 0000000000000000000000000000000000000000..c992e8abd629bcb4593bd4d2a6947fa423087d8b --- /dev/null +++ b/maze/task5/maps/level8/img/85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dad47fe91abf2da36d065d893ffdd24858ff915e64de8bc0aa20261ed508e93 +size 17109 diff --git a/maze/task5/maps/level8/img/86.png b/maze/task5/maps/level8/img/86.png new file mode 100644 index 0000000000000000000000000000000000000000..fe716c60315cd70d2cad845fc223135d6765bd0c --- /dev/null +++ b/maze/task5/maps/level8/img/86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdb273c3f7574e21ddd1df8603945836010b818a726bb715bc45290734b4ff8 +size 18708 diff --git a/maze/task5/maps/level8/img/87.png b/maze/task5/maps/level8/img/87.png new file mode 100644 index 0000000000000000000000000000000000000000..6b8745ac906d3553301edfa84b312df796e48bd1 --- /dev/null +++ b/maze/task5/maps/level8/img/87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973839c531def7ad1eb261660d86971c3adead999a2faef31a0fa881712bed97 +size 18610 diff --git a/maze/task5/maps/level8/img/88.png b/maze/task5/maps/level8/img/88.png new file mode 100644 index 0000000000000000000000000000000000000000..86c9ea49c728ffa54ad84b33d78e321076b134f3 --- /dev/null +++ b/maze/task5/maps/level8/img/88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2285035728e567d7cfb3fa6ef2e5baa5596aaae38b675635ead52ea9aa39ec4 +size 17914 diff --git a/maze/task5/maps/level8/img/89.png b/maze/task5/maps/level8/img/89.png new file mode 100644 index 0000000000000000000000000000000000000000..c56e477e08ad778044a9c5353b283d0ecae62dec --- /dev/null +++ b/maze/task5/maps/level8/img/89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00547202b522c513eb5012589eebe2861c2fb0f11b9dbdc4f08320b1f76158e7 +size 17869 diff --git a/maze/task5/maps/level8/img/9.png b/maze/task5/maps/level8/img/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ca66f9d0b956005d9deafef2c15b08014c8f8a4a --- /dev/null +++ b/maze/task5/maps/level8/img/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2ee0d4ca489ecfcc47effd4e137bed71bd6c29dd514fca1244ad802033b578 +size 18615 diff --git a/maze/task5/maps/level8/img/90.png b/maze/task5/maps/level8/img/90.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac7ccbf0ab8d96187a39ccb46021e8317486da5 --- /dev/null +++ b/maze/task5/maps/level8/img/90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d30ffcde1c157ce971bbb1913295497727092c8eabfb137110b8bc5d572b94 +size 17820 diff --git a/maze/task5/maps/level8/img/91.png b/maze/task5/maps/level8/img/91.png new file mode 100644 index 0000000000000000000000000000000000000000..c3301a7935c67a4c939aaba44f1570344307c940 --- /dev/null +++ b/maze/task5/maps/level8/img/91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49055fd559ba684762bf0d6a8162d6b10c762057c6335988c302bf5738513e15 +size 17755 diff --git a/maze/task5/maps/level8/img/92.png b/maze/task5/maps/level8/img/92.png new file mode 100644 index 0000000000000000000000000000000000000000..6d5708285cab7405bf5504cc4ca99ae8fa14e4a0 --- /dev/null +++ b/maze/task5/maps/level8/img/92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5ac6ca877d4d06a0197a768d011e68b8264aa11a8d03399b0a159080d4d893 +size 18769 diff --git a/maze/task5/maps/level8/img/93.png b/maze/task5/maps/level8/img/93.png new file mode 100644 index 0000000000000000000000000000000000000000..157427830c176ffa3cb675825bda01b4a19f0c00 --- /dev/null +++ b/maze/task5/maps/level8/img/93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2662f3e314b3d8abc22615aa45f9ac722255bc0aab40f345cdc341dd1cffbe +size 18724 diff --git a/maze/task5/maps/level8/img/94.png b/maze/task5/maps/level8/img/94.png new file mode 100644 index 0000000000000000000000000000000000000000..0df761883c14a4e28121ab9baf5125f3235dfd6c --- /dev/null +++ b/maze/task5/maps/level8/img/94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9d91ed3104bcd9d8a26ccd79d8da2058d60bf731d3e86a4e748eda4f27918db +size 16930 diff --git a/maze/task5/maps/level8/img/95.png b/maze/task5/maps/level8/img/95.png new file mode 100644 index 0000000000000000000000000000000000000000..3a02502ec36854319e67abe93e82d86907aebf44 --- /dev/null +++ b/maze/task5/maps/level8/img/95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e98d0ba1b283a33bbf8ec5088d09e84a59eb45c172a2b0ce518233a4d5589ca +size 19622 diff --git a/maze/task5/maps/level8/img/96.png b/maze/task5/maps/level8/img/96.png new file mode 100644 index 0000000000000000000000000000000000000000..ab84e8103a465f803975dcff6822f997d234a3b6 --- /dev/null +++ b/maze/task5/maps/level8/img/96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209161fa2ab0a89538fa690b095ce5dd0506690f6f1122207e15e2a3efc4f2ec +size 18798 diff --git a/maze/task5/maps/level8/img/97.png b/maze/task5/maps/level8/img/97.png new file mode 100644 index 0000000000000000000000000000000000000000..d4e8c8979cc54f4390dd6a1c3d1670882c36d9b4 --- /dev/null +++ b/maze/task5/maps/level8/img/97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9f7e0b69a389eec5692585882268e1a8b285e50805a2efa899ef72ecd38b92 +size 19877 diff --git a/maze/task5/maps/level8/img/98.png b/maze/task5/maps/level8/img/98.png new file mode 100644 index 0000000000000000000000000000000000000000..de6caae508393409406c601cd5f403aa4f6148bb --- /dev/null +++ b/maze/task5/maps/level8/img/98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039f87ff576798a523081cc824bd93bd27d1a26a72ca9ef82fae9568f958f0b9 +size 17976 diff --git a/maze/task5/maps/level8/img/99.png b/maze/task5/maps/level8/img/99.png new file mode 100644 index 0000000000000000000000000000000000000000..bacebac2a699f713248cc0d0edae76ec8668c670 --- /dev/null +++ b/maze/task5/maps/level8/img/99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f30fd058068421b7b1d78d24762afce32703c469b93777b0a5513e944c2110 +size 18059 diff --git a/maze/task5/maps/level8/pure_text/0.txt b/maze/task5/maps/level8/pure_text/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..69cad96b665e8bba1763ed949cd44b8b0be5e7be --- /dev/null +++ b/maze/task5/maps/level8/pure_text/0.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 8; Row 2, Column 4; Row 2, Column 5; Row 5, Column 2; Row 5, Column 3; Row 5, Column 4; Row 6, Column 4; Row 7, Column 3; Row 7, Column 5; Row 7, Column 6; Row 7, Column 8; Row 8, Column 7; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/1.txt b/maze/task5/maps/level8/pure_text/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..934509ca72329ebb4ea13656cfbb4da5fa51c731 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/1.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 8; Row 2, Column 7; Row 3, Column 7; Row 5, Column 7; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 7, Column 7; Row 7, Column 8; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/10.txt b/maze/task5/maps/level8/pure_text/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a5cda0bf8741c1774146f9b8abff223a36ccd87 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/10.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 3, Column 4; Row 3, Column 7; Row 5, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 6; Row 8, Column 4; Row 8, Column 8; +The goal is at: Row 5, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/11.txt b/maze/task5/maps/level8/pure_text/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..92bbf838035535c12a257446773fa5bd35e23726 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/11.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 4; Row 1, Column 5; Row 1, Column 8; Row 2, Column 7; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 5; Row 5, Column 2; Row 6, Column 5; Row 7, Column 4; Row 7, Column 8; Row 8, Column 6; +The goal is at: Row 6, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/12.txt b/maze/task5/maps/level8/pure_text/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ccaf4a188948de140ce713d7daa6e80efb16788 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/12.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 5, Column 2; Row 5, Column 3; Row 5, Column 8; Row 6, Column 8; Row 7, Column 1; Row 8, Column 4; Row 8, Column 7; +The goal is at: Row 8, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/13.txt b/maze/task5/maps/level8/pure_text/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9ca5fd91a7be69ec57874ea6cee5b44c11fc0d0 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/13.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 2, Column 6; Row 3, Column 4; Row 3, Column 8; Row 4, Column 1; Row 4, Column 6; Row 6, Column 8; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/14.txt b/maze/task5/maps/level8/pure_text/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3ceaa3849c3151b09445ca6f7633e93251b7365 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/14.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 6; +The hole(s) are at: Row 1, Column 7; Row 2, Column 1; Row 2, Column 5; Row 2, Column 7; Row 3, Column 2; Row 3, Column 6; Row 3, Column 7; Row 4, Column 2; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 5, Column 5; Row 5, Column 6; Row 5, Column 8; Row 7, Column 7; Row 8, Column 3; Row 8, Column 5; Row 8, Column 7; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/15.txt b/maze/task5/maps/level8/pure_text/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..8761869a5c86d60cd17e3bb004404d906d0d26ac --- /dev/null +++ b/maze/task5/maps/level8/pure_text/15.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 3, Column 3; Row 3, Column 8; Row 4, Column 4; Row 4, Column 5; Row 5, Column 1; Row 5, Column 3; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; Row 7, Column 1; Row 7, Column 7; Row 8, Column 6; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/16.txt b/maze/task5/maps/level8/pure_text/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..816a956173e7e8f08d14f4197a7a77d27541adf1 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/16.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 2, Column 7; Row 3, Column 3; Row 3, Column 8; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 4; Row 6, Column 5; Row 7, Column 2; Row 8, Column 3; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/17.txt b/maze/task5/maps/level8/pure_text/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..0722904ace3bb344443c27dd9dfef2c9875dc403 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/17.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 3, Column 6; Row 5, Column 1; Row 5, Column 4; Row 6, Column 1; Row 6, Column 3; Row 7, Column 1; Row 7, Column 3; Row 7, Column 5; Row 7, Column 8; Row 8, Column 5; +The goal is at: Row 1, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/18.txt b/maze/task5/maps/level8/pure_text/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..dce9880e23be0bb25595d588338c5ce9ea7419dc --- /dev/null +++ b/maze/task5/maps/level8/pure_text/18.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 3, Column 8; Row 6, Column 1; Row 6, Column 8; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/19.txt b/maze/task5/maps/level8/pure_text/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..15c566e6e563be754e698bf1982a2714bebc79e3 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/19.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 7; Row 4, Column 5; Row 4, Column 7; Row 5, Column 4; Row 6, Column 1; Row 6, Column 8; Row 7, Column 3; Row 7, Column 5; Row 7, Column 8; Row 8, Column 7; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/2.txt b/maze/task5/maps/level8/pure_text/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..483c00f02a7f747ae5baf287b72a5411694e2dce --- /dev/null +++ b/maze/task5/maps/level8/pure_text/2.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 8; +The hole(s) are at: Row 1, Column 3; Row 1, Column 8; Row 2, Column 1; Row 3, Column 3; Row 3, Column 7; Row 5, Column 2; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; Row 8, Column 4; Row 8, Column 5; +The goal is at: Row 3, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/20.txt b/maze/task5/maps/level8/pure_text/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c404d89f4ab030f209934ff5c7ccdc8b6b6c3cb --- /dev/null +++ b/maze/task5/maps/level8/pure_text/20.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 2; +The hole(s) are at: Row 1, Column 3; Row 3, Column 5; Row 3, Column 6; Row 3, Column 8; Row 4, Column 6; Row 5, Column 2; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 4; Row 7, Column 7; Row 8, Column 3; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/21.txt b/maze/task5/maps/level8/pure_text/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ebac7fa1fff0d81f9678c9a100456ada3af3fa7 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/21.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 2, Column 5; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 4, Column 1; Row 4, Column 5; Row 6, Column 8; Row 8, Column 3; Row 8, Column 5; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/22.txt b/maze/task5/maps/level8/pure_text/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..908bbcfa9729cb6d68e0ad7642f7261e6574bd53 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/22.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 2, Column 3; Row 4, Column 3; Row 4, Column 5; Row 5, Column 3; Row 5, Column 4; Row 6, Column 2; Row 6, Column 7; Row 7, Column 8; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/23.txt b/maze/task5/maps/level8/pure_text/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0c6cf24e6dd29399b9c2e4fe0ef94245772ae42 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/23.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 8; Row 2, Column 8; Row 3, Column 8; Row 4, Column 3; Row 5, Column 1; Row 5, Column 8; Row 7, Column 3; Row 7, Column 7; Row 7, Column 8; Row 8, Column 2; Row 8, Column 8; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/24.txt b/maze/task5/maps/level8/pure_text/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..2cd4dfa3b9f76c58eed100124154f8bc0406324c --- /dev/null +++ b/maze/task5/maps/level8/pure_text/24.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 1, Column 3; Row 2, Column 4; Row 2, Column 5; Row 3, Column 4; Row 4, Column 1; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 6; Row 8, Column 1; Row 8, Column 2; Row 8, Column 8; +The goal is at: Row 4, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/25.txt b/maze/task5/maps/level8/pure_text/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..26b8fd0050e74804bcde2b93b85f3517597b353b --- /dev/null +++ b/maze/task5/maps/level8/pure_text/25.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 4; +The hole(s) are at: Row 1, Column 4; Row 3, Column 3; Row 5, Column 2; Row 6, Column 6; Row 7, Column 1; Row 7, Column 5; Row 8, Column 1; Row 8, Column 7; +The goal is at: Row 8, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/26.txt b/maze/task5/maps/level8/pure_text/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..6049f44d2512f3c34fc0b5f0a543e46562ccd2fb --- /dev/null +++ b/maze/task5/maps/level8/pure_text/26.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 1, Column 6; Row 1, Column 7; Row 2, Column 3; Row 3, Column 1; Row 3, Column 2; Row 3, Column 7; Row 4, Column 2; Row 6, Column 2; Row 6, Column 5; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/27.txt b/maze/task5/maps/level8/pure_text/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..54cb5c0da2f233834343f1ed1b525ec254333211 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/27.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 3; Row 3, Column 6; Row 3, Column 8; Row 6, Column 1; Row 6, Column 2; Row 7, Column 1; Row 8, Column 2; Row 8, Column 6; +The goal is at: Row 5, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/28.txt b/maze/task5/maps/level8/pure_text/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..3331221fa563c48a069b37aa4bc434ba1a607536 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/28.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 2; Row 3, Column 1; Row 3, Column 7; Row 5, Column 1; Row 5, Column 6; Row 6, Column 1; Row 6, Column 3; Row 6, Column 8; Row 7, Column 6; Row 8, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/29.txt b/maze/task5/maps/level8/pure_text/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..60d5f2cc4351bd135b384c27b253bded851f44da --- /dev/null +++ b/maze/task5/maps/level8/pure_text/29.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 3, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 1; Row 5, Column 6; Row 6, Column 3; Row 6, Column 6; Row 7, Column 7; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/3.txt b/maze/task5/maps/level8/pure_text/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..66d85c258f93ec4f659fea96ee1e6630c2914c3e --- /dev/null +++ b/maze/task5/maps/level8/pure_text/3.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 3, Column 6; Row 4, Column 5; Row 4, Column 7; Row 6, Column 3; Row 6, Column 4; Row 6, Column 5; Row 6, Column 8; Row 7, Column 2; Row 7, Column 3; Row 7, Column 4; Row 7, Column 7; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/30.txt b/maze/task5/maps/level8/pure_text/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad13ccd68f57b27aa3e10347dcfe24939893aaf9 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/30.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 8; +The hole(s) are at: Row 1, Column 2; Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 3, Column 1; Row 3, Column 8; Row 4, Column 4; Row 4, Column 5; Row 5, Column 2; Row 5, Column 6; Row 6, Column 2; Row 7, Column 4; Row 7, Column 6; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/31.txt b/maze/task5/maps/level8/pure_text/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..3b037c248f9f9ffb356243dbf8a43e26b4b75f6d --- /dev/null +++ b/maze/task5/maps/level8/pure_text/31.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 3; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 2, Column 6; Row 3, Column 4; Row 3, Column 7; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 5, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 1; Row 7, Column 7; Row 7, Column 8; Row 8, Column 3; +The goal is at: Row 8, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/32.txt b/maze/task5/maps/level8/pure_text/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..33726092af825cb738f81d2841283f2ef820931d --- /dev/null +++ b/maze/task5/maps/level8/pure_text/32.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 8; Row 2, Column 2; Row 2, Column 3; Row 4, Column 7; Row 6, Column 3; Row 8, Column 1; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/33.txt b/maze/task5/maps/level8/pure_text/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..978a5048f4bcae53f8ff9b16b1f7e3d2774d6632 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/33.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 2, Column 3; Row 2, Column 7; Row 2, Column 8; Row 3, Column 1; Row 5, Column 3; Row 6, Column 2; Row 6, Column 4; Row 6, Column 7; Row 8, Column 6; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/34.txt b/maze/task5/maps/level8/pure_text/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6663f86c1bc8ae0697bdc17599801a3d07476b2 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/34.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 6; Row 1, Column 7; Row 3, Column 3; Row 5, Column 1; Row 5, Column 8; Row 7, Column 2; Row 7, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/35.txt b/maze/task5/maps/level8/pure_text/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd654db54329e0ee79e36910a28f7892317e00fc --- /dev/null +++ b/maze/task5/maps/level8/pure_text/35.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 3, Column 3; Row 3, Column 4; Row 4, Column 6; Row 4, Column 7; Row 5, Column 2; Row 5, Column 8; Row 6, Column 1; Row 6, Column 4; Row 6, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 3; Row 8, Column 6; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/36.txt b/maze/task5/maps/level8/pure_text/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..75342c92a61f0dbc7fbb6a065c3d33e56a0850d3 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/36.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 8; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 8; Row 4, Column 4; Row 5, Column 3; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/37.txt b/maze/task5/maps/level8/pure_text/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..91e6dd54820741f443b097abc31477247f2783d5 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/37.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 7; Row 2, Column 8; Row 3, Column 1; Row 5, Column 4; Row 6, Column 4; Row 6, Column 7; Row 7, Column 3; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/38.txt b/maze/task5/maps/level8/pure_text/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c74bf0397954a159100b5840ee662f15903ae4f --- /dev/null +++ b/maze/task5/maps/level8/pure_text/38.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 6; Row 2, Column 8; Row 3, Column 1; Row 3, Column 5; Row 5, Column 2; Row 7, Column 6; Row 8, Column 5; +The goal is at: Row 2, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/39.txt b/maze/task5/maps/level8/pure_text/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..730cb0a264e67f8de85ffb770d7ba179522e9a14 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/39.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 2, Column 3; Row 2, Column 4; Row 4, Column 3; Row 4, Column 4; Row 4, Column 6; Row 4, Column 8; Row 6, Column 2; Row 6, Column 8; Row 7, Column 3; Row 8, Column 3; +The goal is at: Row 2, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/4.txt b/maze/task5/maps/level8/pure_text/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0318b035b016a1b35f124a7d3caaf2707d66e5b --- /dev/null +++ b/maze/task5/maps/level8/pure_text/4.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 1; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 2; Row 3, Column 1; Row 4, Column 5; Row 6, Column 2; Row 7, Column 2; Row 8, Column 5; +The goal is at: Row 4, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/40.txt b/maze/task5/maps/level8/pure_text/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f1f8a6ffb0faec70642afdf3ef64d591a0ac4ec --- /dev/null +++ b/maze/task5/maps/level8/pure_text/40.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 2, Column 3; Row 2, Column 5; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 4, Column 1; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 4, Column 8; Row 6, Column 7; Row 7, Column 4; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 1, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/41.txt b/maze/task5/maps/level8/pure_text/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..75ec47ef83f6b00e7bedb57db602b8e550b38d37 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/41.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 6; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 2, Column 6; Row 3, Column 5; Row 3, Column 7; Row 4, Column 7; Row 4, Column 8; Row 6, Column 2; Row 7, Column 1; Row 7, Column 2; Row 7, Column 8; +The goal is at: Row 5, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/42.txt b/maze/task5/maps/level8/pure_text/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..735d9782db57c8bf02b017e8171aadad66e0d238 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/42.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 1; Row 1, Column 8; Row 2, Column 4; Row 3, Column 1; Row 3, Column 4; Row 3, Column 5; Row 3, Column 6; Row 5, Column 1; Row 6, Column 4; Row 6, Column 5; Row 7, Column 1; Row 7, Column 6; Row 8, Column 2; Row 8, Column 3; Row 8, Column 7; +The goal is at: Row 7, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/43.txt b/maze/task5/maps/level8/pure_text/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c62deefe60c79b8ab599638fe6d0786542f83e6 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/43.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 5; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 4; Row 3, Column 8; Row 4, Column 4; Row 5, Column 2; Row 5, Column 3; Row 7, Column 7; +The goal is at: Row 1, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/44.txt b/maze/task5/maps/level8/pure_text/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..cb267f6d6f28c445ea81ab67660bc08d9a551984 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/44.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 1, Column 4; Row 3, Column 2; Row 3, Column 6; Row 4, Column 6; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 4; Row 7, Column 6; Row 7, Column 8; Row 8, Column 3; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/45.txt b/maze/task5/maps/level8/pure_text/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcd172cf652d64daff6add5f0ee2ba98dc628f1c --- /dev/null +++ b/maze/task5/maps/level8/pure_text/45.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 2, Column 4; Row 4, Column 1; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 5, Column 6; Row 6, Column 3; Row 7, Column 5; Row 7, Column 7; Row 8, Column 7; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/46.txt b/maze/task5/maps/level8/pure_text/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..6665e7450851c43a91c2eb21c5b5a54e707c39d2 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/46.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 7; +The hole(s) are at: Row 1, Column 8; Row 2, Column 1; Row 3, Column 3; Row 3, Column 7; Row 4, Column 3; Row 4, Column 4; Row 5, Column 2; Row 5, Column 4; Row 5, Column 5; Row 7, Column 8; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/47.txt b/maze/task5/maps/level8/pure_text/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0cd678f0963692fa6822c4ae06adf917a2b486c --- /dev/null +++ b/maze/task5/maps/level8/pure_text/47.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 2; Row 2, Column 5; Row 3, Column 8; Row 5, Column 7; Row 5, Column 8; Row 6, Column 1; Row 6, Column 7; Row 6, Column 8; Row 7, Column 5; Row 7, Column 8; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 8, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/48.txt b/maze/task5/maps/level8/pure_text/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..9509df21ddcb644a0fec4ebe8d0f8ad1a4bdd418 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/48.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 6; +The hole(s) are at: Row 3, Column 1; Row 4, Column 1; Row 5, Column 1; Row 5, Column 3; Row 5, Column 7; Row 7, Column 3; Row 8, Column 1; Row 8, Column 7; +The goal is at: Row 5, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/49.txt b/maze/task5/maps/level8/pure_text/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a4fdf6de7da55acbfa4e5d77cdb96e2b5415d0d --- /dev/null +++ b/maze/task5/maps/level8/pure_text/49.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 5; Row 4, Column 6; Row 5, Column 3; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 8, Column 1; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 3, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/5.txt b/maze/task5/maps/level8/pure_text/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7ecfdadd429ec8380e9cdd366c413ceb3f5aa56 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/5.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 1, Column 8; Row 2, Column 2; Row 2, Column 5; Row 2, Column 8; Row 3, Column 1; Row 4, Column 8; Row 6, Column 2; Row 6, Column 6; Row 7, Column 1; Row 7, Column 2; Row 7, Column 3; Row 8, Column 2; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/50.txt b/maze/task5/maps/level8/pure_text/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d71bb35630e3fe914c3d169d1be19157d43db73 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/50.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 3; +The hole(s) are at: Row 1, Column 5; Row 1, Column 6; Row 2, Column 2; Row 2, Column 3; Row 2, Column 5; Row 3, Column 5; Row 5, Column 3; Row 6, Column 1; Row 6, Column 2; Row 6, Column 3; Row 7, Column 2; Row 8, Column 4; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/51.txt b/maze/task5/maps/level8/pure_text/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..d3f27071e6b912301a972aeae3b2cbd6463dc53e --- /dev/null +++ b/maze/task5/maps/level8/pure_text/51.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 1, Column 4; Row 1, Column 7; Row 1, Column 8; Row 2, Column 1; Row 2, Column 8; Row 3, Column 2; Row 4, Column 1; Row 6, Column 1; Row 6, Column 3; Row 7, Column 4; Row 8, Column 2; Row 8, Column 6; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/52.txt b/maze/task5/maps/level8/pure_text/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..c847d022a2549bd8aa47c9828295696ce4672f5b --- /dev/null +++ b/maze/task5/maps/level8/pure_text/52.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 3, Column 5; Row 4, Column 4; Row 5, Column 3; Row 6, Column 7; Row 7, Column 7; Row 8, Column 3; +The goal is at: Row 7, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/53.txt b/maze/task5/maps/level8/pure_text/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..ace6c0b14c4b64b61653b4a230a4006611133eb9 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/53.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 1, Column 7; Row 1, Column 8; Row 2, Column 4; Row 3, Column 1; Row 3, Column 8; Row 4, Column 1; Row 4, Column 4; Row 5, Column 2; Row 6, Column 3; Row 6, Column 4; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 8, Column 6; +The goal is at: Row 6, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/54.txt b/maze/task5/maps/level8/pure_text/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..1892e0d545fa513202af80777b08cc59dfd2374d --- /dev/null +++ b/maze/task5/maps/level8/pure_text/54.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 3; +The hole(s) are at: Row 1, Column 8; Row 2, Column 4; Row 2, Column 5; Row 2, Column 8; Row 3, Column 4; Row 3, Column 5; Row 4, Column 2; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 7, Column 6; Row 7, Column 7; Row 8, Column 3; +The goal is at: Row 6, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/55.txt b/maze/task5/maps/level8/pure_text/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ff2a4951b37cd2275a6fa56eaa5a52a89a58ac3 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/55.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 7; Row 2, Column 1; Row 3, Column 1; Row 3, Column 8; Row 4, Column 6; Row 4, Column 7; Row 6, Column 4; Row 6, Column 8; Row 7, Column 5; Row 7, Column 7; Row 7, Column 8; Row 8, Column 1; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/56.txt b/maze/task5/maps/level8/pure_text/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..28a7e3a60340ea486659a2b1e8c2dcc4e2c11c06 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/56.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 7; Row 2, Column 1; Row 3, Column 2; Row 3, Column 3; Row 3, Column 8; Row 4, Column 1; Row 4, Column 5; Row 5, Column 3; Row 6, Column 6; Row 7, Column 8; Row 8, Column 1; Row 8, Column 4; Row 8, Column 5; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/57.txt b/maze/task5/maps/level8/pure_text/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2a881385786d4e581fc876b53ee202bd3aa8826 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/57.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 2, Column 1; Row 2, Column 6; Row 3, Column 3; Row 3, Column 4; Row 3, Column 7; Row 3, Column 8; Row 4, Column 4; Row 5, Column 8; Row 7, Column 7; Row 7, Column 8; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/58.txt b/maze/task5/maps/level8/pure_text/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..a79fcdb8b6b2872164b4a05ddc85f549443ab8fb --- /dev/null +++ b/maze/task5/maps/level8/pure_text/58.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 1; +The hole(s) are at: Row 1, Column 6; Row 1, Column 8; Row 2, Column 5; Row 3, Column 5; Row 3, Column 7; Row 4, Column 1; Row 4, Column 5; Row 4, Column 7; Row 4, Column 8; Row 5, Column 5; Row 5, Column 8; Row 6, Column 2; Row 8, Column 5; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/59.txt b/maze/task5/maps/level8/pure_text/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..6448dad4f9cf355aa7445301c331178cd653c7af --- /dev/null +++ b/maze/task5/maps/level8/pure_text/59.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 5; Row 2, Column 7; Row 3, Column 7; Row 4, Column 6; Row 5, Column 2; Row 7, Column 2; Row 7, Column 3; Row 8, Column 8; +The goal is at: Row 3, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/6.txt b/maze/task5/maps/level8/pure_text/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcbfc1098530f7bceaa9885ab4e4fec65f1ca2af --- /dev/null +++ b/maze/task5/maps/level8/pure_text/6.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 7; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 1, Column 8; Row 2, Column 2; Row 2, Column 4; Row 2, Column 6; Row 3, Column 1; Row 3, Column 8; Row 4, Column 3; Row 4, Column 4; Row 5, Column 5; Row 5, Column 6; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 7, Column 8; Row 8, Column 1; Row 8, Column 5; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 1, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/60.txt b/maze/task5/maps/level8/pure_text/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..de0b09fe2bf5d8fed3095c7fecac61d2657444b2 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/60.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 2, Column 4; Row 2, Column 7; Row 2, Column 8; Row 3, Column 2; Row 4, Column 8; Row 6, Column 1; Row 6, Column 4; Row 7, Column 8; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/61.txt b/maze/task5/maps/level8/pure_text/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cbd33602aea35f1fe3a6d300d5a99a56a7b9b7e --- /dev/null +++ b/maze/task5/maps/level8/pure_text/61.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 4; +The hole(s) are at: Row 1, Column 8; Row 3, Column 4; Row 3, Column 8; Row 4, Column 7; Row 5, Column 4; Row 6, Column 3; Row 6, Column 4; Row 6, Column 6; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 3, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/62.txt b/maze/task5/maps/level8/pure_text/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea6c6a57103aa70e9cbf030b664f21c0f827f8e0 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/62.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 3; +The hole(s) are at: Row 1, Column 2; Row 2, Column 2; Row 2, Column 5; Row 3, Column 1; Row 3, Column 4; Row 3, Column 6; Row 3, Column 7; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 4; Row 5, Column 6; Row 6, Column 6; Row 7, Column 3; Row 7, Column 4; Row 8, Column 1; Row 8, Column 6; +The goal is at: Row 7, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/63.txt b/maze/task5/maps/level8/pure_text/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..07b3baa86340066e7f9cd788e96fdb1b93cf49c8 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/63.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 6; +The hole(s) are at: Row 3, Column 4; Row 4, Column 3; Row 4, Column 5; Row 5, Column 5; Row 5, Column 6; Row 6, Column 7; Row 7, Column 1; +The goal is at: Row 8, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/64.txt b/maze/task5/maps/level8/pure_text/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1fb374a785fa45509e380a54fcf789d5e392f74 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/64.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 2, Column 2; Row 2, Column 7; Row 3, Column 1; Row 3, Column 2; Row 3, Column 6; Row 4, Column 5; Row 4, Column 6; Row 4, Column 7; Row 5, Column 7; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 6, Column 8; +The goal is at: Row 4, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/65.txt b/maze/task5/maps/level8/pure_text/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c5216b6caf8e057e9381b133f44d10481f16f3f --- /dev/null +++ b/maze/task5/maps/level8/pure_text/65.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 3, Column 4; Row 4, Column 4; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; Row 7, Column 8; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/66.txt b/maze/task5/maps/level8/pure_text/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2bd377ffd749294b69f29ef9a4974b7f9a43187 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/66.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 2; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 7; Row 2, Column 2; Row 2, Column 6; Row 3, Column 7; Row 4, Column 1; Row 4, Column 6; Row 6, Column 7; Row 7, Column 2; Row 7, Column 3; Row 7, Column 5; Row 8, Column 5; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 2, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/67.txt b/maze/task5/maps/level8/pure_text/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..40291dccb72594f19b704bef48f2c8be94794b57 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/67.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 8; +The hole(s) are at: Row 1, Column 3; Row 2, Column 3; Row 2, Column 4; Row 2, Column 6; Row 3, Column 2; Row 3, Column 3; Row 3, Column 5; Row 4, Column 3; Row 4, Column 8; Row 5, Column 3; Row 6, Column 2; Row 6, Column 3; Row 6, Column 6; Row 7, Column 2; Row 7, Column 6; Row 7, Column 8; Row 8, Column 5; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/68.txt b/maze/task5/maps/level8/pure_text/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..ccfa02b629c852aa7d875baa9ca38c5f0f3de48f --- /dev/null +++ b/maze/task5/maps/level8/pure_text/68.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 8; Row 2, Column 4; Row 3, Column 5; Row 4, Column 6; Row 4, Column 8; Row 5, Column 7; Row 5, Column 8; Row 6, Column 6; Row 7, Column 8; Row 8, Column 6; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/69.txt b/maze/task5/maps/level8/pure_text/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d6e19b9ae2b4ea2908da3c07965ab65209f9437 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/69.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 2; Row 1, Column 6; Row 1, Column 8; Row 2, Column 4; Row 2, Column 5; Row 3, Column 4; Row 3, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 6; Row 7, Column 1; Row 7, Column 3; Row 7, Column 6; Row 7, Column 8; Row 8, Column 2; Row 8, Column 6; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 4, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/7.txt b/maze/task5/maps/level8/pure_text/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ff0fc6344e75f1bbadf15df581375f91eaf1751 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/7.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 1, Column 8; Row 2, Column 1; Row 2, Column 5; Row 3, Column 8; Row 4, Column 3; Row 6, Column 1; Row 6, Column 7; Row 6, Column 8; Row 7, Column 2; Row 7, Column 6; +The goal is at: Row 8, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/70.txt b/maze/task5/maps/level8/pure_text/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..7749acf2367ad4bff8af4cd0c424534fc00331c7 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/70.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 2; +The hole(s) are at: Row 3, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 7; Row 5, Column 6; Row 5, Column 7; Row 5, Column 8; Row 6, Column 2; Row 7, Column 2; Row 8, Column 4; Row 8, Column 7; +The goal is at: Row 7, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/71.txt b/maze/task5/maps/level8/pure_text/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..911c5422964f25f36865b2df1559145fb2f12bb4 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/71.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 2, Column 6; Row 3, Column 3; Row 3, Column 5; Row 4, Column 1; Row 4, Column 6; Row 5, Column 3; Row 5, Column 6; Row 6, Column 4; Row 6, Column 7; Row 7, Column 3; Row 7, Column 6; Row 8, Column 1; Row 8, Column 4; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 1, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/72.txt b/maze/task5/maps/level8/pure_text/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..1025d30a72e42dc2b17c1c9eafee0be98fdcb54e --- /dev/null +++ b/maze/task5/maps/level8/pure_text/72.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 1, Column 7; Row 3, Column 4; Row 3, Column 6; Row 5, Column 2; Row 6, Column 3; Row 6, Column 4; Row 7, Column 3; Row 8, Column 1; +The goal is at: Row 8, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/73.txt b/maze/task5/maps/level8/pure_text/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..4668bd5d7291a4902b569219720ff69c854fa164 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/73.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 1; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 4, Column 2; Row 4, Column 3; Row 4, Column 4; Row 6, Column 1; Row 6, Column 6; Row 7, Column 3; Row 7, Column 8; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/74.txt b/maze/task5/maps/level8/pure_text/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0fd2f7813ab29864debcd958bff8123a5c0ae2b --- /dev/null +++ b/maze/task5/maps/level8/pure_text/74.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 3; Row 2, Column 8; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 4, Column 8; Row 5, Column 2; Row 5, Column 4; Row 5, Column 7; Row 6, Column 4; Row 7, Column 4; Row 7, Column 7; Row 8, Column 1; Row 8, Column 3; Row 8, Column 5; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/75.txt b/maze/task5/maps/level8/pure_text/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..03fe9082300c6476df207801ddd22bdb2c702eca --- /dev/null +++ b/maze/task5/maps/level8/pure_text/75.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 2, Column 4; Row 4, Column 1; Row 4, Column 4; Row 4, Column 8; Row 5, Column 4; Row 5, Column 7; Row 6, Column 4; Row 6, Column 6; Row 7, Column 1; Row 7, Column 5; Row 8, Column 7; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/76.txt b/maze/task5/maps/level8/pure_text/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b8bdae395d8fef94ba06be4a4a8ffad7b259df4 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/76.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 3; +The hole(s) are at: Row 1, Column 2; Row 1, Column 5; Row 3, Column 6; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 4, Column 8; Row 5, Column 4; Row 6, Column 2; Row 7, Column 5; Row 7, Column 6; Row 8, Column 1; Row 8, Column 3; Row 8, Column 4; Row 8, Column 7; +The goal is at: Row 7, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/77.txt b/maze/task5/maps/level8/pure_text/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..1068542fcb365ced1d62daa2330bbe674bac35f4 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/77.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 5; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 2, Column 3; Row 3, Column 2; Row 4, Column 7; Row 5, Column 8; Row 6, Column 2; Row 6, Column 5; Row 7, Column 4; Row 7, Column 6; Row 7, Column 7; Row 8, Column 2; Row 8, Column 3; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/78.txt b/maze/task5/maps/level8/pure_text/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..54901c63a9de34e9ea7ca2e5f43a4f9c461b953c --- /dev/null +++ b/maze/task5/maps/level8/pure_text/78.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 6; +The hole(s) are at: Row 2, Column 1; Row 2, Column 5; Row 3, Column 8; Row 4, Column 2; Row 4, Column 6; Row 6, Column 5; Row 6, Column 6; Row 6, Column 7; Row 7, Column 6; Row 7, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/79.txt b/maze/task5/maps/level8/pure_text/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..77b80ad1ddb5b65697e28692d807824dcbd58a96 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/79.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 5; +The hole(s) are at: Row 1, Column 1; Row 1, Column 6; Row 2, Column 2; Row 3, Column 2; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 6, Column 1; Row 8, Column 2; Row 8, Column 7; Row 8, Column 8; +The goal is at: Row 3, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/8.txt b/maze/task5/maps/level8/pure_text/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..a7ee98c8f32c1df685aa70cdac0538c52d87c03e --- /dev/null +++ b/maze/task5/maps/level8/pure_text/8.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 8; +The hole(s) are at: Row 1, Column 1; Row 3, Column 5; Row 3, Column 6; Row 4, Column 1; Row 5, Column 6; Row 7, Column 4; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/80.txt b/maze/task5/maps/level8/pure_text/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..99333863cff3bce7d854eaa70962a11bfb98dcbe --- /dev/null +++ b/maze/task5/maps/level8/pure_text/80.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 7; Row 2, Column 1; Row 2, Column 8; Row 3, Column 3; Row 3, Column 7; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 8; Row 5, Column 1; Row 5, Column 5; Row 6, Column 8; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 6, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/81.txt b/maze/task5/maps/level8/pure_text/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6988f299182b5cefc1d9ab418b0fabef1a1ff91 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/81.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 1; +The hole(s) are at: Row 1, Column 1; Row 1, Column 4; Row 1, Column 5; Row 2, Column 2; Row 2, Column 3; Row 2, Column 6; Row 4, Column 2; Row 4, Column 6; Row 6, Column 6; Row 6, Column 7; Row 7, Column 8; Row 8, Column 3; Row 8, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/82.txt b/maze/task5/maps/level8/pure_text/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..041d80d450e507058ec9cc8d6c11931b3b13cc68 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/82.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 7; +The hole(s) are at: Row 1, Column 5; Row 2, Column 2; Row 3, Column 5; Row 4, Column 3; Row 4, Column 5; Row 4, Column 8; Row 5, Column 2; Row 5, Column 4; Row 7, Column 4; Row 7, Column 5; Row 8, Column 7; +The goal is at: Row 6, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/83.txt b/maze/task5/maps/level8/pure_text/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9e652774cc569ff852bd1539e20d67fc98220d6 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/83.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 2, Column 1; Row 2, Column 3; Row 3, Column 5; Row 3, Column 7; Row 4, Column 3; Row 5, Column 3; Row 6, Column 2; Row 6, Column 3; Row 6, Column 4; Row 8, Column 3; Row 8, Column 8; +The goal is at: Row 6, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/84.txt b/maze/task5/maps/level8/pure_text/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..246f19c15ad2daa2786585f0e64479f80c6d7b0d --- /dev/null +++ b/maze/task5/maps/level8/pure_text/84.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 7; +The hole(s) are at: Row 1, Column 1; Row 1, Column 8; Row 2, Column 4; Row 2, Column 5; Row 3, Column 5; Row 3, Column 7; Row 5, Column 4; Row 6, Column 1; Row 6, Column 6; Row 7, Column 6; Row 8, Column 2; +The goal is at: Row 2, Column 1. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/85.txt b/maze/task5/maps/level8/pure_text/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..9471e6bc6f99b40f1c4c3e431b5bd50b8e854ed6 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/85.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 4, column 6; +The hole(s) are at: Row 1, Column 2; Row 1, Column 3; Row 1, Column 8; Row 3, Column 2; Row 3, Column 4; Row 3, Column 8; Row 4, Column 1; Row 4, Column 3; Row 4, Column 4; Row 4, Column 7; Row 4, Column 8; Row 6, Column 1; Row 6, Column 6; Row 6, Column 8; Row 8, Column 5; Row 8, Column 8; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/86.txt b/maze/task5/maps/level8/pure_text/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..6045a979f402c1c49d401b689d4cc28cd20246a0 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/86.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 2, column 5; +The hole(s) are at: Row 1, Column 3; Row 1, Column 4; Row 1, Column 5; Row 2, Column 6; Row 2, Column 7; Row 3, Column 3; Row 4, Column 6; Row 4, Column 8; Row 6, Column 1; Row 6, Column 2; Row 6, Column 4; Row 6, Column 7; Row 7, Column 3; Row 7, Column 4; Row 8, Column 7; +The goal is at: Row 5, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/87.txt b/maze/task5/maps/level8/pure_text/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..1159fd781db2b9646aacf6abc4f2aa0077ed8925 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/87.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 3; +The hole(s) are at: Row 1, Column 8; Row 3, Column 8; Row 4, Column 2; Row 4, Column 6; Row 5, Column 4; Row 5, Column 5; Row 5, Column 7; Row 6, Column 4; Row 7, Column 2; Row 8, Column 8; +The goal is at: Row 2, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/88.txt b/maze/task5/maps/level8/pure_text/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b79879d494201d69f8961c4a0786ee0a5f5eb2d --- /dev/null +++ b/maze/task5/maps/level8/pure_text/88.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 4; +The hole(s) are at: Row 1, Column 4; Row 2, Column 2; Row 4, Column 4; Row 6, Column 4; Row 6, Column 6; Row 7, Column 6; Row 8, Column 2; Row 8, Column 7; +The goal is at: Row 5, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/89.txt b/maze/task5/maps/level8/pure_text/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d915d7d35b1c0aae8919d963b62258c9519b561 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/89.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 2, Column 2; Row 3, Column 6; Row 4, Column 2; Row 4, Column 6; Row 5, Column 1; Row 5, Column 2; Row 5, Column 3; Row 7, Column 5; Row 7, Column 8; Row 8, Column 2; Row 8, Column 3; Row 8, Column 5; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/9.txt b/maze/task5/maps/level8/pure_text/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cf3bda3b94822dcb89bdc4e6f060dcc835e493b --- /dev/null +++ b/maze/task5/maps/level8/pure_text/9.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 4; +The hole(s) are at: Row 1, Column 2; Row 2, Column 4; Row 2, Column 8; Row 3, Column 3; Row 3, Column 4; Row 3, Column 5; Row 4, Column 1; Row 6, Column 6; Row 6, Column 8; Row 7, Column 8; Row 8, Column 1; Row 8, Column 2; +The goal is at: Row 8, Column 5. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/90.txt b/maze/task5/maps/level8/pure_text/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..797e48106cf7be091baeb8d101b7aed7f118f28a --- /dev/null +++ b/maze/task5/maps/level8/pure_text/90.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 8, column 1; +The hole(s) are at: Row 1, Column 7; Row 2, Column 1; Row 2, Column 7; Row 3, Column 1; Row 3, Column 5; Row 3, Column 7; Row 3, Column 8; Row 5, Column 6; Row 6, Column 4; Row 7, Column 7; +The goal is at: Row 8, Column 6. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/91.txt b/maze/task5/maps/level8/pure_text/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..32918b7d6cc7a60cce24fd786da274f03bad5852 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/91.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 5, column 2; +The hole(s) are at: Row 1, Column 6; Row 2, Column 2; Row 3, Column 1; Row 3, Column 2; Row 3, Column 5; Row 5, Column 3; Row 5, Column 4; Row 5, Column 8; Row 6, Column 1; Row 6, Column 2; Row 8, Column 1; Row 8, Column 6; Row 8, Column 8; +The goal is at: Row 4, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/92.txt b/maze/task5/maps/level8/pure_text/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b1e163a00e6962402b1e7e5dece8848c6ca6f82 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/92.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 2, Column 1; Row 2, Column 6; Row 3, Column 7; Row 4, Column 4; Row 4, Column 5; Row 6, Column 3; Row 6, Column 7; Row 6, Column 8; Row 7, Column 3; Row 8, Column 3; Row 8, Column 5; +The goal is at: Row 4, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/93.txt b/maze/task5/maps/level8/pure_text/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c06bee2540deafc1cedc2ef198e866c9a27ad54d --- /dev/null +++ b/maze/task5/maps/level8/pure_text/93.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 1; +The hole(s) are at: Row 1, Column 2; Row 1, Column 4; Row 1, Column 6; Row 3, Column 1; Row 4, Column 1; Row 5, Column 4; Row 5, Column 6; Row 5, Column 7; Row 6, Column 3; Row 6, Column 7; Row 7, Column 8; Row 8, Column 2; Row 8, Column 4; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 7, Column 3. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/94.txt b/maze/task5/maps/level8/pure_text/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..b5f2997b4396d69029a1bbb7e1077f4e4df7cecb --- /dev/null +++ b/maze/task5/maps/level8/pure_text/94.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 5; +The hole(s) are at: Row 1, Column 2; Row 1, Column 6; Row 3, Column 8; Row 5, Column 6; Row 6, Column 1; Row 6, Column 5; Row 6, Column 6; Row 8, Column 2; Row 8, Column 7; +The goal is at: Row 1, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/95.txt b/maze/task5/maps/level8/pure_text/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3c48e16e364f33f81c96cac940d5d861a958ccb --- /dev/null +++ b/maze/task5/maps/level8/pure_text/95.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 7, column 4; +The hole(s) are at: Row 1, Column 2; Row 1, Column 7; Row 2, Column 1; Row 3, Column 7; Row 4, Column 1; Row 5, Column 3; Row 6, Column 2; Row 6, Column 5; Row 6, Column 6; Row 6, Column 8; Row 7, Column 2; Row 8, Column 7; +The goal is at: Row 6, Column 4. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/96.txt b/maze/task5/maps/level8/pure_text/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4d50735f8799f1eef9a9ec5946ef9fbe83abeab --- /dev/null +++ b/maze/task5/maps/level8/pure_text/96.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 2; +The hole(s) are at: Row 1, Column 4; Row 1, Column 8; Row 2, Column 7; Row 4, Column 2; Row 4, Column 7; Row 5, Column 6; Row 5, Column 7; Row 6, Column 2; Row 6, Column 6; Row 6, Column 7; Row 7, Column 7; Row 8, Column 5; Row 8, Column 6; +The goal is at: Row 8, Column 8. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/97.txt b/maze/task5/maps/level8/pure_text/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c4c0fd42dc954d960ff88ccf79ae55b707a4609 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/97.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 3, column 1; +The hole(s) are at: Row 1, Column 3; Row 1, Column 6; Row 2, Column 2; Row 2, Column 4; Row 2, Column 7; Row 3, Column 7; Row 4, Column 1; Row 4, Column 8; Row 5, Column 1; Row 5, Column 3; Row 5, Column 6; Row 6, Column 5; Row 7, Column 4; Row 7, Column 5; Row 7, Column 6; Row 7, Column 7; Row 8, Column 1; Row 8, Column 7; +The goal is at: Row 1, Column 2. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/98.txt b/maze/task5/maps/level8/pure_text/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7aa6269b686fee2363c5e296717fb739b702ad4 --- /dev/null +++ b/maze/task5/maps/level8/pure_text/98.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 1, column 4; +The hole(s) are at: Row 3, Column 2; Row 3, Column 3; Row 3, Column 7; Row 3, Column 8; Row 4, Column 2; Row 4, Column 7; Row 5, Column 2; Row 5, Column 3; Row 5, Column 8; Row 6, Column 1; Row 6, Column 5; Row 7, Column 4; Row 7, Column 5; Row 8, Column 3; Row 8, Column 6; Row 8, Column 7; +The goal is at: Row 7, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/pure_text/99.txt b/maze/task5/maps/level8/pure_text/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..889e4bfad34ea4ed20349dcfa1008d1fc3223fcb --- /dev/null +++ b/maze/task5/maps/level8/pure_text/99.txt @@ -0,0 +1,4 @@ +This is a 8x8 map. +The player is at: row 6, column 2; +The hole(s) are at: Row 1, Column 4; Row 2, Column 1; Row 3, Column 3; Row 3, Column 4; Row 4, Column 2; Row 4, Column 3; Row 4, Column 6; Row 4, Column 7; Row 6, Column 3; Row 6, Column 6; Row 7, Column 4; Row 7, Column 7; +The goal is at: Row 5, Column 7. \ No newline at end of file diff --git a/maze/task5/maps/level8/table/0.txt b/maze/task5/maps/level8/table/0.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ec34b8d12e51d4b558ce37cf687580d631f73b1 --- /dev/null +++ b/maze/task5/maps/level8/table/0.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | @ | * | _ | _ | _ | +| Row 5 | _ | # | # | # | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | # | # | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/1.txt b/maze/task5/maps/level8/table/1.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b64b1756c25b812b07a933475352daf5c6f5e6f --- /dev/null +++ b/maze/task5/maps/level8/table/1.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | @ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | * | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | # | _ | # | _ | # | # | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task5/maps/level8/table/10.txt b/maze/task5/maps/level8/table/10.txt new file mode 100644 index 0000000000000000000000000000000000000000..90b3088fa3ecf183d03c2f35d8af8abc926434d6 --- /dev/null +++ b/maze/task5/maps/level8/table/10.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | # | _ | +| Row 4 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | * | +| Row 6 | _ | # | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | _ | # | diff --git a/maze/task5/maps/level8/table/11.txt b/maze/task5/maps/level8/table/11.txt new file mode 100644 index 0000000000000000000000000000000000000000..88c2ddf8f26a4c31a33cf445e36c4b3357ee18b4 --- /dev/null +++ b/maze/task5/maps/level8/table/11.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | # | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | # | +| Row 3 | _ | _ | # | # | _ | # | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | @ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | * | +| Row 7 | _ | _ | _ | # | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level8/table/12.txt b/maze/task5/maps/level8/table/12.txt new file mode 100644 index 0000000000000000000000000000000000000000..a9ee700601c080bd3d2a411d6e922ecfb8429967 --- /dev/null +++ b/maze/task5/maps/level8/table/12.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | # | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | * | diff --git a/maze/task5/maps/level8/table/13.txt b/maze/task5/maps/level8/table/13.txt new file mode 100644 index 0000000000000000000000000000000000000000..9292e2a4d42c7b8c3fb6ce8345ea27c22cfe4c67 --- /dev/null +++ b/maze/task5/maps/level8/table/13.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | * | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/14.txt b/maze/task5/maps/level8/table/14.txt new file mode 100644 index 0000000000000000000000000000000000000000..81479ff12e7f0dfa763fc13afb175b652bf06ca7 --- /dev/null +++ b/maze/task5/maps/level8/table/14.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | # | _ | _ | _ | # | # | _ | +| Row 4 | _ | # | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | # | _ | # | # | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | @ | # | _ | +| Row 8 | _ | _ | # | _ | # | _ | # | _ | diff --git a/maze/task5/maps/level8/table/15.txt b/maze/task5/maps/level8/table/15.txt new file mode 100644 index 0000000000000000000000000000000000000000..0d5b73839f988ab7e481ad12fc64e43d0159d8d0 --- /dev/null +++ b/maze/task5/maps/level8/table/15.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | @ | _ | # | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | # | # | +| Row 7 | # | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level8/table/16.txt b/maze/task5/maps/level8/table/16.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd3d796a883a66202d9ae07209eb2a663634582c --- /dev/null +++ b/maze/task5/maps/level8/table/16.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | * | _ | _ | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | # | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | @ | _ | # | _ | # | diff --git a/maze/task5/maps/level8/table/17.txt b/maze/task5/maps/level8/table/17.txt new file mode 100644 index 0000000000000000000000000000000000000000..4874b883651b8bf1deea10af493f41b69052b915 --- /dev/null +++ b/maze/task5/maps/level8/table/17.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | * | _ | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | @ | _ | +| Row 7 | # | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/18.txt b/maze/task5/maps/level8/table/18.txt new file mode 100644 index 0000000000000000000000000000000000000000..03700daac60ec0aa3870c085b09c10f2689806d9 --- /dev/null +++ b/maze/task5/maps/level8/table/18.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | * | _ | _ | _ | # | +| Row 7 | _ | _ | _ | # | _ | # | _ | # | +| Row 8 | _ | # | _ | # | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/19.txt b/maze/task5/maps/level8/table/19.txt new file mode 100644 index 0000000000000000000000000000000000000000..7026ce40c1800d1538c56d9a8a298989264e97b3 --- /dev/null +++ b/maze/task5/maps/level8/table/19.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | # | @ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | # | +| Row 7 | * | _ | # | _ | # | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/2.txt b/maze/task5/maps/level8/table/2.txt new file mode 100644 index 0000000000000000000000000000000000000000..f41cf86513720ea73b0e888377bbdac21bea7a07 --- /dev/null +++ b/maze/task5/maps/level8/table/2.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | * | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | # | # | _ | _ | @ | diff --git a/maze/task5/maps/level8/table/20.txt b/maze/task5/maps/level8/table/20.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6d091ba98c33e3a83a6f821ea3767daf93f06dc --- /dev/null +++ b/maze/task5/maps/level8/table/20.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | _ | _ | _ | +| Row 2 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | # | # | +| Row 6 | _ | # | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | # | _ | _ | # | # | _ | diff --git a/maze/task5/maps/level8/table/21.txt b/maze/task5/maps/level8/table/21.txt new file mode 100644 index 0000000000000000000000000000000000000000..19852a572102f63dd074153dc1a235ea39e288c6 --- /dev/null +++ b/maze/task5/maps/level8/table/21.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/22.txt b/maze/task5/maps/level8/table/22.txt new file mode 100644 index 0000000000000000000000000000000000000000..31b4c5ed521d6df149da1a2859397e96cfb21346 --- /dev/null +++ b/maze/task5/maps/level8/table/22.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | @ | _ | # | # | _ | _ | _ | _ | +| Row 6 | * | # | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/23.txt b/maze/task5/maps/level8/table/23.txt new file mode 100644 index 0000000000000000000000000000000000000000..6b5ed49a6917c9176e862b9caa5e1101dc82a669 --- /dev/null +++ b/maze/task5/maps/level8/table/23.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | # | # | +| Row 8 | _ | # | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level8/table/24.txt b/maze/task5/maps/level8/table/24.txt new file mode 100644 index 0000000000000000000000000000000000000000..7873e4aeb5c7eac57fd14f35390226073a96e008 --- /dev/null +++ b/maze/task5/maps/level8/table/24.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | # | _ | _ | @ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | # | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level8/table/25.txt b/maze/task5/maps/level8/table/25.txt new file mode 100644 index 0000000000000000000000000000000000000000..753f2cf56c9651070077ccc4bf2270b947eeb676 --- /dev/null +++ b/maze/task5/maps/level8/table/25.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | # | _ | * | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/26.txt b/maze/task5/maps/level8/table/26.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4393f7852e6385d5b449f4cc81cc6693d77ad64 --- /dev/null +++ b/maze/task5/maps/level8/table/26.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | # | # | _ | +| Row 2 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | _ | _ | # | _ | +| Row 4 | _ | # | _ | _ | _ | _ | * | _ | +| Row 5 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level8/table/27.txt b/maze/task5/maps/level8/table/27.txt new file mode 100644 index 0000000000000000000000000000000000000000..79f875c4a6e6c423dc4dd1da116f167f09a44d94 --- /dev/null +++ b/maze/task5/maps/level8/table/27.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | @ | # | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level8/table/28.txt b/maze/task5/maps/level8/table/28.txt new file mode 100644 index 0000000000000000000000000000000000000000..20299c4440761d7b57489d9e5e176dea42940f28 --- /dev/null +++ b/maze/task5/maps/level8/table/28.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | @ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | # | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/29.txt b/maze/task5/maps/level8/table/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a433fc1743e3e6dea2120f43dc7b54e128ba0bf --- /dev/null +++ b/maze/task5/maps/level8/table/29.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | * | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | # | # | _ | _ | +| Row 5 | # | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task5/maps/level8/table/3.txt b/maze/task5/maps/level8/table/3.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d6c5749184137e7db88d58ecba3d4e42fc89d77 --- /dev/null +++ b/maze/task5/maps/level8/table/3.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 3 | _ | * | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | # | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | # | _ | _ | # | +| Row 7 | _ | # | # | # | _ | _ | # | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level8/table/30.txt b/maze/task5/maps/level8/table/30.txt new file mode 100644 index 0000000000000000000000000000000000000000..effec626b8e1edcbf45ec8e3048d2b2329de36a0 --- /dev/null +++ b/maze/task5/maps/level8/table/30.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | # | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | * | # | _ | # | _ | @ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task5/maps/level8/table/31.txt b/maze/task5/maps/level8/table/31.txt new file mode 100644 index 0000000000000000000000000000000000000000..750241827928a4c4d240fa633babcdb531046a6d --- /dev/null +++ b/maze/task5/maps/level8/table/31.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | @ | # | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | _ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | # | _ | _ | * | _ | _ | diff --git a/maze/task5/maps/level8/table/32.txt b/maze/task5/maps/level8/table/32.txt new file mode 100644 index 0000000000000000000000000000000000000000..231c109082afe45b2c8e182f4bc6beb928833312 --- /dev/null +++ b/maze/task5/maps/level8/table/32.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | _ | _ | _ | # | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | @ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/33.txt b/maze/task5/maps/level8/table/33.txt new file mode 100644 index 0000000000000000000000000000000000000000..1eb3b0fc36c85ff0c73b20f194ede115afd93bcd --- /dev/null +++ b/maze/task5/maps/level8/table/33.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | # | _ | _ | _ | # | # | +| Row 3 | # | _ | _ | _ | @ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | # | _ | _ | # | _ | +| Row 7 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level8/table/34.txt b/maze/task5/maps/level8/table/34.txt new file mode 100644 index 0000000000000000000000000000000000000000..734bd6cf9041dd4aa3cb65591d5254355f7ea846 --- /dev/null +++ b/maze/task5/maps/level8/table/34.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | @ | # | # | _ | +| Row 2 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | # | _ | # | _ | # | +| Row 8 | # | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/35.txt b/maze/task5/maps/level8/table/35.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a20fefc79d10b64d6309aab15ae26b511b5a123 --- /dev/null +++ b/maze/task5/maps/level8/table/35.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | # | # | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | # | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level8/table/36.txt b/maze/task5/maps/level8/table/36.txt new file mode 100644 index 0000000000000000000000000000000000000000..41f629a179bdfe4c653cc380763945d0aad8d5a3 --- /dev/null +++ b/maze/task5/maps/level8/table/36.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | # | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | # | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | # | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task5/maps/level8/table/37.txt b/maze/task5/maps/level8/table/37.txt new file mode 100644 index 0000000000000000000000000000000000000000..f10efdb8f3821ec452c751053c911c2c5161697b --- /dev/null +++ b/maze/task5/maps/level8/table/37.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | # | _ | _ | # | _ | +| Row 7 | @ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task5/maps/level8/table/38.txt b/maze/task5/maps/level8/table/38.txt new file mode 100644 index 0000000000000000000000000000000000000000..47f5bf836bbb17f0c90711a8bafd1bd805ae780f --- /dev/null +++ b/maze/task5/maps/level8/table/38.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | * | _ | _ | # | +| Row 3 | # | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/39.txt b/maze/task5/maps/level8/table/39.txt new file mode 100644 index 0000000000000000000000000000000000000000..e9ac3e1a8649ef16b0765c119a39436c5fbc0703 --- /dev/null +++ b/maze/task5/maps/level8/table/39.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | * | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | # | # | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/4.txt b/maze/task5/maps/level8/table/4.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ec2b47516ba16d48ef194e55334415b0eb13f94 --- /dev/null +++ b/maze/task5/maps/level8/table/4.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | # | # | +| Row 2 | # | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | * | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/40.txt b/maze/task5/maps/level8/table/40.txt new file mode 100644 index 0000000000000000000000000000000000000000..da8ac5c230851329b54f48fb8a3ba2993f1e638e --- /dev/null +++ b/maze/task5/maps/level8/table/40.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | * | _ | _ | _ | _ | # | +| Row 2 | # | _ | # | _ | # | _ | # | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | # | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | # | _ | diff --git a/maze/task5/maps/level8/table/41.txt b/maze/task5/maps/level8/table/41.txt new file mode 100644 index 0000000000000000000000000000000000000000..385d022271b13d8a6ee8952628fc73b64fdd1b82 --- /dev/null +++ b/maze/task5/maps/level8/table/41.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | # | # | +| Row 5 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | @ | _ | _ | +| Row 7 | # | # | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/42.txt b/maze/task5/maps/level8/table/42.txt new file mode 100644 index 0000000000000000000000000000000000000000..76c5f1e7165349c7acb193bda72a6abd13cc6e2e --- /dev/null +++ b/maze/task5/maps/level8/table/42.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | @ | _ | # | # | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | # | _ | _ | _ | +| Row 7 | # | _ | _ | * | _ | # | _ | _ | +| Row 8 | _ | # | # | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/43.txt b/maze/task5/maps/level8/table/43.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c6c8e3f5907b4947306a2f81d23ae156f2a2eb5 --- /dev/null +++ b/maze/task5/maps/level8/table/43.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | * | +| Row 2 | @ | _ | _ | # | _ | # | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/44.txt b/maze/task5/maps/level8/table/44.txt new file mode 100644 index 0000000000000000000000000000000000000000..5cd13a8219bf4fce161a035fd3afd6a0e7cea5ba --- /dev/null +++ b/maze/task5/maps/level8/table/44.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | * | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | # | _ | _ | _ | _ | +| Row 7 | @ | _ | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/45.txt b/maze/task5/maps/level8/table/45.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec4167c8ae5deaab126bd28c00f02f3eaf8aedef --- /dev/null +++ b/maze/task5/maps/level8/table/45.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | # | # | # | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | # | _ | _ | * | _ | _ | +| Row 7 | _ | _ | @ | _ | # | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/46.txt b/maze/task5/maps/level8/table/46.txt new file mode 100644 index 0000000000000000000000000000000000000000..d1b78f321a81e5d95c28216002aff2069b633846 --- /dev/null +++ b/maze/task5/maps/level8/table/46.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | _ | _ | * | # | _ | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | # | # | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/47.txt b/maze/task5/maps/level8/table/47.txt new file mode 100644 index 0000000000000000000000000000000000000000..aeb4e0c2ca3b7fa1e34b3dc3c9d70be74b3c62e7 --- /dev/null +++ b/maze/task5/maps/level8/table/47.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | _ | _ | @ | # | _ | _ | # | +| Row 8 | _ | _ | # | _ | * | _ | _ | # | diff --git a/maze/task5/maps/level8/table/48.txt b/maze/task5/maps/level8/table/48.txt new file mode 100644 index 0000000000000000000000000000000000000000..140700095f4749c08353420d37e4df15e4a7ca7b --- /dev/null +++ b/maze/task5/maps/level8/table/48.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | @ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | # | _ | # | _ | _ | _ | # | * | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/49.txt b/maze/task5/maps/level8/table/49.txt new file mode 100644 index 0000000000000000000000000000000000000000..0efd0ad7b8f24db32261fd02988998c6c7ec4fe2 --- /dev/null +++ b/maze/task5/maps/level8/table/49.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | * | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | # | # | # | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | # | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | @ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task5/maps/level8/table/5.txt b/maze/task5/maps/level8/table/5.txt new file mode 100644 index 0000000000000000000000000000000000000000..322a6b340869ac0e7e2d56b1bf233924d6cc5951 --- /dev/null +++ b/maze/task5/maps/level8/table/5.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | * | # | +| Row 2 | _ | # | _ | _ | # | _ | _ | # | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 6 | _ | # | _ | _ | _ | # | _ | _ | +| Row 7 | # | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/50.txt b/maze/task5/maps/level8/table/50.txt new file mode 100644 index 0000000000000000000000000000000000000000..612b4f786c5299991ab7430549ea13586f73c005 --- /dev/null +++ b/maze/task5/maps/level8/table/50.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | # | _ | _ | +| Row 2 | _ | # | # | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | * | _ | +| Row 6 | # | # | # | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | @ | # | _ | _ | # | # | diff --git a/maze/task5/maps/level8/table/51.txt b/maze/task5/maps/level8/table/51.txt new file mode 100644 index 0000000000000000000000000000000000000000..86dd906279ab4c0fe46d984a6466455675e306a8 --- /dev/null +++ b/maze/task5/maps/level8/table/51.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | # | # | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | # | * | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level8/table/52.txt b/maze/task5/maps/level8/table/52.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5ecd8be116ed85ef16530d69d00764e74f5c818 --- /dev/null +++ b/maze/task5/maps/level8/table/52.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | @ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | * | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/53.txt b/maze/task5/maps/level8/table/53.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b62de9b6c5aabf0de59469d8bc160d35423c50b --- /dev/null +++ b/maze/task5/maps/level8/table/53.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | @ | _ | # | # | # | +| Row 2 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | * | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level8/table/54.txt b/maze/task5/maps/level8/table/54.txt new file mode 100644 index 0000000000000000000000000000000000000000..aaba9ddbc00e4ee0d0a15a5a31d9c42b29cfd730 --- /dev/null +++ b/maze/task5/maps/level8/table/54.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | # | +| Row 3 | _ | _ | _ | # | # | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | @ | _ | _ | * | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | # | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/55.txt b/maze/task5/maps/level8/table/55.txt new file mode 100644 index 0000000000000000000000000000000000000000..716cde76cd3b1d0fbdb905d507614e2fb771643e --- /dev/null +++ b/maze/task5/maps/level8/table/55.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | * | _ | # | +| Row 4 | _ | @ | _ | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | # | _ | # | # | +| Row 8 | # | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/56.txt b/maze/task5/maps/level8/table/56.txt new file mode 100644 index 0000000000000000000000000000000000000000..e1c309f0e323846ff48ddbfd0e567e92a54e6466 --- /dev/null +++ b/maze/task5/maps/level8/table/56.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | # | _ | _ | # | _ | +| Row 2 | # | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | _ | # | +| Row 4 | # | _ | _ | _ | # | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | _ | _ | # | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/57.txt b/maze/task5/maps/level8/table/57.txt new file mode 100644 index 0000000000000000000000000000000000000000..58eb6391e35f4d5431a331187177eb35de132c5f --- /dev/null +++ b/maze/task5/maps/level8/table/57.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | @ | # | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | # | # | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task5/maps/level8/table/58.txt b/maze/task5/maps/level8/table/58.txt new file mode 100644 index 0000000000000000000000000000000000000000..611c6edf6e8aa3722337ce1e2bec9b8e627d723e --- /dev/null +++ b/maze/task5/maps/level8/table/58.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | # | +| Row 2 | @ | _ | _ | * | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | # | _ | _ | _ | # | _ | # | # | +| Row 5 | _ | _ | _ | _ | # | _ | _ | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/59.txt b/maze/task5/maps/level8/table/59.txt new file mode 100644 index 0000000000000000000000000000000000000000..feeca2698a8624f090493695911fdc1560ac864a --- /dev/null +++ b/maze/task5/maps/level8/table/59.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | # | _ | # | _ | +| Row 3 | _ | _ | _ | @ | * | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level8/table/6.txt b/maze/task5/maps/level8/table/6.txt new file mode 100644 index 0000000000000000000000000000000000000000..73de95bf17f6c6bcbfcff5571026411f41e60bfb --- /dev/null +++ b/maze/task5/maps/level8/table/6.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | * | # | _ | # | +| Row 2 | _ | # | _ | # | _ | # | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | @ | # | +| Row 4 | _ | _ | # | # | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | # | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | # | +| Row 8 | # | _ | _ | _ | # | # | # | _ | diff --git a/maze/task5/maps/level8/table/60.txt b/maze/task5/maps/level8/table/60.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ae93ffaaf361bade10333c2707d14b627f6e689 --- /dev/null +++ b/maze/task5/maps/level8/table/60.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | # | # | +| Row 3 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | _ | # | # | diff --git a/maze/task5/maps/level8/table/61.txt b/maze/task5/maps/level8/table/61.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b2da4db351bd163db79a4db472d396a20aaf4fc --- /dev/null +++ b/maze/task5/maps/level8/table/61.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 3 | _ | _ | * | # | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task5/maps/level8/table/62.txt b/maze/task5/maps/level8/table/62.txt new file mode 100644 index 0000000000000000000000000000000000000000..8cfdb4e81874849773e43e546569aa3211d8bd3e --- /dev/null +++ b/maze/task5/maps/level8/table/62.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | # | _ | _ | _ | +| Row 3 | # | _ | _ | # | _ | # | # | _ | +| Row 4 | _ | _ | @ | _ | _ | # | _ | _ | +| Row 5 | # | # | _ | # | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | * | _ | # | # | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level8/table/63.txt b/maze/task5/maps/level8/table/63.txt new file mode 100644 index 0000000000000000000000000000000000000000..29b5ba2bf20424a01f120ff8d2510c27b1bcba4d --- /dev/null +++ b/maze/task5/maps/level8/table/63.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | # | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | @ | _ | * | diff --git a/maze/task5/maps/level8/table/64.txt b/maze/task5/maps/level8/table/64.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ba90938b65968ffd5a42501e4b171826b037e49 --- /dev/null +++ b/maze/task5/maps/level8/table/64.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | # | @ | +| Row 3 | # | # | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | * | _ | # | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/65.txt b/maze/task5/maps/level8/table/65.txt new file mode 100644 index 0000000000000000000000000000000000000000..1205e38e0d2fd1864d89cb19d74e7174086ff487 --- /dev/null +++ b/maze/task5/maps/level8/table/65.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | * | _ | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task5/maps/level8/table/66.txt b/maze/task5/maps/level8/table/66.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4d1788a2fd1f0fdb6c72fd53cd2c538d9dacffe --- /dev/null +++ b/maze/task5/maps/level8/table/66.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | _ | _ | # | _ | +| Row 2 | _ | # | _ | * | _ | # | _ | _ | +| Row 3 | _ | @ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 7 | _ | # | # | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | # | diff --git a/maze/task5/maps/level8/table/67.txt b/maze/task5/maps/level8/table/67.txt new file mode 100644 index 0000000000000000000000000000000000000000..7c592575bd779c70d68a764d8c968deb7039973c --- /dev/null +++ b/maze/task5/maps/level8/table/67.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | # | # | _ | # | _ | _ | +| Row 3 | _ | # | # | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | # | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | * | _ | # | _ | _ | +| Row 7 | _ | # | _ | _ | _ | # | _ | # | +| Row 8 | _ | _ | _ | _ | # | _ | _ | @ | diff --git a/maze/task5/maps/level8/table/68.txt b/maze/task5/maps/level8/table/68.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2896c217b0f0cae0d95d392e669de00e78c7b0d --- /dev/null +++ b/maze/task5/maps/level8/table/68.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | _ | # | # | +| Row 6 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | @ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | _ | diff --git a/maze/task5/maps/level8/table/69.txt b/maze/task5/maps/level8/table/69.txt new file mode 100644 index 0000000000000000000000000000000000000000..d659af3f8ef495ec573926c4b1f0e159481edd66 --- /dev/null +++ b/maze/task5/maps/level8/table/69.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | # | _ | _ | _ | # | _ | # | +| Row 2 | _ | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | * | _ | _ | _ | +| Row 5 | # | # | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | # | _ | # | _ | _ | # | @ | # | +| Row 8 | _ | # | _ | _ | _ | # | # | # | diff --git a/maze/task5/maps/level8/table/7.txt b/maze/task5/maps/level8/table/7.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bc6ac1c33bf8651fbdd0d48b3a2ce6997493198 --- /dev/null +++ b/maze/task5/maps/level8/table/7.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | # | # | _ | _ | # | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | # | # | +| Row 7 | _ | # | _ | _ | _ | # | _ | _ | +| Row 8 | * | _ | _ | @ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/70.txt b/maze/task5/maps/level8/table/70.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8c5d1ed52b8c6530c5c8cedbdd209f607e93e8d --- /dev/null +++ b/maze/task5/maps/level8/table/70.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | _ | @ | # | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | # | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | # | _ | _ | * | _ | _ | _ | +| Row 8 | _ | _ | _ | # | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/71.txt b/maze/task5/maps/level8/table/71.txt new file mode 100644 index 0000000000000000000000000000000000000000..91284bf87766ae201e2f63e325136a7f1ffec8d3 --- /dev/null +++ b/maze/task5/maps/level8/table/71.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 3 | _ | _ | # | _ | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | # | _ | _ | # | _ | _ | +| Row 6 | @ | _ | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | _ | _ | # | _ | _ | +| Row 8 | # | _ | _ | # | _ | _ | # | # | diff --git a/maze/task5/maps/level8/table/72.txt b/maze/task5/maps/level8/table/72.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c0d81a2309aec130c61edb3716be0ae3e39ff78 --- /dev/null +++ b/maze/task5/maps/level8/table/72.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | # | _ | # | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | # | _ | # | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | # | _ | _ | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | # | * | _ | @ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/73.txt b/maze/task5/maps/level8/table/73.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d24b60a91bfc46c81a772c9c4c16258861db631 --- /dev/null +++ b/maze/task5/maps/level8/table/73.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | # | _ | _ | _ | _ | +| Row 5 | @ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | # | _ | _ | _ | _ | # | +| Row 8 | _ | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task5/maps/level8/table/74.txt b/maze/task5/maps/level8/table/74.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9b51bb7516131ed6cce39c3e6850c0c1ac93ff5 --- /dev/null +++ b/maze/task5/maps/level8/table/74.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | _ | _ | _ | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | @ | # | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | # | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/75.txt b/maze/task5/maps/level8/table/75.txt new file mode 100644 index 0000000000000000000000000000000000000000..15b26987bb168746ea520284b7130d9776bdf495 --- /dev/null +++ b/maze/task5/maps/level8/table/75.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | * | _ | _ | # | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | # | _ | _ | _ | # | +| Row 5 | _ | _ | _ | # | _ | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | # | _ | _ | _ | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/76.txt b/maze/task5/maps/level8/table/76.txt new file mode 100644 index 0000000000000000000000000000000000000000..ddd5c1d1a24f03c2bcbefcf0170ba7bb09bf1025 --- /dev/null +++ b/maze/task5/maps/level8/table/76.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | @ | _ | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | _ | # | # | _ | _ | # | # | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | * | _ | _ | # | # | _ | _ | +| Row 8 | # | _ | # | # | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/77.txt b/maze/task5/maps/level8/table/77.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eddfa971d66750ef394d40aa5d4b00da983588f --- /dev/null +++ b/maze/task5/maps/level8/table/77.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | @ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 6 | _ | # | _ | _ | # | _ | * | _ | +| Row 7 | _ | _ | _ | # | _ | # | # | _ | +| Row 8 | _ | # | # | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/78.txt b/maze/task5/maps/level8/table/78.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4bd67227034be15df369e85ea3da53b183b8d2b --- /dev/null +++ b/maze/task5/maps/level8/table/78.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | # | @ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | _ | # | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | # | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/79.txt b/maze/task5/maps/level8/table/79.txt new file mode 100644 index 0000000000000000000000000000000000000000..445e4447d4a3c2647c25e8163eaee4a0566003bb --- /dev/null +++ b/maze/task5/maps/level8/table/79.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | _ | _ | * | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | _ | _ | # | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | @ | _ | # | # | diff --git a/maze/task5/maps/level8/table/8.txt b/maze/task5/maps/level8/table/8.txt new file mode 100644 index 0000000000000000000000000000000000000000..286723d6d284314fdcbbe474b99b4c317666c561 --- /dev/null +++ b/maze/task5/maps/level8/table/8.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | * | _ | _ | _ | _ | @ | +| Row 3 | _ | _ | _ | _ | # | # | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/80.txt b/maze/task5/maps/level8/table/80.txt new file mode 100644 index 0000000000000000000000000000000000000000..f566a874d2343c53b31f409f2f2523d8e8fec67d --- /dev/null +++ b/maze/task5/maps/level8/table/80.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | # | +| Row 3 | _ | _ | # | _ | _ | _ | # | # | +| Row 4 | # | _ | # | _ | _ | _ | _ | # | +| Row 5 | # | @ | _ | _ | # | _ | _ | _ | +| Row 6 | _ | _ | * | _ | _ | _ | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | _ | diff --git a/maze/task5/maps/level8/table/81.txt b/maze/task5/maps/level8/table/81.txt new file mode 100644 index 0000000000000000000000000000000000000000..17beec7ac84bd3c52e7e71ecac02540e335d3022 --- /dev/null +++ b/maze/task5/maps/level8/table/81.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | # | # | _ | _ | _ | +| Row 2 | _ | # | # | _ | _ | # | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | @ | _ | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | _ | # | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/82.txt b/maze/task5/maps/level8/table/82.txt new file mode 100644 index 0000000000000000000000000000000000000000..516a679e6e6125642feba2b7d43fe6c79edb9a10 --- /dev/null +++ b/maze/task5/maps/level8/table/82.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | # | _ | @ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | # | _ | # | _ | _ | # | +| Row 5 | _ | # | _ | # | _ | _ | _ | _ | +| Row 6 | * | _ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/83.txt b/maze/task5/maps/level8/table/83.txt new file mode 100644 index 0000000000000000000000000000000000000000..61355d13c6990b0ff47e6f123d62ee8586e517b0 --- /dev/null +++ b/maze/task5/maps/level8/table/83.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | _ | +| Row 2 | # | _ | # | _ | @ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | # | # | _ | _ | * | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level8/table/84.txt b/maze/task5/maps/level8/table/84.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d1a9345cd824a9dfade22a1c4b04d345c6bdba --- /dev/null +++ b/maze/task5/maps/level8/table/84.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | # | _ | _ | _ | _ | _ | _ | # | +| Row 2 | * | _ | _ | # | # | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | # | _ | # | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | @ | _ | +| Row 5 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/85.txt b/maze/task5/maps/level8/table/85.txt new file mode 100644 index 0000000000000000000000000000000000000000..764c44b8be36864aba448ec4c421063af0f96ce5 --- /dev/null +++ b/maze/task5/maps/level8/table/85.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | # | _ | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | _ | # | _ | _ | _ | # | +| Row 4 | # | _ | # | # | _ | @ | # | # | +| Row 5 | _ | * | _ | _ | _ | _ | _ | _ | +| Row 6 | # | _ | _ | _ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | # | _ | _ | # | diff --git a/maze/task5/maps/level8/table/86.txt b/maze/task5/maps/level8/table/86.txt new file mode 100644 index 0000000000000000000000000000000000000000..4513d950ed397ed1fd3724a2922d068b8db94d52 --- /dev/null +++ b/maze/task5/maps/level8/table/86.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | # | # | # | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | @ | # | # | _ | +| Row 3 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | # | _ | # | +| Row 5 | _ | _ | _ | _ | _ | * | _ | _ | +| Row 6 | # | # | _ | # | _ | _ | # | _ | +| Row 7 | _ | _ | # | # | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/87.txt b/maze/task5/maps/level8/table/87.txt new file mode 100644 index 0000000000000000000000000000000000000000..f809e5a616566cc938b54f533b37d34e617cb900 --- /dev/null +++ b/maze/task5/maps/level8/table/87.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 2 | _ | _ | * | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | _ | _ | _ | # | # | _ | # | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | # | @ | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | # | diff --git a/maze/task5/maps/level8/table/88.txt b/maze/task5/maps/level8/table/88.txt new file mode 100644 index 0000000000000000000000000000000000000000..4db2888d75cb84bbef686a297a6e3aa0c0296722 --- /dev/null +++ b/maze/task5/maps/level8/table/88.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 4 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 5 | _ | * | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | # | _ | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/89.txt b/maze/task5/maps/level8/table/89.txt new file mode 100644 index 0000000000000000000000000000000000000000..6aa8824d448b9edeea68ae416f497c45455475f9 --- /dev/null +++ b/maze/task5/maps/level8/table/89.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 4 | _ | # | _ | _ | _ | # | _ | _ | +| Row 5 | # | # | # | _ | _ | _ | _ | _ | +| Row 6 | _ | @ | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | # | _ | _ | # | +| Row 8 | _ | # | # | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/9.txt b/maze/task5/maps/level8/table/9.txt new file mode 100644 index 0000000000000000000000000000000000000000..432f3ed8a224d04ff2a1416cafc081243b1d1ff4 --- /dev/null +++ b/maze/task5/maps/level8/table/9.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | # | _ | _ | _ | # | +| Row 3 | _ | _ | # | # | # | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | _ | @ | _ | # | _ | # | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 8 | # | # | _ | _ | * | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/90.txt b/maze/task5/maps/level8/table/90.txt new file mode 100644 index 0000000000000000000000000000000000000000..521463f44f0ff4fec990f5f923ca5422aa672718 --- /dev/null +++ b/maze/task5/maps/level8/table/90.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | # | _ | +| Row 3 | # | _ | _ | _ | # | _ | # | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | @ | _ | _ | _ | _ | * | _ | _ | diff --git a/maze/task5/maps/level8/table/91.txt b/maze/task5/maps/level8/table/91.txt new file mode 100644 index 0000000000000000000000000000000000000000..d242e5038bf82520a58f23f2ca7b4942942d8e4b --- /dev/null +++ b/maze/task5/maps/level8/table/91.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | _ | _ | _ | _ | _ | +| Row 3 | # | # | _ | _ | # | _ | _ | _ | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | * | +| Row 5 | _ | @ | # | # | _ | _ | _ | # | +| Row 6 | # | # | _ | _ | _ | _ | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | # | _ | _ | _ | _ | # | _ | # | diff --git a/maze/task5/maps/level8/table/92.txt b/maze/task5/maps/level8/table/92.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fa6cca71785b0eb88f8a69d3243ef83dddb8f67 --- /dev/null +++ b/maze/task5/maps/level8/table/92.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | # | _ | _ | +| Row 2 | # | _ | _ | _ | _ | # | _ | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | _ | _ | _ | # | # | _ | * | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | # | +| Row 7 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 8 | _ | _ | # | _ | # | _ | _ | _ | diff --git a/maze/task5/maps/level8/table/93.txt b/maze/task5/maps/level8/table/93.txt new file mode 100644 index 0000000000000000000000000000000000000000..c84844b842fccfca8d68d4fed7b36d031a1d9569 --- /dev/null +++ b/maze/task5/maps/level8/table/93.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | # | _ | # | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | # | _ | # | # | _ | +| Row 6 | _ | _ | # | _ | _ | _ | # | _ | +| Row 7 | @ | _ | * | _ | _ | _ | _ | # | +| Row 8 | _ | # | _ | # | _ | # | # | _ | diff --git a/maze/task5/maps/level8/table/94.txt b/maze/task5/maps/level8/table/94.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e12a258a2b15d345a42339871a1b674ec26de98 --- /dev/null +++ b/maze/task5/maps/level8/table/94.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | @ | # | * | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | # | +| Row 4 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | _ | _ | _ | # | _ | _ | +| Row 6 | # | _ | _ | _ | # | # | _ | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 8 | _ | # | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/95.txt b/maze/task5/maps/level8/table/95.txt new file mode 100644 index 0000000000000000000000000000000000000000..e14e9eb9361b941266e0b98b59d6c5e08935584a --- /dev/null +++ b/maze/task5/maps/level8/table/95.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | # | _ | _ | _ | _ | # | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 5 | _ | _ | # | _ | _ | _ | _ | _ | +| Row 6 | _ | # | _ | * | # | # | _ | # | +| Row 7 | _ | # | _ | @ | _ | _ | _ | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/96.txt b/maze/task5/maps/level8/table/96.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb024cd551b2e51580e78bbeee3eb51e4e7189f9 --- /dev/null +++ b/maze/task5/maps/level8/table/96.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | @ | _ | # | _ | _ | _ | # | +| Row 2 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 3 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | _ | _ | _ | _ | # | # | _ | +| Row 6 | _ | # | _ | _ | _ | # | # | _ | +| Row 7 | _ | _ | _ | _ | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | # | # | _ | * | diff --git a/maze/task5/maps/level8/table/97.txt b/maze/task5/maps/level8/table/97.txt new file mode 100644 index 0000000000000000000000000000000000000000..8f343b9548105ad8a3e799da15265d419af33c43 --- /dev/null +++ b/maze/task5/maps/level8/table/97.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | * | # | _ | _ | # | _ | _ | +| Row 2 | _ | # | _ | # | _ | _ | # | _ | +| Row 3 | @ | _ | _ | _ | _ | _ | # | _ | +| Row 4 | # | _ | _ | _ | _ | _ | _ | # | +| Row 5 | # | _ | # | _ | _ | # | _ | _ | +| Row 6 | _ | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | # | # | _ | +| Row 8 | # | _ | _ | _ | _ | _ | # | _ | diff --git a/maze/task5/maps/level8/table/98.txt b/maze/task5/maps/level8/table/98.txt new file mode 100644 index 0000000000000000000000000000000000000000..78d893a4c967150dd8109e509947de799619dbd8 --- /dev/null +++ b/maze/task5/maps/level8/table/98.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | @ | _ | _ | _ | _ | +| Row 2 | _ | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | # | # | _ | _ | _ | # | # | +| Row 4 | _ | # | _ | _ | _ | _ | # | _ | +| Row 5 | _ | # | # | _ | _ | _ | _ | # | +| Row 6 | # | _ | _ | _ | # | _ | _ | _ | +| Row 7 | _ | _ | _ | # | # | _ | * | _ | +| Row 8 | _ | _ | # | _ | _ | # | # | _ | diff --git a/maze/task5/maps/level8/table/99.txt b/maze/task5/maps/level8/table/99.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba63bbda2462aea64b39ce0f8b0643fb0d92722f --- /dev/null +++ b/maze/task5/maps/level8/table/99.txt @@ -0,0 +1,9 @@ +| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | +| Row 1 | _ | _ | _ | # | _ | _ | _ | _ | +| Row 2 | # | _ | _ | _ | _ | _ | _ | _ | +| Row 3 | _ | _ | # | # | _ | _ | _ | _ | +| Row 4 | _ | # | # | _ | _ | # | # | _ | +| Row 5 | _ | _ | _ | _ | _ | _ | * | _ | +| Row 6 | _ | @ | # | _ | _ | # | _ | _ | +| Row 7 | _ | _ | _ | # | _ | _ | # | _ | +| Row 8 | _ | _ | _ | _ | _ | _ | _ | _ | diff --git a/maze/task5/prompt-text/prompt-text.txt b/maze/task5/prompt-text/prompt-text.txt new file mode 100644 index 0000000000000000000000000000000000000000..b68bb5ce9c93397197cbbf96310663191f57e903 --- /dev/null +++ b/maze/task5/prompt-text/prompt-text.txt @@ -0,0 +1,44 @@ +As a professional maze solver, your task is to analyze a grid-based map and devise an action plan that enables a player to reach the goal from the starting point without falling into any holes, using the fewest possible moves. Since coding is not within your skill set, your approach relies on logical reasoning of the map. + +## Game Setup +- The game presents a fully observable grid-based map. +- The player starts at a specified grid square, with the goal located elsewhere on the map. +- Each grid square is either safe or contains a hole. +- Your goal is to guide the player to the goal while avoiding holes. +The following figure shows how the player, the holes (non-safe grid), the lands (safe grids), and the goals look like. + + + +## Moving Rules +- The action plan involves a series of moves: 'L' (left), 'R' (right), 'U' (up), or 'D' (down). +- Each move transfers the player to the adjacent square in that direction, provided it is a safe square. The player cannot move more than one square at a time. +- Moving off the edge of the map has no effect. The player will remain at the same square. +- DO NOT MOVE INTO A HOLE! Falling into a hole results in defeat. +- Locating at the grid containing the goal results in victory. +We provide an example to further illustrate the rules. + + + +In this provided example: +- The player is at Row 1, Column 1; +- The goal is at Row 4, Column 4; +- There are two holes: one at Row 1, Column 2, and another at Row 4, Column 1. +- The player can move DOWN. This is because moving down brings them to Row 2, Column 1, and this cell is safe (without holes). +- Moving UP has no effects. This is because the player is already in the topmost row. +- Similarly, moving LEFT has no effects because the player is already in the left-most column. +- Moving RIGHT places the player at Row 1, Column 2. Since there is a hole at this grid, this move results in a loss. + +## Procedure and Output +Now you will solve the given maze. To solve it, please generate text EXACTLY FOLLOW THE FOLLOWING STEPS: +1. First, interpret map. List where the player is at now, where is the goal, and where are the holes. +2. Then, generate an action plan to navigate to the goal step by step. At each step, you should check: + (a) Where the current move leads the player to (the row and column); + (b) What is in that grid. Is it a hole? Is it the goal? Is it an empty space? + (c) Determine if that is a safe action. If not, correct it and re-generate the action plan. +3. Next, verify if the steps successfully navigate the player to the goal without falling into the hole. If not, restart from step 2 and re-generate this step. +4. If succeed, output an aggregated plan using "Action plan: ", where is a string concatenated action in each step. For example, "Action plan: L,L,R,U,D" meaning an action plan of left, left, right, up, and down. Double check the final action plan is consistent with the previous analysis. +Do not output any extra content after the above aggregated output. + +Please generate action plan for the following maze: + + diff --git a/maze/task5/prompt-visual-images/system-figure-1.png b/maze/task5/prompt-visual-images/system-figure-1.png new file mode 100644 index 0000000000000000000000000000000000000000..3ea294f723f08b14abfe02349587a8bcfde5fe2d --- /dev/null +++ b/maze/task5/prompt-visual-images/system-figure-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7321fc3f75b4a763f4c2e5965a513c281bd8542cec31bb90b9f60eff63035b08 +size 159667 diff --git a/maze/task5/prompt-visual-images/system-figure-2.png b/maze/task5/prompt-visual-images/system-figure-2.png new file mode 100644 index 0000000000000000000000000000000000000000..b453ba1a67610367a9480fa7ab711530aaabd58a --- /dev/null +++ b/maze/task5/prompt-visual-images/system-figure-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc4ae6e6474849687801599ffa7b112ce7044ae74bbd612fa01c8619afff9c1 +size 7099 diff --git a/maze/task5/test.py b/maze/task5/test.py new file mode 100644 index 0000000000000000000000000000000000000000..e5d81df26a5052619c49b805fcf1ba0b68ad093b --- /dev/null +++ b/maze/task5/test.py @@ -0,0 +1,179 @@ +import pathlib +import textwrap + +import google.generativeai as genai + +from IPython.display import display +from IPython.display import Markdown + +import PIL.Image +import time +import os + +import random +import numpy as np +def seed_everything(seed): + random.seed(seed) + np.random.seed(seed) + os.environ['PYTHONHASHSEED'] = str(seed) + # torch.manual_seed(seed) + # torch.cuda.manual_seed(seed) + # torch.backends.cudnn.deterministic = True + # env.seed(seed) +seed_everything(1) + +levels = [3,4,5,6,7,8] +in_context_example_num = 0 # 0, 1, 2, 4, 8 + +def to_markdown(text): + text = text.replace('•', ' *') + return Markdown(textwrap.indent(text, '> ', predicate=lambda _: True)) + + +GOOGLE_API_KEY='YOUR-API-KEY' +genai.configure(api_key=GOOGLE_API_KEY) +model = genai.GenerativeModel('gemini-pro-vision') +if in_context_example_num > 0: + output_path = "output/output_img_%d/"%(in_context_example_num) + input_backup_path = "input/input_backup_img_%d/"%(in_context_example_num) +else: + output_path = "output/output_img/" + input_backup_path = "input/input_backup_img/" + +os.makedirs(output_path, exist_ok=True) +os.makedirs(input_backup_path, exist_ok=True) + +loop_time = 0 + +EXAMPLE_DICT = { + 3: [], + 4: [], + 5: [], + 6: [], + 7: [], + 8: [], +} + +# Prepare examples +for level in levels: + for example_id in range(8): + example_path = "../example/level%d/"%(level) + img_input = PIL.Image.open(example_path + "%d.png"%(example_id)) + with open("../example/level%d__sol/%d.txt"%(level, example_id), "r") as f: + text_input = f.read() + this_example = (img_input, text_input) + EXAMPLE_DICT[level].append(this_example) + +# import ipdb; ipdb.set_trace() +for level in levels: + os.makedirs(output_path + "level%d"%(level), exist_ok=True) + os.makedirs(input_backup_path + "level%d"%(level), exist_ok=True) + start_idx = 0 + end_idx = 100 + runned_term = 0 + map_path = "../maps/level%d/"%(level) + while True: + try: + curr_id = start_idx + runned_term + if curr_id >= end_idx: + break + img_input = PIL.Image.open(map_path + "%d.png"%(curr_id)) + prompt_input_1 = ''' +As a professional maze solver, your task is to analyze a grid-based map and devise an action plan that enables a player to reach the goal from the starting point without falling into any holes, using the fewest possible moves. Since coding is not within your skill set, your approach relies on logical reasoning of the map. + +## Game Setup +- The game presents a fully observable grid-based map. +- The player starts at a specified grid square, with the goal located elsewhere on the map. +- Each grid square is either safe or contains a hole. +- Your goal is to guide the player to the goal while avoiding holes. +The following figure shows how the player, the holes (non-safe grid), the lands (safe grids), and the goals look like. +''' + prompt_input_2 = ''' +## Moving Rules +- The action plan involves a series of moves: 'L' (left), 'R' (right), 'U' (up), or 'D' (down). +- Each move transfers the player to the adjacent square in that direction, provided it is a safe square. The player cannot move more than one square at a time. +- Moving off the edge of the map has no effect. The player will remain at the same square. +- DO NOT MOVE INTO A HOLE! Falling into a hole results in defeat. +- Locating at the grid containing the goal results in victory. +We provide an example to further illustrate the rules. +''' + prompt_input_3 = ''' +In this provided example: +- The player is at Row 1, Column 1; +- The goal is at Row 4, Column 4; +- There are two holes: one at Row 1, Column 2, and another at Row 4, Column 1. +- The player can move DOWN. This is because moving down brings them to Row 2, Column 1, and this cell is safe (without holes). +- Moving UP has no effects. This is because the player is already in the topmost row. +- Similarly, moving LEFT has no effects because the player is already in the left-most column. +- Moving RIGHT places the player at Row 1, Column 2. Since there is a hole at this grid, this move results in a loss. + +## Procedure and Output +Now you will solve the given maze. To solve it, please generate text EXACTLY FOLLOW THE FOLLOWING STEPS: +1. First, interpret map. List where the player is at now, where is the goal, and where are the holes. +2. Then, generate an action plan to navigate to the goal step by step. At each step, you should check: + (a) Where the current move leads the player to (the row and column); + (b) What is in that grid. Is it a hole? Is it the goal? Is it an empty space? + (c) Determine if that is a safe action. If not, correct it and re-generate the action plan. +3. Next, verify if the steps successfully navigate the player to the goal without falling into the hole. If not, restart from step 2 and re-generate this step. +4. If succeed, output an aggregated plan using "Action plan: ", where is a string concatenated action in each step. For example, "Action plan: L,L,R,U,D" meaning an action plan of left, left, right, up, and down. Double check the final action plan is consistent with the previous analysis. +Do not output any extra content after the above aggregated output. +''' + prompt_examples = [] + image_examples = [] + if in_context_example_num > 0: + prompt_examples.append("## Example:\n") + example_indices = random.sample(range(8), in_context_example_num) + for example_index in example_indices: + this_example = EXAMPLE_DICT[level][example_index] + image_examples.append(this_example[0]) + prompt_examples.append(this_example[1] + "\n") + prompt_input_4 = "\nPlease generate action plan for the following maze:" + prompt_img_1 = PIL.Image.open('prompt-visual-images/system-figure-1.png') + prompt_img_2 = PIL.Image.open('prompt-visual-images/system-figure-2.png') + model_input_seq = [prompt_input_1, prompt_img_1, prompt_input_2, prompt_img_2, prompt_input_3] + if in_context_example_num > 0: + assert len(prompt_examples) == len(image_examples) + 1 + assert len(prompt_examples) == in_context_example_num + 1 + model_input_seq.append(prompt_examples[0]) + for example_index in range(in_context_example_num): + model_input_seq.append(image_examples[example_index]) + model_input_seq.append(prompt_examples[example_index+1]) + model_input_seq += [prompt_input_4, img_input] + + response = model.generate_content(model_input_seq) + with open(input_backup_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + contents = "" + for input_prompt_index in range(len(model_input_seq)): + if type(model_input_seq[input_prompt_index]) == type("string"): + contents += model_input_seq[input_prompt_index] + f.write(contents) + with open(output_path + "level%d/%d.txt"%(level, curr_id), "w") as f: + f.write(response.text) + # import ipdb; ipdb.set_trace() + # pass + time.sleep(2) + runned_term += 1 + except: + time.sleep(2) + pass + + + + + + +# pass + + + +# cookie_picture = [{ +# 'mime_type': 'image/png', +# 'data': Path('cookie.png').read_bytes() +# }] +# prompt = "Do these look store-bought or homemade?" + +# response = model.generate_content( +# model="gemini-pro-vision", +# content=[prompt, cookie_picture] +# ) +# print(response.text) \ No newline at end of file